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

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Thu Dec 18 20:35:37 UTC 2008


Author: gregoa
Date: Thu Dec 18 20:35:35 2008
New Revision: 28376

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

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=28376&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/Changes (original)
+++ branches/upstream/libpar-dist-perl/current/Changes Thu Dec 18 20:35:35 2008
@@ -1,3 +1,7 @@
+By: smueller on 2008/12/17
+    * Apply patch for blib_to_par across file system boundaries from Radek.
+    * This is 0.41.
+____________________________________________________________________________
 By: smueller on 2008/10/27
     * Rewrite parts of the install_par docs.
     * Add the esoteric auto_inst_lib_conversion parameter to install_par.

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=28376&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/META.yml (original)
+++ branches/upstream/libpar-dist-perl/current/META.yml Thu Dec 18 20:35:35 2008
@@ -1,17 +1,23 @@
 --- #YAML:1.0
-name:                PAR-Dist
-version:             0.40
-abstract:            Create and manipulate PAR distributions
-license:             ~
-author:              
+name:               PAR-Dist
+version:            0.41
+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
+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
 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=28376&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm (original)
+++ branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm Thu Dec 18 20:35:35 2008
@@ -2,7 +2,7 @@
 require Exporter;
 use vars qw/$VERSION @ISA @EXPORT @EXPORT_OK $DEBUG/;
 
-$VERSION    = '0.40';
+$VERSION    = '0.41';
 @ISA	    = 'Exporter';
 @EXPORT	    = qw/
   blib_to_par
@@ -33,7 +33,7 @@
 
 =head1 VERSION
 
-This document describes version 0.40 of PAR::Dist, released October 27, 2008.
+This document describes version 0.41 of PAR::Dist, released December 17, 2008.
 
 =head1 SYNOPSIS
 
@@ -268,7 +268,10 @@
     $dist ||= File::Spec->catfile($cwd, $file) if $cwd;
 
     if ($dist and $file ne $dist) {
-        rename( $file => $dist );
+        if ( File::Copy::copy($file, $dist) ) {
+          die "Cannot copy $file: $!";
+        }
+        unlink $file;
         $file = $dist;
     }
 




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