r26183 - 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
Mon Oct 20 20:35:05 UTC 2008


Author: gregoa
Date: Mon Oct 20 20:35:01 2008
New Revision: 26183

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

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=26183&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/Changes (original)
+++ branches/upstream/libpar-dist-perl/current/Changes Mon Oct 20 20:35:01 2008
@@ -1,3 +1,7 @@
+By: smueller on 2008/10/16
+    * Fix _check_tools() to use *Foo{THING} syntax instead of \&{}.
+    * This is 0.38.
+____________________________________________________________________________
 By: smueller on 2008/10/08
     * Fix the "Skip 03merge_meta tests if no A::Zip nor zip/unzip found." logic.
     * Add more debug output to debug mode (system calls).

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=26183&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/META.yml (original)
+++ branches/upstream/libpar-dist-perl/current/META.yml Mon Oct 20 20:35:01 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                PAR-Dist
-version:             0.37
+version:             0.38
 abstract:            Create and manipulate PAR distributions
 license:             ~
 author:              

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=26183&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm (original)
+++ branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm Mon Oct 20 20:35:01 2008
@@ -2,7 +2,7 @@
 require Exporter;
 use vars qw/$VERSION @ISA @EXPORT @EXPORT_OK $DEBUG/;
 
-$VERSION    = '0.37';
+$VERSION    = '0.38';
 @ISA	    = 'Exporter';
 @EXPORT	    = qw/
   blib_to_par
@@ -33,7 +33,7 @@
 
 =head1 VERSION
 
-This document describes version 0.37 of PAR::Dist, released October  8, 2008.
+This document describes version 0.38 of PAR::Dist, released October 16, 2008.
 
 =head1 SYNOPSIS
 
@@ -1281,7 +1281,7 @@
       warn "PAR::Dist testers/debug info: Using '$module' as YAML implementation" if $DEBUG;
       foreach my $sub (qw(Load Dump LoadFile DumpFile)) {
         no strict 'refs';
-        my $subref = \&{"${module}::$sub"};
+        my $subref = *{"${module}::$sub"}{CODE};
         if (defined $subref and ref($subref) eq 'CODE') {
           $yaml_functions{$sub} = $subref;
         }




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