r24221 - in /trunk/libparse-cpan-packages-perl: CHANGES MANIFEST META.yml debian/changelog lib/Parse/CPAN/Packages.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Aug 12 20:12:25 UTC 2008


Author: gregoa
Date: Tue Aug 12 20:12:21 2008
New Revision: 24221

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=24221
Log:
New upstream release.

Modified:
    trunk/libparse-cpan-packages-perl/CHANGES
    trunk/libparse-cpan-packages-perl/MANIFEST
    trunk/libparse-cpan-packages-perl/META.yml
    trunk/libparse-cpan-packages-perl/debian/changelog
    trunk/libparse-cpan-packages-perl/lib/Parse/CPAN/Packages.pm

Modified: trunk/libparse-cpan-packages-perl/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-packages-perl/CHANGES?rev=24221&op=diff
==============================================================================
--- trunk/libparse-cpan-packages-perl/CHANGES (original)
+++ trunk/libparse-cpan-packages-perl/CHANGES Tue Aug 12 20:12:21 2008
@@ -1,4 +1,7 @@
 CHANGES file for Parse::CPAN::Packages
+
+2.28 Tue Aug 12 08:02:22 BST 2008
+  - stop version.pm warnings 
 
 2.27 Sun Dec  2 14:50:14 GMT 2007
   - fix typo in _ensure_latest_distribution (patch by Kenichi Ishigaki)

Modified: trunk/libparse-cpan-packages-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-packages-perl/MANIFEST?rev=24221&op=diff
==============================================================================
--- trunk/libparse-cpan-packages-perl/MANIFEST (original)
+++ trunk/libparse-cpan-packages-perl/MANIFEST Tue Aug 12 20:12:21 2008
@@ -4,8 +4,8 @@
 lib/Parse/CPAN/Packages/Package.pm
 Makefile.PL
 MANIFEST			This list of files
-META.yml
 README
 t/02packages.details.txt
 t/02packages.details.txt.gz
 t/simple.t
+META.yml                                 Module meta-data (added by MakeMaker)

Modified: trunk/libparse-cpan-packages-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-packages-perl/META.yml?rev=24221&op=diff
==============================================================================
--- trunk/libparse-cpan-packages-perl/META.yml (original)
+++ trunk/libparse-cpan-packages-perl/META.yml Tue Aug 12 20:12:21 2008
@@ -1,11 +1,11 @@
 --- #YAML:1.0
 name:                Parse-CPAN-Packages
-version:             2.27
+version:             2.28
 abstract:            ~
 license:             perl
 author:              
     - Leon Brocard <acme at astray.com>
-generated_by:        ExtUtils::MakeMaker version 6.38
+generated_by:        ExtUtils::MakeMaker version 6.44
 distribution_type:   module
 requires:     
     Class::Accessor::Fast:         0

Modified: trunk/libparse-cpan-packages-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-packages-perl/debian/changelog?rev=24221&op=diff
==============================================================================
--- trunk/libparse-cpan-packages-perl/debian/changelog (original)
+++ trunk/libparse-cpan-packages-perl/debian/changelog Tue Aug 12 20:12:21 2008
@@ -1,6 +1,10 @@
-libparse-cpan-packages-perl (2.27-3) UNRELEASED; urgency=low
+libparse-cpan-packages-perl (2.28-1) UNRELEASED; urgency=low
 
+  [ Frank Lichtenheld ]
   * Add a missing comma in Uploaders field
+
+  [ gregor herrmann ]
+  * New upstream release.
 
  -- Frank Lichtenheld <djpig at debian.org>  Mon, 21 Apr 2008 15:42:01 +0200
 

Modified: trunk/libparse-cpan-packages-perl/lib/Parse/CPAN/Packages.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-cpan-packages-perl/lib/Parse/CPAN/Packages.pm?rev=24221&op=diff
==============================================================================
--- trunk/libparse-cpan-packages-perl/lib/Parse/CPAN/Packages.pm (original)
+++ trunk/libparse-cpan-packages-perl/lib/Parse/CPAN/Packages.pm Tue Aug 12 20:12:21 2008
@@ -8,7 +8,7 @@
 use Parse::CPAN::Packages::Package;
 use version;
 use vars qw($VERSION);
-$VERSION = '2.27';
+$VERSION = '2.28';
 
 sub new {
     my $class = shift;
@@ -24,8 +24,8 @@
 
 # read the file into memory and return it
 sub _slurp_details {
-    my $self     = shift;
-    my $filename = (@_) ? shift: "02packages.details.txt.gz";
+    my $self = shift;
+    my $filename = (@_) ? shift : "02packages.details.txt.gz";
 
     if ( $filename =~ /Description:/ ) {
         return $filename;
@@ -146,6 +146,7 @@
         return;
     }
     my ( $av, $bv );
+    local $^W = 0;    # stop version.pm warnings
     eval {
         $av = version->new( $a->version || 0 );
         $bv = version->new( $b->version || 0 );




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