summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-09-19 12:40:02 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-09-19 12:40:02 +0100
commit4d539dcf0dc3ee5f41c62f0575055ad1f4e935d3 (patch)
treea2b0cbe940be455f7bb0a34434cc6860c831b432
parentd657d9d6ff32d97f728468caa2335cb6d5c1c6cb (diff)
downloadperl-4d539dcf0dc3ee5f41c62f0575055ad1f4e935d3.tar.gz
Update CPANPLUS to CPAN version 0.9131
[DELTA] Changes for 0.9131 Tue Sep 18 14:10:16 2012 ================================================ * Add Pod::* modules to reported toolchain modules * Resolve issue with $cb->search() and SQLite source engine
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--cpan/CPANPLUS/lib/CPANPLUS.pm2
-rw-r--r--cpan/CPANPLUS/lib/CPANPLUS/Internals.pm2
-rw-r--r--cpan/CPANPLUS/lib/CPANPLUS/Internals/Constants/Report.pm2
-rw-r--r--cpan/CPANPLUS/lib/CPANPLUS/Internals/Source/SQLite.pm9
-rw-r--r--cpan/CPANPLUS/lib/CPANPLUS/Shell/Default.pm2
6 files changed, 13 insertions, 6 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 3dcdadfc26..e107f710e0 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -451,7 +451,7 @@ use File::Glob qw(:case);
'CPANPLUS' => {
'MAINTAINER' => 'kane',
- 'DISTRIBUTION' => 'BINGOS/CPANPLUS-0.9130.tar.gz',
+ 'DISTRIBUTION' => 'BINGOS/CPANPLUS-0.9131.tar.gz',
'FILES' => q[cpan/CPANPLUS],
'EXCLUDED' => [
qr{^inc/},
diff --git a/cpan/CPANPLUS/lib/CPANPLUS.pm b/cpan/CPANPLUS/lib/CPANPLUS.pm
index e03a3fb136..74d289405c 100644
--- a/cpan/CPANPLUS/lib/CPANPLUS.pm
+++ b/cpan/CPANPLUS/lib/CPANPLUS.pm
@@ -13,7 +13,7 @@ BEGIN {
use vars qw( @EXPORT @ISA $VERSION );
@EXPORT = qw( shell fetch get install );
@ISA = qw( Exporter );
- $VERSION = "0.9130"; #have to hardcode or cpan.org gets unhappy
+ $VERSION = "0.9131"; #have to hardcode or cpan.org gets unhappy
}
### purely for backward compatibility, so we can call it from the commandline:
diff --git a/cpan/CPANPLUS/lib/CPANPLUS/Internals.pm b/cpan/CPANPLUS/lib/CPANPLUS/Internals.pm
index 37b8596cde..c91acbd355 100644
--- a/cpan/CPANPLUS/lib/CPANPLUS/Internals.pm
+++ b/cpan/CPANPLUS/lib/CPANPLUS/Internals.pm
@@ -42,7 +42,7 @@ use vars qw[@ISA $VERSION];
CPANPLUS::Internals::Report
];
-$VERSION = "0.9130";
+$VERSION = "0.9131";
=pod
diff --git a/cpan/CPANPLUS/lib/CPANPLUS/Internals/Constants/Report.pm b/cpan/CPANPLUS/lib/CPANPLUS/Internals/Constants/Report.pm
index 294de69236..b2471b18d2 100644
--- a/cpan/CPANPLUS/lib/CPANPLUS/Internals/Constants/Report.pm
+++ b/cpan/CPANPLUS/lib/CPANPLUS/Internals/Constants/Report.pm
@@ -347,6 +347,8 @@ use constant REPORT_TOOLCHAIN_VERSIONS
ExtUtils::ParseXS
File::Spec
Module::Build
+ Pod::Parser
+ Pod::Simple
Test::Harness
Test::More
version
diff --git a/cpan/CPANPLUS/lib/CPANPLUS/Internals/Source/SQLite.pm b/cpan/CPANPLUS/lib/CPANPLUS/Internals/Source/SQLite.pm
index 47bdbebfd7..6bd3fdb23f 100644
--- a/cpan/CPANPLUS/lib/CPANPLUS/Internals/Source/SQLite.pm
+++ b/cpan/CPANPLUS/lib/CPANPLUS/Internals/Source/SQLite.pm
@@ -240,7 +240,6 @@ CPANPLUS::Internals::Source::SQLite - SQLite implementation
*$sub = sub {
my $self = shift;
my %hash = @_;
- my $dbh = $self->__sqlite_dbh;
my($list,$type);
my $tmpl = {
@@ -256,9 +255,15 @@ CPANPLUS::Internals::Source::SQLite - SQLite implementation
### we aliased 'module' to 'name', so change that here too
$type = 'module' if $type eq 'name';
+ my $meth = $table .'_tree';
+
+ {
+ my $throw = $self->$meth;
+ }
+
+ my $dbh = $self->__sqlite_dbh;
my $res = $dbh->query( "SELECT * from $table" );
- my $meth = $table .'_tree';
my @rv = map { $self->$meth( $_->{$key} ) }
grep { allow( $_->{$type} => $list ) } $res->hashes;
diff --git a/cpan/CPANPLUS/lib/CPANPLUS/Shell/Default.pm b/cpan/CPANPLUS/lib/CPANPLUS/Shell/Default.pm
index abed7cbb1f..67adde2bb8 100644
--- a/cpan/CPANPLUS/lib/CPANPLUS/Shell/Default.pm
+++ b/cpan/CPANPLUS/lib/CPANPLUS/Shell/Default.pm
@@ -26,7 +26,7 @@ local $Data::Dumper::Indent = 1; # for dumpering from !
BEGIN {
use vars qw[ $VERSION @ISA ];
@ISA = qw[ CPANPLUS::Shell::_Base::ReadLine ];
- $VERSION = "0.9130";
+ $VERSION = "0.9131";
}
load CPANPLUS::Shell;