diff options
-rw-r--r-- | ChangeLog | 37 | ||||
-rw-r--r-- | Makefile.PL | 2 | ||||
-rw-r--r-- | urpm.pm | 2 | ||||
-rw-r--r-- | urpmi.spec | 11 |
4 files changed, 47 insertions, 5 deletions
@@ -1,3 +1,40 @@ +2006-03-03 16:12 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm: Use the new versions of verify_rpm and verify_signature + from URPM, adapted to rpm 4.4.x + +2006-03-02 21:09 Wanderlei Antonio Cavassin <cavassin at mandriva.com> + + * po/pt_BR.po: more pt_BR updates + +2006-03-02 18:45 berthy + + * po/fr.po: Update french translation + +2006-03-02 18:35 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpmi.recover: use urpm so we know which version we're using + +2006-03-02 18:25 berthy + + * po/fr.po: Update french translation + +2006-03-02 16:17 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm: Set perms on partial downloads cache directory + +2006-03-02 15:53 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm: Don't clear cache if transaction failed. + +2006-03-01 14:41 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * pod/urpmi.recover.8.pod: Warn against delta rpms + +2006-02-28 18:15 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> + + * urpm.pm, urpmi.spec: 4.8.12 + 2006-02-28 17:06 Rafael Garcia-Suarez <rgarciasuarez at mandriva.com> * urpm.pm, urpmi: Less verbosity with urpmi -q diff --git a/Makefile.PL b/Makefile.PL index 98646752..4a3bc858 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -112,7 +112,7 @@ WriteMakefile( PREREQ_PM => { 'Locale::gettext' => '1.01', 'MDV::Packdrakeng' => '1.01', - 'URPM' => '1.36', + 'URPM' => '1.37', }, VERSION_FROM => 'urpm.pm', macro => { @@ -11,7 +11,7 @@ use urpm::util; use urpm::sys; use urpm::cfg; -our $VERSION = '4.8.12'; +our $VERSION = '4.8.13'; our @ISA = qw(URPM); use URPM; @@ -7,7 +7,7 @@ ################################################################## %define name urpmi -%define version 4.8.12 +%define version 4.8.13 %define release %mkrel 1 %define group %(perl -e 'print "%_vendor" =~ /\\bmandr/i ? "System/Configuration/Packaging" : "System Environment/Base"') @@ -27,8 +27,8 @@ Summary: Command-line software installation tools URL: http://search.cpan.org/dist/%{name}/ Requires: %{req_webfetch} eject gnupg Requires(pre): perl-Locale-gettext >= 1.01-14mdk -Requires(pre): perl-URPM >= 1.36 -Requires: perl-URPM >= 1.36 +Requires(pre): perl-URPM >= 1.37 +Requires: perl-URPM >= 1.37 #- this one is require'd by urpmq, so it's not found [yet] by perl.req Requires: perl-MDV-Packdrakeng >= 1.01 BuildRequires: bzip2-devel @@ -276,6 +276,11 @@ if (-e "/etc/urpmi/urpmi.cfg") { %ghost %_sys_macros_dir/urpmi.recover.macros %changelog +* Fri Mar 03 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 4.8.13-1mdk +- Doc +- Fix cache cleanup (bug #17913) +- Require latest perl-URPM + * Tue Feb 28 2006 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 4.8.12-1mdk - Less verbosity with urpmi -q - Translation and doc updates |