diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-01-16 15:15:43 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-01-16 15:15:43 +0000 |
commit | 720e72945509eb31809d38fa5730f0ffe71a9550 (patch) | |
tree | 61f7a5663d68513846738697b043f94a231ac8c2 | |
parent | 52095ec71cde57306fc68f04737af0a7e2e132d7 (diff) | |
download | rpmtools-720e72945509eb31809d38fa5730f0ffe71a9550.tar rpmtools-720e72945509eb31809d38fa5730f0ffe71a9550.tar.gz rpmtools-720e72945509eb31809d38fa5730f0ffe71a9550.tar.bz2 rpmtools-720e72945509eb31809d38fa5730f0ffe71a9550.tar.xz rpmtools-720e72945509eb31809d38fa5730f0ffe71a9550.zip |
5.0.27-1mdk5.0.27
-rw-r--r-- | ChangeLog | 21 | ||||
-rw-r--r-- | rpmtools.spec | 18 |
2 files changed, 31 insertions, 8 deletions
@@ -1,3 +1,24 @@ +2006-01-16 15:51 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * gendistrib: Use mktemp for temp files. Error checking when + opening files. Fix comments. Update copyright. + +2006-01-16 15:34 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * gendistrib: Revert Titi's last commit and reindent properly + +2006-01-13 12:02 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * rpmtools.spec: Add BuildRequires for regression tests + +2006-01-11 15:37 Thierry Vignaud <tvignaud at mandriva.com> + + * gendistrib: fix obvious bug + +2005-12-30 17:06 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * rpmtools.spec: 5.0.26-2mdk + 2005-12-30 16:53 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> * gendistrib: Fix typo; update copyright diff --git a/rpmtools.spec b/rpmtools.spec index 61a625f..5b7dfb8 100644 --- a/rpmtools.spec +++ b/rpmtools.spec @@ -1,7 +1,7 @@ %define name rpmtools # do not modify here, see spec file in the CVS -%define version 5.0.26 -%define release %mkrel 2 +%define version 5.0.27 +%define release %mkrel 1 %define group %(perl -e 'print "%_vendor" =~ /\\bmandr/i ? "System/Configuration/Packaging" : "System Environment/Base"') %define rpm_version %(rpm -q --queryformat '%{VERSION}-%{RELEASE}' rpm) @@ -39,25 +39,22 @@ Provides: perl(packdrake) Packdrake is a simple indexed archive builder and extractor using standard compression methods. -Packadrakeng is a from scratch rewrite of the original packdrake. Its format -is fully compatible with old packdrake. - %prep %setup -q %build -%{__perl} Makefile.PL INSTALLDIRS=vendor +%__perl Makefile.PL INSTALLDIRS=vendor %make OPTIMIZE="%optflags" %check %make test %install -%{__rm} -rf %{buildroot} +%__rm -rf %{buildroot} %makeinstall_std %clean -%{__rm} -rf %{buildroot} +%__rm -rf %{buildroot} %files %defattr(-,root,root) @@ -82,6 +79,11 @@ is fully compatible with old packdrake. %{_mandir}/man1/packdrake* %changelog +* Mon Jan 16 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 5.0.27-1mdk +- Replace serial by epoch everywhere in parsehdlist (rpm 4.4.4 compatibility) +- Fix BuildRequires +- Misc. code cleanup in gendistrib + * Fri Dec 30 2005 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 5.0.26-2mdk - Bump conflicts due to file moves - Don't install empty manpages |