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