r29978 - 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
Sat Jan 24 01:29:59 UTC 2009


Author: gregoa
Date: Sat Jan 24 01:29:56 2009
New Revision: 29978

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=29978
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=29978&op=diff
==============================================================================
--- trunk/libpar-dist-perl/Changes (original)
+++ trunk/libpar-dist-perl/Changes Sat Jan 24 01:29:56 2009
@@ -1,3 +1,8 @@
+By: smueller on 2009/01/23
+    * Don't rely on the return value of ExtUtils::Install::(un)?install
+      to indicate success or failure of the (un)?installation.
+    * This is 0.43.
+____________________________________________________________________________
 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

Modified: trunk/libpar-dist-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/META.yml?rev=29978&op=diff
==============================================================================
--- trunk/libpar-dist-perl/META.yml (original)
+++ trunk/libpar-dist-perl/META.yml Sat Jan 24 01:29:56 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                PAR-Dist
-version:             0.42
+version:             0.43
 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=29978&op=diff
==============================================================================
--- trunk/libpar-dist-perl/debian/changelog (original)
+++ trunk/libpar-dist-perl/debian/changelog Sat Jan 24 01:29:56 2009
@@ -1,3 +1,9 @@
+libpar-dist-perl (0.43-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org>  Sat, 24 Jan 2009 02:29:11 +0100
+
 libpar-dist-perl (0.42-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=29978&op=diff
==============================================================================
--- trunk/libpar-dist-perl/lib/PAR/Dist.pm (original)
+++ trunk/libpar-dist-perl/lib/PAR/Dist.pm Sat Jan 24 01:29:56 2009
@@ -2,7 +2,7 @@
 require Exporter;
 use vars qw/$VERSION @ISA @EXPORT @EXPORT_OK $DEBUG/;
 
-$VERSION    = '0.42';
+$VERSION    = '0.43';
 @ISA	    = 'Exporter';
 @EXPORT	    = qw/
   blib_to_par
@@ -33,7 +33,7 @@
 
 =head1 VERSION
 
-This document describes version 0.42 of PAR::Dist, released January 3, 2009.
+This document describes version 0.43 of PAR::Dist, released January 23, 2009.
 
 =head1 SYNOPSIS
 
@@ -107,7 +107,7 @@
 it automatically runs F<Build>, F<make>, F<Build.PL> or F<Makefile.PL> to
 create it.
 
-Returns the filename or the generated PAR distribution.
+Returns the filename of the generated PAR distribution.
 
 Valid parameters are:
 
@@ -456,7 +456,6 @@
     $name =~ s{::|-}{/}g;
     require ExtUtils::Install;
 
-    my $rv;
     if ($action eq 'install') {
         my $target = _installation_target( File::Spec->curdir, $name, \%args );
         my $custom_targets = $args{custom_targets} || {};
@@ -464,12 +463,12 @@
         
         my $uninstall_shadows = $args{uninstall_shadows};
         my $verbose = $args{verbose};
-        $rv = ExtUtils::Install::install($target, $verbose, 0, $uninstall_shadows);
+        ExtUtils::Install::install($target, $verbose, 0, $uninstall_shadows);
     }
     elsif ($action eq 'uninstall') {
         require Config;
         my $verbose = $args{verbose};
-        $rv = ExtUtils::Install::uninstall(
+        ExtUtils::Install::uninstall(
             $args{packlist_read}||"$Config::Config{installsitearch}/auto/$name/.packlist",
             $verbose
         );
@@ -479,7 +478,8 @@
 
     chdir($old_dir);
     File::Path::rmtree([$tmpdir]);
-    return $rv;
+
+    return 1;
 }
 
 # Returns the default installation target as used by




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