This commit is contained in:
parent
a7ee6c88b6
commit
2028891db1
@ -24,7 +24,7 @@ License: GPL v2 or later
|
|||||||
Group: System/Packages
|
Group: System/Packages
|
||||||
Summary: Python Bindings for Manipulating RPM Packages
|
Summary: Python Bindings for Manipulating RPM Packages
|
||||||
Version: 4.4.2.3
|
Version: 4.4.2.3
|
||||||
Release: 7
|
Release: 8
|
||||||
Requires: rpm = %{version}
|
Requires: rpm = %{version}
|
||||||
%py_requires
|
%py_requires
|
||||||
Source99: rpm.spec
|
Source99: rpm.spec
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 20 16:16:01 CEST 2008 - mls@suse.de
|
||||||
|
|
||||||
|
- drop static libraries and libtool archives
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 2 18:30:41 CEST 2008 - vuntz@suse.de
|
Thu Oct 2 18:30:41 CEST 2008 - vuntz@suse.de
|
||||||
|
|
||||||
|
40
rpm.spec
40
rpm.spec
@ -27,7 +27,7 @@ PreReq: %insserv_prereq %fillup_prereq permissions
|
|||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Summary: The RPM Package Manager
|
Summary: The RPM Package Manager
|
||||||
Version: 4.4.2.3
|
Version: 4.4.2.3
|
||||||
Release: 7
|
Release: 8
|
||||||
Source: rpm-%{version}.tar.bz2
|
Source: rpm-%{version}.tar.bz2
|
||||||
Source1: RPM-HOWTO.tar.bz2
|
Source1: RPM-HOWTO.tar.bz2
|
||||||
Source2: RPM-Tips.html.tar.bz2
|
Source2: RPM-Tips.html.tar.bz2
|
||||||
@ -118,7 +118,7 @@ Summary: Include Files and Libraries mandatory for Development
|
|||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Group: System/Packages
|
Group: System/Packages
|
||||||
Requires: rpm = %{version}
|
Requires: rpm = %{version}
|
||||||
Requires: popt-devel zlib-devel bzip2 libbz2-devel lzma-alpha-devel libselinux-devel
|
Requires: popt-devel
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains the RPM C library and header files. These
|
This package contains the RPM C library and header files. These
|
||||||
@ -129,6 +129,27 @@ need an intimate knowledge of RPM packages in order to function.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Erik Troan <ewt@redhat.com>
|
||||||
|
Marc Ewing <marc@redhat.com>
|
||||||
|
|
||||||
|
%package devel-static
|
||||||
|
Summary: Include Files and Libraries mandatory for Development
|
||||||
|
License: GPL v2 or later
|
||||||
|
Group: System/Packages
|
||||||
|
Requires: rpm-devel = %{version}
|
||||||
|
Requires: zlib-devel bzip2 libbz2-devel lzma-alpha-devel libselinux-devel libebl-devel
|
||||||
|
|
||||||
|
%description devel-static
|
||||||
|
This package contains the RPM C library and header files. These
|
||||||
|
development files will simplify the process of writing programs which
|
||||||
|
manipulate RPM packages and databases and are intended to make it
|
||||||
|
easier to create graphical package managers or any other tools that
|
||||||
|
need an intimate knowledge of RPM packages in order to function.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
Authors:
|
||||||
--------
|
--------
|
||||||
Erik Troan <ewt@redhat.com>
|
Erik Troan <ewt@redhat.com>
|
||||||
@ -238,6 +259,8 @@ done
|
|||||||
popd
|
popd
|
||||||
gzip -9 CHANGES
|
gzip -9 CHANGES
|
||||||
rm -rf $RPM_BUILD_ROOT/%{_libdir}/python%{py_ver}
|
rm -rf $RPM_BUILD_ROOT/%{_libdir}/python%{py_ver}
|
||||||
|
#rm $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||||
|
#rm $RPM_BUILD_ROOT%{_libdir}/*.a
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -285,19 +308,22 @@ fi
|
|||||||
%files devel
|
%files devel
|
||||||
%defattr(644,root,root,755)
|
%defattr(644,root,root,755)
|
||||||
/usr/include/rpm
|
/usr/include/rpm
|
||||||
%{_libdir}/librpm*.a
|
|
||||||
%{_libdir}/librpm*.la
|
|
||||||
%{_libdir}/librpm.so
|
%{_libdir}/librpm.so
|
||||||
%{_libdir}/librpmbuild.so
|
%{_libdir}/librpmbuild.so
|
||||||
%{_libdir}/librpmdb.so
|
%{_libdir}/librpmdb.so
|
||||||
%{_libdir}/librpmio.so
|
%{_libdir}/librpmio.so
|
||||||
|
|
||||||
|
%files devel-static
|
||||||
|
%defattr(644,root,root,755)
|
||||||
|
%{_libdir}/librpm*.a
|
||||||
|
%{_libdir}/librpm*.la
|
||||||
|
|
||||||
%package -n popt
|
%package -n popt
|
||||||
Summary: A C library for parsing command line parameters
|
Summary: A C library for parsing command line parameters
|
||||||
License: LGPL v2.1 or later
|
License: LGPL v2.1 or later
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Version: 1.7
|
Version: 1.7
|
||||||
Release: 455
|
Release: 456
|
||||||
#
|
#
|
||||||
|
|
||||||
%description -n popt
|
%description -n popt
|
||||||
@ -320,7 +346,7 @@ Summary: C Library for Parsing Command Line Parameters
|
|||||||
License: LGPL v2.1 or later
|
License: LGPL v2.1 or later
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Version: 1.7
|
Version: 1.7
|
||||||
Release: 455
|
Release: 456
|
||||||
Requires: popt = 1.7
|
Requires: popt = 1.7
|
||||||
Requires: glibc-devel
|
Requires: glibc-devel
|
||||||
|
|
||||||
@ -355,6 +381,8 @@ Authors:
|
|||||||
%doc %{_mandir}/man3/popt.3*
|
%doc %{_mandir}/man3/popt.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Oct 20 2008 mls@suse.de
|
||||||
|
- drop static libraries and libtool archives
|
||||||
* Thu Oct 02 2008 vuntz@suse.de
|
* Thu Oct 02 2008 vuntz@suse.de
|
||||||
- support the new -t option of suse_update_desktop_file.sh in
|
- support the new -t option of suse_update_desktop_file.sh in
|
||||||
rpm-suse_macros
|
rpm-suse_macros
|
||||||
|
Loading…
x
Reference in New Issue
Block a user