diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-03-03 15:48:33 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2006-03-03 15:48:33 +0000 |
commit | b764bade878b4dbf3569beee20413a7b278ac623 (patch) | |
tree | 99bec2ee3a751d58392bb79ce0f9054a3d2cccb5 | |
parent | acfa8ff6702e6c66132b2e8fab1d30a6b8f4fa42 (diff) | |
download | perl-URPM-b764bade878b4dbf3569beee20413a7b278ac623.tar perl-URPM-b764bade878b4dbf3569beee20413a7b278ac623.tar.gz perl-URPM-b764bade878b4dbf3569beee20413a7b278ac623.tar.bz2 perl-URPM-b764bade878b4dbf3569beee20413a7b278ac623.tar.xz perl-URPM-b764bade878b4dbf3569beee20413a7b278ac623.zip |
1.37v1_37
-rw-r--r-- | ChangeLog | 74 | ||||
-rw-r--r-- | URPM.pm | 2 | ||||
-rw-r--r-- | perl-URPM.spec | 9 |
3 files changed, 83 insertions, 2 deletions
@@ -1,3 +1,77 @@ +2006-03-03 16:08 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm: Document URPM::verify_signature() + +2006-03-03 16:05 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Include key id in verify_signature()'s OK output. Also, + avoid a header leak. + +2006-03-03 15:44 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: New function verify_signature + +2006-03-03 14:50 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Don't display error messages from rpmVerifySignatures + +2006-03-03 14:14 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm: Document (new-ish) return value of verify_rpm() + +2006-03-03 14:00 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm, URPM.xs: Reimplement verify_rpm, using the rpm cli + interface + +2006-03-03 11:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm, URPM.xs: Remove support for the (broken) db option to + verify_rpm + +2006-03-03 10:26 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Use a smaller buffer for the return value of verify_rpm, + and guard against overflows + +2006-03-02 18:40 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Honor verification flags in verif_rpm() even when + reading from a file without having open the rpmdb + +2006-03-02 18:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Nits in verify_rpm. + +2006-03-01 12:44 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Fix a couple of compilation warnings. URPM.xs is now + warning-clean. + +2006-03-01 12:40 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * Makefile.PL: Make sure -fno-strict-aliasing is used (gcc option) + +2006-02-13 14:17 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm: Document the is_arch_compat package method + +2006-02-13 11:40 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * perl-URPM.spec: 1.36-1mdk + +2006-02-13 11:39 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm: Document new ignorearch flag + +2006-02-13 11:22 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.xs: Add ignorearch option to run transactions + +2006-02-10 18:07 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * URPM.pm, perl-URPM.spec: 1.35-1mdk + 2006-02-10 18:06 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> * URPM.xs: repackage also when only the rpm macro is defined. Maybe @@ -10,7 +10,7 @@ use URPM::Resolve; use URPM::Signature; our @ISA = qw(DynaLoader); -our $VERSION = '1.36'; +our $VERSION = '1.37'; URPM->bootstrap($VERSION); diff --git a/perl-URPM.spec b/perl-URPM.spec index 689bfe0..ece0aa1 100644 --- a/perl-URPM.spec +++ b/perl-URPM.spec @@ -5,7 +5,7 @@ %define name perl-URPM %define real_name URPM -%define version 1.36 +%define version 1.37 %define release %mkrel 1 %define group %(perl -e 'printf "%%s\\n", "%_vendor" =~ /\\bmandr/i ? "Development/Perl" : "Applications/CPAN"') @@ -62,6 +62,13 @@ hdlist files and manage them in memory. %{compat_perl_vendorarch}/auto/URPM/URPM.so %changelog +* Fri Mar 03 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 1.37-1mdk +- Rewrite verify_rpm(), which wasn't working with recent rpms + (note incompatible API change) +- New function verify_signature() +- Make sure -fno-strict-aliasing is used for compilation +- More docs + * Mon Feb 13 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 1.36-1mdk - Add flag ignorearch for installations |