'CPANPLUS' =>
{
'MAINTAINER' => 'kane',
- 'DISTRIBUTION' => 'BINGOS/CPANPLUS-0.9007.tar.gz',
+ 'DISTRIBUTION' => 'BINGOS/CPANPLUS-0.9010.tar.gz',
'FILES' => q[cpan/CPANPLUS],
'EXCLUDED' => [ qr{^inc/},
qr{^t/dummy-.*\.hidden$},
use vars qw( @EXPORT @ISA $VERSION );
@EXPORT = qw( shell fetch get install );
@ISA = qw( Exporter );
- $VERSION = "0.9007"; #have to hardcode or cpan.org gets unhappy
+ $VERSION = "0.9010"; #have to hardcode or cpan.org gets unhappy
}
### purely for backward compatibility, so we can call it from the commandline:
my @install_me;
for my $mod ( @sorted_prereqs ) {
- my $version = $prereqs->{$mod};
+ ( my $version = $prereqs->{$mod} ) =~ s#[^0-9\._]+##g;
### 'perl' is a special case, there's no mod object for it
if( $mod eq PERL_CORE ) {
CPANPLUS::Internals::Report
];
-$VERSION = "0.9007";
+$VERSION = "0.9010";
=pod
return $Dbh;
};
+
+ sub __sqlite_disconnect {
+ return unless $Dbh;
+ $Dbh->disconnect;
+ $Dbh = undef;
+ return;
+ }
}
{ my $used_old_copy = 0;
$used_old_copy = 0;
### chuck the file
+ $self->__sqlite_disconnect;
1 while unlink $self->__sqlite_file;
### and create a new one
BEGIN {
use vars qw[ $VERSION @ISA ];
@ISA = qw[ CPANPLUS::Shell::_Base::ReadLine ];
- $VERSION = "0.9007";
+ $VERSION = "0.9010";
}
load CPANPLUS::Shell;
### lying around. This addresses bug #29716: 20_CPANPLUS-Dist-MM.t
### fails (and leaves test files installed) when EUMM options
### include INSTALL_BASE
- { local $ENV{'PERL5_MM_OPT'};
+ { local $ENV{'PERL5_MM_OPT'}; local $ENV{'PERL_MM_OPT'};
### add the new dir to the configuration too, so eu::installed tests
### work as they should
=item *
+C<CPANPLUS> has been upgraded from 0.9007 to 0.9010
+
+Fixes for the SQLite source engine and resolving of issues with the
+testsuite when run under local::lib and/or cpanminus
+
+=item *
+
C<CPANPLUS::Dist::Build> has been upgraded from 0.48 to 0.50
=item *