Upgrade File-Fetch from version 0.44 to 0.46
authorSteve Hay <steve.m.hay@googlemail.com>
Wed, 27 Nov 2013 08:37:23 +0000 (08:37 +0000)
committerSteve Hay <steve.m.hay@googlemail.com>
Wed, 27 Nov 2013 08:37:23 +0000 (08:37 +0000)
* Blacklist 'lftp' on DragonflyBSD

Porting/Maintainers.pl
cpan/File-Fetch/lib/File/Fetch.pm
pod/perldelta.pod

index 60e7d9a..de42441 100755 (executable)
@@ -497,7 +497,7 @@ use File::Glob qw(:case);
     },
 
     'File::Fetch' => {
-        'DISTRIBUTION' => 'BINGOS/File-Fetch-0.44.tar.gz',
+        'DISTRIBUTION' => 'BINGOS/File-Fetch-0.46.tar.gz',
         'FILES'        => q[cpan/File-Fetch],
     },
 
index 0205e93..8d512a3 100644 (file)
@@ -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;
index ff07432..6f01e73 100644 (file)
@@ -125,6 +125,12 @@ Avoids a warning about "undefined variable in user_agent" in some cases, and
 updates L<CGI::Cookie> documentation to reflect that "HttpOnly" is widely
 supported.
 
+=item *
+
+L<File::Fetch> has been upgraded from version 0.44 to 0.46.
+
+Blacklists "ftp" on DragonflyBSD.
+
 =back
 
 =head2 Removed Modules and Pragmata