This commit is contained in:
parent
a10e730f3f
commit
d77626e854
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 20 15:10:06 CEST 2007 - werner@suse.de
|
||||||
|
|
||||||
|
- Remove error triggering path requirement (bug #326751)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 27 01:30:00 CEST 2007 - schwab@suse.de
|
Mon Aug 27 01:30:00 CEST 2007 - schwab@suse.de
|
||||||
|
|
||||||
|
27
bash.spec
27
bash.spec
@ -16,14 +16,12 @@ License: GPL v2 or later
|
|||||||
Group: System/Shells
|
Group: System/Shells
|
||||||
%define bash_vers 3.2
|
%define bash_vers 3.2
|
||||||
%define rl_vers 5.2
|
%define rl_vers 5.2
|
||||||
Requires: /%{_lib}/libhistory.so.%{rl_vers}
|
|
||||||
Requires: /%{_lib}/libreadline.so.%{rl_vers}
|
|
||||||
Recommends: bash-doc = %bash_vers
|
Recommends: bash-doc = %bash_vers
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
Version: 3.2
|
Version: 3.2
|
||||||
Release: 54
|
Release: 59
|
||||||
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
|
||||||
Source1: readline-%{rl_vers}.tar.bz2
|
Source1: readline-%{rl_vers}.tar.bz2
|
||||||
Source2: bash-%{bash_vers}-patches.tar.bz2
|
Source2: bash-%{bash_vers}-patches.tar.bz2
|
||||||
@ -68,8 +66,8 @@ Summary: Documentation how to Use the GNU Bourne-Again Shell
|
|||||||
Group: Documentation/Man
|
Group: Documentation/Man
|
||||||
Provides: bash:/usr/share/info/bash.info.gz
|
Provides: bash:/usr/share/info/bash.info.gz
|
||||||
Version: 3.2
|
Version: 3.2
|
||||||
Release: 13
|
Release: 18
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
|
|
||||||
%description -n bash-doc
|
%description -n bash-doc
|
||||||
This package contains the documentation for using the bourne shell
|
This package contains the documentation for using the bourne shell
|
||||||
@ -87,11 +85,11 @@ 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: 13
|
Release: 18
|
||||||
Recommends: readline-doc = %{version}
|
Recommends: readline-doc = %{version}
|
||||||
Provides: readline = 5.2
|
Provides: readline = 5.2
|
||||||
Obsoletes: readline <= 5.2
|
Obsoletes: readline <= 5.2
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
|
|
||||||
%description -n libreadline5
|
%description -n libreadline5
|
||||||
The readline library is used by the Bourne Again Shell (bash, the
|
The readline library is used by the Bourne Again Shell (bash, the
|
||||||
@ -110,13 +108,13 @@ Summary: Include Files and Libraries mandatory for Development.
|
|||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Provides: bash:/usr/%{_lib}/libreadline.a
|
Provides: bash:/usr/%{_lib}/libreadline.a
|
||||||
Version: 5.2
|
Version: 5.2
|
||||||
Release: 54
|
Release: 59
|
||||||
Requires: libreadline5 = %{version}
|
Requires: libreadline5 = %{version}
|
||||||
Requires: ncurses-devel
|
Requires: ncurses-devel
|
||||||
Requires: /%{_lib}/libhistory.so.%{rl_vers}
|
Requires: /%{_lib}/libhistory.so.%{rl_vers}
|
||||||
Requires: /%{_lib}/libreadline.so.%{rl_vers}
|
Requires: /%{_lib}/libreadline.so.%{rl_vers}
|
||||||
Recommends: readline-doc = %{version}
|
Recommends: readline-doc = %{version}
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
|
|
||||||
%description -n readline-devel
|
%description -n readline-devel
|
||||||
This package contains all necessary include files and libraries needed
|
This package contains all necessary include files and libraries needed
|
||||||
@ -134,8 +132,8 @@ Summary: Documentation how to Use and Programm with the Readline Library
|
|||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Provides: readline:/usr/share/info/readline.info.gz
|
Provides: readline:/usr/share/info/readline.info.gz
|
||||||
Version: 5.2
|
Version: 5.2
|
||||||
Release: 13
|
Release: 18
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
|
|
||||||
%description -n readline-doc
|
%description -n readline-doc
|
||||||
This package contains the documentation for using the readline library
|
This package contains the documentation for using the readline library
|
||||||
@ -394,8 +392,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%doc %{_infodir}/history.info.gz
|
%doc %{_infodir}/history.info.gz
|
||||||
%doc %{_infodir}/readline.info.gz
|
%doc %{_infodir}/readline.info.gz
|
||||||
%doc %{_defaultdocdir}/readline/
|
%doc %{_defaultdocdir}/readline/
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 20 2007 - werner@suse.de
|
||||||
|
- 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
|
||||||
|
Loading…
Reference in New Issue
Block a user