bash-vl.spec 18 KB

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