diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-11-02 14:44:58 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-11-02 14:44:58 +0000 |
commit | 997da11b661ab92e72cd1da9f746e6a44b8c4cec (patch) | |
tree | ab82e40acdcfaf2e013e6406dc6c2f4a345732c1 | |
parent | c04bd25ea7d4e53a7874c2d8bdfafa3a6697d28c (diff) | |
download | perl-URPM-997da11b661ab92e72cd1da9f746e6a44b8c4cec.tar perl-URPM-997da11b661ab92e72cd1da9f746e6a44b8c4cec.tar.gz perl-URPM-997da11b661ab92e72cd1da9f746e6a44b8c4cec.tar.bz2 perl-URPM-997da11b661ab92e72cd1da9f746e6a44b8c4cec.tar.xz perl-URPM-997da11b661ab92e72cd1da9f746e6a44b8c4cec.zip |
1.29-1mdk1.29
-rw-r--r-- | ChangeLog | 41 | ||||
-rw-r--r-- | URPM.pm | 2 | ||||
-rw-r--r-- | perl-URPM.spec | 13 |
3 files changed, 51 insertions, 5 deletions
@@ -1,3 +1,44 @@ +2005-11-02 11:42 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm: Mention noscripts option in docs + +2005-10-28 16:30 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm: Doc neatification + +2005-10-28 16:15 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * Makefile.PL: Require MDV::Packdrakeng in Makefile.PL + +2005-10-28 16:10 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM/Build.pm, t/parse.t: Use new MDV namespace + +2005-10-18 18:46 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm: More docs for confusing method names + +2005-10-10 20:21 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Add the RPMPROB_FILTER_DISKNODES flag for running + transactions with the nosize option. Although rpm doesn't seem to + use it internally, it sets it on the --ignoresize command-line + option. + +2005-10-04 14:19 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * t/parse.t: Don't require Packdrakeng for running tests + +2005-10-04 14:00 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * perl-URPM.spec: Remove buildrequires on bzip2. Simplify + buildreq_perl_devel conditional dependency per Buchan's + suggestion. + +2005-10-03 11:25 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm, perl-URPM.spec: 1.28-1mdk + 2005-10-03 11:19 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> * URPM.pm: Documentation encoding fix @@ -10,7 +10,7 @@ use URPM::Resolve; use URPM::Signature; our @ISA = qw(DynaLoader); -our $VERSION = '1.28'; +our $VERSION = '1.29'; URPM->bootstrap($VERSION); diff --git a/perl-URPM.spec b/perl-URPM.spec index 6e63c2c..c0b4cf5 100644 --- a/perl-URPM.spec +++ b/perl-URPM.spec @@ -1,11 +1,11 @@ # Do not edit this spec from src.rpm -# This spec is part of Mandrakesoft's cvs +# This spec lives in Mandriva's cvs # $Id$ %define name perl-URPM %define real_name URPM -%define version 1.28 +%define version 1.29 %define release %mkrel 1 %define group %(perl -e 'printf "%%s\\n", "%_vendor" =~ /\\bmandr/i ? "Development/Perl" : "Applications/CPAN"') @@ -25,8 +25,9 @@ Source: %{real_name}-%{version}.tar.bz2 URL: http://cvs.mandriva.com/cgi-bin/cvsweb.cgi/soft/perl-URPM BuildRequires: perl%{?mdkversion:-devel} BuildRequires: rpm-devel >= 4.2.3 -Requires: rpm >= %{rpm_version}, bzip2 >= 1.0 -Requires: packdrake >= 5.0.2 +Requires: rpm >= %{rpm_version} +Requires: bzip2 >= 1.0 +Requires: perl(MDV::Packdrakeng) Requires: perl-base >= 2:5.8.7 Provides: perl(URPM::Build) = %{version}-%{release} Provides: perl(URPM::Resolve) = %{version}-%{release} @@ -63,6 +64,10 @@ hdlist files and manage them in memory. %{compat_perl_vendorarch}/auto/URPM/URPM.so %changelog +* Wed Nov 02 2005 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 1.29-1mdk +- Don't require packdrake, use MDV::Packdrakeng instead +- Support for --ignoresize + * Mon Oct 03 2005 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 1.28-1mdk - add some options to parse_rpm (nomd5, nopayload) (Olivier Thauvin) - Build process cleanup |