aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-10-03 09:25:42 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-10-03 09:25:42 +0000
commit6a954655b19da2b7f8613252023edb8a197e17ac (patch)
tree6e526f49695eacb83b84ca9641b6a6e4ae189240
parent3bd0a91a70dd75012e5aa91d7cbda75a0cb85978 (diff)
downloadperl-URPM-1.28.tar
perl-URPM-1.28.tar.gz
perl-URPM-1.28.tar.bz2
perl-URPM-1.28.tar.xz
perl-URPM-1.28.zip
1.28-1mdk1.28
-rw-r--r--ChangeLog57
-rw-r--r--URPM.pm2
-rw-r--r--perl-URPM.spec6
3 files changed, 63 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b93243f..17fdd0b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/URPM.pm b/URPM.pm
index 1bb5de4..b873e13 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -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)