Skip to content

Commit

Permalink
Update bundled modules
Browse files Browse the repository at this point in the history
  • Loading branch information
bingos committed Oct 13, 2015
1 parent ef606b4 commit 0c351ce
Show file tree
Hide file tree
Showing 7 changed files with 436 additions and 107 deletions.
6 changes: 3 additions & 3 deletions inc/bundle/Archive/Extract.pm
Expand Up @@ -48,7 +48,7 @@ use vars qw[$VERSION $PREFER_BIN $PROGRAMS $WARN $DEBUG
$_ALLOW_BIN $_ALLOW_PURE_PERL $_ALLOW_TAR_ITER
];

$VERSION = '0.74';
$VERSION = '0.76';
$PREFER_BIN = 0;
$WARN = 1;
$DEBUG = 0;
Expand Down Expand Up @@ -1111,8 +1111,8 @@ sub _unzip_bin {
### Annoyingly, pesky MSWin32 can either have 'native' tools
### which have \r\n line endings or Cygwin-based tools which
### have \n line endings. Jan Dubois suggested using this fix
local $/ = ON_WIN32 ? qr/\r?\n/ : "\n";
$self->files( [split $/, $buffer] );
my $split = ON_WIN32 ? qr/\r?\n/ : "\n";
$self->files( [split $split, $buffer] );
}
}

Expand Down
2 changes: 1 addition & 1 deletion inc/bundle/Devel/InnerPackage.pm
@@ -1,7 +1,7 @@
package Devel::InnerPackage;

use strict;
use base qw(Exporter);
use Exporter 5.57 'import';
use vars qw($VERSION @EXPORT_OK);

use if $] > 5.017, 'deprecate';
Expand Down

0 comments on commit 0c351ce

Please sign in to comment.