[SCM] Debian packaging of dh-make-perl branch, master, updated. debian/0.75-1-27-g64075e6

Damyan Ivanov dmn at debian.org
Tue Sep 11 19:13:11 UTC 2012


The following commit has been merged in the master branch:
commit 64075e6f5e70870012ab387b05b1e47bb3e1d225
Author: Damyan Ivanov <dmn at debian.org>
Date:   Tue Sep 11 22:12:56 2012 +0300

    setup_dir: ignore $dist->get return value
    
    POD says nothing about it, so false doesn't indicate failure
    false is sometimes returned when some prerequisites aren't
    satisfied, which is not important for us.
    
    Closes: #686739

diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index 81547a9..0d0fc32 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -277,8 +277,8 @@ sub setup_dir {
                 . "' module or distribution on CPAN\n";
         }
 
-        $dist->get || die "Cannot get ", $dist->pretty_id, "\n"; # <- here $ENV{'PWD'} gets set to $HOME/.cpan/build
-        chdir $orig_pwd;                                         # so set it back
+        $dist->get;     # <- here $ENV{'PWD'} gets set to $HOME/.cpan/build
+        chdir $orig_pwd;   # so set it back
         $dist->pretty_id =~ /^(.)(.)/;
         $tarball = $CPAN::Config->{'keep_source_where'} . "/authors/id/$1/$1$2/";
         # the file is under authors/id/A/AU/AUTHOR directory
@@ -698,7 +698,7 @@ L<http://bugs.debian.org/dh-make-perl>
 
 =item Copyright (C) 2007-2010 Gregor Herrmann <gregoa at debian.org>
 
-=item Copyright (C) 2007,2008,2009,2010,2011 Damyan Ivanov <dmn at debian.org>
+=item Copyright (C) 2007,2008,2009,2010,2011,2012 Damyan Ivanov <dmn at debian.org>
 
 =item Copyright (C) 2008, Roberto C. Sanchez <roberto at connexer.com>
 

-- 
Debian packaging of dh-make-perl



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