r29258 - in /trunk/libpar-dist-perl: Changes META.yml debian/changelog debian/control lib/PAR/Dist.pm

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


Author: rmayorga-guest
Date: Mon Jan  5 00:56:12 2009
New Revision: 29258

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=29258
Log:
* New upstream release
* add myself to uploaders

Modified:
    trunk/libpar-dist-perl/Changes
    trunk/libpar-dist-perl/META.yml
    trunk/libpar-dist-perl/debian/changelog
    trunk/libpar-dist-perl/debian/control
    trunk/libpar-dist-perl/lib/PAR/Dist.pm

Modified: trunk/libpar-dist-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/Changes?rev=29258&op=diff
==============================================================================
--- trunk/libpar-dist-perl/Changes (original)
+++ trunk/libpar-dist-perl/Changes Mon Jan  5 00:56:12 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: trunk/libpar-dist-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/META.yml?rev=29258&op=diff
==============================================================================
--- trunk/libpar-dist-perl/META.yml (original)
+++ trunk/libpar-dist-perl/META.yml Mon Jan  5 00:56:12 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: trunk/libpar-dist-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/debian/changelog?rev=29258&op=diff
==============================================================================
--- trunk/libpar-dist-perl/debian/changelog (original)
+++ trunk/libpar-dist-perl/debian/changelog Mon Jan  5 00:56:12 2009
@@ -1,3 +1,10 @@
+libpar-dist-perl (0.42-1) unstable; urgency=low
+
+  * New upstream release
+  * add myself to uploaders
+
+ -- Rene Mayorga <rmayorga at debian.org.sv>  Sun, 04 Jan 2009 18:52:16 -0600
+
 libpar-dist-perl (0.41-1) unstable; urgency=low
 
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN

Modified: trunk/libpar-dist-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/debian/control?rev=29258&op=diff
==============================================================================
--- trunk/libpar-dist-perl/debian/control (original)
+++ trunk/libpar-dist-perl/debian/control Mon Jan  5 00:56:12 2009
@@ -7,7 +7,7 @@
  libarchive-zip-perl
 Uploaders: Florian Ragwitz <rafl at debian.org>, 
  Krzysztof Krzyzaniak (eloy) <eloy at debian.org>,
- gregor herrmann <gregoa at debian.org>
+ gregor herrmann <gregoa at debian.org>, Rene Mayorga <rmayorga at debian.org.sv>
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Homepage: http://search.cpan.org/dist/PAR-Dist/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpar-dist-perl/

Modified: trunk/libpar-dist-perl/lib/PAR/Dist.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/lib/PAR/Dist.pm?rev=29258&op=diff
==============================================================================
--- trunk/libpar-dist-perl/lib/PAR/Dist.pm (original)
+++ trunk/libpar-dist-perl/lib/PAR/Dist.pm Mon Jan  5 00:56:12 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