Hello community, here is the log from the commit of package perl-CPANPLUS for openSUSE:Factory checked in at 2012-02-24 12:06:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-CPANPLUS (Old) and /work/SRC/openSUSE:Factory/.perl-CPANPLUS.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-CPANPLUS", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/perl-CPANPLUS/perl-CPANPLUS.changes 2012-02-20 16:15:58.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.perl-CPANPLUS.new/perl-CPANPLUS.changes 2012-02-24 12:06:27.000000000 +0100 @@ -1,0 +2,8 @@ +Fri Feb 24 08:27:17 UTC 2012 - [email protected] + +- updated to 0.9119 + * Added progress indicators for indexing when + 'verbose' is set, [RT#75233], contributed by + reisub + +------------------------------------------------------------------- Old: ---- CPANPLUS-0.9118.tar.gz New: ---- CPANPLUS-0.9119.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-CPANPLUS.spec ++++++ --- /var/tmp/diff_new_pack.zN3XAs/_old 2012-02-24 12:06:28.000000000 +0100 +++ /var/tmp/diff_new_pack.zN3XAs/_new 2012-02-24 12:06:28.000000000 +0100 @@ -17,7 +17,7 @@ Name: perl-CPANPLUS -Version: 0.9118 +Version: 0.9119 Release: 0 %define cpan_name CPANPLUS Summary: API & CLI access to the CPAN mirrors ++++++ CPANPLUS-0.9118.tar.gz -> CPANPLUS-0.9119.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CPANPLUS-0.9118/ChangeLog new/CPANPLUS-0.9119/ChangeLog --- old/CPANPLUS-0.9118/ChangeLog 2012-02-13 23:30:29.000000000 +0100 +++ new/CPANPLUS-0.9119/ChangeLog 2012-02-23 21:57:50.000000000 +0100 @@ -1,3 +1,9 @@ +Changes for 0.9119 Thu Feb 23 20:54:53 2012 +================================================ +* Added progress indicators for indexing when + 'verbose' is set, [rt #75233], contributed by + reisub + Changes for 0.9118 Mon Feb 13 22:29:33 2012 ================================================ * Test reporting enhancements diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CPANPLUS-0.9118/META.yml new/CPANPLUS-0.9119/META.yml --- old/CPANPLUS-0.9118/META.yml 2012-02-13 23:31:03.000000000 +0100 +++ new/CPANPLUS-0.9119/META.yml 2012-02-23 21:52:00.000000000 +0100 @@ -18,4 +18,4 @@ license: http://dev.perl.org/licenses/ homepage: http://github.com/jib/cpanplus-devel repository: http://github.com/jib/cpanplus-devel -version: 0.9118 +version: 0.9119 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CPANPLUS-0.9118/inc/bundle/Archive/Extract.pm new/CPANPLUS-0.9119/inc/bundle/Archive/Extract.pm --- old/CPANPLUS-0.9118/inc/bundle/Archive/Extract.pm 2012-02-10 13:31:49.000000000 +0100 +++ new/CPANPLUS-0.9119/inc/bundle/Archive/Extract.pm 2012-02-23 21:48:00.000000000 +0100 @@ -17,6 +17,7 @@ use constant ON_SOLARIS => $^O eq 'solaris' ? 1 : 0; use constant ON_NETBSD => $^O eq 'netbsd' ? 1 : 0; use constant ON_FREEBSD => $^O eq 'freebsd' ? 1 : 0; +use constant ON_LINUX => $^O eq 'linux' ? 1 : 0; use constant FILE_EXISTS => sub { -e $_[0] ? 1 : 0 }; ### VMS may require quoting upper case command options @@ -45,7 +46,7 @@ $_ALLOW_BIN $_ALLOW_PURE_PERL $_ALLOW_TAR_ITER ]; -$VERSION = '0.58'; +$VERSION = '0.60'; $PREFER_BIN = 0; $WARN = 1; $DEBUG = 0; @@ -126,12 +127,18 @@ ### see what /bin/programs are available ### $PROGRAMS = {}; -for my $pgm (qw[tar unzip gzip bunzip2 uncompress unlzma unxz]) { +CMD: for my $pgm (qw[tar unzip gzip bunzip2 uncompress unlzma unxz]) { if ( $pgm eq 'unzip' and ( ON_NETBSD or ON_FREEBSD ) ) { local $IPC::Cmd::INSTANCES = 1; - my @possibles = can_run($pgm); ($PROGRAMS->{$pgm}) = grep { ON_NETBSD ? m!/usr/pkg/! : m!/usr/local! } can_run($pgm); - next; + next CMD; + } + if ( $pgm eq 'unzip' and ON_LINUX ) { + # Check if 'unzip' is busybox masquerading + local $IPC::Cmd::INSTANCES = 1; + my $opt = ON_VMS ? '"-Z"' : '-Z'; + ($PROGRAMS->{$pgm}) = grep { scalar run(command=> [ $_, $opt, '-1' ]) } can_run($pgm); + next CMD; } $PROGRAMS->{$pgm} = can_run($pgm); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CPANPLUS-0.9118/inc/bundle/HTTP/Tiny.pm new/CPANPLUS-0.9119/inc/bundle/HTTP/Tiny.pm --- old/CPANPLUS-0.9118/inc/bundle/HTTP/Tiny.pm 2012-02-10 13:31:49.000000000 +0100 +++ new/CPANPLUS-0.9119/inc/bundle/HTTP/Tiny.pm 2012-02-23 21:48:08.000000000 +0100 @@ -3,7 +3,7 @@ use strict; use warnings; # ABSTRACT: A small, simple, correct HTTP/1.1 client -our $VERSION = '0.016'; # VERSION +our $VERSION = '0.017'; # VERSION use Carp (); @@ -48,7 +48,7 @@ for my $sub_name ( qw/get head put post delete/ ) { my $req_method = uc $sub_name; no strict 'refs'; - eval <<"HERE"; + eval <<"HERE"; ## no critic sub $sub_name { my (\$self, \$url, \$args) = \@_; \@_ == 2 || (\@_ == 3 && ref \$args eq 'HASH') @@ -382,7 +382,7 @@ use Errno qw[EINTR EPIPE]; use IO::Socket qw[SOCK_STREAM]; -sub BUFSIZE () { 32768 } +sub BUFSIZE () { 32768 } ## no critic my $Printable = sub { local $_ = shift; @@ -840,7 +840,7 @@ =head1 VERSION -version 0.016 +version 0.017 =head1 SYNOPSIS @@ -881,43 +881,47 @@ =item * -agent +C<agent> A user-agent string (defaults to 'HTTP::Tiny/$VERSION') =item * -default_headers +C<default_headers> A hashref of default headers to apply to requests =item * -max_redirect +C<max_redirect> Maximum number of redirects allowed (defaults to 5) =item * -max_size +C<max_size> Maximum response size (only when not using a data callback). If defined, -responses larger than this will die with an error message +responses larger than this will return an exception. =item * -proxy +C<proxy> URL of a proxy server to use (default is C<$ENV{http_proxy}> if set) =item * -timeout +C<timeout> Request timeout in seconds (default is 60) =back +Exceptions from C<max_size>, C<timeout> or other errors will result in a +pseudo-HTTP status code of 599 and a reason of "Internal Exception". The +content field in the response will contain the text of the exception. + =head2 get|head|put|post|delete $response = $http->get($url); @@ -928,6 +932,8 @@ URL must have unsafe characters escaped and international domain names encoded. See C<request()> for valid options and a description of the response. +The C<success> field of the response will be true if the status code is 2XX. + =head2 post_form $response = $http->post_form($url, $form_data); @@ -942,6 +948,8 @@ encoded. See C<request()> for valid options and a description of the response. Any C<content-type> header or content in the options hashref will be ignored. +The C<success> field of the response will be true if the status code is 2XX. + =head2 mirror $response = $http->mirror($url, $file, \%options) @@ -953,11 +961,11 @@ name provided. The URL must have unsafe characters escaped and international domain names encoded. If the file already exists, the request will includes an C<If-Modified-Since> header with the modification timestamp of the file. You -may specificy a different C<If-Modified-Since> header yourself in the C<< +may specify a different C<If-Modified-Since> header yourself in the C<< $options->{headers} >> hash. The C<success> field of the response will be true if the status code is 2XX -or 304 (unmodified). +or if the status code is 304 (unmodified). If the file was modified and the server response includes a properly formatted C<Last-Modified> header, the file modification time will @@ -1168,9 +1176,9 @@ =head2 Bugs / Feature Requests -Please report any bugs or feature requests by email to C<bug-http-tiny at rt.cpan.org>, or through -the web interface at L<http://rt.cpan.org/Public/Dist/Display.html?Name=HTTP-Tiny>. You will be automatically notified of any -progress on the request by the system. +Please report any bugs or feature requests through the issue tracker +at L<http://rt.cpan.org/Public/Dist/Display.html?Name=HTTP-Tiny>. +You will be notified automatically of any progress on your issue. =head2 Source Code @@ -1197,7 +1205,7 @@ =head1 COPYRIGHT AND LICENSE -This software is copyright (c) 2011 by Christian Hansen. +This software is copyright (c) 2012 by Christian Hansen. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CPANPLUS-0.9118/inc/bundle/Module/CoreList.pm new/CPANPLUS-0.9119/inc/bundle/Module/CoreList.pm --- old/CPANPLUS-0.9118/inc/bundle/Module/CoreList.pm 2012-02-12 23:56:11.000000000 +0100 +++ new/CPANPLUS-0.9119/inc/bundle/Module/CoreList.pm 2012-02-23 21:48:04.000000000 +0100 @@ -2,7 +2,7 @@ use strict; use vars qw/$VERSION %released %version %families %upstream %bug_tracker %deprecated/; -$VERSION = '2.60'; +$VERSION = '2.61'; =head1 NAME @@ -172,7 +172,7 @@ 5.11.2, 5.11.3, 5.11.4, 5.11.5, 5.12.0, 5.12.1, 5.12.2, 5.12.3, 5.12.4, 5.13.0, 5.13.1, 5.13.2, 5.13.3, 5.13.4, 5.13.5, 5.13.6, 5.13.7, 5.13.8, 5.13.9, 5.13.10, 5.13.11, 5.14.0, 5.14.1, 5.14.2, 5.15.0, 5.15.1, 5.15.2, -5.15.3, 5.15.4, 5.15.5, 5.15.6 and 5.15.7 releases of perl. +5.15.3, 5.15.4, 5.15.5, 5.15.6, 5.15.7 and 5.15.8 releases of perl. =head1 HISTORY @@ -360,6 +360,7 @@ 5.015005 => '2011-11-20', 5.015006 => '2011-12-20', 5.015007 => '2012-01-20', + 5.015008 => '2012-02-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -31556,6 +31557,689 @@ 'warnings' => '1.12', 'warnings::register' => '1.02', }, + 5.015008 => { + 'AnyDBM_File' => '1.01', + 'App::Cpan' => '1.5701', + 'App::Prove' => '3.23', + 'App::Prove::State' => '3.23', + 'App::Prove::State::Result'=> '3.23', + 'App::Prove::State::Result::Test'=> '3.23', + 'Archive::Extract' => '0.58', + 'Archive::Tar' => '1.82', + 'Archive::Tar::Constant'=> '1.82', + 'Archive::Tar::File' => '1.82', + 'Attribute::Handlers' => '0.93', + 'AutoLoader' => '5.72', + 'AutoSplit' => '1.06', + 'B' => '1.34', + 'B::Concise' => '0.88', + 'B::Debug' => '1.17', + 'B::Deparse' => '1.12', + 'B::Lint' => '1.13', + 'B::Lint::Debug' => '1.12', + 'B::Showlex' => '1.03', + 'B::Terse' => '1.06', + 'B::Xref' => '1.03', + 'Benchmark' => '1.13', + 'CGI' => '3.59', + 'CGI::Apache' => '1.01', + 'CGI::Carp' => '3.51', + 'CGI::Cookie' => '1.30', + 'CGI::Fast' => '1.09', + 'CGI::Pretty' => '3.46', + 'CGI::Push' => '1.05', + 'CGI::Switch' => '1.01', + 'CGI::Util' => '3.53', + 'CPAN' => '1.9800', + 'CPAN::Author' => '5.5001', + 'CPAN::Bundle' => '5.5', + 'CPAN::CacheMgr' => '5.5001', + 'CPAN::Complete' => '5.5', + 'CPAN::Debug' => '5.5001', + 'CPAN::DeferredCode' => '5.50', + 'CPAN::Distribution' => '1.9602', + 'CPAN::Distroprefs' => '6', + 'CPAN::Distrostatus' => '5.5', + 'CPAN::Exception::RecursiveDependency'=> '5.5', + 'CPAN::Exception::blocked_urllist'=> '1.001', + 'CPAN::Exception::yaml_not_installed'=> '5.5', + 'CPAN::Exception::yaml_process_error'=> '5.5', + 'CPAN::FTP' => '5.5005', + 'CPAN::FTP::netrc' => '1.01', + 'CPAN::FirstTime' => '5.5303', + 'CPAN::HTTP::Client' => '1.9600', + 'CPAN::HTTP::Credentials'=> '1.9600', + 'CPAN::HandleConfig' => '5.5003', + 'CPAN::Index' => '1.9600', + 'CPAN::InfoObj' => '5.5', + 'CPAN::Kwalify' => '5.50', + 'CPAN::LWP::UserAgent' => '1.9600', + 'CPAN::Meta' => '2.120351', + 'CPAN::Meta::Converter' => '2.120351', + 'CPAN::Meta::Feature' => '2.120351', + 'CPAN::Meta::History' => '2.120351', + 'CPAN::Meta::Prereqs' => '2.120351', + 'CPAN::Meta::Requirements'=> '2.120351', + 'CPAN::Meta::Spec' => '2.120351', + 'CPAN::Meta::Validator' => '2.120351', + 'CPAN::Meta::YAML' => '0.007', + 'CPAN::Mirrors' => '1.9600', + 'CPAN::Module' => '5.5001', + 'CPAN::Nox' => '5.50', + 'CPAN::Prompt' => '5.5', + 'CPAN::Queue' => '5.5001', + 'CPAN::Shell' => '5.5002', + 'CPAN::Tarzip' => '5.5011', + 'CPAN::URL' => '5.5', + 'CPAN::Version' => '5.5001', + 'CPANPLUS' => '0.9118', + 'CPANPLUS::Backend' => undef, + 'CPANPLUS::Backend::RV' => undef, + 'CPANPLUS::Config' => undef, + 'CPANPLUS::Configure' => undef, + 'CPANPLUS::Configure::Setup'=> undef, + 'CPANPLUS::Dist' => undef, + 'CPANPLUS::Dist::Autobundle'=> undef, + 'CPANPLUS::Dist::Base' => undef, + 'CPANPLUS::Dist::Build' => '0.62', + 'CPANPLUS::Dist::Build::Constants'=> '0.62', + 'CPANPLUS::Dist::MM' => undef, + 'CPANPLUS::Dist::Sample'=> undef, + 'CPANPLUS::Error' => undef, + 'CPANPLUS::Internals' => '0.9118', + 'CPANPLUS::Internals::Constants'=> undef, + 'CPANPLUS::Internals::Constants::Report'=> undef, + 'CPANPLUS::Internals::Extract'=> undef, + 'CPANPLUS::Internals::Fetch'=> undef, + 'CPANPLUS::Internals::Report'=> undef, + 'CPANPLUS::Internals::Search'=> undef, + 'CPANPLUS::Internals::Source'=> undef, + 'CPANPLUS::Internals::Source::Memory'=> undef, + 'CPANPLUS::Internals::Source::SQLite'=> undef, + 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef, + 'CPANPLUS::Internals::Utils'=> undef, + 'CPANPLUS::Internals::Utils::Autoflush'=> undef, + 'CPANPLUS::Module' => undef, + 'CPANPLUS::Module::Author'=> undef, + 'CPANPLUS::Module::Author::Fake'=> undef, + 'CPANPLUS::Module::Checksums'=> undef, + 'CPANPLUS::Module::Fake'=> undef, + 'CPANPLUS::Module::Signature'=> undef, + 'CPANPLUS::Selfupdate' => undef, + 'CPANPLUS::Shell' => undef, + 'CPANPLUS::Shell::Classic'=> '0.0562', + 'CPANPLUS::Shell::Default'=> '0.9118', + 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, + 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, + 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, + 'Carp' => '1.25', + 'Carp::Heavy' => '1.25', + 'Class::Struct' => '0.63', + 'Compress::Raw::Bzip2' => '2.048', + 'Compress::Raw::Zlib' => '2.048', + 'Compress::Zlib' => '2.048', + 'Config' => undef, + 'Config::Extensions' => '0.01', + 'Cwd' => '3.39_02', + 'DB' => '1.04', + 'DBM_Filter' => '0.04', + 'DBM_Filter::compress' => '0.02', + 'DBM_Filter::encode' => '0.02', + 'DBM_Filter::int32' => '0.02', + 'DBM_Filter::null' => '0.02', + 'DBM_Filter::utf8' => '0.02', + 'DB_File' => '1.826', + 'Data::Dumper' => '2.135_05', + 'Devel::InnerPackage' => '0.4', + 'Devel::PPPort' => '3.20', + 'Devel::Peek' => '1.08', + 'Devel::SelfStubber' => '1.05', + 'Digest' => '1.17', + 'Digest::MD5' => '2.51', + 'Digest::SHA' => '5.70', + 'Digest::base' => '1.16', + 'Digest::file' => '1.16', + 'DirHandle' => '1.04', + 'Dumpvalue' => '1.17', + 'DynaLoader' => '1.14', + 'Encode' => '2.44', + 'Encode::Alias' => '2.15', + 'Encode::Byte' => '2.04', + 'Encode::CJKConstants' => '2.02', + 'Encode::CN' => '2.03', + 'Encode::CN::HZ' => '2.05', + 'Encode::Config' => '2.05', + 'Encode::EBCDIC' => '2.02', + 'Encode::Encoder' => '2.02', + 'Encode::Encoding' => '2.05', + 'Encode::GSM0338' => '2.01', + 'Encode::Guess' => '2.05', + 'Encode::JP' => '2.04', + 'Encode::JP::H2Z' => '2.02', + 'Encode::JP::JIS7' => '2.04', + 'Encode::KR' => '2.03', + 'Encode::KR::2022_KR' => '2.02', + 'Encode::MIME::Header' => '2.13', + 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', + 'Encode::MIME::Name' => '1.01', + 'Encode::Symbol' => '2.02', + 'Encode::TW' => '2.03', + 'Encode::Unicode' => '2.07', + 'Encode::Unicode::UTF7' => '2.05', + 'English' => '1.05', + 'Env' => '1.03', + 'Errno' => '1.15', + 'Exporter' => '5.66', + 'Exporter::Heavy' => '5.66', + 'ExtUtils::CBuilder' => '0.280205', + 'ExtUtils::CBuilder::Base'=> '0.280205', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.280205', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.280205', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.280205', + 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205', + 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205', + 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205', + 'ExtUtils::CBuilder::Platform::aix'=> '0.280205', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.280205', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205', + 'ExtUtils::CBuilder::Platform::os2'=> '0.280205', + 'ExtUtils::Command' => '1.17', + 'ExtUtils::Command::MM' => '6.63_02', + 'ExtUtils::Constant' => '0.23', + 'ExtUtils::Constant::Base'=> '0.05', + 'ExtUtils::Constant::ProxySubs'=> '0.08', + 'ExtUtils::Constant::Utils'=> '0.03', + 'ExtUtils::Constant::XS'=> '0.03', + 'ExtUtils::Embed' => '1.30', + 'ExtUtils::Install' => '1.58', + 'ExtUtils::Installed' => '1.999002', + 'ExtUtils::Liblist' => '6.63_02', + 'ExtUtils::Liblist::Kid'=> '6.63_02', + 'ExtUtils::MM' => '6.63_02', + 'ExtUtils::MM_AIX' => '6.63_02', + 'ExtUtils::MM_Any' => '6.63_02', + 'ExtUtils::MM_BeOS' => '6.63_02', + 'ExtUtils::MM_Cygwin' => '6.63_02', + 'ExtUtils::MM_DOS' => '6.63_02', + 'ExtUtils::MM_Darwin' => '6.63_02', + 'ExtUtils::MM_MacOS' => '6.63_02', + 'ExtUtils::MM_NW5' => '6.63_02', + 'ExtUtils::MM_OS2' => '6.63_02', + 'ExtUtils::MM_QNX' => '6.63_02', + 'ExtUtils::MM_UWIN' => '6.63_02', + 'ExtUtils::MM_Unix' => '6.63_02', + 'ExtUtils::MM_VMS' => '6.63_02', + 'ExtUtils::MM_VOS' => '6.63_02', + 'ExtUtils::MM_Win32' => '6.63_02', + 'ExtUtils::MM_Win95' => '6.63_02', + 'ExtUtils::MY' => '6.63_02', + 'ExtUtils::MakeMaker' => '6.63_02', + 'ExtUtils::MakeMaker::Config'=> '6.63_02', + 'ExtUtils::Manifest' => '1.61', + 'ExtUtils::Miniperl' => undef, + 'ExtUtils::Mkbootstrap' => '6.63_02', + 'ExtUtils::Mksymlists' => '6.63_02', + 'ExtUtils::Packlist' => '1.46', + 'ExtUtils::ParseXS' => '3.16', + 'ExtUtils::ParseXS::Constants'=> '3.16', + 'ExtUtils::ParseXS::CountLines'=> '3.16', + 'ExtUtils::ParseXS::Utilities'=> '3.16', + 'ExtUtils::Typemaps' => '3.16', + 'ExtUtils::Typemaps::Cmd'=> '3.16', + 'ExtUtils::Typemaps::InputMap'=> '3.16', + 'ExtUtils::Typemaps::OutputMap'=> '3.16', + 'ExtUtils::Typemaps::Type'=> '3.16', + 'ExtUtils::XSSymSet' => '1.2', + 'ExtUtils::testlib' => '6.63_02', + 'Fatal' => '2.10', + 'Fcntl' => '1.11', + 'File::Basename' => '2.84', + 'File::CheckTree' => '4.41', + 'File::Compare' => '1.1006', + 'File::Copy' => '2.23', + 'File::DosGlob' => '1.06', + 'File::Fetch' => '0.32', + 'File::Find' => '1.20', + 'File::Glob' => '1.17', + 'File::GlobMapper' => '1.000', + 'File::Path' => '2.08_01', + 'File::Spec' => '3.39_02', + 'File::Spec::Cygwin' => '3.39_02', + 'File::Spec::Epoc' => '3.39_02', + 'File::Spec::Functions' => '3.39_02', + 'File::Spec::Mac' => '3.39_02', + 'File::Spec::OS2' => '3.39_02', + 'File::Spec::Unix' => '3.39_02', + 'File::Spec::VMS' => '3.39_02', + 'File::Spec::Win32' => '3.39_02', + 'File::Temp' => '0.22', + 'File::stat' => '1.05', + 'FileCache' => '1.08', + 'FileHandle' => '2.02', + 'Filter::Simple' => '0.88', + 'Filter::Util::Call' => '1.40', + 'FindBin' => '1.51', + 'GDBM_File' => '1.14', + 'Getopt::Long' => '2.38', + 'Getopt::Std' => '1.07', + 'HTTP::Tiny' => '0.016', + 'Hash::Util' => '0.11', + 'Hash::Util::FieldHash' => '1.10', + 'I18N::Collate' => '1.02', + 'I18N::LangTags' => '0.38', + 'I18N::LangTags::Detect'=> '1.05', + 'I18N::LangTags::List' => '0.35_01', + 'I18N::Langinfo' => '0.08_02', + 'IO' => '1.25_06', + 'IO::Compress::Adapter::Bzip2'=> '2.048', + 'IO::Compress::Adapter::Deflate'=> '2.048', + 'IO::Compress::Adapter::Identity'=> '2.048', + 'IO::Compress::Base' => '2.048', + 'IO::Compress::Base::Common'=> '2.048', + 'IO::Compress::Bzip2' => '2.048', + 'IO::Compress::Deflate' => '2.048', + 'IO::Compress::Gzip' => '2.048', + 'IO::Compress::Gzip::Constants'=> '2.048', + 'IO::Compress::RawDeflate'=> '2.048', + 'IO::Compress::Zip' => '2.048', + 'IO::Compress::Zip::Constants'=> '2.048', + 'IO::Compress::Zlib::Constants'=> '2.048', + 'IO::Compress::Zlib::Extra'=> '2.048', + 'IO::Dir' => '1.10', + 'IO::File' => '1.16', + 'IO::Handle' => '1.33', + 'IO::Pipe' => '1.15', + 'IO::Poll' => '0.09', + 'IO::Seekable' => '1.10', + 'IO::Select' => '1.21', + 'IO::Socket' => '1.34', + 'IO::Socket::INET' => '1.33', + 'IO::Socket::UNIX' => '1.24', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.048', + 'IO::Uncompress::Adapter::Identity'=> '2.048', + 'IO::Uncompress::Adapter::Inflate'=> '2.048', + 'IO::Uncompress::AnyInflate'=> '2.048', + 'IO::Uncompress::AnyUncompress'=> '2.048', + 'IO::Uncompress::Base' => '2.048', + 'IO::Uncompress::Bunzip2'=> '2.048', + 'IO::Uncompress::Gunzip'=> '2.048', + 'IO::Uncompress::Inflate'=> '2.048', + 'IO::Uncompress::RawInflate'=> '2.048', + 'IO::Uncompress::Unzip' => '2.048', + 'IO::Zlib' => '1.10', + 'IPC::Cmd' => '0.76', + 'IPC::Msg' => '2.03', + 'IPC::Open2' => '1.04', + 'IPC::Open3' => '1.12', + 'IPC::Semaphore' => '2.03', + 'IPC::SharedMem' => '2.03', + 'IPC::SysV' => '2.03', + 'JSON::PP' => '2.27200', + 'JSON::PP::Boolean' => undef, + 'List::Util' => '1.23', + 'List::Util::PP' => '1.23', + 'List::Util::XS' => '1.23', + 'Locale::Codes' => '3.20', + 'Locale::Codes::Constants'=> '3.20', + 'Locale::Codes::Country'=> '3.20', + 'Locale::Codes::Country_Codes'=> '3.20', + 'Locale::Codes::Country_Retired'=> '3.20', + 'Locale::Codes::Currency'=> '3.20', + 'Locale::Codes::Currency_Codes'=> '3.20', + 'Locale::Codes::Currency_Retired'=> '3.20', + 'Locale::Codes::LangExt'=> '3.20', + 'Locale::Codes::LangExt_Codes'=> '3.20', + 'Locale::Codes::LangExt_Retired'=> '3.20', + 'Locale::Codes::LangFam'=> '3.20', + 'Locale::Codes::LangFam_Codes'=> '3.20', + 'Locale::Codes::LangFam_Retired'=> '3.20', + 'Locale::Codes::LangVar'=> '3.20', + 'Locale::Codes::LangVar_Codes'=> '3.20', + 'Locale::Codes::LangVar_Retired'=> '3.20', + 'Locale::Codes::Language'=> '3.20', + 'Locale::Codes::Language_Codes'=> '3.20', + 'Locale::Codes::Language_Retired'=> '3.20', + 'Locale::Codes::Script' => '3.20', + 'Locale::Codes::Script_Codes'=> '3.20', + 'Locale::Codes::Script_Retired'=> '3.20', + 'Locale::Country' => '3.20', + 'Locale::Currency' => '3.20', + 'Locale::Language' => '3.20', + 'Locale::Maketext' => '1.22', + 'Locale::Maketext::Guts'=> '1.20', + 'Locale::Maketext::GutsLoader'=> '1.20', + 'Locale::Maketext::Simple'=> '0.21', + 'Locale::Script' => '3.20', + 'Log::Message' => '0.04', + 'Log::Message::Config' => '0.04', + 'Log::Message::Handlers'=> '0.04', + 'Log::Message::Item' => '0.04', + 'Log::Message::Simple' => '0.08', + 'MIME::Base64' => '3.13', + 'MIME::QuotedPrint' => '3.13', + 'Math::BigFloat' => '1.997', + 'Math::BigFloat::Trace' => '0.29', + 'Math::BigInt' => '1.998', + 'Math::BigInt::Calc' => '1.997', + 'Math::BigInt::CalcEmu' => '1.997', + 'Math::BigInt::FastCalc'=> '0.30', + 'Math::BigInt::Trace' => '0.29', + 'Math::BigRat' => '0.2603', + 'Math::Complex' => '1.59', + 'Math::Trig' => '1.23', + 'Memoize' => '1.02', + 'Memoize::AnyDBM_File' => '1.02', + 'Memoize::Expire' => '1.02', + 'Memoize::ExpireFile' => '1.02', + 'Memoize::ExpireTest' => '1.02', + 'Memoize::NDBM_File' => '1.02', + 'Memoize::SDBM_File' => '1.02', + 'Memoize::Storable' => '1.02', + 'Module::Build' => '0.39_01', + 'Module::Build::Base' => '0.39_01', + 'Module::Build::Compat' => '0.39_01', + 'Module::Build::Config' => '0.39_01', + 'Module::Build::ConfigData'=> undef, + 'Module::Build::Cookbook'=> '0.39_01', + 'Module::Build::Dumper' => '0.39_01', + 'Module::Build::ModuleInfo'=> '0.39_01', + 'Module::Build::Notes' => '0.39_01', + 'Module::Build::PPMMaker'=> '0.39_01', + 'Module::Build::Platform::Amiga'=> '0.39_01', + 'Module::Build::Platform::Default'=> '0.39_01', + 'Module::Build::Platform::EBCDIC'=> '0.39_01', + 'Module::Build::Platform::MPEiX'=> '0.39_01', + 'Module::Build::Platform::MacOS'=> '0.39_01', + 'Module::Build::Platform::RiscOS'=> '0.39_01', + 'Module::Build::Platform::Unix'=> '0.39_01', + 'Module::Build::Platform::VMS'=> '0.39_01', + 'Module::Build::Platform::VOS'=> '0.39_01', + 'Module::Build::Platform::Windows'=> '0.39_01', + 'Module::Build::Platform::aix'=> '0.39_01', + 'Module::Build::Platform::cygwin'=> '0.39_01', + 'Module::Build::Platform::darwin'=> '0.39_01', + 'Module::Build::Platform::os2'=> '0.39_01', + 'Module::Build::PodParser'=> '0.39_01', + 'Module::Build::Version'=> '0.87', + 'Module::Build::YAML' => '1.41', + 'Module::CoreList' => '2.60', + 'Module::Load' => '0.22', + 'Module::Load::Conditional'=> '0.46', + 'Module::Loaded' => '0.08', + 'Module::Metadata' => '1.000009', + 'Module::Pluggable' => '4.0', + 'Module::Pluggable::Object'=> '3.9', + 'Moped::Msg' => '0.01', + 'NDBM_File' => '1.12', + 'NEXT' => '0.65', + 'Net::Cmd' => '2.29', + 'Net::Config' => '1.11', + 'Net::Domain' => '2.20', + 'Net::FTP' => '2.77', + 'Net::FTP::A' => '1.18', + 'Net::FTP::E' => '0.01', + 'Net::FTP::I' => '1.12', + 'Net::FTP::L' => '0.01', + 'Net::FTP::dataconn' => '0.11', + 'Net::NNTP' => '2.24', + 'Net::Netrc' => '2.12', + 'Net::POP3' => '2.29', + 'Net::Ping' => '2.38', + 'Net::SMTP' => '2.31', + 'Net::Time' => '2.10', + 'Net::hostent' => '1.01', + 'Net::netent' => '1.00', + 'Net::protoent' => '1.00', + 'Net::servent' => '1.01', + 'O' => '1.01', + 'ODBM_File' => '1.12', + 'Object::Accessor' => '0.42', + 'Opcode' => '1.23', + 'POSIX' => '1.30', + 'Package::Constants' => '0.02', + 'Params::Check' => '0.32', + 'Parse::CPAN::Meta' => '1.4402', + 'Perl::OSType' => '1.002', + 'PerlIO' => '1.07', + 'PerlIO::encoding' => '0.15', + 'PerlIO::mmap' => '0.010', + 'PerlIO::scalar' => '0.13', + 'PerlIO::via' => '0.12', + 'PerlIO::via::QuotedPrint'=> '0.06', + 'Pod::Checker' => '1.51', + 'Pod::Escapes' => '1.04', + 'Pod::Find' => '1.51', + 'Pod::Functions' => '1.05', + 'Pod::Functions::Functions'=> '1.05', + 'Pod::Html' => '1.14', + 'Pod::InputObjects' => '1.51', + 'Pod::LaTeX' => '0.60', + 'Pod::Man' => '2.25', + 'Pod::ParseLink' => '1.10', + 'Pod::ParseUtils' => '1.51', + 'Pod::Parser' => '1.51', + 'Pod::Perldoc' => '3.15_15', + 'Pod::Perldoc::BaseTo' => '3.15_15', + 'Pod::Perldoc::GetOptsOO'=> '3.15_15', + 'Pod::Perldoc::ToANSI' => '3.15_15', + 'Pod::Perldoc::ToChecker'=> '3.15_15', + 'Pod::Perldoc::ToMan' => '3.15_15', + 'Pod::Perldoc::ToNroff' => '3.15_15', + 'Pod::Perldoc::ToPod' => '3.15_15', + 'Pod::Perldoc::ToRtf' => '3.15_15', + 'Pod::Perldoc::ToTerm' => '3.15_15', + 'Pod::Perldoc::ToText' => '3.15_15', + 'Pod::Perldoc::ToTk' => '3.15_15', + 'Pod::Perldoc::ToXml' => '3.15_15', + 'Pod::PlainText' => '2.05', + 'Pod::Select' => '1.51', + 'Pod::Simple' => '3.19', + 'Pod::Simple::BlackBox' => '3.19', + 'Pod::Simple::Checker' => '3.19', + 'Pod::Simple::Debug' => '3.19', + 'Pod::Simple::DumpAsText'=> '3.19', + 'Pod::Simple::DumpAsXML'=> '3.19', + 'Pod::Simple::HTML' => '3.19', + 'Pod::Simple::HTMLBatch'=> '3.19', + 'Pod::Simple::HTMLLegacy'=> '5.01', + 'Pod::Simple::LinkSection'=> '3.19', + 'Pod::Simple::Methody' => '3.19', + 'Pod::Simple::Progress' => '3.19', + 'Pod::Simple::PullParser'=> '3.19', + 'Pod::Simple::PullParserEndToken'=> '3.19', + 'Pod::Simple::PullParserStartToken'=> '3.19', + 'Pod::Simple::PullParserTextToken'=> '3.19', + 'Pod::Simple::PullParserToken'=> '3.19', + 'Pod::Simple::RTF' => '3.19', + 'Pod::Simple::Search' => '3.19', + 'Pod::Simple::SimpleTree'=> '3.19', + 'Pod::Simple::Text' => '3.19', + 'Pod::Simple::TextContent'=> '3.19', + 'Pod::Simple::TiedOutFH'=> '3.19', + 'Pod::Simple::Transcode'=> '3.19', + 'Pod::Simple::TranscodeDumb'=> '3.19', + 'Pod::Simple::TranscodeSmart'=> '3.19', + 'Pod::Simple::XHTML' => '3.19', + 'Pod::Simple::XMLOutStream'=> '3.19', + 'Pod::Text' => '3.15', + 'Pod::Text::Color' => '2.06', + 'Pod::Text::Overstrike' => '2.04', + 'Pod::Text::Termcap' => '2.06', + 'Pod::Usage' => '1.51', + 'SDBM_File' => '1.09', + 'Safe' => '2.31', + 'Scalar::Util' => '1.23', + 'Scalar::Util::PP' => '1.23', + 'Search::Dict' => '1.04', + 'SelectSaver' => '1.02', + 'SelfLoader' => '1.20', + 'Socket' => '1.98', + 'Storable' => '2.34', + 'Symbol' => '1.07', + 'Sys::Hostname' => '1.16', + 'Sys::Syslog' => '0.29', + 'Sys::Syslog::Win32' => undef, + 'TAP::Base' => '3.23', + 'TAP::Formatter::Base' => '3.23', + 'TAP::Formatter::Color' => '3.23', + 'TAP::Formatter::Console'=> '3.23', + 'TAP::Formatter::Console::ParallelSession'=> '3.23', + 'TAP::Formatter::Console::Session'=> '3.23', + 'TAP::Formatter::File' => '3.23', + 'TAP::Formatter::File::Session'=> '3.23', + 'TAP::Formatter::Session'=> '3.23', + 'TAP::Harness' => '3.23', + 'TAP::Object' => '3.23', + 'TAP::Parser' => '3.23', + 'TAP::Parser::Aggregator'=> '3.23', + 'TAP::Parser::Grammar' => '3.23', + 'TAP::Parser::Iterator' => '3.23', + 'TAP::Parser::Iterator::Array'=> '3.23', + 'TAP::Parser::Iterator::Process'=> '3.23', + 'TAP::Parser::Iterator::Stream'=> '3.23', + 'TAP::Parser::IteratorFactory'=> '3.23', + 'TAP::Parser::Multiplexer'=> '3.23', + 'TAP::Parser::Result' => '3.23', + 'TAP::Parser::Result::Bailout'=> '3.23', + 'TAP::Parser::Result::Comment'=> '3.23', + 'TAP::Parser::Result::Plan'=> '3.23', + 'TAP::Parser::Result::Pragma'=> '3.23', + 'TAP::Parser::Result::Test'=> '3.23', + 'TAP::Parser::Result::Unknown'=> '3.23', + 'TAP::Parser::Result::Version'=> '3.23', + 'TAP::Parser::Result::YAML'=> '3.23', + 'TAP::Parser::ResultFactory'=> '3.23', + 'TAP::Parser::Scheduler'=> '3.23', + 'TAP::Parser::Scheduler::Job'=> '3.23', + 'TAP::Parser::Scheduler::Spinner'=> '3.23', + 'TAP::Parser::Source' => '3.23', + 'TAP::Parser::SourceHandler'=> '3.23', + 'TAP::Parser::SourceHandler::Executable'=> '3.23', + 'TAP::Parser::SourceHandler::File'=> '3.23', + 'TAP::Parser::SourceHandler::Handle'=> '3.23', + 'TAP::Parser::SourceHandler::Perl'=> '3.23', + 'TAP::Parser::SourceHandler::RawTAP'=> '3.23', + 'TAP::Parser::Utils' => '3.23', + 'TAP::Parser::YAMLish::Reader'=> '3.23', + 'TAP::Parser::YAMLish::Writer'=> '3.23', + 'Term::ANSIColor' => '3.01', + 'Term::Cap' => '1.13', + 'Term::Complete' => '1.402', + 'Term::ReadLine' => '1.08', + 'Term::UI' => '0.30', + 'Term::UI::History' => undef, + 'Test' => '1.25_02', + 'Test::Builder' => '0.98', + 'Test::Builder::Module' => '0.98', + 'Test::Builder::Tester' => '1.22', + 'Test::Builder::Tester::Color'=> '1.22', + 'Test::Harness' => '3.23', + 'Test::More' => '0.98', + 'Test::Simple' => '0.98', + 'Text::Abbrev' => '1.02', + 'Text::Balanced' => '2.02', + 'Text::ParseWords' => '3.27', + 'Text::Soundex' => '3.03_01', + 'Text::Tabs' => '2009.0305', + 'Text::Wrap' => '2009.0305', + 'Thread' => '3.02', + 'Thread::Queue' => '2.12', + 'Thread::Semaphore' => '2.12', + 'Tie::Array' => '1.05', + 'Tie::File' => '0.98', + 'Tie::Handle' => '4.2', + 'Tie::Hash' => '1.04', + 'Tie::Hash::NamedCapture'=> '0.08', + 'Tie::Memoize' => '1.1', + 'Tie::RefHash' => '1.39', + 'Tie::Scalar' => '1.02', + 'Tie::StdHandle' => '4.2', + 'Tie::SubstrHash' => '1.00', + 'Time::HiRes' => '1.9725', + 'Time::Local' => '1.2000', + 'Time::Piece' => '1.20_01', + 'Time::Seconds' => undef, + 'Time::gmtime' => '1.03', + 'Time::localtime' => '1.02', + 'Time::tm' => '1.00', + 'UNIVERSAL' => '1.11', + 'Unicode' => '6.1.0', + 'Unicode::Collate' => '0.87', + 'Unicode::Collate::CJK::Big5'=> '0.65', + 'Unicode::Collate::CJK::GB2312'=> '0.65', + 'Unicode::Collate::CJK::JISX0208'=> '0.64', + 'Unicode::Collate::CJK::Korean'=> '0.66', + 'Unicode::Collate::CJK::Pinyin'=> '0.85', + 'Unicode::Collate::CJK::Stroke'=> '0.85', + 'Unicode::Collate::Locale'=> '0.87', + 'Unicode::Normalize' => '1.13', + 'Unicode::UCD' => '0.41', + 'User::grent' => '1.01', + 'User::pwent' => '1.00', + 'VMS::DCLsym' => '1.05', + 'VMS::Filespec' => '1.12', + 'VMS::Stdio' => '2.4', + 'Version::Requirements' => '0.101022', + 'Win32' => '0.44', + 'Win32API::File' => '0.1200', + 'Win32API::File::ExtUtils::Myconst2perl'=> '1', + 'Win32CORE' => '0.02', + 'XS::APItest' => '0.36', + 'XS::Typemap' => '0.08', + 'XSLoader' => '0.16', + '_charnames' => '1.29', + 'arybase' => '0.04', + 'attributes' => '0.17', + 'autodie' => '2.10', + 'autodie::exception' => '2.10', + 'autodie::exception::system'=> '2.10', + 'autodie::hints' => '2.10', + 'autouse' => '1.07', + 'base' => '2.18', + 'bigint' => '0.29', + 'bignum' => '0.29', + 'bigrat' => '0.29', + 'blib' => '1.06', + 'bytes' => '1.04', + 'charnames' => '1.29', + 'constant' => '1.23', + 'deprecate' => '0.02', + 'diagnostics' => '1.28', + 'encoding' => '2.6_01', + 'encoding::warnings' => '0.11', + 'feature' => '1.26', + 'fields' => '2.16', + 'filetest' => '1.02', + 'if' => '0.0602', + 'inc::latest' => '0.39_01', + 'integer' => '1.00', + 'less' => '0.03', + 'lib' => '0.63', + 'locale' => '1.01', + 'mro' => '1.09', + 'open' => '1.10', + 'ops' => '1.02', + 'overload' => '1.18', + 'overload::numbers' => undef, + 'overloading' => '0.02', + 'parent' => '0.225', + 'perlfaq' => '5.0150039', + 're' => '0.19', + 'sigtrap' => '1.06', + 'sort' => '2.01', + 'strict' => '1.06', + 'subs' => '1.01', + 'threads' => '1.86', + 'threads::shared' => '1.40', + 'unicore::Name' => undef, + 'utf8' => '1.09', + 'vars' => '1.02', + 'version' => '0.96', + 'vmsish' => '1.03', + 'warnings' => '1.13', + 'warnings::register' => '1.02', + }, ); %deprecated = ( @@ -31692,6 +32376,8 @@ }, 5.015007 => { }, + 5.015008 => { + }, ); %upstream = ( @@ -31810,7 +32496,7 @@ 'Compress::Raw::Zlib' => 'cpan', 'Compress::Zlib' => 'cpan', 'Cwd' => 'blead', - 'DB_File' => undef, + 'DB_File' => 'cpan', 'Devel::InnerPackage' => 'cpan', 'Devel::PPPort' => 'cpan', 'Digest' => 'cpan', @@ -31915,7 +32601,7 @@ 'File::Spec::Win32' => 'blead', 'File::Temp' => undef, 'Filter::Simple' => 'blead', - 'Filter::Util::Call' => undef, + 'Filter::Util::Call' => 'cpan', 'Getopt::Long' => 'cpan', 'HTTP::Tiny' => 'cpan', 'IO::Compress::Adapter::Bzip2'=> 'cpan', @@ -32066,30 +32752,30 @@ 'Parse::CPAN::Meta' => 'cpan', 'Perl::OSType' => 'cpan', 'PerlIO::via::QuotedPrint'=> undef, - 'Pod::Checker' => undef, + 'Pod::Checker' => 'cpan', 'Pod::Escapes' => undef, - 'Pod::Find' => undef, - 'Pod::InputObjects' => undef, + 'Pod::Find' => 'cpan', + 'Pod::InputObjects' => 'cpan', 'Pod::LaTeX' => undef, 'Pod::Man' => 'cpan', 'Pod::ParseLink' => 'cpan', - 'Pod::ParseUtils' => undef, - 'Pod::Parser' => undef, - 'Pod::Perldoc' => 'blead', - 'Pod::Perldoc::BaseTo' => 'blead', - 'Pod::Perldoc::GetOptsOO'=> 'blead', - 'Pod::Perldoc::ToANSI' => 'blead', - 'Pod::Perldoc::ToChecker'=> 'blead', - 'Pod::Perldoc::ToMan' => 'blead', - 'Pod::Perldoc::ToNroff' => 'blead', - 'Pod::Perldoc::ToPod' => 'blead', - 'Pod::Perldoc::ToRtf' => 'blead', - 'Pod::Perldoc::ToTerm' => 'blead', - 'Pod::Perldoc::ToText' => 'blead', - 'Pod::Perldoc::ToTk' => 'blead', - 'Pod::Perldoc::ToXml' => 'blead', - 'Pod::PlainText' => undef, - 'Pod::Select' => undef, + 'Pod::ParseUtils' => 'cpan', + 'Pod::Parser' => 'cpan', + 'Pod::Perldoc' => 'cpan', + 'Pod::Perldoc::BaseTo' => 'cpan', + 'Pod::Perldoc::GetOptsOO'=> 'cpan', + 'Pod::Perldoc::ToANSI' => 'cpan', + 'Pod::Perldoc::ToChecker'=> 'cpan', + 'Pod::Perldoc::ToMan' => 'cpan', + 'Pod::Perldoc::ToNroff' => 'cpan', + 'Pod::Perldoc::ToPod' => 'cpan', + 'Pod::Perldoc::ToRtf' => 'cpan', + 'Pod::Perldoc::ToTerm' => 'cpan', + 'Pod::Perldoc::ToText' => 'cpan', + 'Pod::Perldoc::ToTk' => 'cpan', + 'Pod::Perldoc::ToXml' => 'cpan', + 'Pod::PlainText' => 'cpan', + 'Pod::Select' => 'cpan', 'Pod::Simple' => 'cpan', 'Pod::Simple::BlackBox' => 'cpan', 'Pod::Simple::Checker' => 'cpan', @@ -32122,7 +32808,7 @@ 'Pod::Text::Color' => 'cpan', 'Pod::Text::Overstrike' => 'cpan', 'Pod::Text::Termcap' => 'cpan', - 'Pod::Usage' => undef, + 'Pod::Usage' => 'cpan', 'Safe' => 'blead', 'Scalar::Util' => 'cpan', 'Scalar::Util::PP' => 'cpan', @@ -32238,8 +32924,8 @@ 'threads' => 'blead', 'threads::shared' => 'blead', 'version' => undef, - 'warnings' => undef, - 'warnings::register' => undef, + 'warnings' => 'blead', + 'warnings::register' => 'blead', ); %bug_tracker = ( @@ -32778,6 +33464,8 @@ 'threads' => undef, 'threads::shared' => undef, 'version' => undef, + 'warnings' => undef, + 'warnings::register' => undef, ); # Create aliases with trailing zeros for $] use diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CPANPLUS-0.9118/lib/CPANPLUS/Internals/Source.pm new/CPANPLUS-0.9119/lib/CPANPLUS/Internals/Source.pm --- old/CPANPLUS-0.9118/lib/CPANPLUS/Internals/Source.pm 2012-02-10 13:31:49.000000000 +0100 +++ new/CPANPLUS-0.9119/lib/CPANPLUS/Internals/Source.pm 2012-02-23 13:08:49.000000000 +0100 @@ -549,6 +549,16 @@ ### don't need it anymore ### unlink $out; + my ($tot,$prce,$prc,$idx); + + $args->{verbose} + and local $|=1, + $tot = scalar(split /\n/, $cont), + ($prce, $prc, $idx) = (int $tot / 25, 0, 0); + + $args->{verbose} + and print "\t0%"; + for ( split /\n/, $cont ) { my($id, $name, $email) = m/^alias \s+ (\S+) \s+ @@ -561,8 +571,24 @@ cpanid => $id, #authors CPAN ID ) or error( loc("Could not add author '%1'", $name ) ); + $args->{verbose} + and ( + $idx++, + + ($idx==$prce + and ($prc+=4,$idx=0,print ".")), + + (($prc % 10) + or $idx + or print $prc,'%') + ); + } + $args->{verbose} + and print "\n"; + + return $self->_atree; } #__create_author_tree @@ -636,9 +662,17 @@ ### don't need it anymore ### unlink $out; - my($past_header, $count); - for ( split /\n/, $content ) { + my($past_header, $count, $tot, $prce, $prc, $idx); + + $args->{verbose} + and local $|=1, + $tot = scalar(split /\n/, $content), + ($prce, $prc, $idx) = (int $tot / 25, 0, 0); + + $args->{verbose} + and print "\t0%"; + for ( split /\n/, $content ) { ### quick hack to read past the header of the file ### ### this is still rather evil... fix some time - Kane if( m|^\s*$| ) { @@ -730,8 +764,23 @@ mtime => '', ) or error( loc( "Could not add module '%1'", $data[0] ) ); + $args->{verbose} + and ( + $idx++, + + ($idx==$prce + and ($prc+=4,$idx=0,print ".")), + + (($prc % 10) + or $idx + or print $prc,'%') + ); + } #for + $args->{verbose} + and print "\n"; + return $self->_mtree; } #_create_mod_tree @@ -822,9 +871,9 @@ ### use this regex to make sure dslips with ';' in them don't cause ### parser errors my ($ds_one, $ds_two) = ($in =~ m|.+}\s+ - (\$(?:CPAN::Modulelist::)?cols.*?) - (\$(?:CPAN::Modulelist::)?data.*) - |sx); + (\$(?:CPAN::Modulelist::)?cols.*?) + (\$(?:CPAN::Modulelist::)?data.*) + |sx); ### eval them into existence ### ### still not too fond of this solution - kane ### diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CPANPLUS-0.9118/lib/CPANPLUS/Internals.pm new/CPANPLUS-0.9119/lib/CPANPLUS/Internals.pm --- old/CPANPLUS-0.9118/lib/CPANPLUS/Internals.pm 2012-02-13 23:31:03.000000000 +0100 +++ new/CPANPLUS-0.9119/lib/CPANPLUS/Internals.pm 2012-02-23 21:52:00.000000000 +0100 @@ -42,7 +42,7 @@ CPANPLUS::Internals::Report ]; -$VERSION = "0.9118"; +$VERSION = "0.9119"; =pod diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CPANPLUS-0.9118/lib/CPANPLUS/Shell/Default.pm new/CPANPLUS-0.9119/lib/CPANPLUS/Shell/Default.pm --- old/CPANPLUS-0.9118/lib/CPANPLUS/Shell/Default.pm 2012-02-13 23:31:03.000000000 +0100 +++ new/CPANPLUS-0.9119/lib/CPANPLUS/Shell/Default.pm 2012-02-23 21:52:00.000000000 +0100 @@ -26,7 +26,7 @@ BEGIN { use vars qw[ $VERSION @ISA ]; @ISA = qw[ CPANPLUS::Shell::_Base::ReadLine ]; - $VERSION = "0.9118"; + $VERSION = "0.9119"; } load CPANPLUS::Shell; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CPANPLUS-0.9118/lib/CPANPLUS.pm new/CPANPLUS-0.9119/lib/CPANPLUS.pm --- old/CPANPLUS-0.9118/lib/CPANPLUS.pm 2012-02-13 23:31:03.000000000 +0100 +++ new/CPANPLUS-0.9119/lib/CPANPLUS.pm 2012-02-23 21:52:00.000000000 +0100 @@ -13,7 +13,7 @@ use vars qw( @EXPORT @ISA $VERSION ); @EXPORT = qw( shell fetch get install ); @ISA = qw( Exporter ); - $VERSION = "0.9118"; #have to hardcode or cpan.org gets unhappy + $VERSION = "0.9119"; #have to hardcode or cpan.org gets unhappy } ### purely for backward compatibility, so we can call it from the commandline: -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
