diff options
-rw-r--r-- | ChangeLog | 36 | ||||
-rw-r--r-- | URPM.pm | 2 | ||||
-rw-r--r-- | perl-URPM.spec | 6 |
3 files changed, 42 insertions, 2 deletions
@@ -1,3 +1,39 @@ +2006-03-13 17:51 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * Makefile.PL: Get version comparison right + +2006-03-13 17:40 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * Makefile.PL: Define new symbol in Makefile.PL depending on + detected rpm version (no simpler way to get it from the C + preprocessor, it seems) + +2006-03-13 17:37 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Fix for undocumented ABI changes in rpm 4.4.5 callback + interface + +2006-03-13 16:56 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Protection when no data is passed to transaction + callbacks + +2006-03-13 15:44 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Fix misplaced break in switch statement + +2006-03-10 17:07 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: "triggeredby" in traverse_tag never worked. + +2006-03-08 16:51 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Fix small memleak on db open error + +2006-03-07 11:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm, perl-URPM.spec: 1.39 + 2006-03-07 11:27 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> * Makefile.PL: Clean up gcc options @@ -10,7 +10,7 @@ use URPM::Resolve; use URPM::Signature; our @ISA = qw(DynaLoader); -our $VERSION = '1.39'; +our $VERSION = '1.40'; URPM->bootstrap($VERSION); diff --git a/perl-URPM.spec b/perl-URPM.spec index 9474944..68fd8a3 100644 --- a/perl-URPM.spec +++ b/perl-URPM.spec @@ -5,7 +5,7 @@ %define name perl-URPM %define real_name URPM -%define version 1.39 +%define version 1.40 %define release %mkrel 1 %define group %(perl -e 'printf "%%s\\n", "%_vendor" =~ /\\bmandr/i ? "Development/Perl" : "Applications/CPAN"') @@ -62,6 +62,10 @@ hdlist files and manage them in memory. %{compat_perl_vendorarch}/auto/URPM/URPM.so %changelog +* Wed Mar 15 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 1.40-1mdk +- Fixes for rpm 4.4.5 +- Fix traversing rpmdb for "triggeredby" relationship + * Tue Mar 07 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 1.39-1mdk - More memory protection - Fix gcc options |