In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/b6806da1b6a1684b26f8ef5b7f2ca4133d468604?hp=c1c824fc91d679abcbe5f72252ac95924474a9e4>
- Log ----------------------------------------------------------------- commit b6806da1b6a1684b26f8ef5b7f2ca4133d468604 Author: Chris 'BinGOs' Williams <[email protected]> Date: Thu Nov 30 16:06:14 2017 +0000 Update File-Fetch to CPAN version 0.56 [DELTA] 0.56 Thu Nov 30 14:47:50 2017 * Blacklist 'lftp' use on hpux ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- cpan/File-Fetch/lib/File/Fetch.pm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 2ed349e2e3..7048381e80 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -489,7 +489,7 @@ use File::Glob qw(:case); }, 'File::Fetch' => { - 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.54.tar.gz', + 'DISTRIBUTION' => 'BINGOS/File-Fetch-0.56.tar.gz', 'FILES' => q[cpan/File-Fetch], }, diff --git a/cpan/File-Fetch/lib/File/Fetch.pm b/cpan/File-Fetch/lib/File/Fetch.pm index c0568b33c7..90c62e96be 100644 --- a/cpan/File-Fetch/lib/File/Fetch.pm +++ b/cpan/File-Fetch/lib/File/Fetch.pm @@ -22,13 +22,13 @@ use vars qw[ $VERBOSE $PREFER_BIN $FROM_EMAIL $USER_AGENT $FTP_PASSIVE $TIMEOUT $DEBUG $WARN $FORCEIPV4 ]; -$VERSION = '0.54'; +$VERSION = '0.56'; $VERSION = eval $VERSION; # avoid warnings with development releases $PREFER_BIN = 0; # XXX TODO implement $FROM_EMAIL = '[email protected]'; $USER_AGENT = "File::Fetch/$VERSION"; $BLACKLIST = [qw|ftp|]; -push @$BLACKLIST, qw|lftp| if $^O eq 'dragonfly'; +push @$BLACKLIST, qw|lftp| if $^O eq 'dragonfly' || $^O eq 'hpux'; $METHOD_FAIL = { }; $FTP_PASSIVE = 1; $TIMEOUT = 0; -- Perl5 Master Repository
