r29256 - in /branches/upstream/libpar-dist-perl/current: Changes META.yml lib/PAR/Dist.pm

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Mon Jan 5 00:46:09 UTC 2009


Author: rmayorga-guest
Date: Mon Jan  5 00:46:05 2009
New Revision: 29256

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

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

Modified: branches/upstream/libpar-dist-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-dist-perl/current/Changes?rev=29256&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/Changes (original)
+++ branches/upstream/libpar-dist-perl/current/Changes Mon Jan  5 00:46:05 2009
@@ -1,3 +1,9 @@
+By: smueller on 2009/01/03
+    * Apply *correct* patch for blib_to_par across file system
+      boundaries from Radek. (Radek's patch was correct, just not my
+      application.)
+    * This is 0.42.
+____________________________________________________________________________
 By: smueller on 2008/12/17
     * Apply patch for blib_to_par across file system boundaries from Radek.
     * This is 0.41.

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=29256&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/META.yml (original)
+++ branches/upstream/libpar-dist-perl/current/META.yml Mon Jan  5 00:46:05 2009
@@ -1,23 +1,17 @@
 --- #YAML:1.0
-name:               PAR-Dist
-version:            0.41
-abstract:           Create and manipulate PAR distributions
-author:
+name:                PAR-Dist
+version:             0.42
+abstract:            Create and manipulate PAR distributions
+license:             ~
+author:              
     - Audrey Tang <cpan at audreyt.org>
-license:            unknown
-distribution_type:  module
-configure_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.48
+generated_by:        ExtUtils::MakeMaker version 6.42
+distribution_type:   module
+requires:     
+    File::Find:                    0
+    File::Path:                    0
+    File::Spec:                    0
+    File::Temp:                    0
 meta-spec:
-    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
-    version:  1.4
+    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
+    version: 1.3

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=29256&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm (original)
+++ branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm Mon Jan  5 00:46:05 2009
@@ -2,7 +2,7 @@
 require Exporter;
 use vars qw/$VERSION @ISA @EXPORT @EXPORT_OK $DEBUG/;
 
-$VERSION    = '0.41';
+$VERSION    = '0.42';
 @ISA	    = 'Exporter';
 @EXPORT	    = qw/
   blib_to_par
@@ -33,7 +33,7 @@
 
 =head1 VERSION
 
-This document describes version 0.41 of PAR::Dist, released December 17, 2008.
+This document describes version 0.42 of PAR::Dist, released January 3, 2009.
 
 =head1 SYNOPSIS
 
@@ -269,9 +269,11 @@
 
     if ($dist and $file ne $dist) {
         if ( File::Copy::copy($file, $dist) ) {
+          unlink $file;
+        } else {
           die "Cannot copy $file: $!";
         }
-        unlink $file;
+
         $file = $dist;
     }
 




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