bash-vl.spec 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  1. Summary: The GNU Bourne Again shell (bash).
  2. Summary(ja): GNU Bourne Again シェル (bash).
  3. Name: bash
  4. Version: 5.2.37
  5. Release: 1%{?_dist_release}
  6. Group: system
  7. Vendor: Project Vine
  8. Distribution: Vine Linux
  9. Packager: daisuke
  10. License: GPLv3+
  11. Source0: https://ftp.gnu.org/pub/gnu/bash/bash-%{version}.tar.gz
  12. Source10: bashrc-vine
  13. %define bashversion %(echo %{version} | cut -d. -f1-2)
  14. %define patchlevel %(echo %{version} | cut -d. -f3)
  15. # Official upstream patches
  16. #Patch32: https://ftp.gnu.org/gnu/bash/bash-%{bashversion}-patches/bash52-032
  17. # We don't want to add '/etc:/usr/etc' in standard utils path.
  18. Patch101: bash-2.03-paths.patch
  19. # Non-interactive shells beginning with argv[0][0] == '-' should run the startup files when not in posix mode.
  20. Patch102: bash-2.03-profile.patch
  21. # https://bugzilla.redhat.com/show_bug.cgi?id=60870
  22. Patch103: bash-2.05a-interpreter.patch
  23. # Generate info for debuginfo files.
  24. Patch104: bash-2.05b-debuginfo.patch
  25. # Pid passed to setpgrp() can not be pid of a zombie process.
  26. Patch105: bash-2.05b-pgrp_sync.patch
  27. # Enable audit logs
  28. Patch106: bash-3.2-audit.patch
  29. # Source bashrc file when bash is run under ssh.
  30. Patch107: bash-3.2-ssh_source_bash.patch
  31. # Use makeinfo to generate .texi file
  32. # Patch108: bash-infotags.patch
  33. # Try to pick up latest `--rpm-requires` patch from http://git.altlinux.org/gears/b/bash4.git
  34. Patch109: bash-requires.patch
  35. Patch110: bash-setlocale.patch
  36. # Disable tty tests while doing bash builds
  37. Patch111: bash-tty-tests.patch
  38. # 484809, check if interp section is NOBITS
  39. Patch116: bash-4.0-nobits.patch
  40. # Do the same CFLAGS in generated Makefile in examples
  41. Patch117: bash-4.1-examples.patch
  42. # Builtins like echo and printf won't report errors
  43. # when output does not succeed due to EPIPE
  44. Patch118: bash-4.1-broken_pipe.patch
  45. # Enable system-wide .bash_logout for login shells
  46. Patch119: bash-4.2-rc2-logout.patch
  47. # Static analyzis shows some issues in bash-2.05a-interpreter.patch
  48. Patch120: bash-4.2-coverity.patch
  49. # 799958, updated info about trap
  50. # This patch should be upstreamed.
  51. Patch122: bash-4.2-manpage_trap.patch
  52. # https://www.securecoding.cert.org/confluence/display/seccode/INT32-C.+Ensure+that+operations+on+signed+integers+do+not+result+in+overflow
  53. # This patch should be upstreamed.
  54. Patch123: bash-4.2-size_type.patch
  55. # 1112710 - mention ulimit -c and -f POSIX block size
  56. # This patch should be upstreamed.
  57. Patch124: bash-4.3-man-ulimit.patch
  58. # 1102815 - fix double echoes in vi visual mode
  59. Patch125: bash-4.3-noecho.patch
  60. #1241533,1224855 - bash leaks memory when LC_ALL set
  61. Patch126: bash-4.3-memleak-lc_all.patch
  62. # bash-4.4 builds loadable builtin examples by default
  63. # this patch disables it
  64. Patch127: bash-4.4-no-loadable-builtins.patch
  65. # 2020528 - Add a runtime option to enable history logging to syslog
  66. # This option is undocumented in upstream and is documented by this patch
  67. Patch128: bash-5.0-syslog-history.patch
  68. Buildroot: %{_tmppath}/%{name}-%{version}-root
  69. BuildRequires: texinfo, bison, ncurses-devel, autoconf, gettext
  70. Obsoletes: bash <= 1.14.7
  71. Obsoletes: bash2
  72. %description
  73. Bash is a GNU project sh-compatible shell or command language
  74. interpreter. Bash (Bourne Again shell) incorporates useful features
  75. from the Korn shell (ksh) and the C shell (csh). Most sh scripts
  76. can be run by bash without modification.
  77. Bash offers several improvements over sh, including command line
  78. editing, unlimited size command history, job control, shell
  79. functions and aliases, indexed arrays of unlimited size and
  80. integer arithmetic in any base from two to 64. Bash is ultimately
  81. intended to conform to the IEEE POSIX P1003.2/ISO 9945.2 Shell and
  82. Tools standard.
  83. %package doc
  84. Summary: Documentation for the GNU Bourne Again shell (bash).
  85. Summary(ja): GNU Bourne Again シェル向けドキュメント
  86. Group: documentation
  87. Requires: %{name} = %{version}-%{release}
  88. Obsoletes: bash2-doc
  89. %description doc
  90. This is a separate documentation package for the GNU Bourne
  91. Again shell.
  92. %debug_package
  93. %prep
  94. %setup -q -n %{name}-%{version}
  95. %autopatch -p0 -m1 -M99
  96. %autopatch -p1 -m100
  97. echo %{version} > _distribution
  98. echo %{release} |sed 's/vl.*//' > _patchlevel
  99. %build
  100. # GCC 15 defaults to `-std=gnu23` which breaks compilation
  101. export CFLAGS+="-std=gnu17"
  102. autoconf
  103. %configure --with-bash-malloc=no
  104. # Recycles pids is neccessary. When bash's last fork's pid was X
  105. # and new fork's pid is also X, bash has to wait for this same pid.
  106. # Without Recycles pids bash will not wait.
  107. MFLAGS="CPPFLAGS=-D_GNU_SOURCE -DRECYCLES_PIDS `getconf LFS_CFLAGS` -DSYSLOG_HISTORY -DSYSLOG_SHOPT=0"
  108. # work around missing deps in Makefiles
  109. make "$MFLAGS" version.h
  110. make "$MFLAGS" %{?_smp_mflags} -C builtins
  111. make "$MFLAGS" %{?_smp_mflags}
  112. %install
  113. if [ -e autoconf ]; then
  114. # Yuck. We're using autoconf 2.1x.
  115. export PATH=.:$PATH
  116. fi
  117. # Fix bug #83776
  118. perl -pi -e 's,bashref\.info,bash.info,' doc/bashref.info
  119. make DESTDIR=$RPM_BUILD_ROOT install
  120. mkdir -p %{buildroot}/%{_sysconfdir}
  121. pushd $RPM_BUILD_ROOT
  122. mkdir ./bin
  123. mv ./usr/bin/bash ./bin/bash
  124. ln -s bash ./bin/sh
  125. rm -f .%{_infodir}/dir
  126. popd
  127. ln -s bash.1 %{buildroot}%{_mandir}/man1/sh.1
  128. # make manpages for bash builtins as per suggestion in DOC/README
  129. pushd doc
  130. sed -e '
  131. /^\.SH NAME/, /\\- bash built-in commands, see \\fBbash\\fR(1)$/{
  132. /^\.SH NAME/d
  133. s/^bash, //
  134. s/\\- bash built-in commands, see \\fBbash\\fR(1)$//
  135. s/,//g
  136. b
  137. }
  138. d
  139. ' builtins.1 > man.pages
  140. for i in echo pwd test kill; do
  141. perl -pi -e "s,$i,,g" man.pages
  142. perl -pi -e "s, , ,g" man.pages
  143. done
  144. install -c -m 644 builtins.1 %{buildroot}%{_mandir}/man1/builtins.1
  145. for i in `cat man.pages` ; do
  146. echo .so man1/builtins.1 > %{buildroot}%{_mandir}/man1/$i.1
  147. chmod 0644 ${RPM_BUILD_ROOT}%{_mandir}/man1/$i.1
  148. done
  149. mkdir -p $RPM_BUILD_ROOT/etc/profile.d/
  150. install -m 644 %{SOURCE10} $RPM_BUILD_ROOT/etc/bashrc
  151. # Not for printf, false and true (conflict with coreutils)
  152. rm -f $RPM_BUILD_ROOT%{_mandir}/man1/printf.1
  153. rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/true.1
  154. rm -f $RPM_BUILD_ROOT/%{_mandir}/man1/false.1
  155. popd
  156. %find_lang %{name}
  157. rm -rf $RPM_BUILD_ROOT/%{_docdir}/bash
  158. %clean
  159. rm -rf %{buildroot}
  160. # ***** bash doesn't use install-info. It's always listed in %{_infodir}/dir
  161. # to prevent prereq loops
  162. # post is in lua so that we can run it without any external deps. Helps
  163. # for bootstrapping a new install.
  164. # Jesse Keating 2009-01-29 (code from Ignacio Vazquez-Abrams)
  165. %post -p <lua>
  166. bashfound = false;
  167. shfound = false;
  168. f = io.open("/etc/shells", "r");
  169. if f == nil
  170. then
  171. f = io.open("/etc/shells", "w");
  172. else
  173. repeat
  174. t = f:read();
  175. if t == "/bin/bash"
  176. then
  177. bashfound = true;
  178. end
  179. if t == "/bin/sh"
  180. then
  181. shfound = true;
  182. end
  183. until t == nil;
  184. end
  185. f:close()
  186. f = io.open("/etc/shells", "a");
  187. if not bashfound
  188. then
  189. f:write("/bin/bash\n")
  190. end
  191. if not shfound
  192. then
  193. f:write("/bin/sh\n")
  194. end
  195. f:close()
  196. %files -f %{name}.lang
  197. %defattr(-,root,root)
  198. %license COPYING
  199. %doc CHANGES
  200. %doc examples
  201. %config(noreplace) /etc/bashrc
  202. /bin/bash
  203. /bin/sh
  204. %{_infodir}/bash.info*
  205. %{_mandir}/*/*
  206. %{_mandir}/*/..1*
  207. %{_bindir}/bashbug
  208. %files doc
  209. %defattr(-,root,root)
  210. %doc COMPAT NEWS NOTES POSIX RBASH
  211. %doc examples/functions/ examples/misc/
  212. %doc examples/scripts*/
  213. %doc examples/startup-files/ examples/complete/ examples/loadables/
  214. %doc doc/*.ps doc/*.0 doc/*.html doc/article.txt
  215. %doc doc/FAQ doc/INTRO doc/article.ms doc/README
  216. %changelog
  217. * Sun Jun 8 2025 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.37-1
  218. - updated to 5.2 patch level 37.
  219. * Sun Sep 08 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.32-1
  220. - updated to 5.2 patch level 32.
  221. * Mon Jun 17 2024 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.26-1
  222. - updated to 5.2 patch level 26.
  223. * Thu Jan 12 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.15-1
  224. - updated to 5.2 patch level 15.
  225. * Sun Nov 06 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.2.2-1
  226. - updated to 5.2 patch level 2.
  227. * Fri Jan 14 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.16-1
  228. - updated to 5.1 patch level 16.
  229. * Wed Dec 15 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.12-1
  230. - updated to 5.1 patch level 12.
  231. * Thu Sep 02 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.1.8-1
  232. - updated to 5.1 patch level 8.
  233. - updated patches.
  234. * Sat Sep 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.0.18-1
  235. - updated to 5.0 patch level 18.
  236. * Sat Feb 15 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.0.16-1
  237. - updated to 5.0 patch level 16.
  238. * Thu Sep 12 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.0.11-1
  239. - updated to 5.0 patch level 11.
  240. * Thu Aug 29 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 5.0.9-1
  241. - updated to 5.0 patch level 9.
  242. - dropped Patch101, 106, 108, 109, 112, 122, 134, 137 and 139.
  243. - imported Patch140 from rawhide.
  244. * Tue Jul 5 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.46-1
  245. - updated to 4.3 patch level 46.
  246. * Sat Sep 26 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.42-1
  247. - updated to 4.3 patch level 42.
  248. - imported patch 128-139 from RawHide.
  249. * Fri Oct 3 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.29-1
  250. - updated to 4.3 patch level 29.
  251. - removed patch1000 (included in 4.3.26).
  252. * Thu Sep 25 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.25-2
  253. - added patch1000 to fix CVE-2014-7169.
  254. * Thu Sep 25 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.3.25-1
  255. - updated to 4.3 patch level 25.
  256. * Tue Jun 10 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 4.3.18-1
  257. - update to 4.3 patch level 18
  258. * Wed May 14 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 4.3.11-1
  259. - update to 4.3 patch level 11
  260. * Mon Mar 18 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 4.2.45-1
  261. - update to 4.2 patch level 45
  262. - import some patch from fedora package (122-127)
  263. - patch122: Don't call malloc in signal handler
  264. - patch123: #799958, updated info about trap
  265. - patch124: #695656, block the signal and unblock it after the
  266. new handler is installed
  267. - patch125: Use unsigned type for size
  268. https://www.securecoding.cert.org/confluence/display/seccode/INT32-C.+Ensure+that+operations+on+signed+integers+do+not+result+in+overflow
  269. - patch126: #903833, Fix missing close(), fixes fd leaks
  270. * Sat Oct 6 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 4.2.37-2
  271. - remove postun lua script because bash will be never uninstalled
  272. * Mon Sep 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 4.2.37-1
  273. - update to 4.2 patch level 37
  274. * Fri Feb 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 4.2.20-1
  275. - update to 4.2 patch level 20
  276. * Tue Apr 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.2.8-1
  277. - update to 4.2 patch level 8
  278. - use lua script in post/postun
  279. - update patches from fedora
  280. * Fri Sep 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 4.1-1
  281. - update to 4.1 patch level 7
  282. * Fri Mar 5 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.2-9
  283. - check if /bin/grep exists on %%post script
  284. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.2-8
  285. - rebuilt with gcc-4.4.3-3 on ppc
  286. * Tue Feb 2 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.2-7
  287. - rebuilt with new toolchain
  288. * Fri Dec 4 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.2-6
  289. - revert changes on 3.2-5 (avoid a nasty dependency loop on bootstrapping)
  290. * Fri Dec 4 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.2-5
  291. - add Requires(post): grep
  292. * Sat Oct 24 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.2-4
  293. - remove obsolete /bin/bash2 entry from /etc/shells
  294. * Mon Apr 27 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2-3
  295. - add Requires(post): ncurses (should be added by find-requires..)
  296. * Sun Mar 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2-2
  297. - add upstream patch (from 040 to 048)
  298. - build against ncurses-devel (libtinfo)
  299. - spec in utf-8
  300. * Mon May 12 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.2-1vl5
  301. - added upstream patch (from 026 to 039)
  302. - added Japanese summary
  303. - applied new versioning policy
  304. * Fri Jan 18 2008 Shu KONNO <owa@bg.wakwak.com> 3.2-0vl2
  305. - rebuilt with libtermcap-devel
  306. * Fri Oct 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 3.2-0vl1
  307. - new upstream release
  308. - add upstream patch (from 001 to 025)
  309. - remove Provides: bash2
  310. * Wed May 09 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.05b-0vl4
  311. - rebuilt with new toolchain
  312. * Mon Sep 11 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.05b-0vl3
  313. - change doc Group to Applications/Documentation. <BTS:VineLinux:163>
  314. - quote CPPFLAGS to avoid configure error. <BTS:VineLinux:173>
  315. * Mon Jun 28 2004 NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp> 2.05b-0vl2
  316. - Don't read /etc/profile.d/*.sh in /etc/bashrc; done in /etc/profile
  317. * Wed Mar 10 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.05b-0vl1
  318. - update to 2.05b
  319. - rebuild with new toolchains
  320. - add make check
  321. - add %postun script based on Fedora development
  322. - README file moved doc package
  323. - update Patch5 and Patch8 from Fedora development
  324. - change Patch6
  325. - remove Patch2 and Patch100 (bash-2.05b supports multibyte string)
  326. - add Patch11--39 from Fedora development 2.05b-36
  327. * Tim Waugh <twaugh@redhat.com>
  328. - Fix parameter expansion in multibyte locales (bug #112657).
  329. - Speed up UTF-8 command-line redrawing in the common case (bug #102353,
  330. bug #110777).
  331. - Apply upstream patches (bug #109269 among others).
  332. - Fix bash.info (bug #83776).
  333. - Add bash205b-007 patch to fix bug #106876.
  334. - Avoid crashing on multibyte input when locale is set incorrectly
  335. (bug #74266).
  336. - LFS support (bug #103627).
  337. - Fix completion display when multibyte or control characters are to be
  338. shown (bug #90201).
  339. - Fix a warning message (bug #79629).
  340. - Don't build with AFS support (bug #86514).
  341. - Don't explicitly strip binaries (bug #85995).
  342. - Really fix bug #83331 for good.
  343. - Fix builtins.1.
  344. - Actually apply the patch (bug #83331).
  345. - Fix history/UTF-8 bug (bug #83331).
  346. - More tab-completion fixing (bug #72512).
  347. - Force pgrp synchronization (bug #81653).
  348. - Prevent prompt overwriting output (bug #74383).
  349. - Fix '-rbash' (bug #78455).
  350. - Add readline-init patch (bug #74925).
  351. - Add the (4) patches from ftp.gnu.org (bug #75888, bug #72512).
  352. - Ship '.' man page, which doesn't get picked up by glob.
  353. - Locale shell variables fix (bug #74701).
  354. * Elliot Lee <sopwith@redhat.com>
  355. - (patch26) Don't call 'size' in makefile. Pointless, and interferes with
  356. cross compiles.
  357. * Wed Oct 9 2002 NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp> 2.05-0vl1
  358. - update to 2.05
  359. - add README.jpatch to %doc
  360. - remove patch4 (bash2): revert command name in man pages to "bash"
  361. - fix perl command to remove man pages conflict with sh-utils
  362. - remove section of config.h.in from patch0 to prevent remake of configure
  363. - change patch9: define in config-top.h to avoid conflict with patch100
  364. - remove patches 7, 10 & 101
  365. * Mon Apr 8 2002 NISHIMURA Daisuke <nishi@graco.c.u-tokyo.ac.jp> 2.04-1vl14
  366. - made a link for man sh
  367. * Thu Nov 15 2001 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.04-1vl13
  368. - added missing %%post and %%triggerpostun section
  369. * Sun Jul 15 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  370. - 2.04-1vl12
  371. - now bash2 is finally bash
  372. * Sun Jul 15 2001 Daisuke SUZUKI <daisuke@linux.or.jp> 2.04-1vl11
  373. - build for Playstation2
  374. * Mon Jun 11 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
  375. - 2.04-1vl10
  376. - Provides: bash = %%{version}
  377. * Thu Jun 07 2001 Satoshi MACHINO <machino@vinelinux.org> 2.04-1vl9
  378. - added Provides: bash
  379. * Thu Jun 07 2001 Satoshi MACHINO <machino@vinelinux.org> 2.04-1vl8
  380. - Obsoletes: bash
  381. - changed Copyright to License
  382. * Fri Dec 29 2000 Lisa Sagami <czs14350@mb.infoweb.ne.jp>
  383. - 2.04-1vl7
  384. - deleted: /etc/profile.d/alias.sh (which we have in /etc/skel/.bashrc)
  385. - corrected: bashrc-vine -> bashrc
  386. * Sat Dec 16 2000 Satoshi MACHINO <machino@vinelinux.org> 2.04-1vl6
  387. - combined bash-1.x and bash-2.x packages
  388. - added some patches from bash-2.04-13mdk
  389. * Sun Dec 10 2000 Jun Nishii <jun@vinelinux.org> 2.04-1vl5
  390. - fix spec macros
  391. - added tests
  392. * Sun Nov 19 2000 Satoshi MACHINO <machino@vinelinux.org> 2.04-1vl5
  393. - build with gcc-2.95.3
  394. - partially used rpmmacros
  395. * Fri Sep 8 2000 Jun Nishii <jun@vinelinux.org>
  396. - minor bug fix in spec file
  397. * Sun Aug 27 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
  398. - 2.04-1vl3
  399. - modified %install and %files section to handle compressed man page(s)
  400. * Thu Mar 23 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  401. - added pcomplete patch to fix complete if the candidate list is NULL.
  402. * Wed Mar 22 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
  403. - updated to 2.04
  404. * Tue Sep 14 1999 Dale Lovelace <dale@redhat.com>
  405. - Remove annoying ^H's from documentation
  406. * Fri Jul 16 1999 Ken Estes <kestes@staff.mail.com>
  407. - patch to detect what executables are required by a script.
  408. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  409. - auto rebuild in the new build environment (release 4)
  410. * Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
  411. - strip binaries.
  412. - include bash-doc correctly.
  413. * Thu Mar 18 1999 Preston Brown <pbrown@redhat.com>
  414. - fixed post/postun /etc/shells work.
  415. * Thu Mar 18 1999 Cristian Gafton <gafton@redhat.com>
  416. - updated again text in the spec file
  417. * Mon Feb 22 1999 Jeff Johnson <jbj@redhat.com>
  418. - updated text in spec file.
  419. - update to 2.03.
  420. * Fri Feb 12 1999 Cristian Gafton <gafton@redhat.com>
  421. - build it as bash2 instead of bash
  422. * Tue Feb 9 1999 Bill Nottingham <notting@redhat.com>
  423. - set 'NON_INTERACTIVE_LOGIN_SHELLS' so profile gets read
  424. * Thu Jan 14 1999 Jeff Johnson <jbj@redhat.com>
  425. - rename man pages in bash-doc to avoid packaging conflicts (#606).
  426. * Wed Dec 02 1998 Cristian Gafton <gafton@redhat.com>
  427. - patch for the arm
  428. - use $RPM_ARCH-redhat-linux as the build target
  429. * Tue Oct 6 1998 Bill Nottingham <notting@redhat.com>
  430. - rewrite %pre, axe %postun (to avoid prereq loops)
  431. * Wed Aug 19 1998 Jeff Johnson <jbj@redhat.com>
  432. - resurrect for RH 6.0.
  433. * Sun Jul 26 1998 Jeff Johnson <jbj@redhat.com>
  434. - update to 2.02.1
  435. * Thu Jun 11 1998 Jeff Johnson <jbj@redhat.com>
  436. - Package for 5.2.
  437. * Mon Apr 20 1998 Ian Macdonald <ianmacd@xs4all.nl>
  438. - added POSIX.NOTES doc file
  439. - some extraneous doc files removed
  440. - minor .spec file changes
  441. * Sun Apr 19 1998 Ian Macdonald <ianmacd@xs4all.nl>
  442. - upgraded to version 2.02
  443. - Alpha, MIPS & Sparc patches removed due to lack of test platforms
  444. - glibc & signal patches no longer required
  445. - added documentation subpackage (doc)
  446. * Fri Nov 07 1997 Donnie Barnes <djb@redhat.com>
  447. - added signal handling patch from Dean Gaudet <dgaudet@arctic.org> that
  448. is based on a change made in bash 2.0. Should fix some early exit
  449. problems with suspends and fg.
  450. * Mon Oct 20 1997 Donnie Barnes <djb@redhat.com>
  451. - added %clean
  452. * Mon Oct 20 1997 Erik Troan <ewt@redhat.com>
  453. - added comment explaining why install-info isn't used
  454. - added mips patch
  455. * Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
  456. - added BuildRoot
  457. * Tue Jun 03 1997 Erik Troan <ewt@redhat.com>
  458. - built against glibc