r60716 - in /branches/upstream/libpod-coverage-perl/current: Changes META.yml Makefile.PL lib/Pod/Coverage.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Wed Jul 28 04:11:47 UTC 2010


Author: ansgar-guest
Date: Wed Jul 28 04:08:00 2010
New Revision: 60716

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60716
Log:
[svn-upgrade] new version libpod-coverage-perl (0.21)

Modified:
    branches/upstream/libpod-coverage-perl/current/Changes
    branches/upstream/libpod-coverage-perl/current/META.yml
    branches/upstream/libpod-coverage-perl/current/Makefile.PL
    branches/upstream/libpod-coverage-perl/current/lib/Pod/Coverage.pm

Modified: branches/upstream/libpod-coverage-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-coverage-perl/current/Changes?rev=60716&op=diff
==============================================================================
--- branches/upstream/libpod-coverage-perl/current/Changes (original)
+++ branches/upstream/libpod-coverage-perl/current/Changes Wed Jul 28 04:08:00 2010
@@ -1,3 +1,7 @@
+0.21	Tuesday 27th July, 2010
+	Add SCALAR to the stoplist (implementaion method for tied
+	hashes).  Report by David Cantrell.
+
 0.20	Thursday 19th February, 2009
 	Fix t/lib/Fully/Qualified.pm to have a 1; (Zefram)
 	Ship t/09whitespace.t - had missed it before

Modified: branches/upstream/libpod-coverage-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-coverage-perl/current/META.yml?rev=60716&op=diff
==============================================================================
--- branches/upstream/libpod-coverage-perl/current/META.yml (original)
+++ branches/upstream/libpod-coverage-perl/current/META.yml Wed Jul 28 04:08:00 2010
@@ -1,26 +1,35 @@
 ---
 name: Pod-Coverage
-version: 0.20
-author: ~
+version: 0.21
+author:
+  - 'Richard Clamp <richardc at unixbeard.net>'
+  - 'Michael Stevens <mstevens at etla.org>'
+  - 'some contributions from David Cantrell <david at cantrell.org.uk>'
 abstract: Checks if the documentation of a module is comprehensive
 license: perl
+resources:
+  license: http://dev.perl.org/licenses/
+build_requires:
+  Test::More: 0
 requires:
   Devel::Symdump: 2.01
   Pod::Find: 0.21
   Pod::Parser: 1.13
-build_requires:
-  Test::More: 0
+configure_requires:
+  Module::Build: 0.35
 provides:
   Pod::Coverage:
     file: lib/Pod/Coverage.pm
-    version: 0.20
+    version: 0.21
   Pod::Coverage::CountParents:
     file: lib/Pod/Coverage/CountParents.pm
   Pod::Coverage::ExportOnly:
     file: lib/Pod/Coverage/ExportOnly.pm
   Pod::Coverage::Extractor:
     file: lib/Pod/Coverage.pm
-    version: 0.20
   Pod::Coverage::Overloader:
     file: lib/Pod/Coverage/Overloader.pm
-generated_by: Module::Build version 0.2611
+generated_by: Module::Build version 0.35
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4

Modified: branches/upstream/libpod-coverage-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-coverage-perl/current/Makefile.PL?rev=60716&op=diff
==============================================================================
--- branches/upstream/libpod-coverage-perl/current/Makefile.PL (original)
+++ branches/upstream/libpod-coverage-perl/current/Makefile.PL Wed Jul 28 04:08:00 2010
@@ -1,19 +1,19 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
+# Note: this file was auto-generated by Module::Build::Compat version 0.35
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
-          'PL_FILES' => {},
+          'NAME' => 'Pod::Coverage',
+          'VERSION_FROM' => 'lib/Pod/Coverage.pm',
+          'PREREQ_PM' => {
+                           'Devel::Symdump' => '2.01',
+                           'Pod::Find' => '0.21',
+                           'Pod::Parser' => '1.13',
+                           'Test::More' => '0'
+                         },
           'INSTALLDIRS' => 'site',
-          'NAME' => 'Pod::Coverage',
           'EXE_FILES' => [
                            'bin/pod_cover'
                          ],
-          'VERSION_FROM' => 'lib/Pod/Coverage.pm',
-          'PREREQ_PM' => {
-                           'Test::More' => 0,
-                           'Pod::Parser' => '1.13',
-                           'Devel::Symdump' => '2.01',
-                           'Pod::Find' => '0.21'
-                         }
+          'PL_FILES' => {}
         )
 ;

Modified: branches/upstream/libpod-coverage-perl/current/lib/Pod/Coverage.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpod-coverage-perl/current/lib/Pod/Coverage.pm?rev=60716&op=diff
==============================================================================
--- branches/upstream/libpod-coverage-perl/current/lib/Pod/Coverage.pm (original)
+++ branches/upstream/libpod-coverage-perl/current/lib/Pod/Coverage.pm Wed Jul 28 04:08:00 2010
@@ -8,7 +8,7 @@
 BEGIN { defined &TRACE_ALL or eval 'sub TRACE_ALL () { 0 }' }
 
 use vars qw/ $VERSION /;
-$VERSION = '0.20';
+$VERSION = '0.21';
 
 =head1 NAME
 
@@ -78,9 +78,9 @@
              POP | PUSH | SHIFT | UNSHIFT | SPLICE | DELETE |
              EXISTS | EXTEND | CLEAR | FIRSTKEY | NEXTKEY | PRINT | PRINTF |
              WRITE | READLINE | GETC | READ | CLOSE | BINMODE | OPEN |
-             EOF | FILENO | SEEK | TELL)$/x,
+             EOF | FILENO | SEEK | TELL | SCALAR )$/x,
         qr/^( MODIFY | FETCH )_( REF | SCALAR | ARRAY | HASH | CODE |
-                                 GLOB | FORMAT | IO)_ATTRIBUTES$/x,
+                                 GLOB | FORMAT | IO )_ATTRIBUTES$/x,
         qr/^CLONE(_SKIP)?$/,
 ]
 
@@ -119,7 +119,7 @@
              POP | PUSH | SHIFT | UNSHIFT | SPLICE | DELETE |
              EXISTS | EXTEND | CLEAR | FIRSTKEY | NEXTKEY | PRINT | PRINTF |
              WRITE | READLINE | GETC | READ | CLOSE | BINMODE | OPEN |
-             EOF | FILENO | SEEK | TELL)$/x,
+             EOF | FILENO | SEEK | TELL | SCALAR )$/x,
         qr/^( MODIFY | FETCH )_( REF | SCALAR | ARRAY | HASH | CODE |
                                  GLOB | FORMAT | IO)_ATTRIBUTES $/x,
         qr/^CLONE(_SKIP)?$/,




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