r20832 - in /branches/upstream/libmodule-versions-report-perl/current: ChangeLog META.yml lib/Module/Versions/Report.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Sat Jun 7 18:56:50 UTC 2008


Author: dmn
Date: Sat Jun  7 18:56:50 2008
New Revision: 20832

URL: http://svn.debian.org/wsvn/?sc=1&rev=20832
Log:
[svn-upgrade] Integrating new upstream version, libmodule-versions-report-perl (1.04)

Modified:
    branches/upstream/libmodule-versions-report-perl/current/ChangeLog
    branches/upstream/libmodule-versions-report-perl/current/META.yml
    branches/upstream/libmodule-versions-report-perl/current/lib/Module/Versions/Report.pm

Modified: branches/upstream/libmodule-versions-report-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/branches/upstream/libmodule-versions-report-perl/current/ChangeLog?rev=20832&op=diff
==============================================================================
--- branches/upstream/libmodule-versions-report-perl/current/ChangeLog (original)
+++ branches/upstream/libmodule-versions-report-perl/current/ChangeLog Sat Jun  7 18:56:50 2008
@@ -1,5 +1,9 @@
 Revision history for Perl module Module::Versions::Report
-                                        Time-stamp: "2003-06-21 23:17:33 AHDT"
+
+2008-06-05  Ruslan U. Zakirov <ruz at bestpractical.com>
+
+	* Release 1.03
+	* fix compatibility with perl 5.10
 
 2007-05-21  Ruslan U. Zakirov <ruz at bestpractical.com>
 

Modified: branches/upstream/libmodule-versions-report-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libmodule-versions-report-perl/current/META.yml?rev=20832&op=diff
==============================================================================
--- branches/upstream/libmodule-versions-report-perl/current/META.yml (original)
+++ branches/upstream/libmodule-versions-report-perl/current/META.yml Sat Jun  7 18:56:50 2008
@@ -1,11 +1,10 @@
---- #YAML:1.0
-name:                Module-Versions-Report
-version:             1.03
-abstract:            report versions of all modules in memory
-license:             ~
-generated_by:        ExtUtils::MakeMaker version 6.32
-distribution_type:   module
-requires:     
-meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
-    version: 1.2
+# http://module-build.sourceforge.net/META-spec.html
+#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
+name:         Module-Versions-Report
+version:      1.04
+version_from: lib/Module/Versions/Report.pm
+installdirs:  site
+requires:
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.30

Modified: branches/upstream/libmodule-versions-report-perl/current/lib/Module/Versions/Report.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libmodule-versions-report-perl/current/lib/Module/Versions/Report.pm?rev=20832&op=diff
==============================================================================
--- branches/upstream/libmodule-versions-report-perl/current/lib/Module/Versions/Report.pm (original)
+++ branches/upstream/libmodule-versions-report-perl/current/lib/Module/Versions/Report.pm Sat Jun  7 18:56:50 2008
@@ -1,7 +1,7 @@
 
 require 5;
 package Module::Versions::Report;
-$VERSION = '1.03';
+$VERSION = '1.04';
 $PACKAGES_LIMIT = 1000;
 
 =head1 NAME
@@ -127,7 +127,8 @@
       $count++;
     } elsif(
        defined *{$this . '::ISA'} or defined &{$this . '::import'}
-       or ($this ne '' and grep defined *{$_}{'CODE'}, values %{$this . "::"})
+       or ($this ne '' and grep { ref $_ eq 'GLOB' and defined *{$_}{'CODE'} }
+                           values %{$this . "::"})
        # If it has an ISA, an import, or any subs...
     ) {
       # It's a class/module with no version.




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