r53007 - in /branches/upstream/libtest-checkmanifest-perl/current: Changes META.yml lib/Test/CheckManifest.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Feb 18 03:06:56 UTC 2010


Author: jawnsy-guest
Date: Thu Feb 18 03:06:48 2010
New Revision: 53007

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53007
Log:
[svn-upgrade] Integrating new upstream version, libtest-checkmanifest-perl (1.21)

Modified:
    branches/upstream/libtest-checkmanifest-perl/current/Changes
    branches/upstream/libtest-checkmanifest-perl/current/META.yml
    branches/upstream/libtest-checkmanifest-perl/current/lib/Test/CheckManifest.pm

Modified: branches/upstream/libtest-checkmanifest-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-checkmanifest-perl/current/Changes?rev=53007&op=diff
==============================================================================
--- branches/upstream/libtest-checkmanifest-perl/current/Changes (original)
+++ branches/upstream/libtest-checkmanifest-perl/current/Changes Thu Feb 18 03:06:48 2010
@@ -1,4 +1,7 @@
 Revision history for Perl extension Test::CheckManifest.
+
+1.21  Wed Feb 17 2010
+      + return from sub when MANIFEST.SKIP does not exist
 
 1.2   Wed Feb 03 2010
       + moved from SVN to Git (and adapted the filters in testfiles)
@@ -58,4 +61,4 @@
 0.1   Fri Sep 29 09:18:09 2006
       - original version; created by h2xs 1.23 with options
         -XA -n Test::CheckManifest
-      + added tests for Pod coverage, Pod, Manifest
+      + added tests for Pod coverage, Pod, Manifest

Modified: branches/upstream/libtest-checkmanifest-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-checkmanifest-perl/current/META.yml?rev=53007&op=diff
==============================================================================
--- branches/upstream/libtest-checkmanifest-perl/current/META.yml (original)
+++ branches/upstream/libtest-checkmanifest-perl/current/META.yml Thu Feb 18 03:06:48 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Test-CheckManifest
-version:             1.1
+version:             1.21
 abstract:            Check if your Manifest matches your distro
 license:             artistic_2
 generated_by:        ExtUtils::MakeMaker version 6.31
@@ -17,3 +17,4 @@
     version: 1.2
 author:
     - Renee Baecker <module at renee-baecker.de>
+

Modified: branches/upstream/libtest-checkmanifest-perl/current/lib/Test/CheckManifest.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-checkmanifest-perl/current/lib/Test/CheckManifest.pm?rev=53007&op=diff
==============================================================================
--- branches/upstream/libtest-checkmanifest-perl/current/lib/Test/CheckManifest.pm (original)
+++ branches/upstream/libtest-checkmanifest-perl/current/lib/Test/CheckManifest.pm Thu Feb 18 03:06:48 2010
@@ -10,7 +10,7 @@
 use Test::Builder;
 use File::Find;
 
-our $VERSION = '1.2';
+our $VERSION = '1.21';
 
 my $test      = Test::Builder->new();
 my $test_bool = 1;
@@ -193,6 +193,8 @@
 
 sub _read_skip {
     my ($skip, $msg, $bool) = @_;
+
+    return [] unless -e $skip;
     
     my @files;
     if( -e $skip and not open my $skip_fh, '<', $skip ) {




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