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

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Mon Oct 20 20:36:01 UTC 2008


Author: gregoa
Date: Mon Oct 20 20:35:58 2008
New Revision: 26185

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=26185
Log:
New upstream release.

Modified:
    trunk/libpar-dist-perl/Changes
    trunk/libpar-dist-perl/META.yml
    trunk/libpar-dist-perl/debian/changelog
    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=26185&op=diff
==============================================================================
--- trunk/libpar-dist-perl/Changes (original)
+++ trunk/libpar-dist-perl/Changes Mon Oct 20 20:35:58 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: trunk/libpar-dist-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/META.yml?rev=26185&op=diff
==============================================================================
--- trunk/libpar-dist-perl/META.yml (original)
+++ trunk/libpar-dist-perl/META.yml Mon Oct 20 20:35:58 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: trunk/libpar-dist-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/debian/changelog?rev=26185&op=diff
==============================================================================
--- trunk/libpar-dist-perl/debian/changelog (original)
+++ trunk/libpar-dist-perl/debian/changelog Mon Oct 20 20:35:58 2008
@@ -1,3 +1,9 @@
+libpar-dist-perl (0.38-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org>  Mon, 20 Oct 2008 22:35:25 +0200
+
 libpar-dist-perl (0.37-1) unstable; urgency=low
 
   * New upstream release.

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=26185&op=diff
==============================================================================
--- trunk/libpar-dist-perl/lib/PAR/Dist.pm (original)
+++ trunk/libpar-dist-perl/lib/PAR/Dist.pm Mon Oct 20 20:35:58 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