'CPANPLUS' =>
{
'MAINTAINER' => 'kane',
- 'DISTRIBUTION' => 'BINGOS/CPANPLUS-0.89_05.tar.gz',
+ 'DISTRIBUTION' => 'BINGOS/CPANPLUS-0.89_06.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.89_05"; #have to hardcode or cpan.org gets unhappy
+ $VERSION = "0.89_06"; #have to hardcode or cpan.org gets unhappy
}
### purely for backward compatibility, so we can call it from the commandline:
while( $found =~ m/(?:\s)([\w\:]+)=>(?:q\[(.*?)\],?|undef)/g ) {
if( defined $p{$1} ) {
- msg(loc("Warning: PREREQ_PM mentions '%1' more than once. " .
- "Last mention wins.", $1 ), $verbose );
+ my $ver = $cb->_version_to_number(version => $2);
+ $p{$1} = $ver
+ if $cb->_vcmp( $ver, $p{$1} ) > 0;
+ }
+ else {
+ $p{$1} = $cb->_version_to_number(version => $2);
}
-
- $p{$1} = $cb->_version_to_number(version => $2);
}
last;
}
CPANPLUS::Internals::Report
];
-$VERSION = "0.89_05";
+$VERSION = "0.89_06";
=pod
BEGIN {
use vars qw[ $VERSION @ISA ];
@ISA = qw[ CPANPLUS::Shell::_Base::ReadLine ];
- $VERSION = "0.89_05";
+ $VERSION = "0.89_06";
}
load CPANPLUS::Shell;