9014c4
#% define beta_tag rc2
9014c4
%global _hardened_build 1
9014c4
%define patchleveltag .19
9014c4
%define baseversion 4.4
9014c4
%bcond_without tests
9014c4
9014c4
Version: %{baseversion}%{patchleveltag}
9014c4
Name: bash
9014c4
Summary: The GNU Bourne Again shell
e2ac44
Release: 10%{?dist}
9014c4
License: GPLv3+
9014c4
Url: https://www.gnu.org/software/bash
9014c4
Source0: https://ftp.gnu.org/gnu/bash/bash-%{baseversion}.tar.gz
9014c4
9014c4
# For now there isn't any doc
9014c4
#Source2: ftp://ftp.gnu.org/gnu/bash/bash-doc-%{version}.tar.gz
9014c4
9014c4
Source1: dot-bashrc
9014c4
Source2: dot-bash_profile
9014c4
Source3: dot-bash_logout
9014c4
9014c4
# Official upstream patches
9014c4
# Patches are converted to apply with '-p1'
9014c4
%{lua:for i=1,19 do print(string.format("Patch%u: bash-4.4-patch-%u.patch\n", i, i)) end}
9014c4
9014c4
# Other patches
9014c4
Patch101: bash-2.02-security.patch
9014c4
Patch102: bash-2.03-paths.patch
9014c4
Patch103: bash-2.03-profile.patch
9014c4
Patch104: bash-2.05a-interpreter.patch
9014c4
Patch105: bash-2.05b-debuginfo.patch
9014c4
Patch106: bash-2.05b-manso.patch
9014c4
Patch107: bash-2.05b-pgrp_sync.patch
9014c4
Patch108: bash-2.05b-xcc.patch
9014c4
Patch109: bash-3.2-audit.patch
9014c4
Patch110: bash-3.2-ssh_source_bash.patch
9014c4
Patch112: bash-infotags.patch
9014c4
Patch113: bash-requires.patch
9014c4
Patch114: bash-setlocale.patch
9014c4
Patch115: bash-tty-tests.patch
9014c4
9014c4
# 484809, check if interp section is NOBITS
9014c4
Patch116: bash-4.0-nobits.patch
9014c4
9014c4
# Do the same CFLAGS in generated Makefile in examples
9014c4
Patch117: bash-4.1-examples.patch
9014c4
9014c4
# Builtins like echo and printf won't report errors
9014c4
# when output does not succeed due to EPIPE
9014c4
Patch118: bash-4.1-broken_pipe.patch
9014c4
9014c4
# Enable system-wide .bash_logout for login shells
9014c4
Patch119: bash-4.2-rc2-logout.patch
9014c4
9014c4
# Static analyzis shows some issues in bash-2.05a-interpreter.patch
9014c4
Patch120: bash-4.2-coverity.patch
9014c4
9014c4
# Don't call malloc in signal handler
9014c4
Patch121: bash-4.1-defer-sigchld-trap.patch
9014c4
9014c4
# 799958, updated info about trap
9014c4
Patch122: bash-4.2-manpage_trap.patch
9014c4
9014c4
# https://www.securecoding.cert.org/confluence/display/seccode/INT32-C.+Ensure+that+operations+on+signed+integers+do+not+result+in+overflow
9014c4
Patch123: bash-4.2-size_type.patch
9014c4
9014c4
# 1112710 - mention ulimit -c and -f POSIX block size
9014c4
Patch124: bash-4.3-man-ulimit.patch
9014c4
9014c4
# 1102815 - fix double echoes in vi visual mode
9014c4
Patch125: bash-4.3-noecho.patch
9014c4
9014c4
#1241533,1224855 - bash leaks memory when LC_ALL set
9014c4
Patch126: bash-4.3-memleak-lc_all.patch
9014c4
9014c4
# bash-4.4 builds loadable builtin examples by default
9014c4
# this patch disables it
9014c4
Patch127: bash-4.4-no-loadable-builtins.patch
9014c4
9014c4
# 1068697 - Explicitly unset nonblocking mode while reading from stdin
9014c4
# This should be dropped while rebasing to bash-4.5
9014c4
Patch128: bash-4.4-unset-nonblock-stdin.patch
9014c4
9014c4
# 1389838 - command builtin should not abort on variable assignment errors
9014c4
# This should be dropped while rebasing to bash-4.5
9014c4
Patch129: bash-4.4-assignment-error.patch
9014c4
9014c4
# 1458008 - test builtin ignores subsecond while comparing file modification times
9014c4
# This should be dropped while rebasing to bash-4.5
9014c4
Patch130: bash-4.5-test-modification-time.patch
9014c4
9014c4
# 1556867 - case in a for loop inside subshell causes syntax error
9014c4
# This should be dropped while rebasing to bash-4.5
9014c4
Patch131: bash-4.4-case-in-command-subst.patch
9014c4
9014c4
Patch132: bash-4.4-coverity.patch
9014c4
9014c4
# 1687835 - [RFE] Add a runtime option to enable history logging to syslog
9014c4
# This should be dropped while rebasing to bash-5.0
9014c4
Patch133: bash-5.0-syslog-history.patch
9014c4
e2ac44
# 1727952 -  Parsing commands break when using $$ in command substitution $(..)
e2ac44
# https://lists.gnu.org/archive/html/bug-bash/2017-01/msg00065.html
e2ac44
Patch134: bash-5.0-shellpid-subshell.patch
e2ac44
9014c4
BuildRequires: texinfo bison
9014c4
BuildRequires: ncurses-devel
9014c4
BuildRequires: autoconf, gettext
9014c4
Requires: filesystem >= 3
9014c4
Provides: /bin/sh
9014c4
Provides: /bin/bash
9014c4
9014c4
%description
9014c4
The GNU Bourne Again shell (Bash) is a shell or command language
9014c4
interpreter that is compatible with the Bourne shell (sh). Bash
9014c4
incorporates useful features from the Korn shell (ksh) and the C shell
9014c4
(csh). Most sh scripts can be run by bash without modification.
9014c4
9014c4
%package devel
9014c4
Summary: Development headers for %{name}
9014c4
Requires: %{name} = %{version}-%{release}
9014c4
Requires: pkgconf-pkg-config
9014c4
9014c4
%description devel
9014c4
This package contains development headers for %{name}.
9014c4
9014c4
%package doc
9014c4
Summary: Documentation files for %{name}
9014c4
Requires: %{name} = %{version}-%{release}
9014c4
9014c4
%description doc
9014c4
This package contains documentation files for %{name}.
9014c4
9014c4
%prep
9014c4
%autosetup -n %{name}-%{baseversion} -p1
9014c4
9014c4
echo %{version} > _distribution
9014c4
echo %{release} > _patchlevel
9014c4
9014c4
# force refreshing the generated files
9014c4
rm y.tab.*
9014c4
9014c4
%build
9014c4
autoconf
9014c4
%configure --with-bash-malloc=no --with-afs
9014c4
9014c4
# Recycles pids is neccessary. When bash's last fork's pid was X
9014c4
# and new fork's pid is also X, bash has to wait for this same pid.
9014c4
# Without Recycles pids bash will not wait.
e2ac44
make "CPPFLAGS=-D_GNU_SOURCE -DRECYCLES_PIDS -DDEFAULT_PATH_VALUE='\"/usr/local/bin:/usr/bin\"' `getconf LFS_CFLAGS` -DSYSLOG_HISTORY" %{?_smp_mflags}
9014c4
9014c4
%install
9014c4
if [ -e autoconf ]; then
9014c4
  # Yuck. We're using autoconf 2.1x.
9014c4
  export PATH=.:$PATH
9014c4
fi
9014c4
9014c4
# Fix bug #83776
9014c4
sed -i -e 's,bashref\.info,bash.info,' doc/bashref.info
9014c4
9014c4
%make_install install-headers
9014c4
9014c4
mkdir -p %{buildroot}/etc
9014c4
9014c4
# make manpages for bash builtins as per suggestion in DOC/README
9014c4
pushd doc
9014c4
sed -e '
9014c4
/^\.SH NAME/, /\\- bash built-in commands, see \\fBbash\\fR(1)$/{
9014c4
/^\.SH NAME/d
9014c4
s/^bash, //
9014c4
s/\\- bash built-in commands, see \\fBbash\\fR(1)$//
9014c4
s/,//g
9014c4
b
9014c4
}
9014c4
d
9014c4
' builtins.1 > man.pages
9014c4
for i in echo pwd test kill; do
9014c4
  sed -i -e "s,$i,,g" man.pages
9014c4
  sed -i -e "s,  , ,g" man.pages
9014c4
done
9014c4
9014c4
install -p -m 644 builtins.1 %{buildroot}%{_mandir}/man1/builtins.1
9014c4
9014c4
for i in `cat man.pages` ; do
9014c4
  echo .so man1/builtins.1 > %{buildroot}%{_mandir}/man1/$i.1
9014c4
  chmod 0644 %{buildroot}%{_mandir}/man1/$i.1
9014c4
done
9014c4
popd
9014c4
9014c4
# Link bash man page to sh so that man sh works.
9014c4
ln -s bash.1 %{buildroot}%{_mandir}/man1/sh.1
9014c4
9014c4
# Not for printf, true and false (conflict with coreutils)
9014c4
rm -f %{buildroot}/%{_mandir}/man1/printf.1
9014c4
rm -f %{buildroot}/%{_mandir}/man1/true.1
9014c4
rm -f %{buildroot}/%{_mandir}/man1/false.1
9014c4
9014c4
ln -sf bash %{buildroot}%{_bindir}/sh
9014c4
rm -f %{buildroot}%{_infodir}/dir
9014c4
mkdir -p %{buildroot}/etc/skel
9014c4
install -p -m644 %SOURCE1 %{buildroot}/etc/skel/.bashrc
9014c4
install -p -m644 %SOURCE2 %{buildroot}/etc/skel/.bash_profile
9014c4
install -p -m644 %SOURCE3 %{buildroot}/etc/skel/.bash_logout
9014c4
LONG_BIT=$(getconf LONG_BIT)
9014c4
mv %{buildroot}%{_bindir}/bashbug \
9014c4
   %{buildroot}%{_bindir}/bashbug-"${LONG_BIT}"
9014c4
ln -s bashbug-"${LONG_BIT}" %{buildroot}%{_bindir}/bashbug
9014c4
ln -s bashbug.1 %{buildroot}/%{_mandir}/man1/bashbug-"$LONG_BIT".1
9014c4
9014c4
# Fix missing sh-bangs in example scripts (bug #225609).
9014c4
for script in \
9014c4
  examples/scripts/shprompt
9014c4
# I don't know why these are gone in 4.3
9014c4
  #examples/scripts/krand.bash \
9014c4
  #examples/scripts/bcsh.sh \
9014c4
  #examples/scripts/precedence \
9014c4
do
9014c4
  cp "$script" "$script"-orig
9014c4
  echo '#!/bin/bash' > "$script"
9014c4
  cat "$script"-orig >> "$script"
9014c4
  rm -f "$script"-orig
9014c4
done
9014c4
9014c4
# bug #820192, need to add execable alternatives for regular built-ins
9014c4
for ea in alias bg cd command fc fg getopts hash jobs read type ulimit umask unalias wait
9014c4
do
9014c4
  cat <<EOF > "%{buildroot}"/%{_bindir}/"$ea"
9014c4
#!/bin/sh
9014c4
builtin $ea "\$@"
9014c4
EOF
9014c4
chmod +x "%{buildroot}"/%{_bindir}/"$ea"
9014c4
done
9014c4
9014c4
%find_lang %{name}
9014c4
9014c4
# copy doc to /usr/share/doc
9014c4
cat /dev/null > %{name}-doc.files
9014c4
mkdir -p %{buildroot}/%{_pkgdocdir}/doc
9014c4
# loadables aren't buildable
9014c4
rm -rf examples/loadables
9014c4
for file in CHANGES COMPAT NEWS NOTES POSIX RBASH README examples
9014c4
do
9014c4
  cp -rp "$file" %{buildroot}/%{_pkgdocdir}/"$file"
9014c4
  echo "%%doc %{_pkgdocdir}/$file" >> %{name}-doc.files
9014c4
done
9014c4
echo "%%doc %{_pkgdocdir}/doc" >> %{name}-doc.files
9014c4
9014c4
9014c4
9014c4
%if %{with tests}
9014c4
%check
9014c4
make check
9014c4
%endif
9014c4
9014c4
# post is in lua so that we can run it without any external deps.  Helps
9014c4
# for bootstrapping a new install.
9014c4
# Jesse Keating 2009-01-29 (code from Ignacio Vazquez-Abrams)
9014c4
# Roman Rakus 2011-11-07 (code from Sergey Romanov) #740611
9014c4
%post -p <lua>
9014c4
nl        = '\n'
9014c4
sh        = '/bin/sh'..nl
9014c4
bash      = '/bin/bash'..nl
9014c4
f = io.open('/etc/shells', 'a+')
9014c4
if f then
9014c4
  local shells = nl..f:read('*all')..nl
9014c4
  if not shells:find(nl..sh) then f:write(sh) end
9014c4
  if not shells:find(nl..bash) then f:write(bash) end
9014c4
  f:close()
9014c4
end
9014c4
9014c4
%postun -p <lua>
9014c4
-- Run it only if we are uninstalling
9014c4
if arg[2] == "0"
9014c4
then
9014c4
  t={}
9014c4
  for line in io.lines("/etc/shells")
9014c4
  do
9014c4
    if line ~= "/bin/bash" and line ~= "/bin/sh"
9014c4
    then
9014c4
      table.insert(t,line)
9014c4
    end
9014c4
  end
9014c4
9014c4
  f = io.open("/etc/shells", "w+")
9014c4
  for n,line in pairs(t)
9014c4
  do
9014c4
    f:write(line.."\n")
9014c4
  end
9014c4
  f:close()
9014c4
end
9014c4
9014c4
%files -f %{name}.lang
9014c4
%config(noreplace) /etc/skel/.b*
9014c4
%{_bindir}/sh
9014c4
%{_bindir}/bash
9014c4
%{_bindir}/alias
9014c4
%{_bindir}/bg
9014c4
%{_bindir}/cd
9014c4
%{_bindir}/command
9014c4
%{_bindir}/fc
9014c4
%{_bindir}/fg
9014c4
%{_bindir}/hash
9014c4
%{_bindir}/getopts
9014c4
%{_bindir}/jobs
9014c4
%{_bindir}/read
9014c4
%{_bindir}/type
9014c4
%{_bindir}/ulimit
9014c4
%{_bindir}/umask
9014c4
%{_bindir}/unalias
9014c4
%{_bindir}/wait
9014c4
%dir %{_pkgdocdir}/
9014c4
%license COPYING
9014c4
%attr(0755,root,root) %{_bindir}/bashbug[-.]*
9014c4
%{_bindir}/bashbug
9014c4
%{_infodir}/bash.info*
9014c4
%{_mandir}/*/*
9014c4
%{_mandir}/*/..1*
9014c4
%doc RBASH README
9014c4
%doc doc/{FAQ,INTRO,README,bash{,ref}.html}
9014c4
9014c4
%files doc -f %{name}-doc.files
9014c4
%doc doc/*.ps doc/*.0 doc/*.html doc/article.txt
9014c4
9014c4
%files devel
9014c4
%{_includedir}/%{name}
9014c4
%{_libdir}/pkgconfig/%{name}.pc
9014c4
9014c4
%changelog
e2ac44
* Thu Aug 22 2019 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.19-10
e2ac44
- Fix runtime option to enable history logging to syslog
e2ac44
  Related: #1687835
e2ac44
e2ac44
* Wed Jul 10 2019 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.19-9
e2ac44
- Fix `$$` expansion in subshell
e2ac44
  Resolves: #1727952
e2ac44
9014c4
* Mon May 27 2019 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.19-8
9014c4
- Add a runtime option to enable history logging to syslog
9014c4
  Resolves: #1687835
9014c4
9014c4
* Mon Jan 14 2019 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.19-7
9014c4
- Bump version number
9014c4
  Resolves: #1650059
9014c4
9014c4
* Tue Oct 09 2018 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.19-6
9014c4
- Set custom PATH in non-login shells
9014c4
  Resolves: #1627074
9014c4
9014c4
* Thu Sep 20 2018 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.19-5
9014c4
- Fix some issues identified by coverity
9014c4
  Resolves: #1602450
9014c4
9014c4
* Mon Aug 06 2018 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.19-4
9014c4
- Bump version number
9014c4
9014c4
* Tue Jun 26 2018 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.19-3
9014c4
- Move user bin directories in front of the PATH
9014c4
  Resolves: #1595223
9014c4
9014c4
* Thu Mar 15 2018 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.19-2
9014c4
- Fix handling case statement in command subsitution
9014c4
  Resolves: #1556867
9014c4
9014c4
* Mon Feb 12 2018 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.19-1
9014c4
- Update to bash-4.4 patchlevel 19
9014c4
  Resolves: #1540383
9014c4
9014c4
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.12-14
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
9014c4
9014c4
* Wed Nov 08 2017 Christoph Junghans <junghans@votca.org> - 4.4.12-13
9014c4
- Package headers in devel package, in prep for MPI-bash
9014c4
9014c4
* Mon Oct 30 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.12-12
9014c4
- Revert change to always source from /etc/bashrc
9014c4
9014c4
* Tue Aug 29 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.12-11
9014c4
- Always source from /etc/bashrc
9014c4
  Resolves: #1193590
9014c4
9014c4
* Tue Aug 22 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.12-10
9014c4
- Enable parallel builds
9014c4
9014c4
* Tue Aug 08 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.12-9
9014c4
- command should not be treated as special builtin
9014c4
  Resolves: #1479220
9014c4
9014c4
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.12-8
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
9014c4
9014c4
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.12-7
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
9014c4
9014c4
* Fri Jun 30 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.12-6
9014c4
- Fix test for comparing file modification times when they differ by subsecond
9014c4
  Resolves: #1458008
9014c4
9014c4
* Tue May 30 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.12-5
9014c4
- command builtin should not abort on variable assignment errors
9014c4
  Resolves: #1389838
9014c4
9014c4
* Wed Apr 26 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.12-4
9014c4
- Explicitly unset nonblocking mode while reading from stdin
9014c4
  Resolves: #1068697
9014c4
9014c4
* Wed Apr 26 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.12-3
9014c4
- Fix heredoc file descriptor leak
9014c4
  Resolves: #1413676
9014c4
9014c4
* Tue Apr 18 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.12-2
9014c4
- Document 'bashbug' for reporting bugs
9014c4
  Resolves: #1255886
9014c4
9014c4
* Mon Apr 10 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.12-1
9014c4
- Update to bash-4.4 patchlevel 12
9014c4
9014c4
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.11-2
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
9014c4
9014c4
* Sat Jan 21 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.11-1
9014c4
- Update to bash-4.4 patchlevel 11
9014c4
9014c4
* Mon Jan 16 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.5-1
9014c4
- Update to bash-4.4 patchlevel 5
9014c4
9014c4
* Fri Jan 06 2017 Siteshwar Vashisht <svashisht@redhat.com> - 4.4.0-1
9014c4
- Rebase to bash-4.4
9014c4
  Resolves: #1376609
9014c4
9014c4
* Fri Sep 30 2016 Siteshwar Vashisht <svashisht@redhat.com> - 4.3.43-4
9014c4
- CVE-2016-7543: Fix for arbitrary code execution via SHELLOPTS+PS4 variables
9014c4
  Resolves: #1379634
9014c4
9014c4
* Wed Sep 21 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.3.43-3
9014c4
- CVE-2016-0634 - Fix for arbitrary code execution via malicious hostname
9014c4
  Resolves: #1377614
9014c4
9014c4
* Tue Sep  6 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 4.3.43-2
9014c4
- Inverted the condition for UsrMove safeguard check, so we comply with:
9014c4
  https://fedoraproject.org/wiki/Packaging:Conflicts
9014c4
9014c4
* Thu Jun 23 2016 Siteshwar Vashisht <svashisht@redhat.com> - 4.3.43-1
9014c4
- Fix a crash in nested pipeline in lastpipe mode
9014c4
  Resolves: #1349430
9014c4
9014c4
* Tue May 17 2016 Siteshwar Vashisht <svashisht@redhat.com> - 4.3.42-5
9014c4
- Do not set terminate_immediately and interrupt_immediately while expanding tilda
9014c4
  Resolves: #1336800
9014c4
9014c4
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.42-4
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
9014c4
9014c4
* Mon Jan 11 2016 Ondrej Oprala <ooprala@redhat.com> - 4.3.42-3
9014c4
- Actually do it properly this time
9014c4
  Related: #1297166
9014c4
9014c4
* Mon Jan 11 2016 Ondrej Oprala <ooprala@redhat.com> - 4.3.42-2
9014c4
- Provide exec-able alternatives to hash, type and ulimit
9014c4
  Resolves: #1297166
9014c4
9014c4
* Tue Aug 18 2015 Ondrej Oprala - 4.3.42-1
9014c4
- Patchlevel 42
9014c4
9014c4
* Mon Aug 03 2015 Ondrej Oprala - 4.3.39-6
9014c4
- #1245233 - fixed memleak
9014c4
9014c4
* Wed Jul 15 2015 Ondrej Oprala - 4.3.39-5
9014c4
- #1182278 - bash crashes on `select' if REPLY is readonly
9014c4
- #1241533,1224855 - bash memleak when LC_ALL set
9014c4
9014c4
* Tue Jun 30 2015 Ondrej Oprala - 4.3.39-4
9014c4
- Fix a leak introduced by plevel39
9014c4
9014c4
* Tue Jun 30 2015 Ondrej Oprala - 4.3.39-3
9014c4
- Fix --rpm-requires
9014c4
9014c4
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.39-2
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
9014c4
9014c4
* Thu May 21 2015 Ondrej Oprala <ooprala@redhat.com> - 4.3.39-1
9014c4
- Patchlevel 39
9014c4
9014c4
* Mon Mar 16 2015 Than Ngo <than@redhat.com> 4.3.33-3
9014c4
- rebuild against new gcc
9014c4
9014c4
* Fri Jan 23 2015 Elad Alfassa <elad@fedoraproject.org> - 4.3.25-3
9014c4
- Enable PIE (hardened build)
9014c4
9014c4
* Tue Dec 30 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.33-1
9014c4
- Patchlevel 33
9014c4
9014c4
* Wed Oct 08 2014 Dan Horák <dan[at]danny.cz> - 4.3.30-2
9014c4
- force refreshing generated files, fixes build on s390
9014c4
9014c4
* Mon Oct 06 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.30-1
9014c4
- Patchlevel 30
9014c4
9014c4
* Mon Oct 06 2014  Ondrej Oprala <ooprala@redhat.com> - 4.3.28-1
9014c4
- RedHat's patchlevel 28
9014c4
9014c4
* Thu Sep 25 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.25-2
9014c4
- CVE-2014-7169
9014c4
  Resolves: #1146319
9014c4
+
9014c4
* Thu Sep 25 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.25-1
9014c4
- Patchlevel 25
9014c4
9014c4
* Wed Sep 24 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.24-2
9014c4
- Inhibit code injection - patch by Stephane Chazelas
9014c4
9014c4
* Wed Aug 20 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.24-1
9014c4
- Patchlevel 24
9014c4
9014c4
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.22-2
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
9014c4
9014c4
* Mon Aug 04 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.22-1
9014c4
- Patchlevel 22
9014c4
9014c4
* Wed Jul 30 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.18-7
9014c4
- #1102815 - fix double echo in vi visual mode
9014c4
9014c4
* Thu Jul 24 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.18-6
9014c4
- Apply all upstream patches since 4.3-18-1 up to this date
9014c4
9014c4
* Thu Jul 24 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.18-5
9014c4
- Array name expansion - apply upstream quickfix
9014c4
9014c4
* Mon Jul 21 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.18-4
9014c4
- Mention ulimit -c and -f block size in POSIX mode
9014c4
9014c4
* Fri Jul 11 2014 Tom Callaway <spot@fedoraproject.org> - 4.3.18-3
9014c4
- fix license handling
9014c4
9014c4
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.3.18-2
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
9014c4
9014c4
* Mon Apr 14 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.18-1
9014c4
- Patchlevel 18
9014c4
9014c4
* Mon Apr 14 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.11-2
9014c4
- And let the build system know...
9014c4
9014c4
* Mon Apr 14 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.11-1
9014c4
- Patchlevel 11
9014c4
9014c4
* Tue Apr 01 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.8-1
9014c4
- Patchlevel 8
9014c4
9014c4
* Thu Feb 27 2014 Ondrej Oprala <ooprala@redhat.com> - 4.3.0-1
9014c4
- Update to bash-4.3
9014c4
9014c4
* Wed Dec 04 2013 Ondrej Oprala <ooprala@redhat.com> - 4.2.45-6
9014c4
- Change the paths for format-security patch
9014c4
9014c4
* Wed Dec 04 2013 Ondrej Oprala <ooprala@redhat.com> - 4.2.45-5
9014c4
- bash FTBFS if -Werror=format-string is used (#1036998)
9014c4
9014c4
* Fri Aug 09 2013 Roman Rakus <rrakus@redhat.com> - 4.2.45-4
9014c4
- Added suggestion to .bashrc how to disable autopaging in systemctl
9014c4
9014c4
* Fri Jul 26 2013 Ville Skyttä <ville.skytta@iki.fi> - 4.2.45-3
9014c4
- Install docs to %%{_pkgdocdir} where available.
9014c4
- Fix bogus dates in %%changelog.
9014c4
9014c4
* Thu Jun 27 2013 Roman Rakus <rrakus@redhat.com> - 4.2.45-2
9014c4
- Fixed a bug that caused trap handlers to be executed recursively,
9014c4
  corrupting internal data structures.
9014c4
9014c4
* Mon Mar 11 2013 Roman Rakus <rrakus@redhat.com> - 4.2.45-1
9014c4
- Patchlevel 45
9014c4
9014c4
* Thu Jan 31 2013 Roman Rakus <rrakus@redhat.com> - 4.2.42-3
9014c4
- Fix usage of partial unitialized structure
9014c4
  Resolves: #857948
9014c4
9014c4
* Thu Jan 31 2013 Roman Rakus <rrakus@redhat.com> - 4.2.42-2
9014c4
- Fix fd leaks
9014c4
  Resolves: #903833
9014c4
9014c4
* Thu Jan 03 2013 Roman Rakus <rrakus@redhat.com> - 4.2.42-1
9014c4
- Patchlevel 42
9014c4
9014c4
* Thu Nov 29 2012 Roman Rakus <rrakus@redhat.com> - 4.2.39-3
9014c4
- Use unsigned type for size
9014c4
9014c4
* Tue Nov 27 2012 Roman Rakus <rrakus@redhat.com> - 4.2.39-2
9014c4
- Create bashbug symlink
9014c4
9014c4
* Fri Nov 02 2012 Roman Rakus <rrakus@redhat.com> - 4.2.39-1
9014c4
- Patchlevel 39
9014c4
9014c4
* Tue Aug 28 2012 Roman Rakus <rrakus@redhat.com> - 4.2.37-8
9014c4
- Fix a comments in rpm changelog
9014c4
9014c4
* Tue Aug 28 2012 Roman Rakus <rrakus@redhat.com> - 4.2.37-7
9014c4
- Update info about trap in man page
9014c4
  Resolves: #799958
9014c4
- instead of setting the signal handler to SIG_IGN while installing
9014c4
  the new trap handler, block the signal and unblock it after the new handler
9014c4
  is installed
9014c4
  Resolves: #695656
9014c4
9014c4
* Wed Aug 22 2012 Ondrej Oprala <ooprala@redhat.com> - 4.2.37-6
9014c4
- Revert revision 4.2.37-5 - already fixed upstream
9014c4
9014c4
* Tue Aug 21 2012 Ondrej Oprala <ooprala@redhat.com> - 4.2.37-5
9014c4
- Don't filter out environmental variables with
9014c4
  a dot in the name
9014c4
  Resolves: #819995
9014c4
9014c4
* Wed Aug 08 2012 Roman Rakus <rrakus@redhat.com> - 4.2.37-4
9014c4
- Added doc subdir to bash-doc ownership list
9014c4
  Resolves: #846734
9014c4
9014c4
* Tue Jul 24 2012 Roman Rakus <rrakus@redhat.com> - 4.2.37-3
9014c4
- Increment patchlevel tag
9014c4
9014c4
* Tue Jul 24 2012 Roman Rakus <rrakus@redhat.com> - 4.2.36-3
9014c4
- Patchlevel 37
9014c4
9014c4
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.36-2
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9014c4
9014c4
* Tue Jul 10 2012 Roman Rakus <rrakus@redhat.com> - 4.2.36-1
9014c4
- Patchlevel 36
9014c4
9014c4
* Sat Jun 23 2012 Roman Rakus <rrakus@redhat.com> - 4.2.29-3
9014c4
- Remove /bin from DEFAULT_PATH_VALUE
9014c4
  Resolves: #834571
9014c4
9014c4
* Thu May 31 2012 Roman Rakus <rrakus@redhat.com> - 4.2.29-2
9014c4
- Patchlevel 29
9014c4
- Also keep release at -2, so we are newer then f16 and f17
9014c4
9014c4
* Tue May 29 2012 Roman Rakus <rrakus@redhat.com> - 4.2.28-2
9014c4
- Provide exec-able alternatives to some builtins
9014c4
  Resolves #820192
9014c4
9014c4
* Wed May 09 2012 Roman Rakus <rrakus@redhat.com> - 4.2.28-1
9014c4
- Patchlevel 28
9014c4
9014c4
* Mon Apr 23 2012 Roman Rakus <rrakus@redhat.com> - 4.2.24-2
9014c4
- Don't call malloc in signal handler
9014c4
9014c4
* Tue Mar 13 2012 Roman Rakus <rrakus@redhat.com> - 4.2.24-1
9014c4
- Patchlevel 24
9014c4
9014c4
* Wed Jan 25 2012 Harald Hoyer <harald@redhat.com> 4.2.20-4
9014c4
- install everything in /usr
9014c4
  https://fedoraproject.org/wiki/Features/UsrMove
9014c4
9014c4
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.2.20-3
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
9014c4
9014c4
* Thu Nov 24 2011 Roman Rakus <rrakus@redhat.com> - 4.2.20-2
9014c4
- Add missing f:close() in postun
9014c4
- Patchlevel 20
9014c4
9014c4
* Thu Nov 10 2011 Roman Rakus <rrakus@redhat.com> - 4.2.10-7
9014c4
- erase /bin/bash and /bin/sh in postun only if we are uninstalling (#752827)
9014c4
9014c4
* Mon Nov 07 2011 Roman Rakus <rrakus@redhat.com> - 4.2.10-6
9014c4
- Simplified lua post script (#740611)
9014c4
9014c4
* Fri Jul 29 2011 Roman Rakus <rrakus@redhat.com> - 4.2.10-5
9014c4
- Clean up unneeded bash-doc files (Ville Skyttä) (#721116)
9014c4
9014c4
* Wed Jun 22 2011 Roman Rakus <rrakus@redhat.com> - 4.2.10-4
9014c4
- Don't crash when use `read' with associative array (#715050)
9014c4
9014c4
* Tue Jun 07 2011 Roman Rakus <rrakus@redhat.com> - 4.2.10-3
9014c4
- Added $HOME/.local/bin to PATH in .bash_profile (#699812)
9014c4
9014c4
* Thu May 05 2011 Roman Rakus <rrakus@redhat.com> - 4.2.10-2
9014c4
- Inc. a release no.
9014c4
9014c4
* Thu May 05 2011 Roman Rakus <rrakus@redhat.com> - 4.2.10-1
9014c4
- Patchlevel 10
9014c4
9014c4
* Thu Mar 31 2011 Roman Rakus <rrakus@redhat.com> - 4.2.8-2
9014c4
- Remove bash-4.2-xdupmbstowcs2-patch, which introduced another bugs
9014c4
9014c4
* Tue Mar 15 2011 Roman Rakus <rrakus@redhat.com> - 4.2.8-1
9014c4
- Patchlevel 8
9014c4
9014c4
* Tue Mar 15 2011 Roman Rakus <rrakus@redhat.com> - 4.2.7-3
9014c4
- #684293, fix the infinite loop with invalid wide char
9014c4
9014c4
* Mon Mar 14 2011 Roman Rakus <rrakus@redhat.com> - 4.2.7-2
9014c4
- Use lua script in postun
9014c4
9014c4
* Mon Mar 07 2011 Roman Rakus <rrakus@redhat.com> - 4.2.7-1
9014c4
- Patchlevel 7
9014c4
9014c4
* Wed Mar 02 2011 Roman Rakus <rrakus@redhat.com> - 4.2.6-1
9014c4
- Patchlevel 6
9014c4
9014c4
* Tue Mar 01 2011 Roman Rakus <rrakus@redhat.com> - 4.2.5-1
9014c4
- Patchlevel 5
9014c4
- Static analyzis show some issues in some patches
9014c4
- Some cleanup
9014c4
9014c4
* Wed Feb 16 2011 Roman Rakus <rrakus@redhat.com> - 4.2.0-2
9014c4
- pattern matching glitch, patch from upstream
9014c4
9014c4
* Wed Feb 16 2011 Roman Rakus <rrakus@redhat.com> - 4.2.0-1
9014c4
- Release bash-4.2
9014c4
9014c4
* Mon Feb 14 2011 Roman Rakus <rrakus@redhat.com> - 4.2.0-0.2.rc2
9014c4
- Enable system-wide .bash_logout for login shells
9014c4
9014c4
* Wed Feb 09 2011 Roman Rakus <rrakus@redhat.com> - 4.2.0-0.1.rc2
9014c4
- Update to bash-4.2-rc2
9014c4
9014c4
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.1.9-6
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
9014c4
9014c4
* Thu Jan 06 2011 Roman Rakus <rrakus@redhat.com> - 4.1.9-5
9014c4
- Builtins like echo and printf won't report errors
9014c4
  when output does not succeed due to EPIPE
9014c4
9014c4
* Thu Dec 16 2010 Roman Rakus <rrakus@redhat.com> - 4.1.9-4
9014c4
- Drop doc/examples/loadables
9014c4
9014c4
* Wed Dec 01 2010 Roman Rakus <rrakus@redhat.com> - 4.1.9-3
9014c4
- don't segfault when trying to bind int variable to array
9014c4
  with bad array subsrcipt
9014c4
  Resolves: #618289
9014c4
9014c4
* Fri Oct 15 2010 Ville Skyttä <ville.skytta@iki.fi> - 4.1.9-2
9014c4
- Move doc dir ownership to main package.
9014c4
- Preserve doc timestamps.
9014c4
- Add --without tests option for building without running the test suite.
9014c4
9014c4
* Thu Oct 14 2010 Roman Rakus <rrakus@redhat.com> - 4.1.9-1
9014c4
- Patch level 9
9014c4
9014c4
* Mon Aug 02 2010 Roman Rakus <rrakus@redhat.com> - 4.1.7-4
9014c4
- Use better nomenclature for --rpm-requires bash option (#557134)
9014c4
9014c4
* Tue Jun 22 2010 Roman Rakus <rrakus@redhat.com> - 4.1.7-3
9014c4
- Added missing patch
9014c4
9014c4
* Tue Jun 22 2010 Roman Rakus <rrakus@redhat.com> - 4.1.7-2
9014c4
- Do the same CFLAGS in generated Makefile in examples
9014c4
9014c4
* Fri May 21 2010 Roman Rakus <rrakus@redhat.com> - 4.1.7-1
9014c4
- Patch level 7
9014c4
9014c4
* Mon Apr 12 2010 Roman Rakus <rrakus@redhat.com> - 4.1.5-1
9014c4
- Patch level 5
9014c4
- There's no more need for Requires(post) ncurses-libs
9014c4
9014c4
* Tue Mar 30 2010 Roman Rakus <rrakus@redhat.com> - 4.1.2-4
9014c4
- Corrected requires patch (#563301)
9014c4
9014c4
* Fri Jan 22 2010 rrakus@redhat.com 4.1.2-3
9014c4
- Don't use cond-rmatch patch
9014c4
- Use manso patch
9014c4
- Include COPYING in base bash rpm
9014c4
9014c4
* Fri Jan 22 2010 rrakus@redhat.com 4.1.2-2
9014c4
- Correct patchlevel 2
9014c4
9014c4
* Fri Jan 22 2010 Roman Rakus rrakus@redhat.com 4.1.2-1
9014c4
- Patchlevel 4.2
9014c4
- Removed old patch
9014c4
- Returned back manso patch
9014c4
9014c4
* Fri Jan 08 2010 Roman Rakus rrakus@redhat.com 4.1.0-2
9014c4
- Include COPYING in doc dir
9014c4
9014c4
* Mon Jan 04 2010 Roman Rakus <rrakus@redhat.com> - 4.1.0-1
9014c4
- Upstream 4.1
9014c4
9014c4
* Sun Dec 27 2009 Roman Rakus <rrakus@redhat.com> - 4.1-0.2.rc1
9014c4
- Fixed patch for fuzz=0
9014c4
9014c4
* Sun Dec 27 2009 Roman Rakus <rrakus@redhat.com> - 4.1-0.1.rc1
9014c4
- Upstream 4.1.rc1
9014c4
9014c4
* Fri Dec 11 2009 Roman Rakus <rrakus@redhat.com> - 4.0.35-2
9014c4
- Don't segfault when TERM=eterm* and EMACS is unset (#530911)
9014c4
9014c4
* Thu Oct 29 2009 Roman Rakus <rrakus@redhat.com> - 4.0.35-1
9014c4
- Patch level 35
9014c4
9014c4
* Mon Oct 05 2009 Roman Rakus <rrakus@redhat.com> - 4.0.33-2
9014c4
- Make symlink from bashbug-suffix to bashbug man pages
9014c4
9014c4
* Wed Sep 16 2009 Roman Rakus <rrakus@redhat.com> - 4.0.33-1
9014c4
- Patch level 33
9014c4
- spec file cleanup
9014c4
9014c4
* Fri Sep 04 2009 Roman Rakus <rrakus@redhat.com> - 4.0.28-3
9014c4
- check if interp section is NOBITS
9014c4
- define Recycles pids
9014c4
9014c4
* Wed Aug 26 2009 Roman Rakus <rrakus@redhat.com> - 4.0.28-2
9014c4
- alloc memory for key in creation associative array (#518644)
9014c4
9014c4
* Tue Jul 28 2009 Roman Rakus <rrakus@redhat.com> - 4.0.28-1
9014c4
- Upstream patch level 28
9014c4
9014c4
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.24-2
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
9014c4
9014c4
* Tue May 19 2009 Roman Rakus <rrakus@redhat.com> - 4.0.24-1
9014c4
- Upstream patch level 24
9014c4
9014c4
* Wed Apr 22 2009 Roman Rakus <rrakus@redhat.com> - 4.0.16-1
9014c4
- better to use patch level in version tag like vim do
9014c4
9014c4
* Tue Apr 21 2009 Roman Rakus <rrakus@redhat.com> - 4.0-7.16
9014c4
- Use patch level in Release tag
9014c4
9014c4
* Wed Apr 08 2009 Roman Rakus <rrakus@redhat.com> - 4.0-6
9014c4
- Official upstream patch level 16
9014c4
9014c4
* Mon Mar 30 2009 Roman Rakus <rrakus@redhat.com> - 4.0-5
9014c4
- Split documentation, use bash-doc package
9014c4
  Resolves: #492447
9014c4
9014c4
* Sat Mar 21 2009 Lubomir Rintel <lkundrak@v3.sk> - 4.0-4
9014c4
- Add full URLs to upstream patches
9014c4
- Don't uselessly use %%version macro
9014c4
9014c4
* Wed Mar 11 2009 Roman Rakus <rrakus@redhat.com> - 4.0-3
9014c4
- Official upstream patch level 10
9014c4
9014c4
* Wed Feb 25 2009 Roman Rakus <rrakus@redhat.com> - 4.0-2
9014c4
- Save parser state in pcomplete.
9014c4
  Resolves: #487257
9014c4
9014c4
* Tue Feb 24 2009 Roman Rakus <rrakus@redhat.com> - 4.0-1
9014c4
- Release of bash-4.0
9014c4
9014c4
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0-0.5.rc1
9014c4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
9014c4
9014c4
* Wed Feb 11 2009 Roman Rakus <rrakus@redhat.com> - 4.0-0.4.rc1
9014c4
- Fix handling pipelines with `set -e'
9014c4
  Resolves: #483385
9014c4
9014c4
* Thu Jan 29 2009 Roman Rakus <rrakus@redhat.com> - 4.0-0.3.rc1
9014c4
- No more debug output
9014c4
  Resolves: #483002
9014c4
9014c4
* Wed Jan 28 2009 Jesse Keating <jkeating@redhat.com> - 4.0-0.2.rc1
9014c4
- Replace post code with lua to be able to not have external deps
9014c4
9014c4
* Mon Jan 26 2009 Roman Rakus <rrakus@redhat.com> - 4.0-0.1.rc1
9014c4
- Fixed release tag
9014c4
9014c4
* Wed Jan 21 2009 Roman Rakus <rrakus@redhat.com> - 4.0-rc1.1
9014c4
- Bump to upstream bash-4.0-rc1
9014c4
9014c4
* Mon Dec 15 2008 Roman Rakus <rrakus@redhat.com> - 3.2-33
9014c4
- fc builtin fix
9014c4
  Resolves: #438841
9014c4
9014c4
* Mon Dec 15 2008 Roman Rakus <rrakus@redhat.com> - 3.2-32
9014c4
- Enabling auditing
9014c4
  Resolves: #476216
9014c4
9014c4
* Tue Dec 09 2008 Roman Rakus <rrakus@redhat.com> - 3.2-31
9014c4
- Patchlevel 48
9014c4
9014c4
* Thu Dec 04 2008 Roman Rakus <rrakus@redhat.com> - 3.2-30
9014c4
- Added check for `command_not_found_handler' shell function
9014c4
  Resolves: #432579
9014c4
9014c4
* Tue Oct 28 2008 Jesse Keating <jkeating@redhat.com> - 3.2-29
9014c4
- Add the Requires(post) back for ncurses-libs, so that rpm knows
9014c4
  where to break the loop.  The post actually does require the curses
9014c4
  libs for the sh calls.  Could consider doing this in LUA and not have
9014c4
  any external deps.
9014c4
9014c4
* Thu Oct 23 2008 Roman Rakus <rrakus@redhat.com> - 3.2-28
9014c4
- Removing Requires for mktemp and ncurses, which cause
9014c4
  dependencing loop
9014c4
- Enabling #define SSH_SOURCE_BASHRC, because ssh changed.
9014c4
  Resolves: #458839
9014c4
- Catch signals right after calling execve()
9014c4
  Resolves: #455548
9014c4
9014c4
* Thu Jul 17 2008 Roman Rakus <rrakus@redhat.com> - 3.2-27
9014c4
- Changes in man page - #442018, #445692, #446625, #453409
9014c4
- Changed patches to satisfy fuzz=0
9014c4
9014c4
* Thu Jun  5 2008 Roman Rakus <rrakus@redhat.com> - 3.2-26
9014c4
- Patchlevel 39
9014c4
9014c4
* Tue Jun  3 2008 Roman Rakus <rrakus@redhat.com> - 3.2-25
9014c4
- #449512 - reverting back last change - don't use glob library
9014c4
9014c4
* Wed May 28 2008 Roman Rakus <rrakus@redhat.com> - 3.2-24
9014c4
- #217359 - use posix glob library
9014c4
9014c4
* Thu May 22 2008 Roman Rakus <rrakus@redhat.com> - 3.2-23
9014c4
- #446420 - COMP_WORDBREAKS settings now works
9014c4
9014c4
* Fri Feb 29 2008 Tomas Janousek <tjanouse@redhat.com> - 3.2-22
9014c4
- drop /usr/bin/clear from /etc/skel/.bash_logout as suggested by #429406
9014c4
9014c4
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 3.2-21
9014c4
- Autorebuild for GCC 4.3
9014c4
9014c4
* Mon Jan 14 2008 Tomas Janousek <tjanouse@redhat.com> - 3.2-20
9014c4
- Added bash32-026 upstream official patch
9014c4
- Added bash32-027 upstream official patch (#249987)
9014c4
- Added bash32-028 upstream official patch
9014c4
- Added bash32-029 upstream official patch (#286861)
9014c4
- Added bash32-030 upstream official patch
9014c4
- Added bash32-031 upstream official patch (#358231)
9014c4
- Added bash32-032 upstream official patch
9014c4
- Added bash32-033 upstream official patch
9014c4
- Fix insert command repeating in vi mode (#190350)
9014c4
9014c4
* Tue Nov 06 2007 Tomas Janousek <tjanouse@redhat.com> - 3.2-19
9014c4
- fix cursor position when prompt has one invisible character (#358231)
9014c4
- dropped examples/loadables/ from docs, since it wasn't possible to build them
9014c4
  anyway (#174380)
9014c4
- fix #286861: Wrong input confuses bash's arithmetic unit permanently
9014c4
- fix #344411: $RANDOM stays the same when job executed in the background
9014c4
9014c4
* Fri Aug 31 2007 Pete Graner <pgraner@redhat.com> - 3.2-18
9014c4
- Added bash32-021 upstream official patch
9014c4
- Added bash32-025 upstream official patch
9014c4
- Added bash32-024 upstream official patch
9014c4
- Added bash32-023 upstream official patch
9014c4
- Added bash32-022 upstream official patch
9014c4
9014c4
* Wed Aug 29 2007 Pete Graner <pgraner@redhat.com> - 3.2-17
9014c4
- Added bash32-018 upstream official patch
9014c4
- Added bash32-020 upstream official patch
9014c4
- Added bash32-019 upstream official patch
9014c4
9014c4
* Thu Aug 23 2007 Pete Graner <pgraner@redhat.com> - 3.2-16
9014c4
- Rebuild
9014c4
9014c4
* Mon Aug 20 2007 Pete Graner <pgraner@redhat.com> - 3.2-15
9014c4
- Update to the Improve bash $RANDOM pseudo RNG (bug #234906) 
9014c4
  now works with subshells and make $RANDOM on demand thus reducing the 
9014c4
  amount of AVCs thrown.
9014c4
9014c4
* Thu Aug 16 2007 Pete Graner <pgraner@redhat.com> - 3.2-15
9014c4
- Changed spec file License to GPLv2+
9014c4
9014c4
* Wed Aug 15 2007 Pete Graner <pgraner@redhat.com> - 3.2-13
9014c4
- Improve bash $RANDOM pseudo RNG (bug #234906)
9014c4
9014c4
* Fri Jul 20 2007 Tim Waugh <twaugh@redhat.com> 3.2-12
9014c4
- Quote environment variables in the post scriptlet to prevent upgrade
9014c4
  failures (bug #249005).
9014c4
9014c4
* Thu Jul  5 2007 Tim Waugh <twaugh@redhat.com> 3.2-11
9014c4
- Patchlevel 17 (bug #241647).
9014c4
9014c4
* Wed Jul  4 2007 Tim Waugh <twaugh@redhat.com> 3.2-10
9014c4
- Clarification in the ulimit man page (bug #220657).
9014c4
9014c4
* Mon Feb 12 2007 Tim Waugh <twaugh@redhat.com> 3.2-9
9014c4
- Rebuild to link with libtinfo instead of libncurses.
9014c4
9014c4
* Wed Feb  7 2007 Tim Waugh <twaugh@redhat.com> 3.2-8
9014c4
- Avoid %%makeinstall (bug #225609).
9014c4
9014c4
* Tue Feb  6 2007 Tim Waugh <twaugh@redhat.com> 3.2-7
9014c4
- Reinstated this change:
9014c4
  - Post requires ncurses (bug #224567).
9014c4
- Reverted this change:
9014c4
  - Added triggers for install-info (bug #225609).
9014c4
9014c4
* Tue Feb  6 2007 Tim Waugh <twaugh@redhat.com> 3.2-6
9014c4
- Reverted this change:
9014c4
  - Post requires ncurses (bug #224567).
9014c4
9014c4
* Mon Feb  5 2007 Tim Waugh <twaugh@redhat.com> 3.2-5
9014c4
- Added triggers for install-info (bug #225609).
9014c4
- Use full path to utilities in scriptlets (bug #225609).
9014c4
- Fix missing sh-bangs in example scripts (bug #225609).
9014c4
- Post requires ncurses (bug #224567).
9014c4
- Removed Prefix tag (bug #225609).
9014c4
- Fixed BuildRoot tag (bug #225609).
9014c4
- Removed trailing full-stop from summary (bug #225609).
9014c4
- Spec file is now UTF-8 (bug #225609).
9014c4
- Removed obsolete Obsoletes (bug #225609).
9014c4
- Moved 'make check' to new 'check' section (bug #225609).
9014c4
- Removed uses of RPM_SOURCE_DIR (bug #225609).
9014c4
- Fixed macros in changelog (bug #225609).
9014c4
- Changed tabs to spaces (bug #225609).
9014c4
9014c4
* Tue Jan 23 2007 Tim Waugh <twaugh@redhat.com> 3.2-4
9014c4
- Slightly better .bash_logout (bug #223960).
9014c4
9014c4
* Fri Jan 19 2007 Tim Waugh <twaugh@redhat.com> 3.2-3
9014c4
- Back out rmatch change introduced in 3.2 (bug #220087).
9014c4
9014c4
* Tue Jan 16 2007 Miroslav Lichvar <mlichvar@redhat.com> 3.2-2
9014c4
- Link with ncurses.
9014c4
9014c4
* Fri Dec 15 2006 Tim Waugh <twaugh@redhat.com> 3.2-1
9014c4
- Build requires autoconf and gettext.
9014c4
- 3.2.  No longer need aq, login, ulimit, sighandler or read-memleak
9014c4
  patches.
9014c4
9014c4
* Wed Jul 12 2006 Tim Waugh <twaugh@redhat.com> 3.1-17
9014c4
- Fixed 'tags out of date' problem with 'info bash' (bug #150118).
9014c4
9014c4
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 3.1-16.1
9014c4
- rebuild
9014c4
9014c4
* Wed Jun 28 2006 Tim Waugh <twaugh@redhat.com> 3.1-16
9014c4
- Removed 'unset USERNAME' from default .bash_profile (bug #196735).
9014c4
9014c4
* Thu Jun 15 2006 Tim Waugh <twaugh@redhat.com> 3.1-15
9014c4
- Updated requires patch to the ALT version.
9014c4
9014c4
* Wed May 31 2006 Tim Waugh <twaugh@redhat.com> 3.1-14
9014c4
- More sighandler fixes, this time hypothetical.
9014c4
9014c4
* Thu May 25 2006 Tim Waugh <twaugh@redhat.com> 3.1-13
9014c4
- Another fix for the sighandler patch (bug #192297).
9014c4
9014c4
* Thu Apr 13 2006 Tim Waugh <twaugh@redhat.com> 3.1-12
9014c4
- Patchlevel 17.
9014c4
9014c4
* Tue Apr  4 2006 Tim Waugh <twaugh@redhat.com> 3.1-11
9014c4
- Patchlevel 16.
9014c4
9014c4
* Thu Mar 23 2006 Tim Waugh <twaugh@redhat.com> 3.1-10
9014c4
- Patchlevel 14.
9014c4
9014c4
* Thu Mar  2 2006 Tim Waugh <twaugh@redhat.com> 3.1-9
9014c4
- Fixed duplicate documentation of ulimit '-x' option introduced by
9014c4
  ulimit patch (bug #183596).
9014c4
9014c4
* Tue Feb 21 2006 Tim Waugh <twaugh@redhat.com> 3.1-8
9014c4
- Patchlevel 10.
9014c4
9014c4
* Thu Feb 16 2006 Tim Waugh <twaugh@redhat.com> 3.1-7
9014c4
- Patchlevel 8.
9014c4
9014c4
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 3.1-6.2
9014c4
- bump again for double-long bug on ppc(64)
9014c4
9014c4
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 3.1-6.1
9014c4
- rebuilt for new gcc4.1 snapshot and glibc changes
9014c4
9014c4
* Sun Feb  5 2006 Tim Waugh <twaugh@redhat.com> 3.1-6
9014c4
- Patchlevel 7.
9014c4
9014c4
* Wed Jan 18 2006 Tim Waugh <twaugh@redhat.com>
9014c4
- Removed inaccuracies from %%description (bug #178189).
9014c4
9014c4
* Fri Jan 13 2006 Tim Waugh <twaugh@redhat.com> 3.1-5
9014c4
- Fix 'exec -l /bin/bash'.
9014c4
9014c4
* Thu Jan 12 2006 Tim Waugh <twaugh@redhat.com> 3.1-4
9014c4
- Fix sighandler patch bug (bug #177545).
9014c4
9014c4
* Tue Jan 10 2006 Tim Waugh <twaugh@redhat.com> 3.1-3
9014c4
- Patchlevel 5.
9014c4
9014c4
* Fri Jan  6 2006 Tim Waugh <twaugh@redhat.com> 3.1-2
9014c4
- No longer need loadables, mbinc or shellfunc patches.
9014c4
- Use literal single-quote in bash man page where appropriate (bug #177051).
9014c4
9014c4
* Mon Jan  2 2006 Tim Waugh <twaugh@redhat.com> 3.1-1
9014c4
- 3.1.
9014c4
- No longer need ia64, utf8, multibyteifs, jobs, sigpipe,
9014c4
  read-e-segfault, manpage, crash, pwd, afs, subshell patches.
9014c4
- Remove wrap patch for now.
9014c4
- Use upstream patch to fix arrays.
9014c4
9014c4
* Thu Dec 15 2005 Tim Waugh <twaugh@redhat.com> 3.0-41
9014c4
- Missed another loop for improved sighandler patch (bug #169231).
9014c4
9014c4
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
9014c4
- rebuilt
9014c4
9014c4
* Thu Dec  8 2005 Tim Waugh <twaugh@redhat.com> 3.0-40
9014c4
- Fix read memleak when reading from non-blocking fd (bug #173283).
9014c4
- Missed another loop for improved sighandler patch (bug #169231).
9014c4
9014c4
* Wed Dec  7 2005 Tim Waugh <twaugh@redhat.com> 3.0-39
9014c4
- Missed a loop for improved sighandler patch (bug #169231).
9014c4
9014c4
* Tue Dec  6 2005 Tim Waugh <twaugh@redhat.com> 3.0-38
9014c4
- Test out improved sighandler patch (bug #169231).
9014c4
9014c4
* Tue Nov 22 2005 Tim Waugh <twaugh@redhat.com> 3.0-37
9014c4
- Applied patch from upstream to fix parsing problem (bug #146638).
9014c4
9014c4
* Wed Nov  9 2005 Tim Waugh <twaugh@redhat.com> 3.0-36
9014c4
- Added Url: tag (bug #172770).
9014c4
- Do not explicitly gzip info pages (bug #172770).
9014c4
- Fix permissions on bashbug (bug #172770).
9014c4
9014c4
* Thu Oct  6 2005 Tim Waugh <twaugh@redhat.com> 3.0-35
9014c4
- Fixed memory allocation bug in multibyteifs patch (bug #169996).
9014c4
9014c4
* Fri Sep 23 2005 Tim Waugh <twaugh@redhat.com>
9014c4
- Use 'volatile' in sighandler patch.
9014c4
9014c4
* Wed Sep 21 2005 Tim Waugh <twaugh@redhat.com> 3.0-34
9014c4
- Avoid writing history files during signal handling (bug #163235).
9014c4
9014c4
* Mon Aug  8 2005 Tim Waugh <twaugh@redhat.com> 3.0-33
9014c4
- Fixed multibyte IFS handling for invalid input (bug #165243).
9014c4
9014c4
* Mon Aug  8 2005 Tim Waugh <twaugh@redhat.com> 3.0-32
9014c4
- Fixed 'LC_ALL=C export LC_ALL' behaviour (bug #165249).
9014c4
9014c4
* Thu Jun 23 2005 Tim Waugh <twaugh@redhat.com>
9014c4
- Added ulimit support for RLIMIT_NICE and RLIMIT_RTPRIO (bug #157049).
9014c4
9014c4
* Wed Jun  8 2005 Tim Waugh <twaugh@redhat.com>
9014c4
- Move a comment in dot-bashrc (bug #159522).
9014c4
9014c4
* Tue May 10 2005 Tim Waugh <twaugh@redhat.com> 3.0-31
9014c4
- Small fix for multibyteifs patch to prevent segfault (bug #157260).
9014c4
9014c4
* Wed Apr 20 2005 Tim Waugh <twaugh@redhat.com>
9014c4
- Fixed AFS support for output redirection, so that the correct errors
9014c4
  are reported for other filesystems (bug #155373).
9014c4
9014c4
* Tue Mar 15 2005 Tim Waugh <twaugh@redhat.com> 3.0-30
9014c4
- Fix PS1 expansion crash when PWD is unset (bg #151116).
9014c4
9014c4
* Wed Mar  2 2005 Tim Waugh <twaugh@redhat.com> 3.0-29
9014c4
- Rebuild for new GCC.
9014c4
9014c4
* Thu Feb 17 2005 Tim Waugh <twaugh@redhat.com> 3.0-28
9014c4
- Define _GNU_SOURCE in CPPFLAGS (bug #147573).
9014c4
9014c4
* Mon Feb 14 2005 Tim Waugh <twaugh@redhat.com>
9014c4
- Reverted this change:
9014c4
  - Added code to /etc/skel/.bash_logout to support the gpm selection buffer
9014c4
    invalidation on virtual terminals (bug #115493).
9014c4
9014c4
* Mon Jan 31 2005 Tim Waugh <twaugh@redhat.com> 3.0-27
9014c4
- Applied upstream patch to fix a potential NULL dereference.
9014c4
9014c4
* Fri Jan 28 2005 Tim Waugh <twaugh@redhat.com> 3.0-26
9014c4
- Fixed job handling bug (bug #145124).
9014c4
9014c4
* Sun Dec  5 2004 Tim Waugh <twaugh@redhat.com> 3.0-25
9014c4
- Applied patch from Florian La Roche to fix CPPFLAGS quoting in spec file.
9014c4
9014c4
* Tue Nov 30 2004 Tim Waugh <twaugh@redhat.com>
9014c4
- Fixed typo in man page (spotted on bug-bash).
9014c4
9014c4
* Thu Nov 18 2004 Tim Waugh <twaugh@redhat.com> 3.0-24
9014c4
- Use upstream patch to fix bug #139575 and bug #139306.
9014c4
9014c4
* Thu Nov 18 2004 Tim Waugh <twaugh@redhat.com> 3.0-23
9014c4
- Fixed last patch to avoid regressions (bug #139575).
9014c4
9014c4
* Mon Nov 15 2004 Tim Waugh <twaugh@redhat.com> 3.0-22
9014c4
- Fixed prompt wrapping code to cope with zero-length prompts (bug #139306).
9014c4
9014c4
* Thu Nov 11 2004 Tim Waugh <twaugh@redhat.com> 3.0-21
9014c4
- Added code to /etc/skel/.bash_logout to support the gpm selection buffer
9014c4
  invalidation on virtual terminals (bug #115493).
9014c4
9014c4
* Wed Nov 10 2004 Tim Waugh <twaugh@redhat.com> 3.0-20
9014c4
- Patchlevel 16.
9014c4
9014c4
* Mon Nov  1 2004 Tim Waugh <twaugh@redhat.com>
9014c4
- Patchlevel 15.
9014c4
9014c4
* Tue Oct 19 2004 Tim Waugh <twaugh@redhat.com> 3.0-17
9014c4
- Patchlevel 14.
9014c4
- No longer need brace patch.
9014c4
9014c4
* Wed Sep 29 2004 Tim Waugh <twaugh@redhat.com> 3.0-16
9014c4
- Apply patch from Chet Ramey to fix brace expansion.
9014c4
9014c4
* Fri Sep 24 2004 Tim Waugh <twaugh@redhat.com> 3.0-15
9014c4
- Minor fix for job handling.
9014c4
9014c4
* Mon Sep 13 2004 Tim Waugh <twaugh@redhat.com>
9014c4
- Add bashbug back in (with suffix).
9014c4
9014c4
* Mon Sep 13 2004 Tim Waugh <twaugh@redhat.com>
9014c4
- Remove bash2.
9014c4
9014c4
* Fri Sep 10 2004 Tim Waugh <twaugh@redhat.com> 3.0-14
9014c4
- Don't run tests that read from /dev/tty.
9014c4
- Patchlevel 13.
9014c4
9014c4
* Wed Sep  8 2004 Tim Waugh <twaugh@redhat.com> 3.0-13
9014c4
- Check for EINVAL from waitpid() and avoid WCONTINUED in that case.
9014c4
- Fixed jobs4 test.
9014c4
- Applied experimental upstream patch for trap compatibility.
9014c4
- Re-make documentation to reflect source changes.
9014c4
9014c4
* Tue Sep  7 2004 Tim Waugh <twaugh@redhat.com> 3.0-12
9014c4
- Remove 'bashbug' from the documentation, because we don't ship it due
9014c4
  to biarch concerns.
9014c4
9014c4
* Thu Sep  2 2004 Tim Waugh <twaugh@redhat.com> 3.0-11
9014c4
- Fixed multibyte parameter length expansion.
9014c4
9014c4
* Tue Aug 31 2004 Tim Waugh <twaugh@redhat.com> 3.0-9
9014c4
- Fix ulimits patch from Ulrich Drepper (bug #129800).
9014c4
9014c4
* Fri Aug 27 2004 Tim Waugh <twaugh@redhat.com> 3.0-8
9014c4
- Provide support for new limits (bug #129800).
9014c4
9014c4
* Thu Aug 26 2004 Tim Waugh <twaugh@redhat.com> 3.0-7
9014c4
- Use upstream patch for last fix.
9014c4
9014c4
* Thu Aug 26 2004 Tim Waugh <twaugh@redhat.com> 3.0-6
9014c4
- Fixed history saved-line handling.
9014c4
9014c4
* Tue Aug 24 2004 Tim Waugh <twaugh@redhat.com>
9014c4
- Fixed multibyte IFS handling.
9014c4
9014c4
* Wed Aug 18 2004 Tim Waugh <twaugh@redhat.com>
9014c4
- Applied bug-bash list patch to fix pipefail.
9014c4
9014c4
* Tue Aug 17 2004 Tim Waugh <twaugh@redhat.com> 3.0-5
9014c4
- Make trap usage string show POSIX usage (bug #128938).
9014c4
- Updated ${x[@]:1} expansion fix from bug-bash list.
9014c4
- Updated patch to fix unset array crash (from bug-bash list).
9014c4
9014c4
* Sun Aug 15 2004 Tim Waugh <twaugh@redhat.com>
9014c4
- Fix ${x[@]:1} expansion (William Park, bug-bash list).
9014c4
9014c4
* Tue Aug 10 2004 Tim Waugh <twaugh@redhat.com> 3.0-4
9014c4
- Fix vi-change-char behaviour at EOL (bug #129526).
9014c4
9014c4
* Mon Aug  9 2004 Tim Waugh <twaugh@redhat.com> 3.0-3
9014c4
- Applied bug-bash list patch to fix multiline PS1 prompting (bug #129382).
9014c4
9014c4
* Wed Aug  4 2004 Tim Waugh <twaugh@redhat.com> 3.0-2
9014c4
- Fixed brace expansion (bug #129128).
9014c4
- Build with AFS support again, since bug #86514 seems fixed upstream
9014c4
  (bug #129094).
9014c4
9014c4
* Tue Aug  3 2004 Tim Waugh <twaugh@redhat.com>
9014c4
- Fixed crash when unsetting an unset array (from bug-bash list).
9014c4
9014c4
* Wed Jul 28 2004 Tim Waugh <twaugh@redhat.com> 3.0-1
9014c4
- 3.0.
9014c4
9014c4
* Wed Jul 21 2004 Tim Waugh <twaugh@redhat.com> 2.05b-44
9014c4
- Don't report SIGPIPE errors (bug #128274).
9014c4
9014c4
* Thu Jul  8 2004 Tim Waugh <twaugh@redhat.com> 2.05b-43
9014c4
- Fixed command substitution problem (bug #127242).
9014c4
9014c4
* Mon Jun 28 2004 Tim Waugh <twaugh@redhat.com> 2.05b-42
9014c4
- Fixed multibyte variable substitution patch (bug #126399).
9014c4
9014c4
* Thu Jun 17 2004 Karsten Hopp <karsten@redhat.de> 2.05b-41 
9014c4
- remove bashbug script/docs to avoid conflicting files in
9014c4
  biarch installs.
9014c4
9014c4
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
9014c4
- rebuilt
9014c4
9014c4
* Fri Jun  4 2004 Tim Waugh <twaugh@redhat.com>
9014c4
- Build requires bison (bug #125307).
9014c4
9014c4
* Wed Jun  2 2004 Tim Waugh <twaugh@redhat.com> 2.05b-39
9014c4
- Build requires libtermcap-devel (bug #125068).
9014c4
9014c4
* Wed May 19 2004 Tim Waugh <twaugh@redhat.com>
9014c4
- Don't ship empty %%{_libdir}/bash (bug #123556).
9014c4
9014c4
* Thu Mar 11 2004 Tim Waugh <twaugh@redhat.com> 2.05b-38
9014c4
- Apply patch from Nalin Dahyabhai fixing an overread.
9014c4
9014c4
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
9014c4
- rebuilt
9014c4
9014c4
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
9014c4
- rebuilt
9014c4
9014c4
* Thu Jan 22 2004 Tim Waugh <twaugh@redhat.com> 2.05b-36
9014c4
- Fix the bug causing bindings to need reparsing .inputrc (bug #114101).
9014c4
9014c4
* Mon Jan  5 2004 Tim Waugh <twaugh@redhat.com> 2.05b-35
9014c4
- Fix parameter expansion in multibyte locales (bug #112657).
9014c4
- Run 'make check'.
9014c4
9014c4
* Tue Dec  9 2003 Tim Waugh <twaugh@redhat.com> 2.05b-34
9014c4
- Build requires texinfo (bug #111171).
9014c4
9014c4
* Fri Nov 28 2003 Tim Waugh <twaugh@redhat.com> 2.05b-33
9014c4
- Speed up UTF-8 command-line redrawing in the common case (bug #102353,
9014c4
  bug #110777).
9014c4
9014c4
* Thu Nov  6 2003 Tim Waugh <twaugh@redhat.com> 2.05b-32
9014c4
- Apply upstream patches (bug #109269 among others).
9014c4
9014c4
* Fri Oct 31 2003 Tim Waugh <twaugh@redhat.com>
9014c4
- Fix bash.info (bug #83776).
9014c4
9014c4
* Tue Oct 28 2003 Tim Waugh <twaugh@redhat.com> 2.05b-31
9014c4
- Add bash205b-007 patch to fix bug #106876.
9014c4
9014c4
* Thu Oct 23 2003 Tim Waugh <twaugh@redhat.com> 2.05b-30
9014c4
- Rebuilt.
9014c4
9014c4
* Thu Sep 18 2003 Tim Waugh <twaugh@redhat.com> 2.05b-29.1
9014c4
- Rebuilt.
9014c4
9014c4
* Thu Sep 18 2003 Tim Waugh <twaugh@redhat.com> 2.05b-29
9014c4
- Avoid crashing on multibyte input when locale is set incorrectly
9014c4
  (bug #74266).
9014c4
9014c4
* Fri Sep  5 2003 Tim Waugh <twaugh@redhat.com> 2.05b-28.1
9014c4
- Rebuilt.
9014c4
9014c4
* Fri Sep  5 2003 Tim Waugh <twaugh@redhat.com> 2.05b-28
9014c4
- Avoid built-in malloc implementation (bug #103768).
9014c4
9014c4
* Wed Sep  3 2003 Tim Waugh <twaugh@redhat.com> 2.05b-27.1
9014c4
- Rebuilt.
9014c4
9014c4
* Wed Sep  3 2003 Tim Waugh <twaugh@redhat.com> 2.05b-27
9014c4
- LFS support (bug #103627).
9014c4
9014c4
* Thu Jul 31 2003 Tim Waugh <twaugh@redhat.com> 2.05b-26.1
9014c4
- Rebuilt.
9014c4
9014c4
* Thu Jul 31 2003 Tim Waugh <twaugh@redhat.com> 2.05b-26
9014c4
- Merge bash-doc into main package (bug #100632).
9014c4
9014c4
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> 2.05b-25
9014c4
- rebuilt
9014c4
9014c4
* Mon May 12 2003 Tim Waugh <twaugh@redhat.com> 2.05b-24
9014c4
- Fix completion display when multibyte or control characters are to be
9014c4
  shown (bug #90201).
9014c4
9014c4
* Wed Mar 26 2003 Tim Waugh <twaugh@redhat.com> 2.05b-23
9014c4
- Fix a warning message (bug #79629).
9014c4
- Don't remove generated source during build, for debuginfo package.
9014c4
- Don't build with AFS support (bug #86514).
9014c4
9014c4
* Tue Mar 25 2003 Tim Waugh <twaugh@redhat.com> 2.05b-22
9014c4
- Really fix bug #78455.
9014c4
9014c4
* Tue Mar 11 2003 Tim Waugh <twaugh@redhat.com> 2.05b-21
9014c4
- Don't explicitly strip binaries (bug #85995).
9014c4
9014c4
* Tue Feb 11 2003 Tim Waugh <twaugh@redhat.com> 2.05b-20
9014c4
- Really fix bug #83331 for good.
9014c4
9014c4
* Mon Feb 10 2003 Tim Waugh <twaugh@redhat.com> 2.05b-19
9014c4
- Fix builtins.1.
9014c4
9014c4
* Fri Feb  7 2003 Tim Waugh <twaugh@redhat.com> 2.05b-18
9014c4
- Actually apply the patch (bug #83331).
9014c4
9014c4
* Wed Feb  5 2003 Tim Waugh <twaugh@redhat.com> 2.05b-17
9014c4
- Fix history/UTF-8 bug (bug #83331).
9014c4
9014c4
* Sun Jan 26 2003 Tim Waugh <twaugh@redhat.com> 2.05b-16
9014c4
- More tab-completion fixing (bug #72512).
9014c4
9014c4
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 2.05b-15
9014c4
- rebuilt
9014c4
9014c4
* Wed Jan 15 2003 Tim Waugh <twaugh@redhat.com> 2.05b-14
9014c4
- Force pgrp synchronization (bug #81653).
9014c4
9014c4
* Thu Dec 05 2002 Elliot Lee <sopwith@redhat.com> 2.05b-13
9014c4
- (patch26) Don't call 'size' in makefile. Pointless, and interferes with 
9014c4
  cross compiles.
9014c4
9014c4
* Tue Dec  3 2002 Tim Waugh <twaugh@redhat.com> 2.05b-12
9014c4
- Prevent prompt overwriting output (bug #74383).
9014c4
9014c4
* Wed Nov 27 2002 Tim Waugh <twaugh@redhat.com> 2.05b-11
9014c4
- Fix '-rbash' (bug #78455).
9014c4
9014c4
* Thu Nov 21 2002 Tim Waugh <twaugh@redhat.com> 2.05b-10
9014c4
- Rebuild.
9014c4
9014c4
* Wed Nov 20 2002 Elliot Lee <sopwith@redhat.com>
9014c4
- Use the configure macro instead of calling ./configure directly
9014c4
9014c4
* Wed Nov 13 2002 Tim Waugh <twaugh@redhat.com>
9014c4
- Revert previous change.
9014c4
9014c4
* Wed Nov 13 2002 Tim Waugh <twaugh@redhat.com> 2.05b-8
9014c4
- PreReq libtermcap.
9014c4
9014c4
* Fri Oct 18 2002 Tim Waugh <twaugh@redhat.com> 2.05b-7
9014c4
- Add readline-init patch (bug #74925).
9014c4
9014c4
* Wed Oct 16 2002 Tim Waugh <twaugh@redhat.com> 2.05b-6
9014c4
- Add the (4) patches from ftp.gnu.org (bug #75888, bug #72512).
9014c4
- Ship '.' man page, which doesn't get picked up by glob.
9014c4
- Don't install files not shipped when building.
9014c4
- Locale shell variables fix (bug #74701).
9014c4
9014c4
* Fri Aug 23 2002 Tim Powers <timp@redhat.com> 2.05b-5
9014c4
- re-bzip the docs, something was corrupted
9014c4
9014c4
* Thu Aug 22 2002 Tim Waugh <twaugh@redhat.com> 2.05b-4
9014c4
- Fix history substitution modifiers in UTF-8 (bug #70294, bug #71186).
9014c4
- Fix ADVANCE_CHAR at end of string (bug #70819).
9014c4
- docs: CWRU/POSIX.NOTES no longer exists, but ship POSIX.
9014c4
9014c4
* Wed Aug 07 2002 Phil Knirsch <pknirsch@redhat.com> 2.05b-3
9014c4
- Fixed out of memory problem with readline.
9014c4
9014c4
* Tue Jul 23 2002 Phil Knirsch <pknirsch@redhat.com> 2.05b-2
9014c4
- Added symlink for sh.1 in man1 section so that man sh works (#44039).
9014c4
9014c4
* Mon Jul 22 2002 Phil Knirsch <pknirsch@redhat.com> 2.05b-1
9014c4
- Update to 2.05b
9014c4
9014c4
* Wed Jul 10 2002 Phil Knirsch <pknirsch@redhat.com> 2.05a-16
9014c4
- Fixed readline utf8 problem (#68313).
9014c4
9014c4
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 2.05a-15
9014c4
- automated rebuild
9014c4
9014c4
* Thu May 23 2002 Tim Powers <timp@redhat.com> 2.05a-14
9014c4
- automated rebuild
9014c4
9014c4
* Fri Apr 12 2002 Tim Powers <timp@redhat.com> 2.05a-13
9014c4
- don't build the stuff in examples/loadables. It breaks FHS
9014c4
  compliance
9014c4
9014c4
* Fri Apr  5 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-12
9014c4
- Fix the fix for #62418
9014c4
9014c4
* Thu Apr  4 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-11
9014c4
- Fix kill builtin (#62418)
9014c4
9014c4
* Mon Mar 25 2002 Trond Eivind Glomsrød <teg@redhat.com> 2.0.5a-10
9014c4
- Get rid of completion subpackage
9014c4
- Use %%{_tmppath}
9014c4
9014c4
* Mon Mar 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-9
9014c4
- Add patch from Ulrich Drepper to get better error messages when trying
9014c4
  to launch an application with a bad ELF interpreter (e.g. libc5 ld.so)
9014c4
  (#60870)
9014c4
9014c4
* Fri Feb 22 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-8
9014c4
- Update completion
9014c4
9014c4
* Wed Jan 30 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-7
9014c4
- Update completion stuff and move it to a separate package
9014c4
9014c4
* Sat Jan 26 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-6
9014c4
- Add patches from Ian Macdonald <ian@caliban.org>
9014c4
9014c4
* Wed Jan 23 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-5
9014c4
- Add programmable completion (optional)
9014c4
9014c4
* Thu Jan 17 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-4
9014c4
- Fix mailcheck (#57792)
9014c4
9014c4
* Tue Jan 15 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-3
9014c4
- Fix autoconf mess
9014c4
- Build --with-afs, some users may be using it
9014c4
9014c4
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
9014c4
- automated rebuild
9014c4
9014c4
* Thu Nov 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-2
9014c4
- Fix conflict with sh-utils (printf builtin manpage vs. printf binary manpage)
9014c4
  (#56590)
9014c4
9014c4
* Tue Nov 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.05a-1
9014c4
- 2.05a
9014c4
9014c4
* Wed Oct 10 2001 Florian La Roche <Florian.LaRoche@redhat.de>
9014c4
- disable s390x fix, not needed anymore
9014c4
9014c4
* Mon Oct  1 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.05-9
9014c4
- Add patch from readline 4.2-3 to bash's internal libreadline
9014c4
9014c4
* Mon Jul  9 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.05-8
9014c4
- Merge Pekka Savola's patch (RFE#47762)
9014c4
9014c4
* Mon Jul  2 2001 Pekka Savola <pekkas@netcore.fi>
9014c4
- Add IPv6 patch from PLD (only redirection to /dev/{tcp,udp}/host/port
9014c4
  support)
9014c4
9014c4
* Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.05-7
9014c4
- Add some bugfix patches from the maintainer
9014c4
9014c4
* Mon Jun 11 2001 Florian La Roche <Florian.LaRoche@redhat.de>
9014c4
- added patch for s390x from <oliver.paukstadt@millenux.com>
9014c4
9014c4
* Wed May 23 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.05-5
9014c4
- Don't set BASH_ENV in .bash_profile, it causes .bashrc to be sourced
9014c4
  twice in interactive non-login shells.
9014c4
- s/Copyright/License/
9014c4
9014c4
* Sat May  5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.05-4
9014c4
- Fix tempfile creation in bashbug
9014c4
9014c4
* Wed May  2 2001 Preston Brown <pbrown@redhat.com> 2.05-3
9014c4
- bashrc moved to setup package
9014c4
9014c4
* Tue Apr 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.05-2
9014c4
- bash comes with its own copy of readline... Add the patches we're
9014c4
  applying in the readline package.
9014c4
9014c4
* Tue Apr 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.05-1
9014c4
- Update to 2.05
9014c4
- Change PROMPT_COMMAND in bashrc for xterms
9014c4
  to something less space consuming (#24159)
9014c4
- Provide plugs for alternate prompt commands (#30634), but don't
9014c4
  default to them
9014c4
9014c4
* Mon Mar 19 2001 Preston Brown <pbrown@redhat.com>
9014c4
- add default aliases for 'dir' and 'df' to have human readable output
9014c4
9014c4
* Wed Feb 28 2001 Matt Wilson <msw@redhat.com>
9014c4
- don't Prereq: /sbin/install-info!
9014c4
9014c4
* Tue Feb 27 2001 Preston Brown <pbrown@redhat.com>
9014c4
- noreplace config files
9014c4
- don't own /etc/skel directory
9014c4
9014c4
* Thu Feb 22 2001 Harald Hoyer <harald@redhat.de>
9014c4
- changed /etc/bashrc to work with backspace = 0177 (rxvt)
9014c4
9014c4
* Wed Feb 07 2001 Florian La Roche <Florian.LaRoche@redhat.de>
9014c4
- changed /etc/skel/.bash_profile to "unset USERNAME"
9014c4
9014c4
* Mon Feb  5 2001 Yukihiro Nakai <ynakai@redhat.com>
9014c4
- Delete Japanese resources from dot-bashrc
9014c4
  and move them to each package.
9014c4
9014c4
* Fri Dec 15 2000 Yukihiro Nakai <ynakai@redhat.com>
9014c4
- Add Japanese resource to dot-bashrc
9014c4
9014c4
* Mon Dec 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
9014c4
- rebuild to get rid of 0777 doc dirs
9014c4
9014c4
* Thu Nov 16 2000 Bernhard Rosenkraenzer <bero@redhat.com>
9014c4
- restore the ^Hs in documentation, they're highlighting sequences
9014c4
  for less (#20654) 
9014c4
9014c4
* Fri Sep 15 2000 Florian La Roche <Florian.LaRoche@redhat.de>
9014c4
- bash-2.04-export.patch is reported to fix compilation
9014c4
  of older glibc-2.1 sources
9014c4
9014c4
* Tue Aug 22 2000 Matt Wilson <msw@redhat.com>
9014c4
- fixed the summary of bash-doc to use %%{version} instead of "2.03"
9014c4
9014c4
* Tue Aug  8 2000 Bill Nottingham <notting@redhat.com>
9014c4
- 'exit' in bashrc is very bad.
9014c4
9014c4
* Tue Aug  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
9014c4
- minor bashrc fix (Bug #8518)
9014c4
9014c4
* Mon Jul 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
9014c4
- Don't use tput etc. in bashrc if /usr isn't available (Bug #14116)
9014c4
9014c4
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
9014c4
- automatic rebuild
9014c4
9014c4
* Thu Jun 22 2000 Bill Nottingham <notting@redhat.com>
9014c4
- fix for some IA-64 issues from Stephane Eranian
9014c4
9014c4
* Thu Jun 15 2000 Bernhard Rosenkraenzer <bero@redhat.com>
9014c4
- Fix summary and description, they had old version numbers (Bug #12092)
9014c4
9014c4
* Tue Jun  6 2000 Bill Nottingham <notting@redhat.com>
9014c4
- add /etc/skel/.bash* ; obsolete etcskel
9014c4
9014c4
* Tue May  2 2000 Bill Nottingham <notting@redhat.com>
9014c4
- fix for shell functions on 64-bit architectures...
9014c4
9014c4
* Wed Mar 29 2000 Bernhard Rosenkraenzer <bero@redhat.com>
9014c4
- Add some backwards compatibility (for i in ; do something; done)
9014c4
9014c4
* Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
9014c4
- 2.04 final
9014c4
- remove the echo, pwd, test and kill man pages from the package,
9014c4
  we're getting them from sh-utils
9014c4
9014c4
* Sun Mar 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
9014c4
- 2.04beta5
9014c4
- adapt patches
9014c4
- Fix up bashrc
9014c4
- Don't put in bashrc1, this should be done by the bash1 package
9014c4
- use install -c instead of plain install to work on *BSD
9014c4
- remove the collected patches - they're now in the base version.
9014c4
- make compressed man pages optional
9014c4
9014c4
* Thu Mar 16 2000 Florian La Roche <Florian.LaRoche@redhat.com>
9014c4
- add some collected patches for bash2
9014c4
- change it over to be the main bash package
9014c4
- install man-pages root:root
9014c4
- obsolete bash2, bash2-doc
9014c4
9014c4
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
9014c4
- man pages are compressed
9014c4
- fix description
9014c4
9014c4
* Thu Dec  2 1999 Ken Estes <kestes@staff.mail.com>
9014c4
- updated patch to detect what executables are required by a script.
9014c4
9014c4
* Tue Sep 14 1999 Dale Lovelace <dale@redhat.com>
9014c4
- Remove annoying ^H's from documentation
9014c4
9014c4
* Fri Jul 16 1999 Ken Estes <kestes@staff.mail.com>
9014c4
- patch to detect what executables are required by a script.
9014c4
9014c4
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
9014c4
- auto rebuild in the new build environment (release 4)
9014c4
9014c4
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
9014c4
- strip binaries.
9014c4
- include bash-doc correctly.
9014c4
9014c4
* Thu Mar 18 1999 Preston Brown <pbrown@redhat.com>
9014c4
- fixed post/postun /etc/shells work.
9014c4
9014c4
* Thu Mar 18 1999 Cristian Gafton <gafton@redhat.com>
9014c4
- updated again text in the spec file
9014c4
9014c4
* Mon Feb 22 1999 Jeff Johnson <jbj@redhat.com>
9014c4
- updated text in spec file.
9014c4
- update to 2.03.
9014c4
9014c4
* Fri Feb 12 1999 Cristian Gafton <gafton@redhat.com>
9014c4
- build it as bash2 instead of bash
9014c4
9014c4
* Tue Feb  9 1999 Bill Nottingham <notting@redhat.com>
9014c4
- set 'NON_INTERACTIVE_LOGIN_SHELLS' so profile gets read
9014c4
9014c4
* Thu Jan 14 1999 Jeff Johnson <jbj@redhat.com>
9014c4
- rename man pages in bash-doc to avoid packaging conflicts (#606).
9014c4
9014c4
* Wed Dec 02 1998 Cristian Gafton <gafton@redhat.com>
9014c4
- patch for the arm
9014c4
- use $RPM_ARCH-redhat-linux as the build target
9014c4
9014c4
* Tue Oct  6 1998 Bill Nottingham <notting@redhat.com>
9014c4
- rewrite %%pre, axe %%postun (to avoid prereq loops)
9014c4
9014c4
* Wed Aug 19 1998 Jeff Johnson <jbj@redhat.com>
9014c4
- resurrect for RH 6.0.
9014c4
9014c4
* Sun Jul 26 1998 Jeff Johnson <jbj@redhat.com>
9014c4
- update to 2.02.1
9014c4
9014c4
* Thu Jun 11 1998 Jeff Johnson <jbj@redhat.com>
9014c4
- Package for 5.2.
9014c4
9014c4
* Mon Apr 20 1998 Ian Macdonald <ianmacd@xs4all.nl>
9014c4
- added POSIX.NOTES doc file
9014c4
- some extraneous doc files removed
9014c4
- minor .spec file changes
9014c4
9014c4
* Sun Apr 19 1998 Ian Macdonald <ianmacd@xs4all.nl>
9014c4
- upgraded to version 2.02
9014c4
- Alpha, MIPS & Sparc patches removed due to lack of test platforms
9014c4
- glibc & signal patches no longer required
9014c4
- added documentation subpackage (doc)
9014c4
9014c4
* Fri Nov 07 1997 Donnie Barnes <djb@redhat.com>
9014c4
- added signal handling patch from Dean Gaudet <dgaudet@arctic.org> that
9014c4
  is based on a change made in bash 2.0.  Should fix some early exit
9014c4
  problems with suspends and fg.
9014c4
9014c4
* Mon Oct 20 1997 Donnie Barnes <djb@redhat.com>
9014c4
- added %%clean
9014c4
9014c4
* Mon Oct 20 1997 Erik Troan <ewt@redhat.com>
9014c4
- added comment explaining why install-info isn't used
9014c4
- added mips patch 
9014c4
9014c4
* Fri Oct 17 1997 Donnie Barnes <djb@redhat.com>
9014c4
- added BuildRoot
9014c4
9014c4
* Tue Jun 03 1997 Erik Troan <ewt@redhat.com>
9014c4
- built against glibc