aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-07-12 06:12:59 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-07-12 06:12:59 +0000
commit0d1ab16fce1ce29c30dab3787616195f9911b34b (patch)
tree996c0cdb442b103444cd7b372eaffe0c6f251448
parentf92e622db1205c8abb4f8207d6b4c4a9ab674e62 (diff)
downloadperl-URPM-0.96.tar
perl-URPM-0.96.tar.gz
perl-URPM-0.96.tar.bz2
perl-URPM-0.96.tar.xz
perl-URPM-0.96.zip
Version 0.960.96
-rw-r--r--ChangeLog71
-rw-r--r--URPM.pm2
-rw-r--r--perl-URPM.spec8
3 files changed, 78 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index d7939cd..c406e50 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,74 @@
+2004-07-12 03:23 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * URPM/Resolve.pm: Don't use keys() in scalar context
+
+2004-07-12 03:04 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * Makefile.PL: Add a ChangeLog target in the makefile
+
+2004-07-09 10:56 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * URPM/Resolve.pm: Simplify the compute_flags function (used for
+ the {skip,inst}.list files)
+
+2004-06-27 20:31 Olivier Thauvin <thauvin@aerov.jussieu.fr>
+
+ * URPM.xs: - fix segfault in queryformat if tag does not exist
+ (return nothing instead)
+
+2004-06-23 08:47 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * URPM.xs, t/fatal.t: Clarify error message when a synthesis file
+ can't be read or gunzipped
+
+2004-05-21 13:33 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * perl-URPM.spec: 0.95-2mdk
+
+2004-05-21 13:19 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * URPM/Resolve.pm: Allow urpmi to downgrade packages if it was
+ invoked with --allow-force
+
+2004-05-19 17:28 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * URPM/Resolve.pm: When an rpm installed locally had a version
+ greater than the one found in the update media, urpmi was trying
+ to downgrade it.
+
+2004-05-06 11:42 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * URPM.pm, perl-URPM.spec: Version 0.95
+
+2004-05-06 11:22 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * MANIFEST, URPM.pm, URPM.xs, URPM/Resolve.pm, t/fatal.t: Add a way
+ to downgrade some errors (file not found) to non-fatal
+
+2004-04-30 10:32 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * perl-URPM.spec: 0.94-13mdk
+
+2004-04-27 07:56 Olivier Thauvin <thauvin@aerov.jussieu.fr>
+
+ * URPM/Query.pm: - fix tag2id on old mdk, ensure all test are ok on
+ 9.1
+
+2004-04-26 16:40 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com>
+
+ * t/parse.t: Silence warnings
+
+2004-04-25 23:33 Olivier Thauvin <thauvin@aerov.jussieu.fr>
+
+ * URPM.xs, t/parse.t: - make parse.t pass all test - add
+ $pkg->queryformat test
+
+2004-04-25 12:44 Olivier Thauvin <thauvin@aerov.jussieu.fr>
+
+ * URPM.pm, URPM.xs, URPM/Query.pm: - add $pkg->queryformat()
+ function - $ūrpm->list_rpm_tag show all tag, value for unparsable
+ tag is 'undef' in hash
+
2004-04-23 10:01 Olivier Thauvin <thauvin@aerov.jussieu.fr>
* URPM.xs: - urpm optional arg to Urpm_list_rpm_tag function
diff --git a/URPM.pm b/URPM.pm
index 893fbde..c1290ee 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -10,7 +10,7 @@ use URPM::Resolve;
use URPM::Signature;
our @ISA = qw(DynaLoader);
-our $VERSION = '0.95';
+our $VERSION = '0.96';
URPM->bootstrap($VERSION);
diff --git a/perl-URPM.spec b/perl-URPM.spec
index da7f817..e898310 100644
--- a/perl-URPM.spec
+++ b/perl-URPM.spec
@@ -1,7 +1,7 @@
%define name perl-URPM
%define real_name URPM
-%define version 0.95
-%define release 2mdk
+%define version 0.96
+%define release 1mdk
%define group %(perl -e 'printf "%%s\\n", "%_vendor" =~ /mandrake/i ? "Development/Perl" : "Applications/CPAN"')
%define rpm_version %(rpm -q --queryformat '%{VERSION}-%{RELEASE}' rpm)
@@ -57,6 +57,10 @@ hdlist files and manage them in memory.
%changelog
+* Mon Jul 12 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 0.96-1mdk
+- Simplify the parsing of skip.list and inst.list files
+- Segfault fixes by Olivier Thauvin
+
* Fri May 21 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 0.95-2mdk
- Don't include older packages than the installed ones in the dependencies
(except when urpmi is invoked with --allow-force)