r3572 - in /packages/libmodule-packaged-perl/branches/upstream/current: CHANGES META.yml lib/Module/Packaged.pm lib/Module/Packaged/Generate.pm t/simple.t

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sat Sep 2 17:14:10 UTC 2006


Author: gregoa-guest
Date: Sat Sep  2 17:14:09 2006
New Revision: 3572

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3572
Log:
Load /tmp/tmp.kxXiz26279/libmodule-packaged-perl-0.86 into
packages/libmodule-packaged-perl/branches/upstream/current.

Modified:
    packages/libmodule-packaged-perl/branches/upstream/current/CHANGES
    packages/libmodule-packaged-perl/branches/upstream/current/META.yml
    packages/libmodule-packaged-perl/branches/upstream/current/lib/Module/Packaged.pm
    packages/libmodule-packaged-perl/branches/upstream/current/lib/Module/Packaged/Generate.pm
    packages/libmodule-packaged-perl/branches/upstream/current/t/simple.t

Modified: packages/libmodule-packaged-perl/branches/upstream/current/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmodule-packaged-perl/branches/upstream/current/CHANGES?rev=3572&op=diff
==============================================================================
--- packages/libmodule-packaged-perl/branches/upstream/current/CHANGES (original)
+++ packages/libmodule-packaged-perl/branches/upstream/current/CHANGES Sat Sep  2 17:14:09 2006
@@ -1,4 +1,8 @@
 Revision history for Perl module Module::Packaged:
+
+0.86 Wed Aug 30 14:36:40 BST 2006
+  - fix the path we were fetching SUSE data from
+  - updated the test (prodded by jerakeen)
 
 0.85 Tue Jan 31 09:38:02 GMT 2006
   - fix the path we were fetching Mandriva data from

Modified: packages/libmodule-packaged-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmodule-packaged-perl/branches/upstream/current/META.yml?rev=3572&op=diff
==============================================================================
--- packages/libmodule-packaged-perl/branches/upstream/current/META.yml (original)
+++ packages/libmodule-packaged-perl/branches/upstream/current/META.yml Sat Sep  2 17:14:09 2006
@@ -1,8 +1,8 @@
 --- #YAML:1.0
 name: Module-Packaged
-version: 0.85
+version: 0.86
 author:
   - Leon Brocard, leon at astray.com
 abstract: Report upon packages of CPAN distributions
 license: perl
-generated_by: Module::Build version 0.2611, without YAML.pm
+generated_by: Module::Build version 0.2612, without YAML.pm

Modified: packages/libmodule-packaged-perl/branches/upstream/current/lib/Module/Packaged.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmodule-packaged-perl/branches/upstream/current/lib/Module/Packaged.pm?rev=3572&op=diff
==============================================================================
--- packages/libmodule-packaged-perl/branches/upstream/current/lib/Module/Packaged.pm (original)
+++ packages/libmodule-packaged-perl/branches/upstream/current/lib/Module/Packaged.pm Sat Sep  2 17:14:09 2006
@@ -5,7 +5,7 @@
 use LWP::Simple;
 use Storable qw(thaw);
 use vars qw($VERSION);
-$VERSION = '0.85';
+$VERSION = '0.86';
 
 sub new {
   my $class = shift;

Modified: packages/libmodule-packaged-perl/branches/upstream/current/lib/Module/Packaged/Generate.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmodule-packaged-perl/branches/upstream/current/lib/Module/Packaged/Generate.pm?rev=3572&op=diff
==============================================================================
--- packages/libmodule-packaged-perl/branches/upstream/current/lib/Module/Packaged/Generate.pm (original)
+++ packages/libmodule-packaged-perl/branches/upstream/current/lib/Module/Packaged/Generate.pm Sat Sep  2 17:14:09 2006
@@ -113,7 +113,7 @@
 sub _fetch_suse {
   my $self = shift;
   my $file = $self->cache->get_url(
-    "http://www.novell.com/products/linuxpackages/professional/index_all.html",
+    "http://www.novell.com/products/linuxpackages/suselinux/index_all.html",
     "suse.html"
   );
 

Modified: packages/libmodule-packaged-perl/branches/upstream/current/t/simple.t
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libmodule-packaged-perl/branches/upstream/current/t/simple.t?rev=3572&op=diff
==============================================================================
--- packages/libmodule-packaged-perl/branches/upstream/current/t/simple.t (original)
+++ packages/libmodule-packaged-perl/branches/upstream/current/t/simple.t Sat Sep  2 17:14:09 2006
@@ -16,11 +16,11 @@
 
 $dists = $p->check('Archive-Tar');
 is_deeply($dists, {
-  cpan    => '1.28',
-  debian  => '1.28',
+  cpan    => '1.30',
+  debian  => '1.30',
   fedora  => '1.08',
-  freebsd => '1.28',
-  gentoo  => '1.26',
+  freebsd => '1.30',
+  gentoo  => '1.29',
   mandrake => '1.23',
   openbsd => '1.08',
   suse    => '1.24',
@@ -28,14 +28,14 @@
 
 $dists = $p->check('DBI');
 is_deeply($dists, {
-  cpan     => '1.50',
-  debian   => '1.50',
+  cpan     => '1.52',
+  debian   => '1.52',
   fedora   => '1.40',
-  freebsd  => '1.50',
-  gentoo   => '1.48',
+  freebsd  => '1.52',
+  gentoo   => '1.50',
   mandrake => '1.47',
   openbsd  => '1.43',
-  suse     => '1.48',
+  suse     => '1.50',
 }, 'DBI');
 
 




More information about the Pkg-perl-cvs-commits mailing list