r38027 - in /branches/upstream/libpar-dist-perl/current: Changes META.yml lib/PAR/Dist.pm t/03merge_meta.t

nhandler-guest at users.alioth.debian.org nhandler-guest at users.alioth.debian.org
Thu Jun 11 20:28:59 UTC 2009


Author: nhandler-guest
Date: Thu Jun 11 20:28:54 2009
New Revision: 38027

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=38027
Log:
[svn-upgrade] Integrating new upstream version, libpar-dist-perl (0.45)

Modified:
    branches/upstream/libpar-dist-perl/current/Changes
    branches/upstream/libpar-dist-perl/current/META.yml
    branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm
    branches/upstream/libpar-dist-perl/current/t/03merge_meta.t

Modified: branches/upstream/libpar-dist-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-dist-perl/current/Changes?rev=38027&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/Changes (original)
+++ branches/upstream/libpar-dist-perl/current/Changes Thu Jun 11 20:28:54 2009
@@ -1,3 +1,7 @@
+By: smueller on 2009/02/20
+    * Fix test skipping if certain optional dependencies couldn't be found.
+    * This is 0.45.
+____________________________________________________________________________
 By: smueller on 2009/02/02
     * Abandon support for perl 5.005.
     * Merging of the various requires-like META.yml sections in

Modified: branches/upstream/libpar-dist-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-dist-perl/current/META.yml?rev=38027&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/META.yml (original)
+++ branches/upstream/libpar-dist-perl/current/META.yml Thu Jun 11 20:28:54 2009
@@ -1,17 +1,25 @@
 --- #YAML:1.0
-name:                PAR-Dist
-version:             0.44
-abstract:            Create and manipulate PAR distributions
-license:             ~
-author:              
+name:               PAR-Dist
+version:            0.45
+abstract:           Create and manipulate PAR distributions
+author:
     - Audrey Tang <cpan at audreyt.org>
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    File::Find:                    0
-    File::Path:                    0
-    File::Spec:                    0
-    File::Temp:                    0
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    File::Find:  0
+    File::Path:  0
+    File::Spec:  0
+    File::Temp:  0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.50
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

Modified: branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm?rev=38027&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm (original)
+++ branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm Thu Jun 11 20:28:54 2009
@@ -4,7 +4,7 @@
 require Exporter;
 use vars qw/$VERSION @ISA @EXPORT @EXPORT_OK $DEBUG/;
 
-$VERSION    = '0.44';
+$VERSION    = '0.45';
 @ISA	    = 'Exporter';
 @EXPORT	    = qw/
   blib_to_par
@@ -34,7 +34,7 @@
 
 =head1 VERSION
 
-This document describes version 0.44 of PAR::Dist, released February  2, 2009.
+This document describes version 0.45 of PAR::Dist, released June 11, 2009.
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libpar-dist-perl/current/t/03merge_meta.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-dist-perl/current/t/03merge_meta.t?rev=38027&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/t/03merge_meta.t (original)
+++ branches/upstream/libpar-dist-perl/current/t/03merge_meta.t Thu Jun 11 20:28:54 2009
@@ -13,13 +13,11 @@
     my $tools = PAR::Dist::_check_tools();
     $PAR::Dist::DEBUG = 0;
     if (not defined $tools->{DumpFile}) {
-      plan tests => 1;
-      skip("Skip because no YAML loader/dumper could be found");
+      plan skip_all => "Skip because no YAML loader/dumper could be found";
       exit();
     }
     elsif (not defined $tools->{zip}) {
-      plan tests => 1;
-      skip("Skip because neither Archive::Zip nor zip/unzip could be found");
+      plan skip_all => "Skip because neither Archive::Zip nor zip/unzip could be found";
       exit();
     }
     else {




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