diff options
-rw-r--r-- | ChangeLog | 57 | ||||
-rw-r--r-- | URPM.pm | 2 | ||||
-rw-r--r-- | perl-URPM.spec | 6 |
3 files changed, 63 insertions, 2 deletions
@@ -1,3 +1,60 @@ +2005-10-03 11:19 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm: Documentation encoding fix + +2005-10-03 11:17 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * MANIFEST, Makefile.PL, test-rpm-1.0-1mdk.noarch.rpm, + t/00prepare.t, t/parse.t: Rebuild test rpm when running tests. + Add cleanup to files. + +2005-10-03 10:40 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * MANIFEST: Update MANIFEST + +2005-10-03 10:38 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * build_rpm: Remove obsolete script + +2005-10-03 10:36 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * Makefile.PL: Add an rpm makefile target + +2005-10-03 10:20 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * Makefile.PL: Makefile.PL cleanup + +2005-09-14 15:17 Olivier Thauvin <thauvin at aerov.jussieu.fr> + + * URPM.xs: - add some options to parse_rpm (nomd5, nopayload) + +2005-09-12 17:13 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM/Resolve.pm: Minor comment fixes + +2005-09-09 14:54 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * perl-URPM.spec: 1.27-1mdk + +2005-09-09 14:53 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm, URPM.xs: Make URPM::add_macro expand literal \n to \\\n + in macro definitions. add URPM::add_macro_noexpand to get the + old (rpmlib like) behaviour + +2005-09-01 18:19 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm, perl-URPM.spec: 1.26-1mdk + +2005-09-01 17:43 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Add a "noscripts" option to run transactions. Inhibits + pre, preun, post and postun scritps. + +2005-08-23 14:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm, perl-URPM.spec: 1.25-1mdk + 2005-08-23 14:15 Pixel <pixel at mandriva.com> * URPM.xs: correctly handle -1 fileno returned by callback_open @@ -10,7 +10,7 @@ use URPM::Resolve; use URPM::Signature; our @ISA = qw(DynaLoader); -our $VERSION = '1.27'; +our $VERSION = '1.28'; URPM->bootstrap($VERSION); diff --git a/perl-URPM.spec b/perl-URPM.spec index b456bcb..060f1bc 100644 --- a/perl-URPM.spec +++ b/perl-URPM.spec @@ -5,7 +5,7 @@ %define name perl-URPM %define real_name URPM -%define version 1.27 +%define version 1.28 %define release %mkrel 1 %define group %(perl -e 'printf "%%s\\n", "%_vendor" =~ /\\bmandr/i ? "Development/Perl" : "Applications/CPAN"') @@ -63,6 +63,10 @@ hdlist files and manage them in memory. %{compat_perl_vendorarch}/auto/URPM/URPM.so %changelog +* 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 + * Fri Sep 09 2005 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 1.27-1mdk - make add_macro quote embedded newlines. add_macro_noexpand now works like the previous version (i.e. like in the rpmlib) |