This commit is contained in:
parent
067e8ebe8f
commit
3c09d0e71f
@ -59,16 +59,16 @@
|
|||||||
+ chmod $mode $f
|
+ chmod $mode $f
|
||||||
done
|
done
|
||||||
|
|
||||||
+for f in `find $RPM_BUILD_ROOT ! -path "${debugdir}/*.debug" -type f \( -name "*.exe.mdb" -or -name "*.dll.mdb" \) `
|
+#for f in `find $RPM_BUILD_ROOT ! -path "${debugdir}/*.debug" -type f \( -name "*.exe.mdb" -or -name "*.dll.mdb" \) `
|
||||||
+do
|
+#do
|
||||||
+ dn=$(dirname $f | sed -n -e "s#^$RPM_BUILD_ROOT##p")
|
+# dn=$(dirname $f | sed -n -e "s#^$RPM_BUILD_ROOT##p")
|
||||||
+ case "$dn" in
|
+# case "$dn" in
|
||||||
+ /usr/lib/debug/*) continue ;;
|
+# /usr/lib/debug/*) continue ;;
|
||||||
+ esac
|
+# esac
|
||||||
+ debugdn="${debugdir}${dn}"
|
+# debugdn="${debugdir}${dn}"
|
||||||
+ mkdir -p "${debugdn}"
|
+# mkdir -p "${debugdn}"
|
||||||
+ mv "$f" "${debugdn}"
|
+# mv "$f" "${debugdn}"
|
||||||
+done
|
+#done
|
||||||
+
|
+
|
||||||
+
|
+
|
||||||
mkdir -p ${RPM_BUILD_ROOT}/usr/src/debug
|
mkdir -p ${RPM_BUILD_ROOT}/usr/src/debug
|
||||||
|
@ -16,7 +16,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
|
Version: 4.4.2
|
||||||
Release: 199
|
Release: 201
|
||||||
Requires: rpm = %{version}
|
Requires: rpm = %{version}
|
||||||
%py_requires
|
%py_requires
|
||||||
Source99: rpm.spec
|
Source99: rpm.spec
|
||||||
@ -65,11 +65,11 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- fix unicode queries
|
- fix unicode queries
|
||||||
* Fri Mar 30 2007 rguenther@suse.de
|
* Fri Mar 30 2007 rguenther@suse.de
|
||||||
- add ncurses-devel and zlib-devel BuildRequires.
|
- add ncurses-devel and zlib-devel BuildRequires.
|
||||||
* Wed Oct 18 2006 mls@suse.de
|
* Thu Oct 19 2006 mls@suse.de
|
||||||
- use rpm.spec for building instead of duplication everything
|
- use rpm.spec for building instead of duplication everything
|
||||||
- delete superfluous .a and .la files [#202604]
|
- delete superfluous .a and .la files [#202604]
|
||||||
- create .pyc and .pyo files [#205711]
|
- create .pyc and .pyo files [#205711]
|
||||||
* Sun Oct 15 2006 schwab@suse.de
|
* Mon Oct 16 2006 schwab@suse.de
|
||||||
- Make sure config.rpath is present.
|
- Make sure config.rpath is present.
|
||||||
* Fri Sep 22 2006 aj@suse.de
|
* Fri Sep 22 2006 aj@suse.de
|
||||||
- Fix for python2.5.
|
- Fix for python2.5.
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 28 16:35:46 CET 2008 - ro@suse.de
|
||||||
|
|
||||||
|
- finddebuginfo.diff: disable debuginfo for mono at the moment
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 21 12:27:18 CET 2008 - mls@suse.de
|
Mon Jan 21 12:27:18 CET 2008 - mls@suse.de
|
||||||
|
|
||||||
|
32
rpm.spec
32
rpm.spec
@ -20,7 +20,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
|
Version: 4.4.2
|
||||||
Release: 161
|
Release: 163
|
||||||
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
|
||||||
@ -345,7 +345,7 @@ 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: 389
|
Release: 391
|
||||||
#
|
#
|
||||||
|
|
||||||
%description -n popt
|
%description -n popt
|
||||||
@ -368,7 +368,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: 389
|
Release: 391
|
||||||
Requires: popt = 1.7
|
Requires: popt = 1.7
|
||||||
Requires: glibc-devel
|
Requires: glibc-devel
|
||||||
|
|
||||||
@ -403,6 +403,8 @@ Authors:
|
|||||||
%doc %{_mandir}/man3/popt.3*
|
%doc %{_mandir}/man3/popt.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 28 2008 ro@suse.de
|
||||||
|
- finddebuginfo.diff: disable debuginfo for mono at the moment
|
||||||
* Mon Jan 21 2008 mls@suse.de
|
* Mon Jan 21 2008 mls@suse.de
|
||||||
- change vendor detection so that it works in build service, too
|
- change vendor detection so that it works in build service, too
|
||||||
* Sat Jan 19 2008 mls@suse.de
|
* Sat Jan 19 2008 mls@suse.de
|
||||||
@ -426,7 +428,7 @@ Authors:
|
|||||||
- implement supplements for lang_packages (#306412)
|
- implement supplements for lang_packages (#306412)
|
||||||
* Fri Aug 10 2007 dmueller@suse.de
|
* Fri Aug 10 2007 dmueller@suse.de
|
||||||
- package size reduction (#217472)
|
- package size reduction (#217472)
|
||||||
* Wed Aug 08 2007 dmueller@suse.de
|
* Thu Aug 09 2007 dmueller@suse.de
|
||||||
- support optional -n parameter in %%lang_package
|
- support optional -n parameter in %%lang_package
|
||||||
- make %%lang_package export a -all provides that
|
- make %%lang_package export a -all provides that
|
||||||
can be used to resolve conflicts with the bundle
|
can be used to resolve conflicts with the bundle
|
||||||
@ -470,7 +472,7 @@ Authors:
|
|||||||
* Tue Apr 17 2007 dmueller@suse.de
|
* Tue Apr 17 2007 dmueller@suse.de
|
||||||
- strip comment and gcc command line sections from the packages
|
- strip comment and gcc command line sections from the packages
|
||||||
- rework SYMTAB_KEEP to accept a file pattern
|
- rework SYMTAB_KEEP to accept a file pattern
|
||||||
* Sun Apr 08 2007 schwab@suse.de
|
* Mon Apr 09 2007 schwab@suse.de
|
||||||
- Include compilation directory in debuginfo file list.
|
- Include compilation directory in debuginfo file list.
|
||||||
* Sat Mar 24 2007 ro@suse.de
|
* Sat Mar 24 2007 ro@suse.de
|
||||||
- added libbz2-devel to BuildRequires and Requires for -devel
|
- added libbz2-devel to BuildRequires and Requires for -devel
|
||||||
@ -527,7 +529,7 @@ Authors:
|
|||||||
- Fix the KMP Package spec file template so that whenever the
|
- Fix the KMP Package spec file template so that whenever the
|
||||||
initrd contains a module that the KMP includes, the initrd will
|
initrd contains a module that the KMP includes, the initrd will
|
||||||
be regenerated (211646).
|
be regenerated (211646).
|
||||||
* Sun Oct 15 2006 schwab@suse.de
|
* Mon Oct 16 2006 schwab@suse.de
|
||||||
- Make sure config.rpath is present.
|
- Make sure config.rpath is present.
|
||||||
* Mon Oct 02 2006 agruen@suse.de
|
* Mon Oct 02 2006 agruen@suse.de
|
||||||
- %%suse_kernel_module_package: Abort when trying to build for a
|
- %%suse_kernel_module_package: Abort when trying to build for a
|
||||||
@ -626,14 +628,14 @@ Authors:
|
|||||||
- add back missing chunk of srcdefattr patch [#48870]
|
- add back missing chunk of srcdefattr patch [#48870]
|
||||||
- add rpmvercmp patch from Peter Bowan
|
- add rpmvercmp patch from Peter Bowan
|
||||||
- add -m32 to ix86 optflags to make --target work [#141206]
|
- add -m32 to ix86 optflags to make --target work [#141206]
|
||||||
* Sat Feb 04 2006 agruen@suse.de
|
* Sun Feb 05 2006 agruen@suse.de
|
||||||
- rpm-suse-kernel-module-subpackage: Allow to specify a list of
|
- rpm-suse-kernel-module-subpackage: Allow to specify a list of
|
||||||
kernel flavors to build (-x) instead of specifying an exclude
|
kernel flavors to build (-x) instead of specifying an exclude
|
||||||
list.
|
list.
|
||||||
* Fri Feb 03 2006 mls@suse.de
|
* Fri Feb 03 2006 mls@suse.de
|
||||||
- use RPMSENSE_STRONG instead of RPMSENSE_WEAK
|
- use RPMSENSE_STRONG instead of RPMSENSE_WEAK
|
||||||
- drop support for EssentialFor
|
- drop support for EssentialFor
|
||||||
* Wed Feb 01 2006 agruen@suse.de
|
* Thu Feb 02 2006 agruen@suse.de
|
||||||
- rpm-suse-kernel-module-subpackage: Allow to specify a custom
|
- rpm-suse-kernel-module-subpackage: Allow to specify a custom
|
||||||
%%files list for the kernel-specific sub-packages. Use the
|
%%files list for the kernel-specific sub-packages. Use the
|
||||||
Summary and Group tags, and the %%description section from the
|
Summary and Group tags, and the %%description section from the
|
||||||
@ -767,12 +769,12 @@ Authors:
|
|||||||
- use binutils for debuginfo packages
|
- use binutils for debuginfo packages
|
||||||
* Fri Jan 14 2005 coolo@suse.de
|
* Fri Jan 14 2005 coolo@suse.de
|
||||||
- name the debug package -debuginfo to sync with redhat/fedora
|
- name the debug package -debuginfo to sync with redhat/fedora
|
||||||
* Mon Dec 13 2004 sndirsch@suse.de
|
* Tue Dec 14 2004 sndirsch@suse.de
|
||||||
- moved chinese popt mo file to correct directory (Bug #47262)
|
- moved chinese popt mo file to correct directory (Bug #47262)
|
||||||
* Fri Dec 03 2004 mls@suse.de
|
* Fri Dec 03 2004 mls@suse.de
|
||||||
- fix update of rpm with same name/version/release but different
|
- fix update of rpm with same name/version/release but different
|
||||||
architecture
|
architecture
|
||||||
* Thu Nov 25 2004 ro@suse.de
|
* Fri Nov 26 2004 ro@suse.de
|
||||||
- fix build with python-2.4
|
- fix build with python-2.4
|
||||||
* Tue Nov 16 2004 ro@suse.de
|
* Tue Nov 16 2004 ro@suse.de
|
||||||
- update permissions handling
|
- update permissions handling
|
||||||
@ -866,7 +868,7 @@ Authors:
|
|||||||
* Thu Feb 05 2004 ro@suse.de
|
* Thu Feb 05 2004 ro@suse.de
|
||||||
- linux.prov: don't block soname in versioned-requires
|
- linux.prov: don't block soname in versioned-requires
|
||||||
- linux.req: disable perl-requires, it's broken
|
- linux.req: disable perl-requires, it's broken
|
||||||
* Tue Feb 03 2004 schwab@suse.de
|
* Wed Feb 04 2004 schwab@suse.de
|
||||||
- Readd ia64 64bit provides hack.
|
- Readd ia64 64bit provides hack.
|
||||||
* Tue Feb 03 2004 kukuk@suse.de
|
* Tue Feb 03 2004 kukuk@suse.de
|
||||||
- Remove all special find-requires scripts and use the default one
|
- Remove all special find-requires scripts and use the default one
|
||||||
@ -894,7 +896,7 @@ Authors:
|
|||||||
- really disable rpmconfigcheck
|
- really disable rpmconfigcheck
|
||||||
* Sat Sep 20 2003 kukuk@suse.de
|
* Sat Sep 20 2003 kukuk@suse.de
|
||||||
- Don't enable rpmconfigcheck per default
|
- Don't enable rpmconfigcheck per default
|
||||||
* Fri Sep 19 2003 schwab@suse.de
|
* Sat Sep 20 2003 schwab@suse.de
|
||||||
- Fix descriptor leak [#31450].
|
- Fix descriptor leak [#31450].
|
||||||
* Mon Sep 15 2003 mls@suse.de
|
* Mon Sep 15 2003 mls@suse.de
|
||||||
- remove redhat options from popt (#30302)
|
- remove redhat options from popt (#30302)
|
||||||
@ -953,7 +955,7 @@ Authors:
|
|||||||
- make PreReqs work again if --nodeps is used
|
- make PreReqs work again if --nodeps is used
|
||||||
- fix rpmconfigcheck
|
- fix rpmconfigcheck
|
||||||
- apply find-debuginfo.sh patch from coolo
|
- apply find-debuginfo.sh patch from coolo
|
||||||
* Thu Jun 12 2003 kukuk@suse.de
|
* Fri Jun 13 2003 kukuk@suse.de
|
||||||
- Fix find-lang.sh (special /usr/share/locale handling)
|
- Fix find-lang.sh (special /usr/share/locale handling)
|
||||||
* Thu Jun 12 2003 coolo@suse.de
|
* Thu Jun 12 2003 coolo@suse.de
|
||||||
- enhancing find-lang.sh to take KDE/GNOME into account and label
|
- enhancing find-lang.sh to take KDE/GNOME into account and label
|
||||||
@ -1170,7 +1172,7 @@ Authors:
|
|||||||
- Fix to build with new gettext.
|
- Fix to build with new gettext.
|
||||||
* Mon Feb 18 2002 ro@suse.de
|
* Mon Feb 18 2002 ro@suse.de
|
||||||
- added requires for suse-build-key
|
- added requires for suse-build-key
|
||||||
* Mon Feb 11 2002 ro@suse.de
|
* Tue Feb 12 2002 ro@suse.de
|
||||||
- tar option for bz2 is now "j" (re-added)
|
- tar option for bz2 is now "j" (re-added)
|
||||||
* Mon Feb 11 2002 ma@suse.de
|
* Mon Feb 11 2002 ma@suse.de
|
||||||
- unk_ugname_cached.diff: Upon building a package, unpacking sources
|
- unk_ugname_cached.diff: Upon building a package, unpacking sources
|
||||||
@ -1327,7 +1329,7 @@ Authors:
|
|||||||
* Wed Apr 05 2000 bk@suse.de
|
* Wed Apr 05 2000 bk@suse.de
|
||||||
- uses autoconf and automake now
|
- uses autoconf and automake now
|
||||||
- added /lib/libbz2.so* and /lib/libz.so* to filelist on s390
|
- added /lib/libbz2.so* and /lib/libz.so* to filelist on s390
|
||||||
* Sat Apr 01 2000 bk@suse.de
|
* Sun Apr 02 2000 bk@suse.de
|
||||||
- add s390 architecture support to rpm
|
- add s390 architecture support to rpm
|
||||||
- add required %%suse_update_config for s390
|
- add required %%suse_update_config for s390
|
||||||
- rpm is NOT linked statically on s390 for now
|
- rpm is NOT linked statically on s390 for now
|
||||||
|
Loading…
Reference in New Issue
Block a user