This commit is contained in:
parent
411713edde
commit
03d3ff71a4
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:4ca85ba0057645156e357631f3821b9d22f3181210246e134cb6c44eaa19ceae
|
oid sha256:38f963ec817a2ac01128a7a675b9e1c81d8578b634c4b1055a8a40e81214a71e
|
||||||
size 19197
|
size 21883
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 28 16:12:25 CET 2008 - schwab@suse.de
|
||||||
|
|
||||||
|
- Add bash patches 26-33.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 8 19:23:12 CET 2008 - werner@suse.de
|
Tue Jan 8 19:23:12 CET 2008 - werner@suse.de
|
||||||
|
|
||||||
|
359
bash.spec
359
bash.spec
@ -19,7 +19,7 @@ Group: System/Shells
|
|||||||
Recommends: bash-doc = %bash_vers
|
Recommends: bash-doc = %bash_vers
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 3.2
|
Version: 3.2
|
||||||
Release: 75
|
Release: 81
|
||||||
Summary: The GNU Bourne-Again Shell
|
Summary: The GNU Bourne-Again Shell
|
||||||
Url: http://www.gnu.org/software/bash/bash.html
|
Url: http://www.gnu.org/software/bash/bash.html
|
||||||
Source0: bash-%{bash_vers}.tar.bz2
|
Source0: bash-%{bash_vers}.tar.bz2
|
||||||
@ -49,7 +49,6 @@ Patch20: readline-%{rl_vers}.dif
|
|||||||
Patch21: readline-4.3-input.dif
|
Patch21: readline-4.3-input.dif
|
||||||
Patch22: readline-5.2-wrap.patch
|
Patch22: readline-5.2-wrap.patch
|
||||||
Patch23: readline-5.2-conf.patch
|
Patch23: readline-5.2-conf.patch
|
||||||
Patch24: readline-5.1-input.patch
|
|
||||||
Patch30: readline-5.1-destdir.patch
|
Patch30: readline-5.1-destdir.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%global _sysconfdir /etc
|
%global _sysconfdir /etc
|
||||||
@ -75,7 +74,7 @@ Group: Documentation/Man
|
|||||||
Provides: bash:%{_infodir}/bash.info.gz
|
Provides: bash:%{_infodir}/bash.info.gz
|
||||||
PreReq: %install_info_prereq
|
PreReq: %install_info_prereq
|
||||||
Version: 3.2
|
Version: 3.2
|
||||||
Release: 34
|
Release: 40
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
|
|
||||||
%description -n bash-doc
|
%description -n bash-doc
|
||||||
@ -94,7 +93,7 @@ Summary: The Readline Library
|
|||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Provides: bash:/%{_lib}/libreadline.so.5
|
Provides: bash:/%{_lib}/libreadline.so.5
|
||||||
Version: 5.2
|
Version: 5.2
|
||||||
Release: 34
|
Release: 40
|
||||||
Recommends: readline-doc = %{version}
|
Recommends: readline-doc = %{version}
|
||||||
Provides: readline = 5.2
|
Provides: readline = 5.2
|
||||||
Obsoletes: readline <= 5.2
|
Obsoletes: readline <= 5.2
|
||||||
@ -117,7 +116,7 @@ Summary: Include Files and Libraries mandatory for Development.
|
|||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Provides: bash:%{_libdir}/libreadline.a
|
Provides: bash:%{_libdir}/libreadline.a
|
||||||
Version: 5.2
|
Version: 5.2
|
||||||
Release: 75
|
Release: 81
|
||||||
Requires: libreadline5 = %{version}
|
Requires: libreadline5 = %{version}
|
||||||
Requires: ncurses-devel
|
Requires: ncurses-devel
|
||||||
Requires: /%{_lib}/libhistory.so.%{rl_vers}
|
Requires: /%{_lib}/libhistory.so.%{rl_vers}
|
||||||
@ -142,7 +141,7 @@ Group: System/Libraries
|
|||||||
Provides: readline:%{_infodir}/readline.info.gz
|
Provides: readline:%{_infodir}/readline.info.gz
|
||||||
PreReq: %install_info_prereq
|
PreReq: %install_info_prereq
|
||||||
Version: 5.2
|
Version: 5.2
|
||||||
Release: 34
|
Release: 40
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
|
|
||||||
%description -n readline-doc
|
%description -n readline-doc
|
||||||
@ -178,22 +177,9 @@ unset p
|
|||||||
%patch12 -p0 -b .valgrind
|
%patch12 -p0 -b .valgrind
|
||||||
%patch13 -p0 -b .memleak
|
%patch13 -p0 -b .memleak
|
||||||
%patch14 -p0 -b .sigrestart
|
%patch14 -p0 -b .sigrestart
|
||||||
for p in ../readline-%{rl_vers}-patches/*; do
|
|
||||||
test -e $p || break
|
|
||||||
case "${p##*/}" in
|
|
||||||
readline52-00[1234567])
|
|
||||||
echo Patch ${p##*/} already part of bash32-006
|
|
||||||
continue
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
echo Patch $p
|
|
||||||
patch -d lib/readline/ -s -p0 < $p
|
|
||||||
done
|
|
||||||
unset p
|
|
||||||
%patch21 -p0 -b .zerotty
|
%patch21 -p0 -b .zerotty
|
||||||
%patch22 -p0 -b .wrap
|
%patch22 -p0 -b .wrap
|
||||||
%patch23 -p0 -b .conf
|
%patch23 -p0 -b .conf
|
||||||
%patch24 -p0 -b .input
|
|
||||||
%patch0 -p0
|
%patch0 -p0
|
||||||
cd ../readline-%{rl_vers}
|
cd ../readline-%{rl_vers}
|
||||||
for p in ../readline-%{rl_vers}-patches/*; do
|
for p in ../readline-%{rl_vers}-patches/*; do
|
||||||
@ -204,7 +190,6 @@ done
|
|||||||
%patch21 -p2 -b .zerotty
|
%patch21 -p2 -b .zerotty
|
||||||
%patch22 -p2 -b .wrap
|
%patch22 -p2 -b .wrap
|
||||||
%patch23 -p2 -b .conf
|
%patch23 -p2 -b .conf
|
||||||
%patch24 -p2 -b .input
|
|
||||||
%patch30 -p0 -b .destdir
|
%patch30 -p0 -b .destdir
|
||||||
%patch20 -p0
|
%patch20 -p0
|
||||||
|
|
||||||
@ -413,95 +398,97 @@ EOF
|
|||||||
%doc %{_defaultdocdir}/readline/
|
%doc %{_defaultdocdir}/readline/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Jan 08 2008 - werner@suse.de
|
* Mon Jan 28 2008 schwab@suse.de
|
||||||
|
- Add bash patches 26-33.
|
||||||
|
* Tue Jan 08 2008 werner@suse.de
|
||||||
- Restart the signal handler for SIGCHLD if not already done
|
- Restart the signal handler for SIGCHLD if not already done
|
||||||
within the signal handler its self (may help for bug #345441)
|
within the signal handler its self (may help for bug #345441)
|
||||||
* Mon Jan 07 2008 - schwab@suse.de
|
* Mon Jan 07 2008 schwab@suse.de
|
||||||
- Fix memory leak in read builtin.
|
- Fix memory leak in read builtin.
|
||||||
* Fri Dec 07 2007 - werner@suse.de
|
* Fri Dec 07 2007 werner@suse.de
|
||||||
- Add skel files .bashrc, bash_history, and .profile from aaa_skel
|
- Add skel files .bashrc, bash_history, and .profile from aaa_skel
|
||||||
* Tue Dec 04 2007 - werner@suse.de
|
* Tue Dec 04 2007 werner@suse.de
|
||||||
- Extend fix for off-by-one error in libreadline (bug #274120)
|
- Extend fix for off-by-one error in libreadline (bug #274120)
|
||||||
- Enable ssh detection in the bash (bug #345570)
|
- Enable ssh detection in the bash (bug #345570)
|
||||||
* Thu Sep 20 2007 - werner@suse.de
|
* Thu Sep 20 2007 werner@suse.de
|
||||||
- Remove error triggering path requirement (bug #326751)
|
- Remove error triggering path requirement (bug #326751)
|
||||||
* Mon Aug 27 2007 - schwab@suse.de
|
* Mon Aug 27 2007 schwab@suse.de
|
||||||
- Add bash patches 18-25.
|
- Add bash patches 18-25.
|
||||||
* Sat Aug 11 2007 - schwab@suse.de
|
* Sat Aug 11 2007 schwab@suse.de
|
||||||
- Add bash patches 10-17.
|
- Add bash patches 10-17.
|
||||||
* Sat Aug 04 2007 - dmueller@suse.de
|
* Sat Aug 04 2007 dmueller@suse.de
|
||||||
- fix devel requires
|
- fix devel requires
|
||||||
* Fri Aug 03 2007 - schwab@suse.de
|
* Fri Aug 03 2007 schwab@suse.de
|
||||||
- Fix dependencies.
|
- Fix dependencies.
|
||||||
* Tue Jul 31 2007 - werner@suse.de
|
* Tue Jul 31 2007 werner@suse.de
|
||||||
- Branch off bash-doc and readline-doc (bug #260209)
|
- Branch off bash-doc and readline-doc (bug #260209)
|
||||||
- Rename readline to libreadline5 (bug #260209)
|
- Rename readline to libreadline5 (bug #260209)
|
||||||
* Thu Apr 19 2007 - schwab@suse.de
|
* Thu Apr 19 2007 schwab@suse.de
|
||||||
- Fix bug in readline redisplay.
|
- Fix bug in readline redisplay.
|
||||||
* Thu Mar 29 2007 - dmueller@suse.de
|
* Thu Mar 29 2007 dmueller@suse.de
|
||||||
- add ncurses-devel requires to readline-devel
|
- add ncurses-devel requires to readline-devel
|
||||||
* Mon Mar 26 2007 - rguenther@suse.de
|
* Mon Mar 26 2007 rguenther@suse.de
|
||||||
- Add bison and ncurses-devel BuildRequires.
|
- Add bison and ncurses-devel BuildRequires.
|
||||||
* Tue Mar 06 2007 - rguenther@suse.de
|
* Wed Mar 07 2007 rguenther@suse.de
|
||||||
- Fix order of changelog entries. Remove duplicate entry.
|
- Fix order of changelog entries. Remove duplicate entry.
|
||||||
* Wed Feb 28 2007 - werner@suse.de
|
* Wed Feb 28 2007 werner@suse.de
|
||||||
- Don't access buffer but resulting pointer for array element names
|
- Don't access buffer but resulting pointer for array element names
|
||||||
to avoid the not initialized area of the buffer. This also fixes
|
to avoid the not initialized area of the buffer. This also fixes
|
||||||
an inherent wrong calculation of the string length of the array
|
an inherent wrong calculation of the string length of the array
|
||||||
element names (bug #248717)
|
element names (bug #248717)
|
||||||
* Thu Dec 14 2006 - werner@suse.de
|
* Thu Dec 14 2006 werner@suse.de
|
||||||
- Update to bash 3.2 patch level 9
|
- Update to bash 3.2 patch level 9
|
||||||
* Wed Dec 06 2006 - schwab@suse.de
|
* Wed Dec 06 2006 schwab@suse.de
|
||||||
- Remove obsolete patches.
|
- Remove obsolete patches.
|
||||||
* Fri Nov 17 2006 - werner@suse.de
|
* Fri Nov 17 2006 werner@suse.de
|
||||||
- Remove /usr/bin/bash (#206000)
|
- Remove /usr/bin/bash (#206000)
|
||||||
* Tue Nov 14 2006 - werner@suse.de
|
* Tue Nov 14 2006 werner@suse.de
|
||||||
- Update to bash 3.2 patch level 5
|
- Update to bash 3.2 patch level 5
|
||||||
* Wed Sep 27 2006 - werner@suse.de
|
* Wed Sep 27 2006 werner@suse.de
|
||||||
- Use PIE to make a shared bash binary
|
- Use PIE to make a shared bash binary
|
||||||
- Make the bash modules build for testing
|
- Make the bash modules build for testing
|
||||||
* Fri Sep 22 2006 - werner@suse.de
|
* Fri Sep 22 2006 werner@suse.de
|
||||||
- Remove rpath option for libraries use linker defaults instead
|
- Remove rpath option for libraries use linker defaults instead
|
||||||
* Fri Sep 22 2006 - werner@suse.de
|
* Fri Sep 22 2006 werner@suse.de
|
||||||
- Add symbolic link for POSIX bourne shell to /usr/bin/ (#206000)
|
- Add symbolic link for POSIX bourne shell to /usr/bin/ (#206000)
|
||||||
* Thu Sep 14 2006 - werner@suse.de
|
* Thu Sep 14 2006 werner@suse.de
|
||||||
- Add environment variable DEFAULT_BELL_STYLE to control the
|
- Add environment variable DEFAULT_BELL_STYLE to control the
|
||||||
bell style of the readline library without using intputrc.
|
bell style of the readline library without using intputrc.
|
||||||
* Mon Aug 07 2006 - werner@suse.de
|
* Mon Aug 07 2006 werner@suse.de
|
||||||
- Let readline-devel requires libncurses.so (bug #188673)
|
- Let readline-devel requires libncurses.so (bug #188673)
|
||||||
* Thu Jul 27 2006 - werner@suse.de
|
* Thu Jul 27 2006 werner@suse.de
|
||||||
- Let printf builtin handle stdout errors correctly (bug #190349)
|
- Let printf builtin handle stdout errors correctly (bug #190349)
|
||||||
* Wed May 31 2006 - werner@suse.de
|
* Wed May 31 2006 werner@suse.de
|
||||||
- Fix crash in IFS multi byte handling (bug #180317)
|
- Fix crash in IFS multi byte handling (bug #180317)
|
||||||
* Tue May 23 2006 - werner@suse.de
|
* Tue May 23 2006 werner@suse.de
|
||||||
- Make the test suite run even on ppc emulated on ppc64
|
- Make the test suite run even on ppc emulated on ppc64
|
||||||
* Mon May 15 2006 - werner@suse.de
|
* Mon May 15 2006 werner@suse.de
|
||||||
- Update bash 3.1 to patch level 17
|
- Update bash 3.1 to patch level 17
|
||||||
* Allow array subscripts to be sourounded by double quotes
|
* Allow array subscripts to be sourounded by double quotes
|
||||||
- Run test suite with nearly all scripts
|
- Run test suite with nearly all scripts
|
||||||
* Mon Apr 03 2006 - werner@suse.de
|
* Mon Apr 03 2006 werner@suse.de
|
||||||
- Update bash 3.1 to patch level 16
|
- Update bash 3.1 to patch level 16
|
||||||
* Bash will dump core when attempting to perform globbing in
|
* Bash will dump core when attempting to perform globbing in
|
||||||
directories with very large numbers of files
|
directories with very large numbers of files
|
||||||
* Solve problem with the extended globbing code prevented dots
|
* Solve problem with the extended globbing code prevented dots
|
||||||
from matching filenames when used in some matching patterns
|
from matching filenames when used in some matching patterns
|
||||||
* Mon Mar 27 2006 - werner@suse.de
|
* Mon Mar 27 2006 werner@suse.de
|
||||||
- Use access(2) with temporary switched euid/ruid and egid/rgid
|
- Use access(2) with temporary switched euid/ruid and egid/rgid
|
||||||
instead of stat(2) to determine the access permissions of a
|
instead of stat(2) to determine the access permissions of a
|
||||||
file, this works even on RO mounted NFS file systems (#160513)
|
file, this works even on RO mounted NFS file systems (#160513)
|
||||||
* Wed Mar 22 2006 - werner@suse.de
|
* Wed Mar 22 2006 werner@suse.de
|
||||||
- Be sure that ~/.inputrc is read even if INPUTRC is set to
|
- Be sure that ~/.inputrc is read even if INPUTRC is set to
|
||||||
system wide /etc/inputrc (bug #160003)
|
system wide /etc/inputrc (bug #160003)
|
||||||
- Make prefix-meta work even with new readline syntax but
|
- Make prefix-meta work even with new readline syntax but
|
||||||
disable it by default (since bug #suse21096)
|
disable it by default (since bug #suse21096)
|
||||||
* Mon Mar 20 2006 - werner@suse.de
|
* Mon Mar 20 2006 werner@suse.de
|
||||||
- Update to bash 3.1 to patch level 14 and readline 5.1 to level 4
|
- Update to bash 3.1 to patch level 14 and readline 5.1 to level 4
|
||||||
* Do not terminate words prematurely if parentheses are involved
|
* Do not terminate words prematurely if parentheses are involved
|
||||||
* Readline sometimes reference freed memory
|
* Readline sometimes reference freed memory
|
||||||
* Fix double displayed prompt when using non-incremental searches
|
* Fix double displayed prompt when using non-incremental searches
|
||||||
* Sun Mar 12 2006 - schwab@suse.de
|
* Sun Mar 12 2006 schwab@suse.de
|
||||||
- Update bash31-010 patch, better fix for #151000.
|
- Update bash31-010 patch, better fix for #151000.
|
||||||
* Thu Mar 02 2006 - werner@suse.de
|
* Thu Mar 02 2006 werner@suse.de
|
||||||
- Update bash 3.1 to patch level 11 and readline 5.1 to level 2
|
- Update bash 3.1 to patch level 11 and readline 5.1 to level 2
|
||||||
* Includes fix for line-wrapping errors
|
* Includes fix for line-wrapping errors
|
||||||
* Replacement for bug fix of bug #146075 with better
|
* Replacement for bug fix of bug #146075 with better
|
||||||
@ -511,124 +498,124 @@ EOF
|
|||||||
process group incorrectly.
|
process group incorrectly.
|
||||||
* Replacement for bug fix of bug #151000
|
* Replacement for bug fix of bug #151000
|
||||||
* Do not strip quoting inside double-quoted command substitutions
|
* Do not strip quoting inside double-quoted command substitutions
|
||||||
* Wed Mar 01 2006 - werner@suse.de
|
* Wed Mar 01 2006 werner@suse.de
|
||||||
- Re-enable escaping newline within quotes in commands (#151000)
|
- Re-enable escaping newline within quotes in commands (#151000)
|
||||||
* Mon Jan 30 2006 - werner@suse.de
|
* Mon Jan 30 2006 werner@suse.de
|
||||||
- Do initialize the fresh members of the job array (bug #146075)
|
- Do initialize the fresh members of the job array (bug #146075)
|
||||||
* Mon Jan 30 2006 - schwab@suse.de
|
* Mon Jan 30 2006 schwab@suse.de
|
||||||
- Barf if /proc is missing.
|
- Barf if /proc is missing.
|
||||||
* Wed Jan 25 2006 - mls@suse.de
|
* Wed Jan 25 2006 mls@suse.de
|
||||||
- converted neededforbuild to BuildRequires
|
- converted neededforbuild to BuildRequires
|
||||||
* Tue Jan 10 2006 - werner@suse.de
|
* Tue Jan 10 2006 werner@suse.de
|
||||||
- Update to newest patch level 5:
|
- Update to newest patch level 5:
|
||||||
+ corrects several omissions in the bash documentation
|
+ corrects several omissions in the bash documentation
|
||||||
+ local array variable declared at function scope shadowing
|
+ local array variable declared at function scope shadowing
|
||||||
a global variable should create a separate instance
|
a global variable should create a separate instance
|
||||||
+ When tilde expansion fails, do not skip rest of an expansion
|
+ When tilde expansion fails, do not skip rest of an expansion
|
||||||
- Expand dollar quotes even for the single quote case (bug #141394)
|
- Expand dollar quotes even for the single quote case (bug #141394)
|
||||||
* Thu Dec 22 2005 - werner@suse.de
|
* Thu Dec 22 2005 werner@suse.de
|
||||||
- Switch to first patchlevel for the bash and the readline library.
|
- Switch to first patchlevel for the bash and the readline library.
|
||||||
This should fix problems happen with local/eval/let builtins.
|
This should fix problems happen with local/eval/let builtins.
|
||||||
* Mon Dec 19 2005 - werner@suse.de
|
* Mon Dec 19 2005 werner@suse.de
|
||||||
- Remove dangling sym links
|
- Remove dangling sym links
|
||||||
* Tue Dec 13 2005 - schwab@suse.de
|
* Tue Dec 13 2005 schwab@suse.de
|
||||||
- Fix segfault in readline callback interface.
|
- Fix segfault in readline callback interface.
|
||||||
* Mon Dec 12 2005 - schwab@suse.de
|
* Mon Dec 12 2005 schwab@suse.de
|
||||||
- Fix return of random data.
|
- Fix return of random data.
|
||||||
- Set CFLAGS_FOR_BUILD.
|
- Set CFLAGS_FOR_BUILD.
|
||||||
* Fri Dec 09 2005 - werner@suse.de
|
* Fri Dec 09 2005 werner@suse.de
|
||||||
- Update to bash version 3.1 and readline library version 5.1
|
- Update to bash version 3.1 and readline library version 5.1
|
||||||
* Thu Sep 29 2005 - werner@suse.de
|
* Thu Sep 29 2005 werner@suse.de
|
||||||
- More cookie for the compiler
|
- More cookie for the compiler
|
||||||
* Mon Sep 19 2005 - werner@suse.de
|
* Mon Sep 19 2005 werner@suse.de
|
||||||
- Give the compiler its cookie
|
- Give the compiler its cookie
|
||||||
* Tue Apr 19 2005 - postadal@suse.cz
|
* Tue Apr 19 2005 postadal@suse.cz
|
||||||
- fixed crashing on read -e command and line wrapping (in readline code)
|
- fixed crashing on read -e command and line wrapping (in readline code)
|
||||||
(bug #76709)
|
(bug #76709)
|
||||||
* Fri Jan 28 2005 - werner@suse.de
|
* Fri Jan 28 2005 werner@suse.de
|
||||||
- Add workaround for NFS bug which does not check permissions
|
- Add workaround for NFS bug which does not check permissions
|
||||||
on open of a file but close (bug #20244)
|
on open of a file but close (bug #20244)
|
||||||
* Thu Nov 25 2004 - werner@suse.de
|
* Thu Nov 25 2004 werner@suse.de
|
||||||
- Remove local array patch because not needed anymore
|
- Remove local array patch because not needed anymore
|
||||||
- Fix a crash on internal arrays if unset during execution of
|
- Fix a crash on internal arrays if unset during execution of
|
||||||
functions and files (bug #48511)
|
functions and files (bug #48511)
|
||||||
* Sun Nov 21 2004 - schwab@suse.de
|
* Sun Nov 21 2004 schwab@suse.de
|
||||||
- Add patches from <ftp://ftp.cwru.edu/pub/bash/bash-3.0-patches/> and
|
- Add patches from <ftp://ftp.cwru.edu/pub/bash/bash-3.0-patches/> and
|
||||||
<ftp://ftp.cwru.edu/pub/bash/readline-5.0-patches/>.
|
<ftp://ftp.cwru.edu/pub/bash/readline-5.0-patches/>.
|
||||||
* Fri Nov 19 2004 - werner@suse.de
|
* Fri Nov 19 2004 werner@suse.de
|
||||||
- Fix the evalexp fix (bug #48253)
|
- Fix the evalexp fix (bug #48253)
|
||||||
* Mon Oct 25 2004 - werner@suse.de
|
* Mon Oct 25 2004 werner@suse.de
|
||||||
- Be sure that the FN macro nroff macro is available in all
|
- Be sure that the FN macro nroff macro is available in all
|
||||||
sub manual pages (bug #47560)
|
sub manual pages (bug #47560)
|
||||||
* Tue Oct 12 2004 - werner@suse.de
|
* Tue Oct 12 2004 werner@suse.de
|
||||||
- Re-activate first part of prompt fix because it does not harm
|
- Re-activate first part of prompt fix because it does not harm
|
||||||
(bug #36919)
|
(bug #36919)
|
||||||
* Tue Oct 12 2004 - ro@suse.de
|
* Tue Oct 12 2004 ro@suse.de
|
||||||
- no macros in Version lines
|
- no macros in Version lines
|
||||||
* Mon Oct 11 2004 - werner@suse.de
|
* Mon Oct 11 2004 werner@suse.de
|
||||||
- Disable prompt patch for now because not needed and other
|
- Disable prompt patch for now because not needed and other
|
||||||
problmes caused by this fix (bug #36919)
|
problmes caused by this fix (bug #36919)
|
||||||
- Clear out last_made_pid on success (bug #42232)
|
- Clear out last_made_pid on success (bug #42232)
|
||||||
* Thu Sep 30 2004 - werner@suse.de
|
* Thu Sep 30 2004 werner@suse.de
|
||||||
- Clear out prompt line of isearch for invisible chars (bug #36919)
|
- Clear out prompt line of isearch for invisible chars (bug #36919)
|
||||||
* Wed Sep 29 2004 - werner@suse.de
|
* Wed Sep 29 2004 werner@suse.de
|
||||||
- Fix prompt problem with invisible characters (bug #36919)
|
- Fix prompt problem with invisible characters (bug #36919)
|
||||||
* Fri Sep 17 2004 - werner@suse.de
|
* Fri Sep 17 2004 werner@suse.de
|
||||||
- Fix line wraping for newlines in prompt (bug #45519)
|
- Fix line wraping for newlines in prompt (bug #45519)
|
||||||
* Thu Sep 16 2004 - schwab@suse.de
|
* Thu Sep 16 2004 schwab@suse.de
|
||||||
- Fix missing return value.
|
- Fix missing return value.
|
||||||
* Sat Sep 11 2004 - kukuk@suse.de
|
* Sat Sep 11 2004 kukuk@suse.de
|
||||||
- Disable use of WCONTINUED as long as bash does not check if
|
- Disable use of WCONTINUED as long as bash does not check if
|
||||||
it is supported.
|
it is supported.
|
||||||
* Mon Sep 06 2004 - werner@suse.de
|
* Mon Sep 06 2004 werner@suse.de
|
||||||
- Fix prefix strip for last added patch
|
- Fix prefix strip for last added patch
|
||||||
* Fri Sep 03 2004 - werner@suse.de
|
* Fri Sep 03 2004 werner@suse.de
|
||||||
- Add warning about broken glibc locale before we get the SIGSEGV
|
- Add warning about broken glibc locale before we get the SIGSEGV
|
||||||
(bug #44658)
|
(bug #44658)
|
||||||
* Sun Aug 01 2004 - schwab@suse.de
|
* Sun Aug 01 2004 schwab@suse.de
|
||||||
- Fix rl_maybe_save_line.
|
- Fix rl_maybe_save_line.
|
||||||
- Track LC_TIME.
|
- Track LC_TIME.
|
||||||
* Fri Jul 30 2004 - werner@suse.de
|
* Fri Jul 30 2004 werner@suse.de
|
||||||
- Put version to bash 3.0 and readline 5.0
|
- Put version to bash 3.0 and readline 5.0
|
||||||
* Mon Jun 07 2004 - werner@suse.de
|
* Mon Jun 07 2004 werner@suse.de
|
||||||
- Add missed declaration of oldval for previous bugfix
|
- Add missed declaration of oldval for previous bugfix
|
||||||
* Fri Jun 04 2004 - werner@suse.de
|
* Fri Jun 04 2004 werner@suse.de
|
||||||
- Fix local array variable handling (bug #41649)
|
- Fix local array variable handling (bug #41649)
|
||||||
* Wed Jun 02 2004 - werner@suse.de
|
* Wed Jun 02 2004 werner@suse.de
|
||||||
- Fix evaluation none local return stack curruption (bug #41488)
|
- Fix evaluation none local return stack curruption (bug #41488)
|
||||||
* Wed Apr 07 2004 - werner@suse.de
|
* Wed Apr 07 2004 werner@suse.de
|
||||||
- In case of quotes position counter has to be advanced (#38599)
|
- In case of quotes position counter has to be advanced (#38599)
|
||||||
* Thu Apr 01 2004 - werner@suse.de
|
* Thu Apr 01 2004 werner@suse.de
|
||||||
- Add directoy check to distinguish none unique and unique
|
- Add directoy check to distinguish none unique and unique
|
||||||
executables (bug #37329)
|
executables (bug #37329)
|
||||||
* Mon Mar 29 2004 - werner@suse.de
|
* Mon Mar 29 2004 werner@suse.de
|
||||||
- Make the directory patch working as it should (bug #37329)
|
- Make the directory patch working as it should (bug #37329)
|
||||||
* Thu Mar 25 2004 - werner@suse.de
|
* Thu Mar 25 2004 werner@suse.de
|
||||||
- Move forward to official bug fixes to catch UTF-8 bug #31451
|
- Move forward to official bug fixes to catch UTF-8 bug #31451
|
||||||
and bug #36919
|
and bug #36919
|
||||||
* Thu Feb 12 2004 - werner@suse.de
|
* Thu Feb 12 2004 werner@suse.de
|
||||||
- Fix cut&paste error of fix for bug #34427
|
- Fix cut&paste error of fix for bug #34427
|
||||||
* Wed Feb 11 2004 - werner@suse.de
|
* Wed Feb 11 2004 werner@suse.de
|
||||||
- Fix SIGSEGV in using UTF-8 and pattern matching (bug #34427)
|
- Fix SIGSEGV in using UTF-8 and pattern matching (bug #34427)
|
||||||
- Fix LC_NUMERIC handling of builtin printf (bug #34428)
|
- Fix LC_NUMERIC handling of builtin printf (bug #34428)
|
||||||
* Mon Feb 02 2004 - werner@suse.de
|
* Mon Feb 02 2004 werner@suse.de
|
||||||
- Fix the fix and also bug #34242
|
- Fix the fix and also bug #34242
|
||||||
* Thu Jan 29 2004 - werner@suse.de
|
* Thu Jan 29 2004 werner@suse.de
|
||||||
- Fix performance problem for pattern matching in UTF-8 locale
|
- Fix performance problem for pattern matching in UTF-8 locale
|
||||||
(port back patch from Mitsuru Chinen <mchinen@yamato.ibm.com>)
|
(port back patch from Mitsuru Chinen <mchinen@yamato.ibm.com>)
|
||||||
* Tue Jan 13 2004 - kukuk@suse.de
|
* Tue Jan 13 2004 kukuk@suse.de
|
||||||
- Fix last changes
|
- Fix last changes
|
||||||
* Sat Jan 10 2004 - adrian@suse.de
|
* Sat Jan 10 2004 adrian@suse.de
|
||||||
- add %%run_ldconfig
|
- add %%run_ldconfig
|
||||||
* Mon Jul 28 2003 - werner@suse.de
|
* Mon Jul 28 2003 werner@suse.de
|
||||||
- Add /etc/bash_completion.d directory
|
- Add /etc/bash_completion.d directory
|
||||||
* Thu Jun 26 2003 - kukuk@suse.de
|
* Thu Jun 26 2003 kukuk@suse.de
|
||||||
- Fix specfile for lib64
|
- Fix specfile for lib64
|
||||||
* Wed Jun 04 2003 - jh@suse.de
|
* Wed Jun 04 2003 jh@suse.de
|
||||||
- Enable profile feedback
|
- Enable profile feedback
|
||||||
* Fri May 23 2003 - ro@suse.de
|
* Fri May 23 2003 ro@suse.de
|
||||||
- remove unpackaged files
|
- remove unpackaged files
|
||||||
* Thu May 22 2003 - mfabian@suse.de
|
* Thu May 22 2003 mfabian@suse.de
|
||||||
- improvement for bash-2.05b-locale.patch and
|
- improvement for bash-2.05b-locale.patch and
|
||||||
bash-2.05b-readline-init.patch: this fixes the problem that
|
bash-2.05b-readline-init.patch: this fixes the problem that
|
||||||
the line editor in bash is not correctly initialized in the first
|
the line editor in bash is not correctly initialized in the first
|
||||||
@ -644,158 +631,158 @@ EOF
|
|||||||
characters when typing "ls " and pressing Tab twice to show
|
characters when typing "ls " and pressing Tab twice to show
|
||||||
the completions. See also:
|
the completions. See also:
|
||||||
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=90201
|
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=90201
|
||||||
* Mon Mar 17 2003 - werner@suse.de
|
* Mon Mar 17 2003 werner@suse.de
|
||||||
- Do not execute command line if tty is closed (bug #25445)
|
- Do not execute command line if tty is closed (bug #25445)
|
||||||
* Thu Feb 13 2003 - schwab@suse.de
|
* Thu Feb 13 2003 schwab@suse.de
|
||||||
- Fix prompt decoding with -noediting.
|
- Fix prompt decoding with -noediting.
|
||||||
* Tue Feb 11 2003 - kukuk@suse.de
|
* Tue Feb 11 2003 kukuk@suse.de
|
||||||
- To avoid loop in PreRequires, don't install info pages. The info
|
- To avoid loop in PreRequires, don't install info pages. The info
|
||||||
package contains a dir file which contains the bash entries
|
package contains a dir file which contains the bash entries
|
||||||
already.
|
already.
|
||||||
* Fri Feb 07 2003 - ro@suse.de
|
* Fri Feb 07 2003 ro@suse.de
|
||||||
- fixed specfile
|
- fixed specfile
|
||||||
* Fri Feb 07 2003 - ro@suse.de
|
* Fri Feb 07 2003 ro@suse.de
|
||||||
- added install_info macros
|
- added install_info macros
|
||||||
* Mon Jan 27 2003 - schwab@suse.de
|
* Mon Jan 27 2003 schwab@suse.de
|
||||||
- Fix bugs #21096 and #21392 properly: don't recurse on
|
- Fix bugs #21096 and #21392 properly: don't recurse on
|
||||||
do-lowercase-version for fallback entry.
|
do-lowercase-version for fallback entry.
|
||||||
* Tue Jan 21 2003 - werner@suse.de
|
* Tue Jan 21 2003 werner@suse.de
|
||||||
- Allow rbash as login shell (`-' problem, bug #22917)
|
- Allow rbash as login shell (`-' problem, bug #22917)
|
||||||
* Wed Dec 18 2002 - schwab@suse.de
|
* Wed Dec 18 2002 schwab@suse.de
|
||||||
- Use BuildRoot.
|
- Use BuildRoot.
|
||||||
* Thu Dec 12 2002 - mfabian@suse.de
|
* Thu Dec 12 2002 mfabian@suse.de
|
||||||
- add bash-2.05b-display-mbspeed.patch received from
|
- add bash-2.05b-display-mbspeed.patch received from
|
||||||
Jiro SEKIBA <jir@yamato.ibm.com> to improve display speed in
|
Jiro SEKIBA <jir@yamato.ibm.com> to improve display speed in
|
||||||
multibyte locales.
|
multibyte locales.
|
||||||
* Sat Nov 09 2002 - ro@suse.de
|
* Sat Nov 09 2002 ro@suse.de
|
||||||
- add bison to neededforbuild for now
|
- add bison to neededforbuild for now
|
||||||
(till we're sure about bison again)
|
(till we're sure about bison again)
|
||||||
* Thu Oct 31 2002 - werner@suse.de
|
* Thu Oct 31 2002 werner@suse.de
|
||||||
- For bug #21096 and #21392: implement an oom protection.
|
- For bug #21096 and #21392: implement an oom protection.
|
||||||
* Mon Oct 21 2002 - werner@suse.de
|
* Mon Oct 21 2002 werner@suse.de
|
||||||
- More for bug#21096: Make prefix-meta work even if mapped onto
|
- More for bug#21096: Make prefix-meta work even if mapped onto
|
||||||
longer escape sequences.
|
longer escape sequences.
|
||||||
* Fri Oct 18 2002 - werner@suse.de
|
* Fri Oct 18 2002 werner@suse.de
|
||||||
- Fix bug#21096: sequences like `ESC ... CHARACTER' with CHARACTER
|
- Fix bug#21096: sequences like `ESC ... CHARACTER' with CHARACTER
|
||||||
mapped on functions will not cause an endless recursion anymore.
|
mapped on functions will not cause an endless recursion anymore.
|
||||||
* Wed Sep 25 2002 - ro@suse.de
|
* Wed Sep 25 2002 ro@suse.de
|
||||||
- removed more bogus provides
|
- removed more bogus provides
|
||||||
* Wed Sep 11 2002 - werner@suse.de
|
* Wed Sep 11 2002 werner@suse.de
|
||||||
- Correct Provides (package should not provides its self)
|
- Correct Provides (package should not provides its self)
|
||||||
* Fri Aug 30 2002 - werner@suse.de
|
* Fri Aug 30 2002 werner@suse.de
|
||||||
- Add version dependend require on readline (bug #18652)
|
- Add version dependend require on readline (bug #18652)
|
||||||
* Fri Aug 30 2002 - werner@suse.de
|
* Fri Aug 30 2002 werner@suse.de
|
||||||
- Fix annoying display bug in wide character support (bug #18449)
|
- Fix annoying display bug in wide character support (bug #18449)
|
||||||
* Wed Aug 28 2002 - werner@suse.de
|
* Wed Aug 28 2002 werner@suse.de
|
||||||
- Add comment about multi byte handling and echo builtin (#18449)
|
- Add comment about multi byte handling and echo builtin (#18449)
|
||||||
* Wed Aug 21 2002 - mls@suse.de
|
* Wed Aug 21 2002 mls@suse.de
|
||||||
- fix $RANDOM randomness in subshells
|
- fix $RANDOM randomness in subshells
|
||||||
* Fri Aug 09 2002 - kukuk@suse.de
|
* Fri Aug 09 2002 kukuk@suse.de
|
||||||
- readline-devel should require readline
|
- readline-devel should require readline
|
||||||
* Mon Jul 29 2002 - werner@suse.de
|
* Mon Jul 29 2002 werner@suse.de
|
||||||
- Expansion of `~user/<dir>' is like `/<dir>'
|
- Expansion of `~user/<dir>' is like `/<dir>'
|
||||||
* Sat Jul 27 2002 - kukuk@suse.de
|
* Sat Jul 27 2002 kukuk@suse.de
|
||||||
- Remove not used tetex from neededforbuild
|
- Remove not used tetex from neededforbuild
|
||||||
- Fix building of man2html (bash.html still broken)
|
- Fix building of man2html (bash.html still broken)
|
||||||
* Fri Jul 19 2002 - werner@suse.de
|
* Fri Jul 19 2002 werner@suse.de
|
||||||
- Check value of LANG before LC_ALL will be unset for getting the
|
- Check value of LANG before LC_ALL will be unset for getting the
|
||||||
_current_ default value of LC_ALL with setlocale(3) (bug #16999)
|
_current_ default value of LC_ALL with setlocale(3) (bug #16999)
|
||||||
* Fri Jul 19 2002 - werner@suse.de
|
* Fri Jul 19 2002 werner@suse.de
|
||||||
- Fix NULL pointer handled by memset (readline:mbutil.c)
|
- Fix NULL pointer handled by memset (readline:mbutil.c)
|
||||||
* Thu Jul 18 2002 - werner@suse.de
|
* Thu Jul 18 2002 werner@suse.de
|
||||||
- Update to new version bash 2.05b/readline 4.3
|
- Update to new version bash 2.05b/readline 4.3
|
||||||
* Wed May 22 2002 - schwab@suse.de
|
* Wed May 22 2002 schwab@suse.de
|
||||||
- Fix vi-change-char.
|
- Fix vi-change-char.
|
||||||
- Fix missing declaration.
|
- Fix missing declaration.
|
||||||
* Wed Apr 17 2002 - schwab@suse.de
|
* Wed Apr 17 2002 schwab@suse.de
|
||||||
- Fix last change.
|
- Fix last change.
|
||||||
* Thu Apr 11 2002 - sf@suse.de
|
* Thu Apr 11 2002 sf@suse.de
|
||||||
- using %%{_libdir} to put the shlibs into the correct directories
|
- using %%{_libdir} to put the shlibs into the correct directories
|
||||||
(lib / lib64)
|
(lib / lib64)
|
||||||
* Tue Mar 26 2002 - werner@suse.de
|
* Tue Mar 26 2002 werner@suse.de
|
||||||
- Fix possible endless loop if terminal will be disconneted during
|
- Fix possible endless loop if terminal will be disconneted during
|
||||||
complete answer (bug report from bastian@kde.org, for more see
|
complete answer (bug report from bastian@kde.org, for more see
|
||||||
http://bugs.kde.org/db/37/37999.html)
|
http://bugs.kde.org/db/37/37999.html)
|
||||||
* Wed Mar 20 2002 - ro@suse.de
|
* Wed Mar 20 2002 ro@suse.de
|
||||||
- removed tetex from neededforbuild, it's not used here
|
- removed tetex from neededforbuild, it's not used here
|
||||||
* Wed Mar 06 2002 - werner@suse.de
|
* Wed Mar 06 2002 werner@suse.de
|
||||||
- Use improved bug fix for line wrapping problem, now line wrapping
|
- Use improved bug fix for line wrapping problem, now line wrapping
|
||||||
work for char and wide char environments
|
work for char and wide char environments
|
||||||
- Fix readline version number
|
- Fix readline version number
|
||||||
* Wed Feb 27 2002 - mfabian@suse.de
|
* Wed Feb 27 2002 mfabian@suse.de
|
||||||
- add readline-4.2-i18n-0.3-display.patch from
|
- add readline-4.2-i18n-0.3-display.patch from
|
||||||
Jiro SEKIBA <jir@yamato.ibm.com> to fix a line wrapping
|
Jiro SEKIBA <jir@yamato.ibm.com> to fix a line wrapping
|
||||||
problem.
|
problem.
|
||||||
* Mon Jan 21 2002 - werner@suse.de
|
* Mon Jan 21 2002 werner@suse.de
|
||||||
- Fix bug #12834: Update to bash-2.05-i18n-0.5.patch.gz and
|
- Fix bug #12834: Update to bash-2.05-i18n-0.5.patch.gz and
|
||||||
bash-2.05-readline-i18n-0.3.patch.gz
|
bash-2.05-readline-i18n-0.3.patch.gz
|
||||||
* Thu Oct 18 2001 - werner@suse.de
|
* Thu Oct 18 2001 werner@suse.de
|
||||||
- Allways include /etc/inputrc if INPUTRC isn't system file
|
- Allways include /etc/inputrc if INPUTRC isn't system file
|
||||||
* Mon Oct 08 2001 - werner@suse.de
|
* Mon Oct 08 2001 werner@suse.de
|
||||||
- Fix readline i18n patch: enable configure of multi byte handling,
|
- Fix readline i18n patch: enable configure of multi byte handling,
|
||||||
fix warnings and bug in histexpand.c
|
fix warnings and bug in histexpand.c
|
||||||
* Fri Oct 05 2001 - werner@suse.de
|
* Fri Oct 05 2001 werner@suse.de
|
||||||
- Add two patches for I18N support of bash and readline library
|
- Add two patches for I18N support of bash and readline library
|
||||||
* Tue Sep 04 2001 - werner@suse.de
|
* Tue Sep 04 2001 werner@suse.de
|
||||||
- Add patch to avoid trouble with C++ header definitions
|
- Add patch to avoid trouble with C++ header definitions
|
||||||
* Fri Aug 03 2001 - werner@suse.de
|
* Fri Aug 03 2001 werner@suse.de
|
||||||
- Fix fc crash (bug #9620)
|
- Fix fc crash (bug #9620)
|
||||||
* Mon Jul 02 2001 - olh@suse.de
|
* Mon Jul 02 2001 olh@suse.de
|
||||||
- dont apply bash-2.05-s390x-unwind.patch on ppc and sparc
|
- dont apply bash-2.05-s390x-unwind.patch on ppc and sparc
|
||||||
* Thu Jun 14 2001 - bk@suse.de
|
* Thu Jun 14 2001 bk@suse.de
|
||||||
- fix 64-bit bigendian bug for s390x
|
- fix 64-bit bigendian bug for s390x
|
||||||
* Wed Jun 06 2001 - werner@suse.de
|
* Wed Jun 06 2001 werner@suse.de
|
||||||
- Re-order configure.in to avoid trouble with new autoconf
|
- Re-order configure.in to avoid trouble with new autoconf
|
||||||
* Tue May 08 2001 - mfabian@suse.de
|
* Tue May 08 2001 mfabian@suse.de
|
||||||
- bzip2 sources
|
- bzip2 sources
|
||||||
* Sat May 05 2001 - schwab@suse.de
|
* Sat May 05 2001 schwab@suse.de
|
||||||
- Fix process substitution when stdin is closed.
|
- Fix process substitution when stdin is closed.
|
||||||
* Wed May 02 2001 - werner@suse.de
|
* Wed May 02 2001 werner@suse.de
|
||||||
- Make patch for 2.4.4 work within spec
|
- Make patch for 2.4.4 work within spec
|
||||||
* Wed May 02 2001 - werner@suse.de
|
* Wed May 02 2001 werner@suse.de
|
||||||
- Remove buggy patch in job control, add a workaround
|
- Remove buggy patch in job control, add a workaround
|
||||||
* Mon Apr 30 2001 - werner@suse.de
|
* Mon Apr 30 2001 werner@suse.de
|
||||||
- Add patch to get job control into right order on a pipe
|
- Add patch to get job control into right order on a pipe
|
||||||
* Thu Apr 12 2001 - werner@suse.de
|
* Thu Apr 12 2001 werner@suse.de
|
||||||
- Provide cpp macro OLD_READLINE for backwards compatibility
|
- Provide cpp macro OLD_READLINE for backwards compatibility
|
||||||
at compile time with old readline interface
|
at compile time with old readline interface
|
||||||
* Thu Apr 12 2001 - ro@suse.de
|
* Thu Apr 12 2001 ro@suse.de
|
||||||
- added split-alias as provides (again)
|
- added split-alias as provides (again)
|
||||||
* Wed Apr 11 2001 - werner@suse.de
|
* Wed Apr 11 2001 werner@suse.de
|
||||||
- Update to bash 2.05 and readline 4.2
|
- Update to bash 2.05 and readline 4.2
|
||||||
- Port of our patches
|
- Port of our patches
|
||||||
* Thu Feb 22 2001 - werner@suse.de
|
* Thu Feb 22 2001 werner@suse.de
|
||||||
- Split package into bash/readline/readline-devel
|
- Split package into bash/readline/readline-devel
|
||||||
- Depend libreadline on libncurses
|
- Depend libreadline on libncurses
|
||||||
* Thu Sep 14 2000 - werner@suse.de
|
* Thu Sep 14 2000 werner@suse.de
|
||||||
- Add some bug fixes
|
- Add some bug fixes
|
||||||
- Add missed ssh fix for none interactive shell
|
- Add missed ssh fix for none interactive shell
|
||||||
* Wed Jun 07 2000 - werner@suse.de
|
* Wed Jun 07 2000 werner@suse.de
|
||||||
- Fix some patches
|
- Fix some patches
|
||||||
- Add export patch for bash 2.04
|
- Add export patch for bash 2.04
|
||||||
- Fix `soname' of readline and history libraries
|
- Fix `soname' of readline and history libraries
|
||||||
- Fix linkage of major readline and history libraries
|
- Fix linkage of major readline and history libraries
|
||||||
* Mon Jun 05 2000 - schwab@suse.de
|
* Mon Jun 05 2000 schwab@suse.de
|
||||||
- Fix unwind_protect_pointer on 64-bit systems.
|
- Fix unwind_protect_pointer on 64-bit systems.
|
||||||
* Wed May 31 2000 - schwab@suse.de
|
* Wed May 31 2000 schwab@suse.de
|
||||||
- Comment out declaration of savestring in <readline.h> that conflicts
|
- Comment out declaration of savestring in <readline.h> that conflicts
|
||||||
with other people's declaration (eg. gdb).
|
with other people's declaration (eg. gdb).
|
||||||
* Mon May 29 2000 - aj@suse.de
|
* Mon May 29 2000 aj@suse.de
|
||||||
- Upgrade to bash 2.04 and readline 4.1.
|
- Upgrade to bash 2.04 and readline 4.1.
|
||||||
* Sun May 21 2000 - kukuk@suse.de
|
* Sun May 21 2000 kukuk@suse.de
|
||||||
- Use docdir
|
- Use docdir
|
||||||
* Sat Apr 01 2000 - bk@suse.de
|
* Sat Apr 01 2000 bk@suse.de
|
||||||
- remove obviosly unneeded link /usr/lib/libreadline.so on s390
|
- remove obviosly unneeded link /usr/lib/libreadline.so on s390
|
||||||
* Tue Mar 14 2000 - werner@suse.de
|
* Tue Mar 14 2000 werner@suse.de
|
||||||
- Add locale patch to enable LC_NUMERIC handling
|
- Add locale patch to enable LC_NUMERIC handling
|
||||||
* Thu Feb 24 2000 - werner@suse.de
|
* Thu Feb 24 2000 werner@suse.de
|
||||||
- Use $VENDOR for several linux architectures
|
- Use $VENDOR for several linux architectures
|
||||||
- Set check_window_size (shopt checkwinsize) to true, this will
|
- Set check_window_size (shopt checkwinsize) to true, this will
|
||||||
correct screen size even if it changes during a job.
|
correct screen size even if it changes during a job.
|
||||||
* Tue Feb 15 2000 - schwab@suse.de
|
* Tue Feb 15 2000 schwab@suse.de
|
||||||
- Update config.{guess,sub} to latest version.
|
- Update config.{guess,sub} to latest version.
|
||||||
- Fix spec file to create doc directory before installing into it.
|
- Fix spec file to create doc directory before installing into it.
|
||||||
* Fri Jan 28 2000 - werner@suse.de
|
* Sat Jan 29 2000 werner@suse.de
|
||||||
- Add mailstat patch (handles mail directories)
|
- Add mailstat patch (handles mail directories)
|
||||||
- Fix configuration (system is %%arch-suse-linux)
|
- Fix configuration (system is %%arch-suse-linux)
|
||||||
- Fix segfault (job handling)
|
- Fix segfault (job handling)
|
||||||
@ -809,60 +796,60 @@ EOF
|
|||||||
- Install shared readline and history in /lib (bash needs that)
|
- Install shared readline and history in /lib (bash needs that)
|
||||||
- Enable shared readline (version 4.0) and history library
|
- Enable shared readline (version 4.0) and history library
|
||||||
- Try to use shared readline and history for bash (TEST)
|
- Try to use shared readline and history for bash (TEST)
|
||||||
* Fri Dec 03 1999 - kasal@suse.de
|
* Fri Dec 03 1999 kasal@suse.de
|
||||||
- added command to make and install doc/bashref.html
|
- added command to make and install doc/bashref.html
|
||||||
* Fri Nov 26 1999 - kukuk@suse.de
|
* Fri Nov 26 1999 kukuk@suse.de
|
||||||
- Fix spec file
|
- Fix spec file
|
||||||
* Thu Nov 25 1999 - kukuk@suse.de
|
* Thu Nov 25 1999 kukuk@suse.de
|
||||||
- Merge Makefile.Linux with spec file, use RPM_OPT_FLAGS
|
- Merge Makefile.Linux with spec file, use RPM_OPT_FLAGS
|
||||||
- Remove --disable-dparen-arithmetic
|
- Remove --disable-dparen-arithmetic
|
||||||
* Mon Sep 13 1999 - bs@suse.de
|
* Mon Sep 13 1999 bs@suse.de
|
||||||
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
||||||
* Tue Aug 24 1999 - uli@suse.de
|
* Tue Aug 24 1999 uli@suse.de
|
||||||
- fixed for PPC
|
- fixed for PPC
|
||||||
* Mon Jul 19 1999 - florian@suse.de
|
* Mon Jul 19 1999 florian@suse.de
|
||||||
- update to bash 2.03, readline 4.0
|
- update to bash 2.03, readline 4.0
|
||||||
* Wed Jan 13 1999 - @suse.de
|
* Wed Jan 13 1999 @suse.de
|
||||||
- disabled `Broken pipe' messages
|
- disabled `Broken pipe' messages
|
||||||
* Sun Dec 13 1998 - bs@suse.de
|
* Sun Dec 13 1998 bs@suse.de
|
||||||
- removed notify message - bash 2.0 is standard for a long time now.
|
- removed notify message - bash 2.0 is standard for a long time now.
|
||||||
* Mon Dec 07 1998 - florian@suse.de
|
* Mon Dec 07 1998 florian@suse.de
|
||||||
- remove SSH_CLIENT-kludge as this cannot detect all correct cases
|
- remove SSH_CLIENT-kludge as this cannot detect all correct cases
|
||||||
where .bashrc should be loaded
|
where .bashrc should be loaded
|
||||||
- delete email-changes in bashbug script
|
- delete email-changes in bashbug script
|
||||||
- update readline to version 2.2.1
|
- update readline to version 2.2.1
|
||||||
* Thu Nov 12 1998 - bs@suse.de
|
* Thu Nov 12 1998 bs@suse.de
|
||||||
- minor fix for new rpm
|
- minor fix for new rpm
|
||||||
* Thu Oct 01 1998 - ro@suse.de
|
* Thu Oct 01 1998 ro@suse.de
|
||||||
- update to 2.02.1 / reintegrated werner's tmp-fix for bashbug
|
- update to 2.02.1 / reintegrated werner's tmp-fix for bashbug
|
||||||
* Thu Jul 23 1998 - werner@suse.de
|
* Thu Jul 23 1998 werner@suse.de
|
||||||
- use mktemp
|
- use mktemp
|
||||||
* Thu Jul 16 1998 - werner@suse.de
|
* Thu Jul 16 1998 werner@suse.de
|
||||||
- fix bashbug temp file handling
|
- fix bashbug temp file handling
|
||||||
* Wed Jun 17 1998 - ro@suse.de
|
* Wed Jun 17 1998 ro@suse.de
|
||||||
- changed general.h: !defined (gid_t)
|
- changed general.h: !defined (gid_t)
|
||||||
* Mon Oct 27 1997 - florian@suse.de
|
* Mon Oct 27 1997 florian@suse.de
|
||||||
- do not include old compatible-only safestring() in libreadline.a
|
- do not include old compatible-only safestring() in libreadline.a
|
||||||
* Thu Oct 09 1997 - florian@suse.de
|
* Thu Oct 09 1997 florian@suse.de
|
||||||
- update to version 2.01.1
|
- update to version 2.01.1
|
||||||
- add several bugfixes
|
- add several bugfixes
|
||||||
- fix missing things in spec-file
|
- fix missing things in spec-file
|
||||||
* Thu Aug 14 1997 - florian@suse.de
|
* Thu Aug 14 1997 florian@suse.de
|
||||||
- add several bug-fixes from gnu.bash.bug and fix memory management
|
- add several bug-fixes from gnu.bash.bug and fix memory management
|
||||||
of LC_ALL
|
of LC_ALL
|
||||||
* Sat Jul 05 1997 - florian@suse.de
|
* Sat Jul 05 1997 florian@suse.de
|
||||||
- add another bugfix from gnu.utils.bugs
|
- add another bugfix from gnu.utils.bugs
|
||||||
* Mon Jun 23 1997 - florian@suse.de
|
* Tue Jun 24 1997 florian@suse.de
|
||||||
- create the history file with 0600 perms
|
- create the history file with 0600 perms
|
||||||
- add minor bugfix to check for new email
|
- add minor bugfix to check for new email
|
||||||
* Thu Jun 05 1997 - florian@suse.de
|
* Thu Jun 05 1997 florian@suse.de
|
||||||
- bash: check for NULL-pointer before calling "savestring()"
|
- bash: check for NULL-pointer before calling "savestring()"
|
||||||
- add bashref.info and newer FAQ
|
- add bashref.info and newer FAQ
|
||||||
* Tue Apr 22 1997 - bs@suse.de
|
* Tue Apr 22 1997 bs@suse.de
|
||||||
- added FAQ and bashref.html to /usr/doc/packages/bash
|
- added FAQ and bashref.html to /usr/doc/packages/bash
|
||||||
* Sun Apr 13 1997 - florian@suse.de
|
* Mon Apr 14 1997 florian@suse.de
|
||||||
- update to bash 2.0 with lots of patches from gnu.utils.bugs
|
- update to bash 2.0 with lots of patches from gnu.utils.bugs
|
||||||
Mon Sep 2 02:48:35 MET DST 1996
|
Mon Sep 2 02:48:35 MET DST 1996
|
||||||
new version with security patches
|
new version with security patches
|
||||||
* Thu Jan 02 1997 - florian@suse.de
|
* Thu Jan 02 1997 florian@suse.de
|
||||||
security fix included (0xff was command separator)
|
security fix included (0xff was command separator)
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
--- lib/readline/input.c
|
|
||||||
+++ lib/readline/input.c 2007-05-11 10:42:11.000000000 +0200
|
|
||||||
@@ -151,7 +151,7 @@
|
|
||||||
{
|
|
||||||
pop_index--;
|
|
||||||
if (pop_index < 0)
|
|
||||||
- pop_index = ibuffer_len - 1;
|
|
||||||
+ pop_index = ibuffer_len;
|
|
||||||
ibuffer[pop_index] = key;
|
|
||||||
return (1);
|
|
||||||
}
|
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:1dd9deec85d347e69bb8e18cf84d01f693f8f8f343b1cc71feb37f09dad44886
|
oid sha256:5b9440ccb9f95348a8546b8c5c06358500e550e1e61c49e5be16ec7570b79356
|
||||||
size 5371
|
size 7718
|
||||||
|
Loading…
Reference in New Issue
Block a user