summaryrefslogtreecommitdiff
path: root/cpan/File-Fetch
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2013-11-27 08:37:23 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2013-11-27 08:37:23 +0000
commit4c8323eca8fdfbb951f477fa4db9c68ca90498ae (patch)
treeee6d26ee2cecf771e2b7f4c52854af7f72c5c693 /cpan/File-Fetch
parentd5d60e0a043f691c8d43616c20a23eb84e747599 (diff)
downloadperl-4c8323eca8fdfbb951f477fa4db9c68ca90498ae.tar.gz
Upgrade File-Fetch from version 0.44 to 0.46
* Blacklist 'lftp' on DragonflyBSD
Diffstat (limited to 'cpan/File-Fetch')
-rw-r--r--cpan/File-Fetch/lib/File/Fetch.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpan/File-Fetch/lib/File/Fetch.pm b/cpan/File-Fetch/lib/File/Fetch.pm
index 0205e93d83..8d512a300c 100644
--- a/cpan/File-Fetch/lib/File/Fetch.pm
+++ b/cpan/File-Fetch/lib/File/Fetch.pm
@@ -22,12 +22,13 @@ use vars qw[ $VERBOSE $PREFER_BIN $FROM_EMAIL $USER_AGENT
$FTP_PASSIVE $TIMEOUT $DEBUG $WARN
];
-$VERSION = '0.44';
+$VERSION = '0.46';
$VERSION = eval $VERSION; # avoid warnings with development releases
$PREFER_BIN = 0; # XXX TODO implement
$FROM_EMAIL = 'File-Fetch@example.com';
$USER_AGENT = "File::Fetch/$VERSION";
$BLACKLIST = [qw|ftp|];
+push @$BLACKLIST, qw|lftp| if $^O eq 'dragonfly';
$METHOD_FAIL = { };
$FTP_PASSIVE = 1;
$TIMEOUT = 0;