X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/b7569deb825abe0814411c06d6990b49bb917a6d..a272bf38fe56bc079165353355df3e49dd73afeb:/dist/Module-CoreList/lib/Module/CoreList.pm diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index e1418e4..aecadef 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -2,87 +2,8 @@ package Module::CoreList; use strict; use vars qw/$VERSION %released %version %families %upstream %bug_tracker %deprecated/; -$VERSION = '2.27'; - -=head1 NAME - -Module::CoreList - what modules shipped with versions of perl - -=head1 SYNOPSIS - - use Module::CoreList; - - print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48 - - print Module::CoreList->first_release('File::Spec'); # prints 5.00405 - print Module::CoreList->first_release_by_date('File::Spec'); # prints 5.005 - print Module::CoreList->first_release('File::Spec', 0.82); # prints 5.006001 - - print join ', ', Module::CoreList->find_modules(qr/Data/); - # prints 'Data::Dumper' - print join ', ', Module::CoreList->find_modules(qr/test::h.*::.*s/i, 5.008008); - # prints 'Test::Harness::Assert, Test::Harness::Straps' - - print join ", ", @{ $Module::CoreList::families{5.005} }; - # prints "5.005, 5.00503, 5.00504" - -=head1 DESCRIPTION - -Module::CoreList contains the hash of hashes -%Module::CoreList::version, that is keyed on perl version as indicated -in $]. The second level hash is module => version pairs. - -Note, it is possible for the version of a module to be unspecified, -whereby the value is undef, so use C if -that's what you're testing for. - -It also contains %Module::CoreList::released hash, which has ISO -formatted versions of the release dates, as gleaned from L. - -New, in 1.96 is also the %Module::CoreList::families hash, which -clusters known perl releases by their major versions. - -Starting with 2.10, the special module name C refers to the version of -the Unicode Character Database bundled with Perl. - -Since 2.11, Module::CoreList::first_release() returns the first release -in the order of perl version numbers. If you want to get the earliest -perl release instead, use Module::CoreList::first_release_by_date(). - -New in 2.22, Module::CoreList::is_deprecated(MODULE,PERL_VERSION) returns true -if MODULE is marked as deprecated in PERL_VERSION. If PERL_VERSION is -omitted, it defaults to the current version of Perl. - -=head1 CAVEATS - -Module::CoreList currently covers the 5.000, 5.001, 5.002, 5.003_07, -5.004, 5.004_05, 5.005, 5.005_03, 5.005_04, 5.6.0, 5.6.1, 5.6.2, 5.7.3, -5.8.0, 5.8.1, 5.8.2, 5.8.3, 5.8.4, 5.8.5, 5.8.6, 5.8.7, 5.8.8, 5.8.9, -5.9.0, 5.9.1, 5.9.2, 5.9.3, 5.9.4, 5.9.5, 5.10.0, 5.10.1, 5.11.0, 5.11.1, -5.11.2, 5.11.3, 5.11.4, 5.11.5 and 5.12.0 releases of perl. - -=head1 HISTORY - -Moved to Changes file. - -=head1 AUTHOR - -Richard Clamp Erichardc@unixbeard.netE - -Currently maintained by the perl 5 porters Eperl5-porters@perl.orgE. - -=head1 COPYRIGHT - -Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved. - -This module is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -=head1 SEE ALSO - -L, L, L - -=cut +use Module::CoreList::TieHashDelta; +$VERSION = '2.70'; my $dumpinc = 0; sub import { @@ -100,7 +21,10 @@ END { sub first_release_raw { - my ($discard, $module, $version) = @_; + my $module = shift; + $module = shift if eval { $module->isa(__PACKAGE__) } + and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#; + my $version = shift; my @perls = $version ? grep { exists $version{$_}{ $module } && @@ -123,8 +47,8 @@ sub first_release { } sub find_modules { - my $discard = shift; my $regex = shift; + $regex = shift if eval { $regex->isa(__PACKAGE__) }; my @perls = @_; @perls = keys %version unless @perls; @@ -138,18 +62,72 @@ sub find_modules { } sub find_version { - my ($class, $v) = @_; + my $v = shift; + $v = shift if eval { $v->isa(__PACKAGE__) }; return $version{$v} if defined $version{$v}; return undef; } sub is_deprecated { - my ($module, $perl_version) = @_; + my $module = shift; + $module = shift if eval { $module->isa(__PACKAGE__) } + and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#; + my $perl_version = shift; $perl_version ||= $]; return unless $module && exists $deprecated{$perl_version}{$module}; return $deprecated{$perl_version}{$module}; } +sub removed_from { + my @perls = &removed_raw; + return shift @perls; +} + +sub removed_from_by_date { + my @perls = sort { $released{$a} cmp $released{$b} } &removed_raw; + return shift @perls; +} + +sub removed_raw { + my $mod = shift; + $mod = shift if eval { $mod->isa(__PACKAGE__) } + and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#; + return unless my @perls = sort { $a cmp $b } first_release_raw($mod); + my $last = pop @perls; + my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version; + return @removed; +} + +sub changes_between { + my ($left_ver, $right_ver) = @_; + + my $left = $version{ $left_ver }; + my $right = $version{ $right_ver }; + + my %uniq = (%$left, %$right); + + my %changes; + for my $lib (keys %uniq) { + my $lhs = exists $left->{ $lib } + ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)') + : '(absent)'; + my $rhs = exists $right->{ $lib } + ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)') + : '(absent)'; + + next if $lhs eq $rhs; + + my $change = { + (exists $left->{$lib} ? (left => $left->{$lib}) : ()), + (exists $right->{$lib} ? (right => $right->{$lib}) : ()), + }; + + $changes{$lib} = $change; + } + + return %changes; +} + # When things escaped. # NB. If you put version numbers with trailing zeroes here, you # should also add an alias for the numerical ($]) version; see @@ -192,7 +170,40 @@ sub is_deprecated { 5.011003 => '2009-12-20', 5.011004 => '2010-01-20', 5.011005 => '2010-02-20', - 5.012000 => '????-??-??', + 5.012000 => '2010-04-12', + 5.013000 => '2010-04-20', + 5.012001 => '2010-05-16', + 5.013001 => '2010-05-20', + 5.013002 => '2010-06-22', + 5.013003 => '2010-07-20', + 5.013004 => '2010-08-20', + 5.012002 => '2010-09-06', + 5.013005 => '2010-09-19', + 5.013006 => '2010-10-20', + 5.013007 => '2010-11-20', + 5.013008 => '2010-12-20', + 5.012003 => '2011-01-21', + 5.013009 => '2011-01-20', + 5.013010 => '2011-02-20', + 5.013011 => '2011-03-20', + 5.014000 => '2011-05-14', + 5.012004 => '2011-06-20', + 5.014001 => '2011-06-16', + 5.015000 => '2011-06-20', + 5.015001 => '2011-07-20', + 5.015002 => '2011-08-20', + 5.014002 => '2011-09-26', + 5.015003 => '2011-09-20', + 5.015004 => '2011-10-20', + 5.015005 => '2011-11-20', + 5.015006 => '2011-12-20', + 5.015007 => '2012-01-20', + 5.015008 => '2012-02-20', + 5.015009 => '2012-03-20', + 5.016000 => '2012-05-20', + 5.017000 => '2012-05-26', + 5.017001 => '2012-06-20', + 5.017002 => '2012-07-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -200,13841 +211,6829 @@ for my $version ( sort { $a <=> $b } keys %released ) { push @{ $families{ $family }} , $version; } - -%version = ( - 5.000 => { - 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm - 'AutoLoader' => undef, # lib/AutoLoader.pm - 'AutoSplit' => undef, # lib/AutoSplit.pm - 'Benchmark' => undef, # lib/Benchmark.pm - 'Carp' => undef, # lib/Carp.pm - 'Cwd' => undef, # lib/Cwd.pm - 'DB_File' => undef, # ext/DB_File/DB_File.pm - 'DynaLoader' => undef, # ext/DynaLoader/DynaLoader.pm - 'English' => undef, # lib/English.pm - 'Env' => undef, # lib/Env.pm - 'Exporter' => undef, # lib/Exporter.pm - 'ExtUtils::MakeMaker' => undef, # lib/ExtUtils/MakeMaker.pm - 'Fcntl' => undef, # ext/Fcntl/Fcntl.pm - 'File::Basename' => undef, # lib/File/Basename.pm - 'File::CheckTree' => undef, # lib/File/CheckTree.pm - 'File::Find' => undef, # lib/File/Find.pm - 'FileHandle' => undef, # lib/FileHandle.pm - 'GDBM_File' => undef, # ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => undef, # lib/Getopt/Long.pm - 'Getopt::Std' => undef, # lib/Getopt/Std.pm - 'I18N::Collate' => undef, # lib/I18N/Collate.pm - 'IPC::Open2' => undef, # lib/IPC/Open2.pm - 'IPC::Open3' => undef, # lib/IPC/Open3.pm - 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm - 'Math::BigInt' => undef, # lib/Math/BigInt.pm - 'Math::Complex' => undef, # lib/Math/Complex.pm - 'NDBM_File' => undef, # ext/NDBM_File/NDBM_File.pm - 'Net::Ping' => undef, # lib/Net/Ping.pm - 'ODBM_File' => undef, # ext/ODBM_File/ODBM_File.pm - 'POSIX' => undef, # ext/POSIX/POSIX.pm - 'SDBM_File' => undef, # ext/SDBM_File/SDBM_File.pm - 'Search::Dict' => undef, # lib/Search/Dict.pm - 'Shell' => undef, # lib/Shell.pm - 'Socket' => undef, # ext/Socket/Socket.pm - 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm - 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm - 'Term::Cap' => undef, # lib/Term/Cap.pm - 'Term::Complete' => undef, # lib/Term/Complete.pm - 'Test::Harness' => undef, # lib/Test/Harness.pm - 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm - 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm - 'Text::Soundex' => undef, # lib/Text/Soundex.pm - 'Text::Tabs' => undef, # lib/Text/Tabs.pm - 'TieHash' => undef, # lib/TieHash.pm - 'Time::Local' => undef, # lib/Time/Local.pm - 'integer' => undef, # lib/integer.pm - 'less' => undef, # lib/less.pm - 'sigtrap' => undef, # lib/sigtrap.pm - 'strict' => undef, # lib/strict.pm - 'subs' => undef, # lib/subs.pm +my %delta = ( + 5 => { + changed => { + 'AnyDBM_File' => undef, + 'AutoLoader' => undef, + 'AutoSplit' => undef, + 'Benchmark' => undef, + 'Carp' => undef, + 'Cwd' => undef, + 'DB_File' => undef, + 'DynaLoader' => undef, + 'English' => undef, + 'Env' => undef, + 'Exporter' => undef, + 'ExtUtils::MakeMaker' => undef, + 'Fcntl' => undef, + 'File::Basename' => undef, + 'File::CheckTree' => undef, + 'File::Find' => undef, + 'FileHandle' => undef, + 'GDBM_File' => undef, + 'Getopt::Long' => undef, + 'Getopt::Std' => undef, + 'I18N::Collate' => undef, + 'IPC::Open2' => undef, + 'IPC::Open3' => undef, + 'Math::BigFloat' => undef, + 'Math::BigInt' => undef, + 'Math::Complex' => undef, + 'NDBM_File' => undef, + 'Net::Ping' => undef, + 'ODBM_File' => undef, + 'POSIX' => undef, + 'SDBM_File' => undef, + 'Search::Dict' => undef, + 'Shell' => undef, + 'Socket' => undef, + 'Sys::Hostname' => undef, + 'Sys::Syslog' => undef, + 'Term::Cap' => undef, + 'Term::Complete' => undef, + 'Test::Harness' => undef, + 'Text::Abbrev' => undef, + 'Text::ParseWords' => undef, + 'Text::Soundex' => undef, + 'Text::Tabs' => undef, + 'TieHash' => undef, + 'Time::Local' => undef, + 'integer' => undef, + 'less' => undef, + 'sigtrap' => undef, + 'strict' => undef, + 'subs' => undef, + }, + removed => { + } }, - 5.001 => { - 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm - 'AutoLoader' => undef, # lib/AutoLoader.pm - 'AutoSplit' => undef, # lib/AutoSplit.pm - 'Benchmark' => undef, # lib/Benchmark.pm - 'Carp' => undef, # lib/Carp.pm - 'Cwd' => undef, # lib/Cwd.pm - 'DB_File' => undef, # ext/DB_File/DB_File.pm - 'DynaLoader' => undef, # ext/DynaLoader/DynaLoader.pm - 'English' => undef, # lib/English.pm - 'Env' => undef, # lib/Env.pm - 'Exporter' => undef, # lib/Exporter.pm - 'ExtUtils::Liblist' => undef, # lib/ExtUtils/Liblist.pm - 'ExtUtils::MakeMaker' => undef, # lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => undef, # lib/ExtUtils/Manifest.pm - 'ExtUtils::Mkbootstrap' => undef, # lib/ExtUtils/Mkbootstrap.pm - 'Fcntl' => undef, # ext/Fcntl/Fcntl.pm - 'File::Basename' => undef, # lib/File/Basename.pm - 'File::CheckTree' => undef, # lib/File/CheckTree.pm - 'File::Find' => undef, # lib/File/Find.pm - 'File::Path' => undef, # lib/File/Path.pm - 'FileHandle' => undef, # lib/FileHandle.pm - 'GDBM_File' => undef, # ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => undef, # lib/Getopt/Long.pm - 'Getopt::Std' => undef, # lib/Getopt/Std.pm - 'I18N::Collate' => undef, # lib/I18N/Collate.pm - 'IPC::Open2' => undef, # lib/IPC/Open2.pm - 'IPC::Open3' => undef, # lib/IPC/Open3.pm - 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm - 'Math::BigInt' => undef, # lib/Math/BigInt.pm - 'Math::Complex' => undef, # lib/Math/Complex.pm - 'NDBM_File' => undef, # ext/NDBM_File/NDBM_File.pm - 'Net::Ping' => undef, # lib/Net/Ping.pm - 'ODBM_File' => undef, # ext/ODBM_File/ODBM_File.pm - 'POSIX' => undef, # ext/POSIX/POSIX.pm - 'SDBM_File' => undef, # ext/SDBM_File/SDBM_File.pm - 'Search::Dict' => undef, # lib/Search/Dict.pm - 'Shell' => undef, # lib/Shell.pm - 'Socket' => undef, # ext/Socket/Socket.pm - 'SubstrHash' => undef, # lib/SubstrHash.pm - 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm - 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm - 'Term::Cap' => undef, # lib/Term/Cap.pm - 'Term::Complete' => undef, # lib/Term/Complete.pm - 'Test::Harness' => undef, # lib/Test/Harness.pm - 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm - 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm - 'Text::Soundex' => undef, # lib/Text/Soundex.pm - 'Text::Tabs' => undef, # lib/Text/Tabs.pm - 'TieHash' => undef, # lib/TieHash.pm - 'Time::Local' => undef, # lib/Time/Local.pm - 'integer' => undef, # lib/integer.pm - 'less' => undef, # lib/less.pm - 'lib' => undef, # lib/lib.pm - 'sigtrap' => undef, # lib/sigtrap.pm - 'strict' => undef, # lib/strict.pm - 'subs' => undef, # lib/subs.pm + delta_from => 5, + changed => { + 'ExtUtils::Liblist' => undef, + 'ExtUtils::Manifest' => undef, + 'ExtUtils::Mkbootstrap' => undef, + 'File::Path' => undef, + 'SubstrHash' => undef, + 'lib' => undef, + }, + removed => { + } }, - 5.002 => { - 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm - 'AutoLoader' => undef, # lib/AutoLoader.pm - 'AutoSplit' => undef, # lib/AutoSplit.pm - 'Benchmark' => undef, # lib/Benchmark.pm - 'Carp' => undef, # lib/Carp.pm - 'Cwd' => undef, # lib/Cwd.pm - 'DB_File' => '1.01', # ext/DB_File/DB_File.pm - 'Devel::SelfStubber' => '1.01', # lib/Devel/SelfStubber.pm - 'DirHandle' => undef, # lib/DirHandle.pm - 'DynaLoader' => '1.00', # ext/DynaLoader/DynaLoader.pm - 'English' => undef, # lib/English.pm - 'Env' => undef, # lib/Env.pm - 'Exporter' => undef, # lib/Exporter.pm - 'ExtUtils::Install' => undef, # lib/ExtUtils/Install.pm - 'ExtUtils::Liblist' => undef, # lib/ExtUtils/Liblist.pm - 'ExtUtils::MM_OS2' => undef, # lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => undef, # lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_VMS' => undef, # lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MakeMaker' => '5.21', # lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => '1.22', # lib/ExtUtils/Manifest.pm - 'ExtUtils::Mkbootstrap' => undef, # lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.00', # lib/ExtUtils/Mksymlists.pm - 'Fcntl' => '1.00', # ext/Fcntl/Fcntl.pm - 'File::Basename' => undef, # lib/File/Basename.pm - 'File::CheckTree' => undef, # lib/File/CheckTree.pm - 'File::Copy' => '1.5', # lib/File/Copy.pm - 'File::Find' => undef, # lib/File/Find.pm - 'File::Path' => '1.01', # lib/File/Path.pm - 'FileCache' => undef, # lib/FileCache.pm - 'FileHandle' => '1.00', # ext/FileHandle/FileHandle.pm - 'GDBM_File' => '1.00', # ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => '2.01', # lib/Getopt/Long.pm - 'Getopt::Std' => undef, # lib/Getopt/Std.pm - 'I18N::Collate' => undef, # lib/I18N/Collate.pm - 'IPC::Open2' => undef, # lib/IPC/Open2.pm - 'IPC::Open3' => undef, # lib/IPC/Open3.pm - 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm - 'Math::BigInt' => undef, # lib/Math/BigInt.pm - 'Math::Complex' => undef, # lib/Math/Complex.pm - 'NDBM_File' => '1.00', # ext/NDBM_File/NDBM_File.pm - 'Net::Ping' => '1', # lib/Net/Ping.pm - 'ODBM_File' => '1.00', # ext/ODBM_File/ODBM_File.pm - 'POSIX' => '1.00', # ext/POSIX/POSIX.pm - 'Pod::Functions' => undef, # lib/Pod/Functions.pm - 'Pod::Text' => undef, # lib/Pod/Text.pm - 'SDBM_File' => '1.00', # ext/SDBM_File/SDBM_File.pm - 'Safe' => '1.00', # ext/Safe/Safe.pm - 'Search::Dict' => undef, # lib/Search/Dict.pm - 'SelectSaver' => undef, # lib/SelectSaver.pm - 'SelfLoader' => '1.06', # lib/SelfLoader.pm - 'Shell' => undef, # lib/Shell.pm - 'Socket' => '1.5', # ext/Socket/Socket.pm - 'Symbol' => undef, # lib/Symbol.pm - 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm - 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm - 'Term::Cap' => undef, # lib/Term/Cap.pm - 'Term::Complete' => undef, # lib/Term/Complete.pm - 'Term::ReadLine' => undef, # lib/Term/ReadLine.pm - 'Test::Harness' => '1.07', # lib/Test/Harness.pm - 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm - 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm - 'Text::Soundex' => undef, # lib/Text/Soundex.pm - 'Text::Tabs' => undef, # lib/Text/Tabs.pm - 'Text::Wrap' => undef, # lib/Text/Wrap.pm - 'Tie::Hash' => undef, # lib/Tie/Hash.pm - 'Tie::Scalar' => undef, # lib/Tie/Scalar.pm - 'Tie::SubstrHash' => undef, # lib/Tie/SubstrHash.pm - 'Time::Local' => undef, # lib/Time/Local.pm - 'diagnostics' => undef, # lib/diagnostics.pm - 'integer' => undef, # lib/integer.pm - 'less' => undef, # lib/less.pm - 'lib' => undef, # lib/lib.pm - 'overload' => undef, # lib/overload.pm - 'sigtrap' => undef, # lib/sigtrap.pm - 'strict' => undef, # lib/strict.pm - 'subs' => undef, # lib/subs.pm - 'vars' => undef, # lib/vars.pm + delta_from => 5.001, + changed => { + 'DB_File' => '1.01', + 'Devel::SelfStubber' => '1.01', + 'DirHandle' => undef, + 'DynaLoader' => '1.00', + 'ExtUtils::Install' => undef, + 'ExtUtils::MM_OS2' => undef, + 'ExtUtils::MM_Unix' => undef, + 'ExtUtils::MM_VMS' => undef, + 'ExtUtils::MakeMaker' => '5.21', + 'ExtUtils::Manifest' => '1.22', + 'ExtUtils::Mksymlists' => '1.00', + 'Fcntl' => '1.00', + 'File::Copy' => '1.5', + 'File::Path' => '1.01', + 'FileCache' => undef, + 'FileHandle' => '1.00', + 'GDBM_File' => '1.00', + 'Getopt::Long' => '2.01', + 'NDBM_File' => '1.00', + 'Net::Ping' => '1', + 'ODBM_File' => '1.00', + 'POSIX' => '1.00', + 'Pod::Functions' => undef, + 'Pod::Text' => undef, + 'SDBM_File' => '1.00', + 'Safe' => '1.00', + 'SelectSaver' => undef, + 'SelfLoader' => '1.06', + 'Socket' => '1.5', + 'Symbol' => undef, + 'Term::ReadLine' => undef, + 'Test::Harness' => '1.07', + 'Text::Wrap' => undef, + 'Tie::Hash' => undef, + 'Tie::Scalar' => undef, + 'Tie::SubstrHash' => undef, + 'diagnostics' => undef, + 'overload' => undef, + 'vars' => undef, + }, + removed => { + 'SubstrHash' => 1, + 'TieHash' => 1, + } }, - 5.00307 => { - 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm - 'AutoLoader' => undef, #./lib/AutoLoader.pm - 'AutoSplit' => undef, #./lib/AutoSplit.pm - 'Benchmark' => undef, #./lib/Benchmark.pm - 'Carp' => undef, #./lib/Carp.pm - 'Config' => undef, - 'Cwd' => undef, #./lib/Cwd.pm - 'DB_File' => '1.03', #./lib/DB_File.pm - 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm - 'diagnostics' => undef, #./lib/diagnostics.pm - 'DirHandle' => undef, #./lib/DirHandle.pm - 'DynaLoader' => '1.00', #./ext/DynaLoader/DynaLoader.pm - 'English' => undef, #./lib/English.pm - 'Env' => undef, #./lib/Env.pm - 'Exporter' => undef, #./lib/Exporter.pm - 'ExtUtils::Embed' => '1.18', #./lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.15 ', #./lib/ExtUtils/Install.pm - 'ExtUtils::Liblist' => '1.20 ', #./lib/ExtUtils/Liblist.pm - 'ExtUtils::MakeMaker' => '5.38', #./lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => '1.27', #./lib/ExtUtils/Manifest.pm - 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.12 ', #./lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.107 ', #./lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm - 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm - 'Fatal' => undef, #./lib/Fatal.pm - 'Fcntl' => '1.00', #./ext/Fcntl/Fcntl.pm - 'File::Basename' => '2.4', #./lib/File/Basename.pm - 'File::CheckTree' => undef, #./lib/File/CheckTree.pm - 'File::Copy' => '1.5', #./lib/File/Copy.pm - 'File::Find' => undef, #./lib/File/Find.pm - 'File::Path' => '1.01', #./lib/File/Path.pm - 'FileCache' => undef, #./lib/FileCache.pm - 'FileHandle' => '1.00', #./ext/FileHandle/FileHandle.pm - 'FindBin' => '1.04', #./lib/FindBin.pm - 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => '2.04', #./lib/Getopt/Long.pm - 'Getopt::Std' => undef, #./lib/Getopt/Std.pm - 'I18N::Collate' => undef, #./lib/I18N/Collate.pm - 'integer' => undef, #./lib/integer.pm - 'IO' => undef, #./ext/IO/IO.pm - 'IO::File' => '1.05', #./ext/IO/lib/IO/File.pm - 'IO::Handle' => '1.12', #./ext/IO/lib/IO/Handle.pm - 'IO::Pipe' => '1.07', #./ext/IO/lib/IO/Pipe.pm - 'IO::Seekable' => '1.05', #./ext/IO/lib/IO/Seekable.pm - 'IO::Select' => '1.09', #./ext/IO/lib/IO/Select.pm - 'IO::Socket' => '1.13', #./ext/IO/lib/IO/Socket.pm - 'IPC::Open2' => undef, #./lib/IPC/Open2.pm - 'IPC::Open3' => undef, #./lib/IPC/Open3.pm - 'less' => undef, #./lib/less.pm - 'lib' => undef, #./lib/lib.pm - 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm - 'Math::BigInt' => undef, #./lib/Math/BigInt.pm - 'Math::Complex' => undef, #./lib/Math/Complex.pm - 'NDBM_File' => '1.00', #./ext/NDBM_File/NDBM_File.pm - 'Net::Ping' => '1.01', #./lib/Net/Ping.pm - 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.01', #./ext/Opcode/Opcode.pm - 'ops' => undef, #./ext/Opcode/ops.pm - 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm - 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm - 'overload' => undef, #./lib/overload.pm - 'Pod::Functions' => undef, #./lib/Pod/Functions.pm - 'Pod::Text' => undef, #./lib/Pod/Text.pm - 'POSIX' => '1.00', #./ext/POSIX/POSIX.pm - 'Safe' => '2.06', #./ext/Opcode/Safe.pm - 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm - 'Search::Dict' => undef, #./lib/Search/Dict.pm - 'SelectSaver' => undef, #./lib/SelectSaver.pm - 'SelfLoader' => '1.06', #./lib/SelfLoader.pm - 'Shell' => undef, #./lib/Shell.pm - 'sigtrap' => '1.01', #./lib/sigtrap.pm - 'Socket' => '1.5', #./ext/Socket/Socket.pm - 'strict' => undef, #./lib/strict.pm - 'subs' => undef, #./lib/subs.pm - 'Symbol' => undef, #./lib/Symbol.pm - 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm - 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm - 'Term::Cap' => undef, #./lib/Term/Cap.pm - 'Term::Complete' => undef, #./lib/Term/Complete.pm - 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm - 'Test::Harness' => '1.13', #./lib/Test/Harness.pm - 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm - 'Text::ParseWords' => undef, #./lib/Text/ParseWords.pm - 'Text::Soundex' => undef, #./lib/Text/Soundex.pm - 'Text::Tabs' => '96.051501', #./lib/Text/Tabs.pm - 'Text::Wrap' => '96.041801', #./lib/Text/Wrap.pm - 'Tie::Hash' => undef, #./lib/Tie/Hash.pm - 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm - 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm - 'Time::Local' => undef, #./lib/Time/Local.pm - 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm - 'vars' => undef, #./lib/vars.pm - 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm - 'VMS::Stdio' => '2.0', #./vms/ext/Stdio/Stdio.pm + delta_from => 5.002, + changed => { + 'Config' => undef, + 'DB_File' => '1.03', + 'ExtUtils::Embed' => '1.18', + 'ExtUtils::Install' => '1.15 ', + 'ExtUtils::Liblist' => '1.20 ', + 'ExtUtils::MM_Unix' => '1.107 ', + 'ExtUtils::MakeMaker' => '5.38', + 'ExtUtils::Manifest' => '1.27', + 'ExtUtils::Mkbootstrap' => '1.13 ', + 'ExtUtils::Mksymlists' => '1.12 ', + 'ExtUtils::testlib' => '1.11 ', + 'Fatal' => undef, + 'File::Basename' => '2.4', + 'FindBin' => '1.04', + 'Getopt::Long' => '2.04', + 'IO' => undef, + 'IO::File' => '1.05', + 'IO::Handle' => '1.12', + 'IO::Pipe' => '1.07', + 'IO::Seekable' => '1.05', + 'IO::Select' => '1.09', + 'IO::Socket' => '1.13', + 'Net::Ping' => '1.01', + 'OS2::ExtAttr' => '0.01', + 'OS2::PrfDB' => '0.02', + 'OS2::Process' => undef, + 'OS2::REXX' => undef, + 'Opcode' => '1.01', + 'Safe' => '2.06', + 'Test::Harness' => '1.13', + 'Text::Tabs' => '96.051501', + 'Text::Wrap' => '96.041801', + 'UNIVERSAL' => undef, + 'VMS::Filespec' => undef, + 'VMS::Stdio' => '2.0', + 'ops' => undef, + 'sigtrap' => '1.01', + }, + removed => { + } }, - - 5.004 => { - 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm - 'AutoLoader' => undef, #./lib/AutoLoader.pm - 'AutoSplit' => undef, #./lib/AutoSplit.pm - 'autouse' => '1.01', #./lib/autouse.pm - 'Benchmark' => undef, #./lib/Benchmark.pm - 'blib' => undef, #./lib/blib.pm - 'Bundle::CPAN' => '0.02', #./lib/Bundle/CPAN.pm - 'Carp' => undef, #./lib/Carp.pm - 'CGI' => '2.36', #./lib/CGI.pm - 'CGI::Apache' => '1.01', #./lib/CGI/Apache.pm - 'CGI::Carp' => '1.06', #./lib/CGI/Carp.pm - 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm - 'CGI::Push' => '1.00', #./lib/CGI/Push.pm - 'CGI::Switch' => '0.05', #./lib/CGI/Switch.pm - 'Class::Struct' => undef, #./lib/Class/Struct.pm - 'Config' => undef, - 'constant' => '1.00', #./lib/constant.pm - 'CPAN' => '1.2401', #./lib/CPAN.pm - 'CPAN::FirstTime' => '1.18 ', #./lib/CPAN/FirstTime.pm - 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm - 'Cwd' => '2.00', #./lib/Cwd.pm - 'DB_File' => '1.14', #./ext/DB_File/DB_File.pm - 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm - 'diagnostics' => undef, #./lib/diagnostics.pm - 'DirHandle' => undef, #./lib/DirHandle.pm - 'DynaLoader' => '1.02', #./ext/DynaLoader/DynaLoader.pm - 'English' => undef, #./lib/English.pm - 'Env' => undef, #./lib/Env.pm - 'Exporter' => undef, #./lib/Exporter.pm - 'ExtUtils::Command' => '1.00', #./lib/ExtUtils/Command.pm - 'ExtUtils::Embed' => '1.2501', #./lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.16 ', #./lib/ExtUtils/Install.pm - 'ExtUtils::Liblist' => '1.2201 ', #./lib/ExtUtils/Liblist.pm - 'ExtUtils::MakeMaker' => '5.4002', #./lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm - 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.13 ', #./lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.114 ', #./lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm - 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm - 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm - 'File::Basename' => '2.5', #./lib/File/Basename.pm - 'File::CheckTree' => undef, #./lib/File/CheckTree.pm - 'File::Compare' => '1.1001', #./lib/File/Compare.pm - 'File::Copy' => '2.02', #./lib/File/Copy.pm - 'File::Find' => undef, #./lib/File/Find.pm - 'File::Path' => '1.04', #./lib/File/Path.pm - 'File::stat' => undef, #./lib/File/stat.pm - 'FileCache' => undef, #./lib/FileCache.pm - 'FileHandle' => '2.00', #./lib/FileHandle.pm - 'FindBin' => '1.04', #./lib/FindBin.pm - 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => '2.10', #./lib/Getopt/Long.pm - 'Getopt::Std' => undef, #./lib/Getopt/Std.pm - 'I18N::Collate' => undef, #./lib/I18N/Collate.pm - 'integer' => undef, #./lib/integer.pm - 'IO' => undef, #./ext/IO/IO.pm - 'IO::File' => '1.0602', #./ext/IO/lib/IO/File.pm - 'IO::Handle' => '1.1504', #./ext/IO/lib/IO/Handle.pm - 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm - 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm - 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm - 'IO::Socket' => '1.1602', #./ext/IO/lib/IO/Socket.pm - 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm - 'IPC::Open3' => '1.0101', #./lib/IPC/Open3.pm - 'less' => undef, #./lib/less.pm - 'lib' => undef, #./lib/lib.pm - 'locale' => undef, #./lib/locale.pm - 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm - 'Math::BigInt' => undef, #./lib/Math/BigInt.pm - 'Math::Complex' => '1.01', #./lib/Math/Complex.pm - 'Math::Trig' => '1', #./lib/Math/Trig.pm - 'NDBM_File' => '1.00', #./ext/NDBM_File/NDBM_File.pm - 'Net::hostent' => undef, #./lib/Net/hostent.pm - 'Net::netent' => undef, #./lib/Net/netent.pm - 'Net::Ping' => '2.02', #./lib/Net/Ping.pm - 'Net::protoent' => undef, #./lib/Net/protoent.pm - 'Net::servent' => undef, #./lib/Net/servent.pm - 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm - 'ops' => undef, #./ext/Opcode/ops.pm - 'Safe' => '2.06', #./ext/Opcode/Safe.pm - 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm - 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm - 'overload' => undef, #./lib/overload.pm - 'Pod::Functions' => undef, #./lib/Pod/Functions.pm - 'Pod::Html' => undef, #./lib/Pod/Html.pm - 'Pod::Text' => '1.0203', #./lib/Pod/Text.pm - 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm - 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm - 'Search::Dict' => undef, #./lib/Search/Dict.pm - 'SelectSaver' => undef, #./lib/SelectSaver.pm - 'SelfLoader' => '1.07', #./lib/SelfLoader.pm - 'Shell' => undef, #./lib/Shell.pm - 'sigtrap' => '1.02', #./lib/sigtrap.pm - 'Socket' => '1.6', #./ext/Socket/Socket.pm - 'strict' => undef, #./lib/strict.pm - 'subs' => undef, #./lib/subs.pm - 'Symbol' => '1.02', #./lib/Symbol.pm - 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm - 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm - 'Term::Cap' => undef, #./lib/Term/Cap.pm - 'Term::Complete' => undef, #./lib/Term/Complete.pm - 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm - 'Test::Harness' => '1.1502', #./lib/Test/Harness.pm - 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm - 'Text::ParseWords' => undef, #./lib/Text/ParseWords.pm - 'Text::Soundex' => undef, #./lib/Text/Soundex.pm - 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm - 'Text::Wrap' => '97.011701', #./lib/Text/Wrap.pm - 'Tie::Hash' => undef, #./lib/Tie/Hash.pm - 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm - 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm - 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm - 'Time::Local' => undef, #./lib/Time/Local.pm - 'Time::localtime' => '1.01', #./lib/Time/localtime.pm - 'Time::tm' => undef, #./lib/Time/tm.pm - 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm - 'User::grent' => undef, #./lib/User/grent.pm - 'User::pwent' => undef, #./lib/User/pwent.pm - 'vars' => undef, #./lib/vars.pm - 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm - 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm - 'vmsish' => undef, #./vms/ext/vmsish.pm + 5.004 => { + delta_from => 5.00307, + changed => { + 'Bundle::CPAN' => '0.02', + 'CGI' => '2.36', + 'CGI::Apache' => '1.01', + 'CGI::Carp' => '1.06', + 'CGI::Fast' => '1.00a', + 'CGI::Push' => '1.00', + 'CGI::Switch' => '0.05', + 'CPAN' => '1.2401', + 'CPAN::FirstTime' => '1.18 ', + 'CPAN::Nox' => undef, + 'Class::Struct' => undef, + 'Cwd' => '2.00', + 'DB_File' => '1.14', + 'DynaLoader' => '1.02', + 'ExtUtils::Command' => '1.00', + 'ExtUtils::Embed' => '1.2501', + 'ExtUtils::Install' => '1.16 ', + 'ExtUtils::Liblist' => '1.2201 ', + 'ExtUtils::MM_Unix' => '1.114 ', + 'ExtUtils::MM_Win32' => undef, + 'ExtUtils::MakeMaker' => '5.4002', + 'ExtUtils::Manifest' => '1.33 ', + 'ExtUtils::Mksymlists' => '1.13 ', + 'ExtUtils::XSSymSet' => '1.0', + 'Fcntl' => '1.03', + 'File::Basename' => '2.5', + 'File::Compare' => '1.1001', + 'File::Copy' => '2.02', + 'File::Path' => '1.04', + 'File::stat' => undef, + 'FileHandle' => '2.00', + 'Getopt::Long' => '2.10', + 'IO::File' => '1.0602', + 'IO::Handle' => '1.1504', + 'IO::Pipe' => '1.0901', + 'IO::Seekable' => '1.06', + 'IO::Select' => '1.10', + 'IO::Socket' => '1.1602', + 'IPC::Open2' => '1.01', + 'IPC::Open3' => '1.0101', + 'Math::Complex' => '1.01', + 'Math::Trig' => '1', + 'Net::Ping' => '2.02', + 'Net::hostent' => undef, + 'Net::netent' => undef, + 'Net::protoent' => undef, + 'Net::servent' => undef, + 'Opcode' => '1.04', + 'POSIX' => '1.02', + 'Pod::Html' => undef, + 'Pod::Text' => '1.0203', + 'SelfLoader' => '1.07', + 'Socket' => '1.6', + 'Symbol' => '1.02', + 'Test::Harness' => '1.1502', + 'Text::Tabs' => '96.121201', + 'Text::Wrap' => '97.011701', + 'Tie::RefHash' => undef, + 'Time::gmtime' => '1.01', + 'Time::localtime' => '1.01', + 'Time::tm' => undef, + 'User::grent' => undef, + 'User::pwent' => undef, + 'VMS::DCLsym' => '1.01', + 'VMS::Stdio' => '2.02', + 'autouse' => '1.01', + 'blib' => undef, + 'constant' => '1.00', + 'locale' => undef, + 'sigtrap' => '1.02', + 'vmsish' => undef, + }, + removed => { + 'Fatal' => 1, + } }, - - 5.005 => { - 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm - 'attrs' => '1.0', #./ext/attrs/attrs.pm - 'AutoLoader' => undef, #./lib/AutoLoader.pm - 'AutoSplit' => '1.0302', #./lib/AutoSplit.pm - 'autouse' => '1.01', #./lib/autouse.pm - 'B' => undef, #./ext/B/B.pm - 'B::Asmdata' => undef, #./ext/B/B/Asmdata.pm - 'B::Assembler' => undef, #./ext/B/B/Assembler.pm - 'B::Bblock' => undef, #./ext/B/B/Bblock.pm - 'B::Bytecode' => undef, #./ext/B/B/Bytecode.pm - 'B::C' => undef, #./ext/B/B/C.pm - 'B::CC' => undef, #./ext/B/B/CC.pm - 'B::Debug' => undef, #./ext/B/B/Debug.pm - 'B::Deparse' => '0.56', #./ext/B/B/Deparse.pm - 'B::Disassembler' => undef, #./ext/B/B/Disassembler.pm - 'B::Lint' => undef, #./ext/B/B/Lint.pm - 'B::Showlex' => undef, #./ext/B/B/Showlex.pm - 'B::Stackobj' => undef, #./ext/B/B/Stackobj.pm - 'B::Terse' => undef, #./ext/B/B/Terse.pm - 'B::Xref' => undef, #./ext/B/B/Xref.pm - 'base' => undef, #./lib/base.pm - 'Benchmark' => undef, #./lib/Benchmark.pm - 'blib' => '1.00', #./lib/blib.pm - 'Carp' => undef, #./lib/Carp.pm - 'CGI' => '2.42', #./lib/CGI.pm - 'CGI::Apache' => '1.1', #./lib/CGI/Apache.pm - 'CGI::Carp' => '1.101', #./lib/CGI/Carp.pm - 'CGI::Cookie' => '1.06', #./lib/CGI/Cookie.pm - 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm - 'CGI::Push' => '1.01', #./lib/CGI/Push.pm - 'CGI::Switch' => '0.06', #./lib/CGI/Switch.pm - 'Class::Struct' => undef, #./lib/Class/Struct.pm - 'Config' => undef, - 'constant' => '1.00', #./lib/constant.pm - 'CPAN' => '1.3901', #./lib/CPAN.pm - 'CPAN::FirstTime' => '1.29 ', #./lib/CPAN/FirstTime.pm - 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm - 'Cwd' => '2.01', #./lib/Cwd.pm - 'Data::Dumper' => '2.09', #./ext/Data/Dumper/Dumper.pm - 'DB_File' => '1.60', #./ext/DB_File/DB_File.pm - 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm - 'DynaLoader' => '1.03', - 'diagnostics' => undef, #./lib/diagnostics.pm - 'DirHandle' => undef, #./lib/DirHandle.pm - 'English' => undef, #./lib/English.pm - 'Env' => undef, #./lib/Env.pm - 'Exporter' => undef, #./lib/Exporter.pm - 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm - 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm - 'ExtUtils::Installed' => '0.02', #./lib/ExtUtils/Installed.pm - 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm - 'ExtUtils::MakeMaker' => '5.4301', #./lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm - 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.17 ', #./lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.12601 ', #./lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm - 'ExtUtils::Packlist' => '0.03', #./lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm - 'Fatal' => '1.02', #./lib/Fatal.pm - 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm - 'fields' => '0.02', #./lib/fields.pm - 'File::Basename' => '2.6', #./lib/File/Basename.pm - 'File::CheckTree' => undef, #./lib/File/CheckTree.pm - 'File::Compare' => '1.1001', #./lib/File/Compare.pm - 'File::Copy' => '2.02', #./lib/File/Copy.pm - 'File::DosGlob' => undef, #./lib/File/DosGlob.pm - 'File::Find' => undef, #./lib/File/Find.pm - 'File::Path' => '1.0401', #./lib/File/Path.pm - 'File::Spec' => '0.6', #./lib/File/Spec.pm - 'File::Spec::Mac' => '1.0', #./lib/File/Spec/Mac.pm - 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm - 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm - 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm - 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm - 'File::stat' => undef, #./lib/File/stat.pm - 'FileCache' => undef, #./lib/FileCache.pm - 'FileHandle' => '2.00', #./lib/FileHandle.pm - 'FindBin' => '1.41', #./lib/FindBin.pm - 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => '2.17', #./lib/Getopt/Long.pm - 'Getopt::Std' => undef, #./lib/Getopt/Std.pm - 'I18N::Collate' => undef, #./lib/I18N/Collate.pm - 'integer' => undef, #./lib/integer.pm - 'IO' => undef, #./ext/IO/IO.pm - 'IO::File' => '1.06021', #./ext/IO/lib/IO/File.pm - 'IO::Handle' => '1.1505', #./ext/IO/lib/IO/Handle.pm - 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm - 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm - 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm - 'IO::Socket' => '1.1603', #./ext/IO/lib/IO/Socket.pm - 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm - 'IPC::Open3' => '1.0102', #./lib/IPC/Open3.pm - 'IPC::Msg' => '1.00', #./ext/IPC/SysV/Msg.pm - 'IPC::Semaphore' => '1.00', #./ext/IPC/SysV/Semaphore.pm - 'IPC::SysV' => '1.03', #./ext/IPC/SysV/SysV.pm - 'less' => undef, #./lib/less.pm - 'lib' => undef, #./lib/lib.pm - 'locale' => undef, #./lib/locale.pm - 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm - 'Math::BigInt' => undef, #./lib/Math/BigInt.pm - 'Math::Complex' => '1.25', #./lib/Math/Complex.pm - 'Math::Trig' => '1', #./lib/Math/Trig.pm - 'NDBM_File' => '1.01', #./ext/NDBM_File/NDBM_File.pm - 'Net::hostent' => undef, #./lib/Net/hostent.pm - 'Net::netent' => undef, #./lib/Net/netent.pm - 'Net::Ping' => '2.02', #./lib/Net/Ping.pm - 'Net::protoent' => undef, #./lib/Net/protoent.pm - 'Net::servent' => undef, #./lib/Net/servent.pm - 'O' => undef, #./ext/B/O.pm - 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm - 'ops' => undef, #./ext/Opcode/ops.pm - 'Safe' => '2.06', #./ext/Opcode/Safe.pm - 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '0.2', #./os2/OS2/Process/Process.pm - 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm - 'overload' => undef, #./lib/overload.pm - 'Pod::Functions' => undef, #./lib/Pod/Functions.pm - 'Pod::Html' => '1.01', #./lib/Pod/Html.pm - 'Pod::Text' => '1.0203', #./lib/Pod/Text.pm - 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm - 're' => '0.02', #./ext/re/re.pm - 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm - 'Search::Dict' => undef, #./lib/Search/Dict.pm - 'SelectSaver' => undef, #./lib/SelectSaver.pm - 'SelfLoader' => '1.08', #./lib/SelfLoader.pm - 'Shell' => undef, #./lib/Shell.pm - 'sigtrap' => '1.02', #./lib/sigtrap.pm - 'Socket' => '1.7', #./ext/Socket/Socket.pm - 'strict' => '1.01', #./lib/strict.pm - 'subs' => undef, #./lib/subs.pm - 'Symbol' => '1.02', #./lib/Symbol.pm - 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm - 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm - 'Term::Cap' => undef, #./lib/Term/Cap.pm - 'Term::Complete' => undef, #./lib/Term/Complete.pm - 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm - 'Test' => '1.04', #./lib/Test.pm - 'Test::Harness' => '1.1602', #./lib/Test/Harness.pm - 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm - 'Text::ParseWords' => '3.1', #./lib/Text/ParseWords.pm - 'Text::Soundex' => undef, #./lib/Text/Soundex.pm - 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm - 'Text::Wrap' => '97.02', #./lib/Text/Wrap.pm - 'Thread' => '1.0', #./ext/Thread/Thread.pm - 'Thread::Queue' => undef, #./ext/Thread/Thread/Queue.pm - 'Thread::Semaphore' => undef, #./ext/Thread/Thread/Semaphore.pm - 'Thread::Signal' => undef, #./ext/Thread/Thread/Signal.pm - 'Thread::Specific' => undef, #./ext/Thread/Thread/Specific.pm - 'Tie::Array' => '1.00', #./lib/Tie/Array.pm - 'Tie::Handle' => undef, #./lib/Tie/Handle.pm - 'Tie::Hash' => undef, #./lib/Tie/Hash.pm - 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm - 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm - 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm - 'Time::Local' => undef, #./lib/Time/Local.pm - 'Time::localtime' => '1.01', #./lib/Time/localtime.pm - 'Time::tm' => undef, #./lib/Time/tm.pm - 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm - 'User::grent' => undef, #./lib/User/grent.pm - 'User::pwent' => undef, #./lib/User/pwent.pm - 'vars' => undef, #./lib/vars.pm - 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm - 'VMS::Stdio' => '2.1', #./vms/ext/Stdio/Stdio.pm - 'vmsish' => undef, #./vms/ext/vmsish.pm + 5.00405 => { + delta_from => 5.004, + changed => { + 'AutoLoader' => '5.56', + 'AutoSplit' => '1.0303', + 'Bundle::CPAN' => '0.03', + 'CGI' => '2.42', + 'CGI::Apache' => '1.1', + 'CGI::Carp' => '1.10', + 'CGI::Cookie' => '1.06', + 'CGI::Push' => '1.01', + 'CGI::Switch' => '0.06', + 'CPAN' => '1.40', + 'CPAN::FirstTime' => '1.30 ', + 'Cwd' => '2.01', + 'DB_File' => '1.15', + 'DynaLoader' => '1.03', + 'ExtUtils::Command' => '1.01', + 'ExtUtils::Embed' => '1.2505', + 'ExtUtils::Install' => '1.28 ', + 'ExtUtils::Liblist' => '1.25 ', + 'ExtUtils::MM_Unix' => '1.118 ', + 'ExtUtils::MakeMaker' => '5.42', + 'ExtUtils::Mkbootstrap' => '1.14 ', + 'ExtUtils::Mksymlists' => '1.16 ', + 'File::Basename' => '2.6', + 'File::DosGlob' => undef, + 'File::Path' => '1.0402', + 'File::Spec' => '0.6', + 'File::Spec::Mac' => '1.0', + 'File::Spec::OS2' => undef, + 'File::Spec::Unix' => undef, + 'File::Spec::VMS' => undef, + 'File::Spec::Win32' => undef, + 'FindBin' => '1.41', + 'Getopt::Long' => '2.19', + 'IO::File' => '1.06021', + 'IO::Socket' => '1.1603', + 'IPC::Open3' => '1.0103', + 'Math::Complex' => '1.25', + 'NDBM_File' => '1.01', + 'Pod::Html' => '1.0101', + 'Pod::Text' => '1.0204', + 'SelfLoader' => '1.08', + 'Socket' => '1.7', + 'Test' => '1.04', + 'Test::Harness' => '1.1602', + 'Text::ParseWords' => '3.1001', + 'Text::Wrap' => '98.112902', + 'Tie::Handle' => undef, + 'attrs' => '0.1', + 'base' => undef, + 'blib' => '1.00', + 're' => undef, + 'strict' => '1.01', + }, + removed => { + } }, - - 5.00503 => { - 'AnyDBM_File' => undef, - 'attrs' => '1.0', - 'AutoLoader' => undef, - 'AutoSplit' => 1.0303, - 'autouse' => 1.01, - 'B::Asmdata' => undef, - 'B::Assembler' => undef, - 'B::Bblock' => undef, - 'B::Bytecode' => undef, - 'B::C' => undef, - 'B::CC' => undef, - 'B::Debug' => undef, - 'B::Deparse' => 0.56, - 'B::Disassembler' => undef, - 'B::Lint' => undef, - 'B' => undef, - 'B::Showlex' => undef, - 'B::Stackobj' => undef, - 'B::Terse' => undef, - 'B::Xref' => undef, - 'base' => undef, - 'Benchmark' => undef, - 'blib' => '1.00', - 'Carp' => undef, - 'CGI' => 2.46, - 'CGI::Apache' => 1.1, - 'CGI::Carp' => 1.13, - 'CGI::Cookie' => 1.06, - 'CGI::Fast' => 1.01, - 'CGI::Push' => 1.01, - 'CGI::Switch' => 0.06, - 'Class::Struct' => undef, - 'Config' => undef, - 'constant' => '1.00', - 'CPAN::FirstTime' => 1.36 , - 'CPAN' => 1.48, - 'CPAN::Nox' => '1.00', - 'Cwd' => 2.01, - 'Data::Dumper' => 2.101, - 'DB_File' => 1.65, - 'Devel::SelfStubber' => 1.01, - 'diagnostics' => undef, - 'DirHandle' => undef, - 'Dumpvalue' => undef, - 'DynaLoader' => 1.03, - 'English' => undef, - 'Env' => undef, - 'Exporter' => undef, - 'ExtUtils::Command' => 1.01, - 'ExtUtils::Embed' => 1.2505, - 'ExtUtils::Install' => 1.28 , - 'ExtUtils::Installed' => 0.02, - 'ExtUtils::Liblist' => 1.25 , - 'ExtUtils::MakeMaker' => 5.4302, - 'ExtUtils::Manifest' => 1.33 , - 'ExtUtils::Mkbootstrap' => 1.14 , - 'ExtUtils::Mksymlists' => 1.17 , - 'ExtUtils::MM_OS2' => undef, - 'ExtUtils::MM_Unix' => 1.12602 , - 'ExtUtils::MM_VMS' => undef, - 'ExtUtils::MM_Win32' => undef, - 'ExtUtils::Packlist' => 0.03, - 'ExtUtils::testlib' => 1.11 , - 'ExtUtils::XSSymSet' => '1.0', - 'Fatal' => 1.02, - 'Fcntl' => 1.03, - 'fields' => 0.02, - 'File::Basename' => 2.6, - 'File::CheckTree' => undef, - 'File::Compare' => 1.1001, - 'File::Copy' => 2.02, - 'File::DosGlob' => undef, - 'File::Find' => undef, - 'File::Path' => 1.0401, - 'File::Spec' => 0.6, - 'File::Spec::Mac' => '1.0', - 'File::Spec::OS2' => undef, - 'File::Spec::Unix' => undef, - 'File::Spec::VMS' => undef, - 'File::Spec::Win32' => undef, - 'File::stat' => undef, - 'FileCache' => undef, - 'FileHandle' => '2.00', - 'FindBin' => 1.42, - 'GDBM_File' => '1.00', - 'Getopt::Long' => 2.19, - 'Getopt::Std' => 1.01, - 'I18N::Collate' => undef, - 'integer' => undef, - 'IO' => undef, - 'IO::File' => 1.06021, - 'IO::Handle' => 1.1505, - 'IO::Pipe' => 1.0902, - 'IO::Seekable' => 1.06, - 'IO::Select' => '1.10', - 'IO::Socket' => 1.1603, - 'IPC::Msg' => '1.00', - 'IPC::Open2' => 1.01, - 'IPC::Open3' => 1.0103, - 'IPC::Semaphore' => '1.00', - 'IPC::SysV' => 1.03, - 'less' => undef, - 'lib' => undef, - 'locale' => undef, - 'Math::BigFloat' => undef, - 'Math::BigInt' => undef, - 'Math::Complex' => 1.26, - 'Math::Trig' => 1, - 'NDBM_File' => 1.01, - 'Net::hostent' => undef, - 'Net::netent' => undef, - 'Net::Ping' => 2.02, - 'Net::protoent' => undef, - 'Net::servent' => undef, - 'O' => undef, - 'ODBM_File' => '1.00', - 'Opcode' => 1.04, - 'ops' => undef, - 'OS2::ExtAttr' => 0.01, - 'OS2::PrfDB' => 0.02, - 'OS2::Process' => 0.2, - 'OS2::REXX' => undef, - 'overload' => undef, - 'Pod::Functions' => undef, - 'Pod::Html' => 1.01, - 'Pod::Text' => 1.0203, - 'POSIX' => 1.02, - 're' => 0.02, - 'Safe' => 2.06, - 'SDBM_File' => '1.00', - 'Search::Dict' => undef, - 'SelectSaver' => undef, - 'SelfLoader' => 1.08, - 'Shell' => undef, - 'sigtrap' => 1.02, - 'Socket' => 1.7, - 'strict' => 1.01, - 'subs' => undef, - 'Symbol' => 1.02, - 'Sys::Hostname' => undef, - 'Sys::Syslog' => undef, - 'Term::Cap' => undef, - 'Term::Complete' => undef, - 'Term::ReadLine' => undef, - 'Test' => 1.122, - 'Test::Harness' => 1.1602, - 'Text::Abbrev' => undef, - 'Text::ParseWords' => 3.1, - 'Text::Soundex' => undef, - 'Text::Tabs' => 96.121201, - 'Text::Wrap' => 98.112902, - 'Thread' => '1.0', - 'Thread::Queue' => undef, - 'Thread::Semaphore' => undef, - 'Thread::Specific' => undef, - 'Thread::Signal' => undef, - 'Tie::Array' => '1.00', - 'Tie::Handle' => undef, - 'Tie::Hash' => undef, - 'Tie::RefHash' => undef, - 'Tie::Scalar' => undef, - 'Tie::SubstrHash' => undef, - 'Time::gmtime' => 1.01, - 'Time::Local' => undef, - 'Time::localtime' => 1.01, - 'Time::tm' => undef, - 'UNIVERSAL' => undef, - 'User::grent' => undef, - 'User::pwent' => undef, - 'vars' => undef, - 'VMS::DCLsym' => 1.01, - 'VMS::Filespec' => undef, - 'VMS::Stdio' => 2.1, - 'vmsish' => undef, + 5.005 => { + delta_from => 5.00405, + changed => { + 'AutoLoader' => undef, + 'AutoSplit' => '1.0302', + 'B' => undef, + 'B::Asmdata' => undef, + 'B::Assembler' => undef, + 'B::Bblock' => undef, + 'B::Bytecode' => undef, + 'B::C' => undef, + 'B::CC' => undef, + 'B::Debug' => undef, + 'B::Deparse' => '0.56', + 'B::Disassembler' => undef, + 'B::Lint' => undef, + 'B::Showlex' => undef, + 'B::Stackobj' => undef, + 'B::Terse' => undef, + 'B::Xref' => undef, + 'CGI::Carp' => '1.101', + 'CPAN' => '1.3901', + 'CPAN::FirstTime' => '1.29 ', + 'DB_File' => '1.60', + 'Data::Dumper' => '2.09', + 'ExtUtils::Installed' => '0.02', + 'ExtUtils::MM_Unix' => '1.12601 ', + 'ExtUtils::MakeMaker' => '5.4301', + 'ExtUtils::Mkbootstrap' => '1.13 ', + 'ExtUtils::Mksymlists' => '1.17 ', + 'ExtUtils::Packlist' => '0.03', + 'Fatal' => '1.02', + 'File::Path' => '1.0401', + 'Getopt::Long' => '2.17', + 'IO::Handle' => '1.1505', + 'IPC::Msg' => '1.00', + 'IPC::Open3' => '1.0102', + 'IPC::Semaphore' => '1.00', + 'IPC::SysV' => '1.03', + 'O' => undef, + 'OS2::Process' => '0.2', + 'Pod::Html' => '1.01', + 'Pod::Text' => '1.0203', + 'Text::ParseWords' => '3.1', + 'Text::Wrap' => '97.02', + 'Thread' => '1.0', + 'Thread::Queue' => undef, + 'Thread::Semaphore' => undef, + 'Thread::Signal' => undef, + 'Thread::Specific' => undef, + 'Tie::Array' => '1.00', + 'VMS::Stdio' => '2.1', + 'attrs' => '1.0', + 'fields' => '0.02', + 're' => '0.02', + }, + removed => { + 'Bundle::CPAN' => 1, + } }, - - 5.00405 => { - 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm - 'attrs' => '0.1', #./lib/attrs.pm - 'AutoLoader' => '5.56', #./lib/AutoLoader.pm - 'AutoSplit' => '1.0303', #./lib/AutoSplit.pm - 'autouse' => '1.01', #./lib/autouse.pm - 'base' => undef, #./lib/base.pm - 'Benchmark' => undef, #./lib/Benchmark.pm - 'blib' => '1.00', #./lib/blib.pm - 'Bundle::CPAN' => '0.03', #./lib/Bundle/CPAN.pm - 'Carp' => undef, #./lib/Carp.pm - 'CGI' => '2.42', #./lib/CGI.pm - 'CGI::Apache' => '1.1', #./lib/CGI/Apache.pm - 'CGI::Carp' => '1.10', #./lib/CGI/Carp.pm - 'CGI::Cookie' => '1.06', #./lib/CGI/Cookie.pm - 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm - 'CGI::Push' => '1.01', #./lib/CGI/Push.pm - 'CGI::Switch' => '0.06', #./lib/CGI/Switch.pm - 'Class::Struct' => undef, #./lib/Class/Struct.pm - 'Config' => undef, - 'constant' => '1.00', #./lib/constant.pm - 'CPAN' => '1.40', #./lib/CPAN.pm - 'CPAN::FirstTime' => '1.30 ', #./lib/CPAN/FirstTime.pm - 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm - 'Cwd' => '2.01', #./lib/Cwd.pm - 'DB_File' => '1.15', #./ext/DB_File/DB_File.pm - 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm - 'diagnostics' => undef, #./lib/diagnostics.pm - 'DirHandle' => undef, #./lib/DirHandle.pm - 'DynaLoader' => '1.03', - 'English' => undef, #./lib/English.pm - 'Env' => undef, #./lib/Env.pm - 'Exporter' => undef, #./lib/Exporter.pm - 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm - 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm - 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm - 'ExtUtils::MakeMaker' => '5.42', #./lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm - 'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.16 ', #./lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.118 ', #./lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm - 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm - 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm - 'File::Basename' => '2.6', #./lib/File/Basename.pm - 'File::CheckTree' => undef, #./lib/File/CheckTree.pm - 'File::Compare' => '1.1001', #./lib/File/Compare.pm - 'File::Copy' => '2.02', #./lib/File/Copy.pm - 'File::DosGlob' => undef, #./lib/File/DosGlob.pm - 'File::Find' => undef, #./lib/File/Find.pm - 'File::Path' => '1.0402', #./lib/File/Path.pm - 'File::Spec' => '0.6', #./lib/File/Spec.pm - 'File::Spec::Mac' => '1.0', #./lib/File/Spec/Mac.pm - 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm - 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm - 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm - 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm - 'File::stat' => undef, #./lib/File/stat.pm - 'FileCache' => undef, #./lib/FileCache.pm - 'FileHandle' => '2.00', #./lib/FileHandle.pm - 'FindBin' => '1.41', #./lib/FindBin.pm - 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => '2.19', #./lib/Getopt/Long.pm - 'Getopt::Std' => undef, #./lib/Getopt/Std.pm - 'I18N::Collate' => undef, #./lib/I18N/Collate.pm - 'integer' => undef, #./lib/integer.pm - 'IO' => undef, #./ext/IO/IO.pm - 'IO::File' => '1.06021', #./ext/IO/lib/IO/File.pm - 'IO::Handle' => '1.1504', #./ext/IO/lib/IO/Handle.pm - 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm - 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm - 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm - 'IO::Socket' => '1.1603', #./ext/IO/lib/IO/Socket.pm - 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm - 'IPC::Open3' => '1.0103', #./lib/IPC/Open3.pm - 'less' => undef, #./lib/less.pm - 'lib' => undef, #./lib/lib.pm - 'locale' => undef, #./lib/locale.pm - 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm - 'Math::BigInt' => undef, #./lib/Math/BigInt.pm - 'Math::Complex' => '1.25', #./lib/Math/Complex.pm - 'Math::Trig' => '1', #./lib/Math/Trig.pm - 'NDBM_File' => '1.01', #./ext/NDBM_File/NDBM_File.pm - 'Net::hostent' => undef, #./lib/Net/hostent.pm - 'Net::netent' => undef, #./lib/Net/netent.pm - 'Net::Ping' => '2.02', #./lib/Net/Ping.pm - 'Net::protoent' => undef, #./lib/Net/protoent.pm - 'Net::servent' => undef, #./lib/Net/servent.pm - 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm - 'ops' => undef, #./ext/Opcode/ops.pm - 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm - 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm - 'overload' => undef, #./lib/overload.pm - 'Pod::Functions' => undef, #./lib/Pod/Functions.pm - 'Pod::Html' => '1.0101', #./lib/Pod/Html.pm - 'Pod::Text' => '1.0204', #./lib/Pod/Text.pm - 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm - 're' => undef, #./lib/re.pm - 'Safe' => '2.06', #./ext/Opcode/Safe.pm - 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm - 'Search::Dict' => undef, #./lib/Search/Dict.pm - 'SelectSaver' => undef, #./lib/SelectSaver.pm - 'SelfLoader' => '1.08', #./lib/SelfLoader.pm - 'Shell' => undef, #./lib/Shell.pm - 'sigtrap' => '1.02', #./lib/sigtrap.pm - 'Socket' => '1.7', #./ext/Socket/Socket.pm - 'strict' => '1.01', #./lib/strict.pm - 'subs' => undef, #./lib/subs.pm - 'Symbol' => '1.02', #./lib/Symbol.pm - 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm - 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm - 'Term::Cap' => undef, #./lib/Term/Cap.pm - 'Term::Complete' => undef, #./lib/Term/Complete.pm - 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm - 'Test' => '1.04', #./lib/Test.pm - 'Test::Harness' => '1.1602', #./lib/Test/Harness.pm - 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm - 'Text::ParseWords' => '3.1001', #./lib/Text/ParseWords.pm - 'Text::Soundex' => undef, #./lib/Text/Soundex.pm - 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm - 'Text::Wrap' => '98.112902', #./lib/Text/Wrap.pm - 'Tie::Handle' => undef, #./lib/Tie/Handle.pm - 'Tie::Hash' => undef, #./lib/Tie/Hash.pm - 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm - 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm - 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm - 'Time::Local' => undef, #./lib/Time/Local.pm - 'Time::localtime' => '1.01', #./lib/Time/localtime.pm - 'Time::tm' => undef, #./lib/Time/tm.pm - 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm - 'User::grent' => undef, #./lib/User/grent.pm - 'User::pwent' => undef, #./lib/User/pwent.pm - 'vars' => undef, #./lib/vars.pm - 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm - 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm - 'vmsish' => undef, #./vms/ext/vmsish.pm + 5.00503 => { + delta_from => 5.005, + changed => { + 'AutoSplit' => '1.0303', + 'CGI' => '2.46', + 'CGI::Carp' => '1.13', + 'CGI::Fast' => '1.01', + 'CPAN' => '1.48', + 'CPAN::FirstTime' => '1.36', + 'CPAN::Nox' => '1.00', + 'DB_File' => '1.65', + 'Data::Dumper' => '2.101', + 'Dumpvalue' => undef, + 'ExtUtils::Install' => '1.28', + 'ExtUtils::Liblist' => '1.25', + 'ExtUtils::MM_Unix' => '1.12602', + 'ExtUtils::MakeMaker' => '5.4302', + 'ExtUtils::Manifest' => '1.33', + 'ExtUtils::Mkbootstrap' => '1.14', + 'ExtUtils::Mksymlists' => '1.17', + 'ExtUtils::testlib' => '1.11', + 'FindBin' => '1.42', + 'Getopt::Long' => '2.19', + 'Getopt::Std' => '1.01', + 'IO::Pipe' => '1.0902', + 'IPC::Open3' => '1.0103', + 'Math::Complex' => '1.26', + 'Test' => '1.122', + 'Text::Wrap' => '98.112902', + }, + removed => { + } }, - 5.00504 => { - 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm - 'attrs' => '1.0', #lib/attrs.pm - 'AutoLoader' => undef, #lib/AutoLoader.pm - 'AutoSplit' => '1.0303', #lib/AutoSplit.pm - 'autouse' => '1.01', #lib/autouse.pm - 'base' => undef, #lib/base.pm - 'B::Asmdata' => undef, #lib/B/Asmdata.pm - 'B::Assembler' => undef, #lib/B/Assembler.pm - 'B::Bblock' => undef, #lib/B/Bblock.pm - 'B::Bytecode' => undef, #lib/B/Bytecode.pm - 'B::CC' => undef, #lib/B/CC.pm - 'B::C' => undef, #lib/B/C.pm - 'B::Debug' => undef, #lib/B/Debug.pm - 'B::Deparse' => '0.56', #lib/B/Deparse.pm - 'B::Disassembler' => undef, #lib/B/Disassembler.pm - 'Benchmark' => undef, #lib/Benchmark.pm - 'blib' => '1.00', #lib/blib.pm - 'B::Lint' => undef, #lib/B/Lint.pm - 'B::Showlex' => undef, #lib/B/Showlex.pm - 'B::Stackobj' => undef, #lib/B/Stackobj.pm - 'B::Terse' => undef, #lib/B/Terse.pm - 'B' => undef, #lib/B.pm - 'B::Xref' => undef, #lib/B/Xref.pm - 'Carp' => undef, #lib/Carp.pm - 'CGI' => '2.46', #lib/CGI.pm - 'CGI::Apache' => '1.1', #lib/CGI/Apache.pm - 'CGI::Carp' => '1.13', #lib/CGI/Carp.pm - 'CGI::Cookie' => '1.06', #lib/CGI/Cookie.pm - 'CGI::Fast' => '1.01', #lib/CGI/Fast.pm - 'CGI::Push' => '1.01', #lib/CGI/Push.pm - 'CGI::Switch' => '0.06', #lib/CGI/Switch.pm - 'Class::Struct' => undef, #lib/Class/Struct.pm - 'Config' => undef, #lib/Config.pm - 'constant' => '1.00', #lib/constant.pm - 'CPAN' => '1.48', #lib/CPAN.pm - 'CPAN::FirstTime' => '1.36 ', #lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.00', #lib/CPAN/Nox.pm - 'Cwd' => '2.01', #lib/Cwd.pm - 'Data::Dumper' => '2.101', #lib/Data/Dumper.pm - 'DB_File' => '1.807', #lib/DB_File.pm - 'Devel::SelfStubber' => '1.01', #lib/Devel/SelfStubber.pm - 'diagnostics' => undef, #lib/diagnostics.pm - 'DirHandle' => undef, #lib/DirHandle.pm - 'Dumpvalue' => undef, #lib/Dumpvalue.pm - 'DynaLoader' => '1.03', #lib/DynaLoader.pm - 'English' => undef, #lib/English.pm - 'Env' => undef, #lib/Env.pm - 'Errno' => '1.111', #lib/Errno.pm - 'Exporter' => undef, #lib/Exporter.pm - 'ExtUtils::Command' => '1.01', #lib/ExtUtils/Command.pm - 'ExtUtils::Embed' => '1.2505', #lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.28 ', #lib/ExtUtils/Install.pm - 'ExtUtils::Installed' => '0.02', #lib/ExtUtils/Installed.pm - 'ExtUtils::Liblist' => '1.25 ', #lib/ExtUtils/Liblist.pm - 'ExtUtils::MakeMaker' => '5.4302', #lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => '1.33 ', #lib/ExtUtils/Manifest.pm - 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm - 'ExtUtils::Mkbootstrap' => '1.14 ', #lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.17 ', #lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM_OS2' => undef, #lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.12602 ', #lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_VMS' => undef, #lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => undef, #lib/ExtUtils/MM_Win32.pm - 'ExtUtils::Packlist' => '0.03', #lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.11 ', #lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm - 'Fatal' => '1.02', #lib/Fatal.pm - 'Fcntl' => '1.03', #lib/Fcntl.pm - 'fields' => '0.02', #lib/fields.pm - 'File::Basename' => '2.6', #lib/File/Basename.pm - 'FileCache' => undef, #lib/FileCache.pm - 'File::CheckTree' => undef, #lib/File/CheckTree.pm - 'File::Compare' => '1.1002', #lib/File/Compare.pm - 'File::Copy' => '2.02', #lib/File/Copy.pm - 'File::DosGlob' => undef, #lib/File/DosGlob.pm - 'File::Find' => undef, #lib/File/Find.pm - 'FileHandle' => '2.00', #lib/FileHandle.pm - 'File::Path' => '1.0401', #lib/File/Path.pm - 'File::Spec' => '0.8', #lib/File/Spec.pm - 'File::Spec::Functions' => undef, #lib/File/Spec/Functions.pm - 'File::Spec::Mac' => undef, #lib/File/Spec/Mac.pm - 'File::Spec::OS2' => undef, #lib/File/Spec/OS2.pm - 'File::Spec::Unix' => undef, #lib/File/Spec/Unix.pm - 'File::Spec::VMS' => undef, #lib/File/Spec/VMS.pm - 'File::Spec::Win32' => undef, #lib/File/Spec/Win32.pm - 'File::stat' => undef, #lib/File/stat.pm - 'FindBin' => '1.42', #lib/FindBin.pm - 'GDBM_File' => '1.00', #lib/GDBM_File.pm - 'Getopt::Long' => '2.20', #lib/Getopt/Long.pm - 'Getopt::Std' => '1.01', #lib/Getopt/Std.pm - 'I18N::Collate' => undef, #lib/I18N/Collate.pm - 'integer' => undef, #lib/integer.pm - 'IO::File' => '1.06021', #lib/IO/File.pm - 'IO::Handle' => '1.1505', #lib/IO/Handle.pm - 'IO::Pipe' => '1.0902', #lib/IO/Pipe.pm - 'IO::Seekable' => '1.06', #lib/IO/Seekable.pm - 'IO::Select' => '1.10', #lib/IO/Select.pm - 'IO::Socket' => '1.1603', #lib/IO/Socket.pm - 'IO' => undef, #lib/IO.pm - 'IPC::Msg' => '1.00', #lib/IPC/Msg.pm - 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm - 'IPC::Open3' => '1.0103', #lib/IPC/Open3.pm - 'IPC::Semaphore' => '1.00', #lib/IPC/Semaphore.pm - 'IPC::SysV' => '1.03', #lib/IPC/SysV.pm - 'less' => undef, #lib/less.pm - 'lib' => undef, #lib/lib.pm - 'locale' => undef, #lib/locale.pm - 'Math::BigFloat' => undef, #lib/Math/BigFloat.pm - 'Math::BigInt' => undef, #lib/Math/BigInt.pm - 'Math::Complex' => '1.26', #lib/Math/Complex.pm - 'Math::Trig' => '1', #lib/Math/Trig.pm - 'NDBM_File' => '1.01', #ext/NDBM_File/NDBM_File.pm - 'Net::hostent' => undef, #lib/Net/hostent.pm - 'Net::netent' => undef, #lib/Net/netent.pm - 'Net::Ping' => '2.02', #lib/Net/Ping.pm - 'Net::protoent' => undef, #lib/Net/protoent.pm - 'Net::servent' => undef, #lib/Net/servent.pm - 'ODBM_File' => '1.00', #ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.04', #lib/Opcode.pm - 'ops' => undef, #lib/ops.pm - 'O' => undef, #lib/O.pm - 'OS2::ExtAttr' => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.02', #os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '0.2', #os2/OS2/Process/Process.pm - 'OS2::REXX' => undef, #os2/OS2/REXX/REXX.pm - 'overload' => undef, #lib/overload.pm - 'Pod::Functions' => undef, #lib/Pod/Functions.pm - 'Pod::Html' => '1.02', #lib/Pod/Html.pm - 'Pod::Text' => '1.0203', #lib/Pod/Text.pm - 'POSIX' => '1.02', #lib/POSIX.pm - 're' => '0.02', #lib/re.pm - 'Safe' => '2.06', #lib/Safe.pm - 'SDBM_File' => '1.00', #lib/SDBM_File.pm - 'Search::Dict' => undef, #lib/Search/Dict.pm - 'SelectSaver' => undef, #lib/SelectSaver.pm - 'SelfLoader' => '1.08', #lib/SelfLoader.pm - 'Shell' => undef, #lib/Shell.pm - 'sigtrap' => '1.02', #lib/sigtrap.pm - 'Socket' => '1.7', #lib/Socket.pm - 'strict' => '1.01', #lib/strict.pm - 'subs' => undef, #lib/subs.pm - 'Symbol' => '1.02', #lib/Symbol.pm - 'Sys::Hostname' => undef, #lib/Sys/Hostname.pm - 'Sys::Syslog' => undef, #lib/Sys/Syslog.pm - 'Term::Cap' => undef, #lib/Term/Cap.pm - 'Term::Complete' => undef, #lib/Term/Complete.pm - 'Term::ReadLine' => undef, #lib/Term/ReadLine.pm - 'Test' => '1.122', #lib/Test.pm - 'Test::Harness' => '1.1602', #lib/Test/Harness.pm - 'Text::Abbrev' => undef, #lib/Text/Abbrev.pm - 'Text::ParseWords' => '3.1', #lib/Text/ParseWords.pm - 'Text::Soundex' => undef, #lib/Text/Soundex.pm - 'Text::Tabs' => '96.121201', #lib/Text/Tabs.pm - 'Text::Wrap' => '98.112902', #lib/Text/Wrap.pm - 'Thread' => '1.0', #ext/Thread/Thread.pm - 'Thread::Queue' => undef, #ext/Thread/Thread/Queue.pm - 'Thread::Semaphore' => undef, #ext/Thread/Thread/Semaphore.pm - 'Thread::Signal' => undef, #ext/Thread/Thread/Signal.pm - 'Thread::Specific' => undef, #ext/Thread/Thread/Specific.pm - 'Tie::Array' => '1.00', #lib/Tie/Array.pm - 'Tie::Handle' => undef, #lib/Tie/Handle.pm - 'Tie::Hash' => undef, #lib/Tie/Hash.pm - 'Tie::RefHash' => undef, #lib/Tie/RefHash.pm - 'Tie::Scalar' => undef, #lib/Tie/Scalar.pm - 'Tie::SubstrHash' => undef, #lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.01', #lib/Time/gmtime.pm - 'Time::localtime' => '1.01', #lib/Time/localtime.pm - 'Time::Local' => undef, #lib/Time/Local.pm - 'Time::tm' => undef, #lib/Time/tm.pm - 'UNIVERSAL' => undef, #lib/UNIVERSAL.pm - 'User::grent' => undef, #lib/User/grent.pm - 'User::pwent' => undef, #lib/User/pwent.pm - 'vars' => undef, #lib/vars.pm - 'VMS::DCLsym' => '1.01', #vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => undef, #vms/ext/Filespec.pm - 'VMS::Stdio' => '2.1', #vms/ext/Stdio/Stdio.pm - 'vmsish' => undef, #vms/ext/vmsish.pm + delta_from => 5.00503, + changed => { + 'CPAN::FirstTime' => '1.36 ', + 'DB_File' => '1.807', + 'Errno' => '1.111', + 'ExtUtils::Install' => '1.28 ', + 'ExtUtils::Liblist' => '1.25 ', + 'ExtUtils::MM_Unix' => '1.12602 ', + 'ExtUtils::Manifest' => '1.33 ', + 'ExtUtils::Miniperl' => undef, + 'ExtUtils::Mkbootstrap' => '1.14 ', + 'ExtUtils::Mksymlists' => '1.17 ', + 'ExtUtils::testlib' => '1.11 ', + 'File::Compare' => '1.1002', + 'File::Spec' => '0.8', + 'File::Spec::Functions' => undef, + 'File::Spec::Mac' => undef, + 'Getopt::Long' => '2.20', + 'Pod::Html' => '1.02', + }, + removed => { + } }, - - 5.006 => { - 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm - 'AutoLoader' => '5.57', #./lib/AutoLoader.pm - 'AutoSplit' => '1.0305', #./lib/AutoSplit.pm - 'B' => undef, #./ext/B/B.pm - 'B::Asmdata' => undef, #./ext/B/B/Asmdata.pm - 'B::Assembler' => undef, #./ext/B/B/Assembler.pm - 'B::Bblock' => undef, #./ext/B/B/Bblock.pm - 'B::Bytecode' => undef, #./ext/B/B/Bytecode.pm - 'B::C' => undef, #./ext/B/B/C.pm - 'B::CC' => undef, #./ext/B/B/CC.pm - 'B::Debug' => undef, #./ext/B/B/Debug.pm - 'B::Deparse' => '0.59', #./ext/B/B/Deparse.pm - 'B::Disassembler' => undef, #./ext/B/B/Disassembler.pm - 'B::Lint' => undef, #./ext/B/B/Lint.pm - 'B::Showlex' => undef, #./ext/B/B/Showlex.pm - 'B::Stackobj' => undef, #./ext/B/B/Stackobj.pm - 'B::Stash' => undef, #./ext/B/B/Stash.pm - 'B::Terse' => undef, #./ext/B/B/Terse.pm - 'B::Xref' => undef, #./ext/B/B/Xref.pm - 'Benchmark' => '1', #./lib/Benchmark.pm - 'ByteLoader' => '0.03', #./ext/ByteLoader/ByteLoader.pm - 'CGI' => '2.56', #./lib/CGI.pm - 'CGI::Apache' => undef, #./lib/CGI/Apache.pm - 'CGI::Carp' => '1.14', #./lib/CGI/Carp.pm - 'CGI::Cookie' => '1.12', #./lib/CGI/Cookie.pm - 'CGI::Fast' => '1.02', #./lib/CGI/Fast.pm - 'CGI::Pretty' => '1.03', #./lib/CGI/Pretty.pm - 'CGI::Push' => '1.01', #./lib/CGI/Push.pm - 'CGI::Switch' => undef, #./lib/CGI/Switch.pm - 'CPAN' => '1.52', #./lib/CPAN.pm - 'CPAN::FirstTime' => '1.38 ', #./lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.00', #./lib/CPAN/Nox.pm - 'Carp' => undef, #./lib/Carp.pm - 'Carp::Heavy' => undef, #./lib/Carp/Heavy.pm - 'Class::Struct' => '0.58', #./lib/Class/Struct.pm - 'Config' => undef, - 'Cwd' => '2.02', #./lib/Cwd.pm - 'DB' => '1.0', #./lib/DB.pm - 'DB_File' => '1.72', #./ext/DB_File/DB_File.pm - 'Data::Dumper' => '2.101', #./ext/Data/Dumper/Dumper.pm - 'Devel::DProf' => '20000000.00_00', #./ext/Devel/DProf/DProf.pm - 'Devel::Peek' => '1.00_01', #./ext/Devel/Peek/Peek.pm - 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm - 'DirHandle' => undef, #./lib/DirHandle.pm - 'Dumpvalue' => undef, #./lib/Dumpvalue.pm - 'DynaLoader' => '1.04', - 'English' => undef, #./lib/English.pm - 'Env' => undef, #./lib/Env.pm - 'Exporter' => '5.562', #./lib/Exporter.pm - 'Exporter::Heavy' => undef, #./lib/Exporter/Heavy.pm - 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm - 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm - 'ExtUtils::Installed' => '0.02', #./lib/ExtUtils/Installed.pm - 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm - 'ExtUtils::MM_Cygwin' => undef, #./lib/ExtUtils/MM_Cygwin.pm - 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.12603 ', #./lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm - 'ExtUtils::MakeMaker' => '5.45', #./lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.17 ', #./lib/ExtUtils/Mksymlists.pm - 'ExtUtils::Packlist' => '0.03', #./lib/ExtUtils/Packlist.pm - 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm - 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm - 'Fatal' => '1.02', #./lib/Fatal.pm - 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm - 'File::Basename' => '2.6', #./lib/File/Basename.pm - 'File::CheckTree' => undef, #./lib/File/CheckTree.pm - 'File::Compare' => '1.1002', #./lib/File/Compare.pm - 'File::Copy' => '2.03', #./lib/File/Copy.pm - 'File::DosGlob' => undef, #./lib/File/DosGlob.pm - 'File::Find' => undef, #./lib/File/Find.pm - 'File::Glob' => '0.991', #./ext/File/Glob/Glob.pm - 'File::Path' => '1.0403', #./lib/File/Path.pm - 'File::Spec' => '0.8', #./lib/File/Spec.pm - 'File::Spec::Functions' => undef, #./lib/File/Spec/Functions.pm - 'File::Spec::Mac' => undef, #./lib/File/Spec/Mac.pm - 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm - 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm - 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm - 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm - 'File::stat' => undef, #./lib/File/stat.pm - 'FileCache' => undef, #./lib/FileCache.pm - 'FileHandle' => '2.00', #./lib/FileHandle.pm - 'FindBin' => '1.42', #./lib/FindBin.pm - 'GDBM_File' => '1.03', #./ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => '2.23', #./lib/Getopt/Long.pm - 'Getopt::Std' => '1.02', #./lib/Getopt/Std.pm - 'I18N::Collate' => undef, #./lib/I18N/Collate.pm - 'IO' => '1.20', #./ext/IO/IO.pm - 'IO::Dir' => '1.03', #./ext/IO/lib/IO/Dir.pm - 'IO::File' => '1.08', #./ext/IO/lib/IO/File.pm - 'IO::Handle' => '1.21', #./ext/IO/lib/IO/Handle.pm - 'IO::Pipe' => '1.121', #./ext/IO/lib/IO/Pipe.pm - 'IO::Poll' => '0.01', #./ext/IO/lib/IO/Poll.pm - 'IO::Seekable' => '1.08', #./ext/IO/lib/IO/Seekable.pm - 'IO::Select' => '1.14', #./ext/IO/lib/IO/Select.pm - 'IO::Socket' => '1.26', #./ext/IO/lib/IO/Socket.pm - 'IO::Socket::INET' => '1.25', #./ext/IO/lib/IO/Socket/INET.pm - 'IO::Socket::UNIX' => '1.20', #./ext/IO/lib/IO/Socket/UNIX.pm - 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm - 'IPC::Open3' => '1.0103', #./lib/IPC/Open3.pm - 'IPC::Msg' => '1.00', #./ext/IPC/SysV/Msg.pm - 'IPC::Semaphore' => '1.00', #./ext/IPC/SysV/Semaphore.pm - 'IPC::SysV' => '1.03', #./ext/IPC/SysV/SysV.pm - 'JNI' => '0.01', #./jpl/JNI/JNI.pm - 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm - 'JPL::Class' => undef, #./jpl/JPL/Class.pm - 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm - 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm - 'Math::BigInt' => undef, #./lib/Math/BigInt.pm - 'Math::Complex' => '1.26', #./lib/Math/Complex.pm - 'Math::Trig' => '1', #./lib/Math/Trig.pm - 'NDBM_File' => '1.03', #./ext/NDBM_File/NDBM_File.pm - 'Net::Ping' => '2.02', #./lib/Net/Ping.pm - 'Net::hostent' => undef, #./lib/Net/hostent.pm - 'Net::netent' => undef, #./lib/Net/netent.pm - 'Net::protoent' => undef, #./lib/Net/protoent.pm - 'Net::servent' => undef, #./lib/Net/servent.pm - 'O' => undef, #./ext/B/O.pm - 'ODBM_File' => '1.02', #./ext/ODBM_File/ODBM_File.pm - 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '0.2', #./os2/OS2/Process/Process.pm - 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm - 'OS2::DLL' => undef, #./os2/OS2/REXX/DLL/DLL.pm - 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm - 'POSIX' => '1.03', #./ext/POSIX/POSIX.pm - 'Pod::Checker' => '1.098', #./lib/Pod/Checker.pm - 'Pod::Find' => '0.12', #./lib/Pod/Find.pm - 'Pod::Functions' => undef, #./lib/Pod/Functions.pm - 'Pod::Html' => '1.03', #./lib/Pod/Html.pm - 'Pod::InputObjects' => '1.12', #./lib/Pod/InputObjects.pm - 'Pod::Man' => '1.02', #./lib/Pod/Man.pm - 'Pod::ParseUtils' => '0.2', #./lib/Pod/ParseUtils.pm - 'Pod::Parser' => '1.12', #./lib/Pod/Parser.pm - 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm - 'Pod::Select' => '1.12', #./lib/Pod/Select.pm - 'Pod::Text' => '2.03', #./lib/Pod/Text.pm - 'Pod::Text::Color' => '0.05', #./lib/Pod/Text/Color.pm - 'Pod::Text::Termcap' => '0.04', #./lib/Pod/Text/Termcap.pm - 'Pod::Usage' => '1.12', #./lib/Pod/Usage.pm - 'SDBM_File' => '1.02', #./ext/SDBM_File/SDBM_File.pm - 'Safe' => '2.06', #./ext/Opcode/Safe.pm - 'Search::Dict' => undef, #./lib/Search/Dict.pm - 'SelectSaver' => undef, #./lib/SelectSaver.pm - 'SelfLoader' => '1.0901', #./lib/SelfLoader.pm - 'Shell' => '0.2', #./lib/Shell.pm - 'Socket' => '1.72', #./ext/Socket/Socket.pm - 'Symbol' => '1.02', #./lib/Symbol.pm - 'Sys::Hostname' => '1.1', #./ext/Sys/Hostname/Hostname.pm - 'Sys::Syslog' => '0.01', #./ext/Sys/Syslog/Syslog.pm - 'Term::ANSIColor' => '1.01', #./lib/Term/ANSIColor.pm - 'Term::Cap' => undef, #./lib/Term/Cap.pm - 'Term::Complete' => undef, #./lib/Term/Complete.pm - 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm - 'Test' => '1.13', #./lib/Test.pm - 'Test::Harness' => '1.1604', #./lib/Test/Harness.pm - 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm - 'Text::ParseWords' => '3.2', #./lib/Text/ParseWords.pm - 'Text::Soundex' => '1.0', #./lib/Text/Soundex.pm - 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm - 'Text::Wrap' => '98.112902', #./lib/Text/Wrap.pm - 'Thread' => '1.0', #./ext/Thread/Thread.pm - 'Thread::Queue' => undef, #./ext/Thread/Thread/Queue.pm - 'Thread::Semaphore' => undef, #./ext/Thread/Thread/Semaphore.pm - 'Thread::Signal' => undef, #./ext/Thread/Thread/Signal.pm - 'Thread::Specific' => undef, #./ext/Thread/Thread/Specific.pm - 'Tie::Array' => '1.01', #./lib/Tie/Array.pm - 'Tie::Handle' => '1.0', #./lib/Tie/Handle.pm - 'Tie::Hash' => undef, #./lib/Tie/Hash.pm - 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm - 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm - 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm - 'Time::Local' => undef, #./lib/Time/Local.pm - 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm - 'Time::localtime' => '1.01', #./lib/Time/localtime.pm - 'Time::tm' => undef, #./lib/Time/tm.pm - 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm - 'User::grent' => undef, #./lib/User/grent.pm - 'User::pwent' => undef, #./lib/User/pwent.pm - 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm - 'VMS::Stdio' => '2.2', #./vms/ext/Stdio/Stdio.pm - 'XSLoader' => '0.01', - 'attributes' => '0.03', #./lib/attributes.pm - 'attrs' => '1.0', #./ext/attrs/attrs.pm - 'autouse' => '1.02', #./lib/autouse.pm - 'base' => '1.01', #./lib/base.pm - 'blib' => '1.00', #./lib/blib.pm - 'bytes' => undef, #./lib/bytes.pm - 'charnames' => undef, #./lib/charnames.pm - 'constant' => '1.02', #./lib/constant.pm - 'diagnostics' => '1.0', #./lib/diagnostics.pm - 'fields' => '1.01', #./lib/fields.pm - 'filetest' => undef, #./lib/filetest.pm - 'integer' => undef, #./lib/integer.pm - 'less' => undef, #./lib/less.pm - 'lib' => '0.5564', #./lib/lib.pm - 'locale' => undef, #./lib/locale.pm - 'open' => undef, #./lib/open.pm - 'ops' => undef, #./ext/Opcode/ops.pm - 'overload' => undef, #./lib/overload.pm - 're' => '0.02', #./ext/re/re.pm - 'sigtrap' => '1.02', #./lib/sigtrap.pm - 'strict' => '1.01', #./lib/strict.pm - 'subs' => undef, #./lib/subs.pm - 'utf8' => undef, #./lib/utf8.pm - 'vars' => undef, #./lib/vars.pm - 'vmsish' => undef, #./vms/ext/vmsish.pm - 'warnings' => undef, #./lib/warnings.pm - 'warnings::register' => undef, #./lib/warnings/register.pm + 5.006 => { + delta_from => 5.00504, + changed => { + 'AutoLoader' => '5.57', + 'AutoSplit' => '1.0305', + 'B::Deparse' => '0.59', + 'B::Stash' => undef, + 'Benchmark' => '1', + 'ByteLoader' => '0.03', + 'CGI' => '2.56', + 'CGI::Apache' => undef, + 'CGI::Carp' => '1.14', + 'CGI::Cookie' => '1.12', + 'CGI::Fast' => '1.02', + 'CGI::Pretty' => '1.03', + 'CGI::Switch' => undef, + 'CPAN' => '1.52', + 'CPAN::FirstTime' => '1.38 ', + 'Carp::Heavy' => undef, + 'Class::Struct' => '0.58', + 'Cwd' => '2.02', + 'DB' => '1.0', + 'DB_File' => '1.72', + 'Devel::DProf' => '20000000.00_00', + 'Devel::Peek' => '1.00_01', + 'DynaLoader' => '1.04', + 'Exporter' => '5.562', + 'Exporter::Heavy' => undef, + 'ExtUtils::MM_Cygwin' => undef, + 'ExtUtils::MM_Unix' => '1.12603 ', + 'ExtUtils::MakeMaker' => '5.45', + 'File::Copy' => '2.03', + 'File::Glob' => '0.991', + 'File::Path' => '1.0403', + 'GDBM_File' => '1.03', + 'Getopt::Long' => '2.23', + 'Getopt::Std' => '1.02', + 'IO' => '1.20', + 'IO::Dir' => '1.03', + 'IO::File' => '1.08', + 'IO::Handle' => '1.21', + 'IO::Pipe' => '1.121', + 'IO::Poll' => '0.01', + 'IO::Seekable' => '1.08', + 'IO::Select' => '1.14', + 'IO::Socket' => '1.26', + 'IO::Socket::INET' => '1.25', + 'IO::Socket::UNIX' => '1.20', + 'JNI' => '0.01', + 'JPL::AutoLoader' => undef, + 'JPL::Class' => undef, + 'JPL::Compile' => undef, + 'NDBM_File' => '1.03', + 'ODBM_File' => '1.02', + 'OS2::DLL' => undef, + 'POSIX' => '1.03', + 'Pod::Checker' => '1.098', + 'Pod::Find' => '0.12', + 'Pod::Html' => '1.03', + 'Pod::InputObjects' => '1.12', + 'Pod::Man' => '1.02', + 'Pod::ParseUtils' => '0.2', + 'Pod::Parser' => '1.12', + 'Pod::Plainer' => '0.01', + 'Pod::Select' => '1.12', + 'Pod::Text' => '2.03', + 'Pod::Text::Color' => '0.05', + 'Pod::Text::Termcap' => '0.04', + 'Pod::Usage' => '1.12', + 'SDBM_File' => '1.02', + 'SelfLoader' => '1.0901', + 'Shell' => '0.2', + 'Socket' => '1.72', + 'Sys::Hostname' => '1.1', + 'Sys::Syslog' => '0.01', + 'Term::ANSIColor' => '1.01', + 'Test' => '1.13', + 'Test::Harness' => '1.1604', + 'Text::ParseWords' => '3.2', + 'Text::Soundex' => '1.0', + 'Text::Tabs' => '98.112801', + 'Tie::Array' => '1.01', + 'Tie::Handle' => '1.0', + 'VMS::Stdio' => '2.2', + 'XSLoader' => '0.01', + 'attributes' => '0.03', + 'autouse' => '1.02', + 'base' => '1.01', + 'bytes' => undef, + 'charnames' => undef, + 'constant' => '1.02', + 'diagnostics' => '1.0', + 'fields' => '1.01', + 'filetest' => undef, + 'lib' => '0.5564', + 'open' => undef, + 'utf8' => undef, + 'warnings' => undef, + 'warnings::register' => undef, + }, + removed => { + } }, - - 5.006001 => { - 'AnyDBM_File' => undef, - 'attributes' => 0.03, - 'attrs' => '1.0', - 'AutoLoader' => 5.58, - 'AutoSplit' => 1.0305, - 'autouse' => 1.02, - 'B::Asmdata' => undef, - 'B::Assembler' => 0.02, - 'B::Bblock' => undef, - 'B::Bytecode' => undef, - 'B::C' => undef, - 'B::CC' => undef, - 'B::Concise' => 0.51, - 'B::Debug' => undef, - 'B::Deparse' => 0.6, - 'B::Disassembler' => undef, - 'B::Lint' => undef, - 'B' => undef, - 'B::Showlex' => undef, - 'B::Stackobj' => undef, - 'B::Stash' => undef, - 'B::Terse' => undef, - 'B::Xref' => undef, - 'base' => 1.01, - 'Benchmark' => 1, - 'blib' => '1.00', - 'ByteLoader' => 0.04, - 'bytes' => undef, - 'Carp' => undef, - 'Carp::Heavy' => undef, - 'CGI' => 2.752, - 'CGI::Apache' => undef, - 'CGI::Carp' => '1.20', - 'CGI::Cookie' => 1.18, - 'CGI::Fast' => 1.02, - 'CGI::Pretty' => 1.05, - 'CGI::Push' => 1.04, - 'CGI::Switch' => undef, - 'CGI::Util' => 1.1, - 'charnames' => undef, - 'Class::Struct' => 0.59, - 'Config' => undef, - 'constant' => 1.02, - 'CPAN::FirstTime' => 1.53 , - 'CPAN' => '1.59_54', - 'CPAN::Nox' => '1.00', - 'Cwd' => 2.04, - 'Data::Dumper' => 2.102, - 'DB' => '1.0', - 'DB_File' => 1.75, - 'Devel::DProf' => '20000000.00_00', - 'Devel::Peek' => '1.00_01', - 'Devel::SelfStubber' => 1.01, - 'diagnostics' => '1.0', # really v1.0, but that causes breakage - 'DirHandle' => undef, - 'Dumpvalue' => undef, - 'DynaLoader' => 1.04, - 'English' => undef, - 'Env' => undef, - 'Exporter' => 5.562, - 'Exporter::Heavy' => undef, - 'ExtUtils::Command' => 1.01, - 'ExtUtils::Embed' => 1.2505, - 'ExtUtils::Install' => 1.28 , - 'ExtUtils::Installed' => 0.02, - 'ExtUtils::Liblist' => 1.26 , - 'ExtUtils::MakeMaker' => 5.45, - 'ExtUtils::Manifest' => 1.33 , - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => 1.14 , - 'ExtUtils::Mksymlists' => 1.17 , - 'ExtUtils::MM_Cygwin' => undef, - 'ExtUtils::MM_OS2' => undef, - 'ExtUtils::MM_Unix' => 1.12603 , - 'ExtUtils::MM_VMS' => undef, - 'ExtUtils::MM_Win32' => undef, - 'ExtUtils::Packlist' => 0.03, - 'ExtUtils::testlib' => 1.11 , - 'ExtUtils::XSSymSet' => '1.0', - 'Fatal' => 1.02, - 'Fcntl' => 1.03, - 'fields' => 1.01, - 'File::Basename' => 2.6, - 'File::CheckTree' => undef, - 'File::Compare' => 1.1002, - 'File::Copy' => 2.03, - 'File::DosGlob' => undef, - 'File::Find' => undef, - 'File::Glob' => 0.991, - 'File::Path' => 1.0404, - 'File::Spec' => 0.82, - 'File::Spec::Epoc' => undef, - 'File::Spec::Functions' => 1.1, - 'File::Spec::Mac' => 1.2, - 'File::Spec::OS2' => 1.1, - 'File::Spec::Unix' => 1.2, - 'File::Spec::VMS' => 1.1, - 'File::Spec::Win32' => 1.2, - 'File::stat' => undef, - 'File::Temp' => 0.12, - 'FileCache' => undef, - 'FileHandle' => '2.00', - 'filetest' => undef, - 'FindBin' => 1.42, - 'GDBM_File' => 1.05, - 'Getopt::Long' => 2.25, - 'Getopt::Std' => 1.02, - 'I18N::Collate' => undef, - 'integer' => undef, - 'IO' => '1.20', - 'IO::Dir' => 1.03, - 'IO::File' => 1.08, - 'IO::Handle' => 1.21, - 'IO::Pipe' => 1.121, - 'IO::Poll' => 0.05, - 'IO::Seekable' => 1.08, - 'IO::Select' => 1.14, - 'IO::Socket' => 1.26, - 'IO::Socket::INET' => 1.25, - 'IO::Socket::UNIX' => '1.20', - 'IPC::Msg' => '1.00', - 'IPC::Open2' => 1.01, - 'IPC::Open3' => 1.0103, - 'IPC::Semaphore' => '1.00', - 'IPC::SysV' => 1.03, - 'JNI' => 0.1, - 'JPL::AutoLoader' => undef, - 'JPL::Class' => undef, - 'JPL::Compile' => undef, - 'less' => undef, - 'lib' => 0.5564, - 'locale' => undef, - 'Math::BigFloat' => 0.02, - 'Math::BigInt' => 0.01, - 'Math::Complex' => 1.31, - 'Math::Trig' => 1, - 'NDBM_File' => 1.04, - 'Net::hostent' => undef, - 'Net::netent' => undef, - 'Net::Ping' => 2.02, - 'Net::protoent' => undef, - 'Net::servent' => undef, - 'O' => undef, - 'ODBM_File' => 1.03, - 'Opcode' => 1.04, - 'open' => undef, - 'ops' => undef, - 'OS2::DLL' => undef, - 'OS2::ExtAttr' => 0.01, - 'OS2::PrfDB' => 0.02, - 'OS2::Process' => 0.2, - 'OS2::REXX' => '1.00', - 'overload' => undef, - 'Pod::Checker' => 1.2, - 'Pod::Find' => 0.21, - 'Pod::Functions' => undef, - 'Pod::Html' => 1.03, - 'Pod::LaTeX' => 0.53, - 'Pod::Man' => 1.15, - 'Pod::InputObjects' => 1.13, - 'Pod::Parser' => 1.13, - 'Pod::ParseUtils' => 0.22, - 'Pod::Plainer' => 0.01, - 'Pod::Select' => 1.13, - 'Pod::Text' => 2.08, - 'Pod::Text::Color' => 0.06, - 'Pod::Text::Overstrike' => 1.01, - 'Pod::Text::Termcap' => 1, - 'Pod::Usage' => 1.14, - 'POSIX' => 1.03, - 're' => 0.02, - 'Safe' => 2.06, - 'SDBM_File' => 1.03, - 'Search::Dict' => undef, - 'SelectSaver' => undef, - 'SelfLoader' => 1.0902, - 'Shell' => 0.3, - 'sigtrap' => 1.02, - 'Socket' => 1.72, - 'strict' => 1.01, - 'subs' => undef, - 'Symbol' => 1.02, - 'Sys::Hostname' => 1.1, - 'Sys::Syslog' => 0.01, - 'Term::ANSIColor' => 1.03, - 'Term::Cap' => undef, - 'Term::Complete' => undef, - 'Term::ReadLine' => undef, - 'Test' => 1.15, - 'Test::Harness' => 1.1604, - 'Text::Abbrev' => undef, - 'Text::ParseWords' => 3.2, - 'Text::Soundex' => '1.0', - 'Text::Tabs' => 98.112801, - 'Text::Wrap' => 2001.0131, - 'Thread' => '1.0', - 'Thread::Queue' => undef, - 'Thread::Semaphore' => undef, - 'Thread::Signal' => undef, - 'Thread::Specific' => undef, - 'Tie::Array' => 1.01, - 'Tie::Handle' => '4.0', - 'Tie::Hash' => undef, - 'Tie::RefHash' => 1.3, - 'Tie::Scalar' => undef, - 'Tie::SubstrHash' => undef, - 'Time::gmtime' => 1.01, - 'Time::Local' => undef, - 'Time::localtime' => 1.01, - 'Time::tm' => undef, - 'UNIVERSAL' => undef, - 'User::grent' => undef, - 'User::pwent' => undef, - 'utf8' => undef, - 'vars' => undef, - 'VMS::DCLsym' => 1.01, - 'VMS::Filespec' => undef, - 'VMS::Stdio' => 2.2, - 'vmsish' => undef, - 'warnings' => undef, - 'warnings::register' => undef, - 'XSLoader' => '0.01', + 5.006001 => { + delta_from => 5.006, + changed => { + 'AutoLoader' => '5.58', + 'B::Assembler' => '0.02', + 'B::Concise' => '0.51', + 'B::Deparse' => '0.6', + 'ByteLoader' => '0.04', + 'CGI' => '2.752', + 'CGI::Carp' => '1.20', + 'CGI::Cookie' => '1.18', + 'CGI::Pretty' => '1.05', + 'CGI::Push' => '1.04', + 'CGI::Util' => '1.1', + 'CPAN' => '1.59_54', + 'CPAN::FirstTime' => '1.53', + 'Class::Struct' => '0.59', + 'Cwd' => '2.04', + 'DB_File' => '1.75', + 'Data::Dumper' => '2.102', + 'ExtUtils::Install' => '1.28', + 'ExtUtils::Liblist' => '1.26', + 'ExtUtils::MM_Unix' => '1.12603', + 'ExtUtils::Manifest' => '1.33', + 'ExtUtils::Mkbootstrap' => '1.14', + 'ExtUtils::Mksymlists' => '1.17', + 'ExtUtils::testlib' => '1.11', + 'File::Path' => '1.0404', + 'File::Spec' => '0.82', + 'File::Spec::Epoc' => undef, + 'File::Spec::Functions' => '1.1', + 'File::Spec::Mac' => '1.2', + 'File::Spec::OS2' => '1.1', + 'File::Spec::Unix' => '1.2', + 'File::Spec::VMS' => '1.1', + 'File::Spec::Win32' => '1.2', + 'File::Temp' => '0.12', + 'GDBM_File' => '1.05', + 'Getopt::Long' => '2.25', + 'IO::Poll' => '0.05', + 'JNI' => '0.1', + 'Math::BigFloat' => '0.02', + 'Math::BigInt' => '0.01', + 'Math::Complex' => '1.31', + 'NDBM_File' => '1.04', + 'ODBM_File' => '1.03', + 'OS2::REXX' => '1.00', + 'Pod::Checker' => '1.2', + 'Pod::Find' => '0.21', + 'Pod::InputObjects' => '1.13', + 'Pod::LaTeX' => '0.53', + 'Pod::Man' => '1.15', + 'Pod::ParseUtils' => '0.22', + 'Pod::Parser' => '1.13', + 'Pod::Select' => '1.13', + 'Pod::Text' => '2.08', + 'Pod::Text::Color' => '0.06', + 'Pod::Text::Overstrike' => '1.01', + 'Pod::Text::Termcap' => '1', + 'Pod::Usage' => '1.14', + 'SDBM_File' => '1.03', + 'SelfLoader' => '1.0902', + 'Shell' => '0.3', + 'Term::ANSIColor' => '1.03', + 'Test' => '1.15', + 'Text::Wrap' => '2001.0131', + 'Tie::Handle' => '4.0', + 'Tie::RefHash' => '1.3', + }, + removed => { + } }, - 5.006002 => { - 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm - 'attributes' => '0.03', #lib/attributes.pm - 'attrs' => '1.0', #lib/attrs.pm - 'AutoLoader' => '5.58', #lib/AutoLoader.pm - 'AutoSplit' => '1.0305', #lib/AutoSplit.pm - 'autouse' => '1.02', #lib/autouse.pm - 'B' => undef, #lib/B.pm - 'B::Asmdata' => undef, #lib/B/Asmdata.pm - 'B::Assembler' => '0.02', #lib/B/Assembler.pm - 'B::Bblock' => undef, #lib/B/Bblock.pm - 'B::Bytecode' => undef, #lib/B/Bytecode.pm - 'B::C' => undef, #lib/B/C.pm - 'B::CC' => undef, #lib/B/CC.pm - 'B::Concise' => '0.51', #lib/B/Concise.pm - 'B::Debug' => undef, #lib/B/Debug.pm - 'B::Deparse' => '0.6', #lib/B/Deparse.pm - 'B::Disassembler' => undef, #lib/B/Disassembler.pm - 'B::Lint' => undef, #lib/B/Lint.pm - 'B::Showlex' => undef, #lib/B/Showlex.pm - 'B::Stackobj' => undef, #lib/B/Stackobj.pm - 'B::Stash' => undef, #lib/B/Stash.pm - 'B::Terse' => undef, #lib/B/Terse.pm - 'B::Xref' => undef, #lib/B/Xref.pm - 'base' => '1.01', #lib/base.pm - 'Benchmark' => '1', #lib/Benchmark.pm - 'blib' => '1.00', #lib/blib.pm - 'ByteLoader' => '0.04', #lib/ByteLoader.pm - 'bytes' => undef, #lib/bytes.pm - 'Carp' => undef, #lib/Carp.pm - 'Carp::Heavy' => undef, #lib/Carp/Heavy.pm - 'CGI' => '2.752', #lib/CGI.pm - 'CGI::Apache' => undef, #lib/CGI/Apache.pm - 'CGI::Carp' => '1.20', #lib/CGI/Carp.pm - 'CGI::Cookie' => '1.18', #lib/CGI/Cookie.pm - 'CGI::Fast' => '1.02', #lib/CGI/Fast.pm - 'CGI::Pretty' => '1.05', #lib/CGI/Pretty.pm - 'CGI::Push' => '1.04', #lib/CGI/Push.pm - 'CGI::Switch' => undef, #lib/CGI/Switch.pm - 'CGI::Util' => '1.1', #lib/CGI/Util.pm - 'charnames' => undef, #lib/charnames.pm - 'Class::Struct' => '0.59', #lib/Class/Struct.pm - 'Config' => undef, #lib/Config.pm - 'constant' => '1.02', #lib/constant.pm - 'CPAN' => '1.59_54', #lib/CPAN.pm - 'CPAN::FirstTime' => '1.53 ', #lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.00', #lib/CPAN/Nox.pm - 'Cwd' => '2.04', #lib/Cwd.pm - 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm - 'DB' => '1.0', #lib/DB.pm - 'DB_File' => '1.806', #lib/DB_File.pm - 'Devel::DProf' => '20000000.00_00', #lib/Devel/DProf.pm - 'Devel::Peek' => '1.00_01', #lib/Devel/Peek.pm - 'Devel::SelfStubber' => '1.01', #lib/Devel/SelfStubber.pm - 'diagnostics' => '1.0', #lib/diagnostics.pm - 'DirHandle' => undef, #lib/DirHandle.pm - 'Dumpvalue' => undef, #lib/Dumpvalue.pm - 'DynaLoader' => '1.04', #lib/DynaLoader.pm - 'English' => undef, #lib/English.pm - 'Env' => undef, #lib/Env.pm - 'Errno' => '1.111', #lib/Errno.pm - 'Exporter' => '5.562', #lib/Exporter.pm - 'Exporter::Heavy' => undef, #lib/Exporter/Heavy.pm - 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm - 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm - 'ExtUtils::Embed' => '1.2505', #lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm - 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm - 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm - 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm - 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm - 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm - 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm - 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm - 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm - 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm - 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm - 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm - 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm - 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm - 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm - 'ExtUtils::MM_NW5' => '2.06', #lib/ExtUtils/MM_NW5.pm - 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm - 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm - 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm - 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm - 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm - 'Fatal' => '1.02', #lib/Fatal.pm - 'Fcntl' => '1.03', #lib/Fcntl.pm - 'fields' => '1.01', #lib/fields.pm - 'File::Basename' => '2.6', #lib/File/Basename.pm - 'File::CheckTree' => undef, #lib/File/CheckTree.pm - 'File::Compare' => '1.1002', #lib/File/Compare.pm - 'File::Copy' => '2.03', #lib/File/Copy.pm - 'File::DosGlob' => undef, #lib/File/DosGlob.pm - 'File::Find' => undef, #lib/File/Find.pm - 'File::Glob' => '0.991', #lib/File/Glob.pm - 'File::Path' => '1.0404', #lib/File/Path.pm - 'File::Spec' => '0.86', #lib/File/Spec.pm - 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm - 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm - 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm - 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm - 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm - 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm - 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm - 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm - 'File::stat' => undef, #lib/File/stat.pm - 'File::Temp' => '0.14', #lib/File/Temp.pm - 'FileCache' => undef, #lib/FileCache.pm - 'FileHandle' => '2.00', #lib/FileHandle.pm - 'filetest' => undef, #lib/filetest.pm - 'FindBin' => '1.42', #lib/FindBin.pm - 'GDBM_File' => '1.05', #ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => '2.25', #lib/Getopt/Long.pm - 'Getopt::Std' => '1.02', #lib/Getopt/Std.pm - 'I18N::Collate' => undef, #lib/I18N/Collate.pm - 'if' => '0.03', #lib/if.pm - 'integer' => undef, #lib/integer.pm - 'IO' => '1.20', #lib/IO.pm - 'IO::Dir' => '1.03', #lib/IO/Dir.pm - 'IO::File' => '1.08', #lib/IO/File.pm - 'IO::Handle' => '1.21', #lib/IO/Handle.pm - 'IO::Pipe' => '1.121', #lib/IO/Pipe.pm - 'IO::Poll' => '0.05', #lib/IO/Poll.pm - 'IO::Seekable' => '1.08', #lib/IO/Seekable.pm - 'IO::Select' => '1.14', #lib/IO/Select.pm - 'IO::Socket' => '1.26', #lib/IO/Socket.pm - 'IO::Socket::INET' => '1.25', #lib/IO/Socket/INET.pm - 'IO::Socket::UNIX' => '1.20', #lib/IO/Socket/UNIX.pm - 'IPC::Msg' => '1.00', #lib/IPC/Msg.pm - 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm - 'IPC::Open3' => '1.0103', #lib/IPC/Open3.pm - 'IPC::Semaphore' => '1.00', #lib/IPC/Semaphore.pm - 'IPC::SysV' => '1.03', #lib/IPC/SysV.pm - 'JNI' => '0.1', #jpl/JNI/JNI.pm - 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm - 'JPL::Class' => undef, #jpl/JPL/Class.pm - 'JPL::Compile' => undef, #jpl/JPL/Compile.pm - 'less' => undef, #lib/less.pm - 'lib' => '0.5564', #lib/lib.pm - 'locale' => undef, #lib/locale.pm - 'Math::BigFloat' => '0.02', #lib/Math/BigFloat.pm - 'Math::BigInt' => '0.01', #lib/Math/BigInt.pm - 'Math::Complex' => '1.31', #lib/Math/Complex.pm - 'Math::Trig' => '1', #lib/Math/Trig.pm - 'NDBM_File' => '1.04', #ext/NDBM_File/NDBM_File.pm - 'Net::hostent' => undef, #lib/Net/hostent.pm - 'Net::netent' => undef, #lib/Net/netent.pm - 'Net::Ping' => '2.02', #lib/Net/Ping.pm - 'Net::protoent' => undef, #lib/Net/protoent.pm - 'Net::servent' => undef, #lib/Net/servent.pm - 'O' => undef, #lib/O.pm - 'ODBM_File' => '1.03', #ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.04', #lib/Opcode.pm - 'open' => undef, #lib/open.pm - 'ops' => '1.00', #lib/ops.pm - 'OS2::DLL' => undef, #os2/OS2/REXX/DLL/DLL.pm - 'OS2::ExtAttr' => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.02', #os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '0.2', #os2/OS2/Process/Process.pm - 'OS2::REXX' => '1.00', #os2/OS2/REXX/REXX.pm - 'overload' => undef, #lib/overload.pm - 'Pod::Checker' => '1.2', #lib/Pod/Checker.pm - 'Pod::Find' => '0.21', #lib/Pod/Find.pm - 'Pod::Functions' => undef, #lib/Pod/Functions.pm - 'Pod::Html' => '1.03', #lib/Pod/Html.pm - 'Pod::InputObjects' => '1.13', #lib/Pod/InputObjects.pm - 'Pod::LaTeX' => '0.53', #lib/Pod/LaTeX.pm - 'Pod::Man' => '1.15', #lib/Pod/Man.pm - 'Pod::Parser' => '1.13', #lib/Pod/Parser.pm - 'Pod::ParseUtils' => '0.22', #lib/Pod/ParseUtils.pm - 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm - 'Pod::Select' => '1.13', #lib/Pod/Select.pm - 'Pod::Text' => '2.08', #lib/Pod/Text.pm - 'Pod::Text::Color' => '0.06', #lib/Pod/Text/Color.pm - 'Pod::Text::Overstrike' => '1.01', #lib/Pod/Text/Overstrike.pm - 'Pod::Text::Termcap' => '1', #lib/Pod/Text/Termcap.pm - 'Pod::Usage' => '1.14', #lib/Pod/Usage.pm - 'POSIX' => '1.03', #lib/POSIX.pm - 're' => '0.02', #lib/re.pm - 'Safe' => '2.10', #lib/Safe.pm - 'SDBM_File' => '1.03', #lib/SDBM_File.pm - 'Search::Dict' => undef, #lib/Search/Dict.pm - 'SelectSaver' => undef, #lib/SelectSaver.pm - 'SelfLoader' => '1.0902', #lib/SelfLoader.pm - 'Shell' => '0.3', #lib/Shell.pm - 'sigtrap' => '1.02', #lib/sigtrap.pm - 'Socket' => '1.72', #lib/Socket.pm - 'strict' => '1.01', #lib/strict.pm - 'subs' => undef, #lib/subs.pm - 'Symbol' => '1.02', #lib/Symbol.pm - 'Sys::Hostname' => '1.1', #lib/Sys/Hostname.pm - 'Sys::Syslog' => '0.01', #lib/Sys/Syslog.pm - 'Term::ANSIColor' => '1.03', #lib/Term/ANSIColor.pm - 'Term::Cap' => undef, #lib/Term/Cap.pm - 'Term::Complete' => undef, #lib/Term/Complete.pm - 'Term::ReadLine' => undef, #lib/Term/ReadLine.pm - 'Test' => '1.24', #lib/Test.pm - 'Test::Builder' => '0.17', #lib/Test/Builder.pm - 'Test::Harness' => '2.30', #lib/Test/Harness.pm - 'Test::Harness::Assert' => '0.01', #lib/Test/Harness/Assert.pm - 'Test::Harness::Iterator'=> '0.01', #lib/Test/Harness/Iterator.pm - 'Test::Harness::Straps' => '0.15', #lib/Test/Harness/Straps.pm - 'Test::More' => '0.47', #lib/Test/More.pm - 'Test::Simple' => '0.47', #lib/Test/Simple.pm - 'Text::Abbrev' => undef, #lib/Text/Abbrev.pm - 'Text::ParseWords' => '3.2', #lib/Text/ParseWords.pm - 'Text::Soundex' => '1.0', #lib/Text/Soundex.pm - 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm - 'Text::Wrap' => '2001.0131', #lib/Text/Wrap.pm - 'Thread' => '1.0', #ext/Thread/Thread.pm - 'Thread::Queue' => undef, #ext/Thread/Thread/Queue.pm - 'Thread::Semaphore' => undef, #ext/Thread/Thread/Semaphore.pm - 'Thread::Signal' => undef, #ext/Thread/Thread/Signal.pm - 'Thread::Specific' => undef, #ext/Thread/Thread/Specific.pm - 'Tie::Array' => '1.01', #lib/Tie/Array.pm - 'Tie::Handle' => '4.0', #lib/Tie/Handle.pm - 'Tie::Hash' => undef, #lib/Tie/Hash.pm - 'Tie::RefHash' => '1.3', #lib/Tie/RefHash.pm - 'Tie::Scalar' => undef, #lib/Tie/Scalar.pm - 'Tie::SubstrHash' => undef, #lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.01', #lib/Time/gmtime.pm - 'Time::Local' => undef, #lib/Time/Local.pm - 'Time::localtime' => '1.01', #lib/Time/localtime.pm - 'Time::tm' => undef, #lib/Time/tm.pm - 'Unicode' => '3.0.1', # lib/unicore/version - 'UNIVERSAL' => undef, #lib/UNIVERSAL.pm - 'User::grent' => undef, #lib/User/grent.pm - 'User::pwent' => undef, #lib/User/pwent.pm - 'utf8' => undef, #lib/utf8.pm - 'vars' => undef, #lib/vars.pm - 'VMS::DCLsym' => '1.01', #vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => undef, #vms/ext/Filespec.pm - 'VMS::Stdio' => '2.2', #vms/ext/Stdio/Stdio.pm - 'vmsish' => undef, #vms/ext/vmsish.pm - 'warnings' => undef, #lib/warnings.pm - 'warnings::register' => undef, #lib/warnings/register.pm - 'XSLoader' => '0.01', #lib/XSLoader.pm + delta_from => 5.006001, + changed => { + 'CPAN::FirstTime' => '1.53 ', + 'DB_File' => '1.806', + 'Data::Dumper' => '2.121', + 'ExtUtils::Command' => '1.05', + 'ExtUtils::Command::MM' => '0.03', + 'ExtUtils::Install' => '1.32', + 'ExtUtils::Installed' => '0.08', + 'ExtUtils::Liblist' => '1.01', + 'ExtUtils::Liblist::Kid'=> '1.3', + 'ExtUtils::MM' => '0.04', + 'ExtUtils::MM_Any' => '0.07', + 'ExtUtils::MM_BeOS' => '1.04', + 'ExtUtils::MM_Cygwin' => '1.06', + 'ExtUtils::MM_DOS' => '0.02', + 'ExtUtils::MM_MacOS' => '1.07', + 'ExtUtils::MM_NW5' => '2.06', + 'ExtUtils::MM_OS2' => '1.04', + 'ExtUtils::MM_UWIN' => '0.02', + 'ExtUtils::MM_Unix' => '1.42', + 'ExtUtils::MM_VMS' => '5.70', + 'ExtUtils::MM_Win32' => '1.09', + 'ExtUtils::MM_Win95' => '0.03', + 'ExtUtils::MY' => '0.01', + 'ExtUtils::MakeMaker' => '6.17', + 'ExtUtils::MakeMaker::bytes'=> '0.01', + 'ExtUtils::MakeMaker::vmsish'=> '0.01', + 'ExtUtils::Manifest' => '1.42', + 'ExtUtils::Mkbootstrap' => '1.15', + 'ExtUtils::Mksymlists' => '1.19', + 'ExtUtils::Packlist' => '0.04', + 'ExtUtils::testlib' => '1.15', + 'File::Spec' => '0.86', + 'File::Spec::Cygwin' => '1.1', + 'File::Spec::Epoc' => '1.1', + 'File::Spec::Functions' => '1.3', + 'File::Spec::Mac' => '1.4', + 'File::Spec::OS2' => '1.2', + 'File::Spec::Unix' => '1.5', + 'File::Spec::VMS' => '1.4', + 'File::Spec::Win32' => '1.4', + 'File::Temp' => '0.14', + 'Safe' => '2.10', + 'Test' => '1.24', + 'Test::Builder' => '0.17', + 'Test::Harness' => '2.30', + 'Test::Harness::Assert' => '0.01', + 'Test::Harness::Iterator'=> '0.01', + 'Test::Harness::Straps' => '0.15', + 'Test::More' => '0.47', + 'Test::Simple' => '0.47', + 'Unicode' => '3.0.1', + 'if' => '0.03', + 'ops' => '1.00', + }, + removed => { + } }, - - 5.007003 => { - 'AnyDBM_File' => '1.00', - 'Attribute::Handlers' => '0.76', - 'attributes' => '0.04_01', - 'attrs' => '1.01', - 'AutoLoader' => '5.59', - 'AutoSplit' => '1.0307', - 'autouse' => '1.03', - 'B::Asmdata' => '1.00', - 'B::Assembler' => '0.04', - 'B::Bblock' => '1.00', - 'B::Bytecode' => '1.00', - 'B::C' => '1.01', - 'B::CC' => '1.00', - 'B::Concise' => '0.52', - 'B::Debug' => '1.00', - 'B::Deparse' => '0.63', - 'B::Disassembler' => '1.01', - 'B::Lint' => '1.00', - 'B' => '1.00', - 'B::Showlex' => '1.00', - 'B::Stackobj' => '1.00', - 'B::Stash' => '1.00', - 'B::Terse' => '1.00', - 'B::Xref' => '1.00', - 'base' => '1.02', - 'Benchmark' => '1.04', - 'blib' => '1.01', - 'ByteLoader' => '0.04', - 'bytes' => '1.00', - 'Carp' => '1.01', - 'Carp::Heavy' => undef, - 'CGI' => '2.80', - 'CGI::Apache' => '1.00', - 'CGI::Carp' => '1.22', - 'CGI::Cookie' => '1.20', - 'CGI::Fast' => '1.04', - 'CGI::Pretty' => '1.05_00', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.00', - 'CGI::Util' => '1.3', - 'charnames' => '1.01', - 'Class::ISA' => '0.32', - 'Class::Struct' => '0.61', - 'Config' => undef, - 'constant' => '1.04', - 'CPAN::FirstTime' => '1.54 ', - 'CPAN' => '1.59_56', - 'CPAN::Nox' => '1.00_01', - 'Cwd' => '2.06', - 'Data::Dumper' => '2.12', - 'DB' => '1.0', - 'DB_File' => '1.804', - 'Devel::DProf' => '20000000.00_01', - 'Devel::Peek' => '1.00_03', - 'Devel::PPPort' => '2.0002', - 'Devel::SelfStubber' => '1.03', - 'diagnostics' => '1.1', - 'Digest' => '1.00', - 'Digest::MD5' => '2.16', - 'DirHandle' => '1.00', - 'Dumpvalue' => '1.10', - 'DynaLoader' => 1.04, - 'Encode' => '0.40', - 'Encode::CN' => '0.02', - 'Encode::CN::HZ' => undef, - 'Encode::Encoding' => '0.02', - 'Encode::Internal' => '0.30', - 'Encode::iso10646_1' => '0.30', - 'Encode::JP' => '0.02', - 'Encode::JP::Constants' => '1.02', - 'Encode::JP::H2Z' => '0.77', - 'Encode::JP::ISO_2022_JP' => undef, - 'Encode::JP::JIS' => undef, - 'Encode::JP::Tr' => '0.77', - 'Encode::KR' => '0.02', - 'Encode::Tcl' => '1.01', - 'Encode::Tcl::Escape' => '1.01', - 'Encode::Tcl::Extended' => '1.01', - 'Encode::Tcl::HanZi' => '1.01', - 'Encode::Tcl::Table' => '1.01', - 'Encode::TW' => '0.02', - 'Encode::Unicode' => '0.30', - 'Encode::usc2_le' => '0.30', - 'Encode::utf8' => '0.30', - 'Encode::XS' => '0.40', - 'encoding' => '1.00', - 'English' => '1.00', - 'Env' => '1.00', - 'Exporter' => '5.566', - 'Exporter::Heavy' => '5.562', - 'ExtUtils::Command' => '1.02', - 'ExtUtils::Constant' => '0.11', - 'ExtUtils::Embed' => '1.250601', - 'ExtUtils::Install' => '1.29', - 'ExtUtils::Installed' => '0.04', - 'ExtUtils::Liblist' => '1.2701', - 'ExtUtils::MakeMaker' => '5.48_03', - 'ExtUtils::Manifest' => '1.35', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '1.1401', - 'ExtUtils::Mksymlists' => '1.18', - 'ExtUtils::MM_BeOS' => '1.00', - 'ExtUtils::MM_Cygwin' => '1.00', - 'ExtUtils::MM_OS2' => '1.00', - 'ExtUtils::MM_Unix' => '1.12607', - 'ExtUtils::MM_VMS' => '5.56', - 'ExtUtils::MM_Win32' => '1.00_02', - 'ExtUtils::Packlist' => '0.04', - 'ExtUtils::testlib' => '1.1201', - 'ExtUtils::XSSymSet' => '1.0', - 'Fatal' => '1.03', - 'Fcntl' => '1.04', - 'fields' => '1.02', - 'File::Basename' => '2.71', - 'File::CheckTree' => '4.1', - 'File::Compare' => '1.1003', - 'File::Copy' => '2.05', - 'File::DosGlob' => '1.00', - 'File::Find' => '1.04', - 'File::Glob' => '1.01', - 'File::Path' => '1.05', - 'File::Spec' => '0.83', - 'File::Spec::Cygwin' => '1.0', - 'File::Spec::Epoc' => '1.00', - 'File::Spec::Functions' => '1.2', - 'File::Spec::Mac' => '1.3', - 'File::Spec::OS2' => '1.1', - 'File::Spec::Unix' => '1.4', - 'File::Spec::VMS' => '1.2', - 'File::Spec::Win32' => '1.3', - 'File::stat' => '1.00', - 'File::Temp' => '0.13', - 'FileCache' => '1.00', - 'FileHandle' => '2.01', - 'filetest' => '1.00', - 'Filter::Simple' => '0.77', - 'Filter::Util::Call' => '1.06', - 'FindBin' => '1.43', - 'GDBM_File' => '1.06', - 'Getopt::Long' => '2.28', - 'Getopt::Std' => '1.03', - 'I18N::Collate' => '1.00', - 'I18N::Langinfo' => '0.01', - 'I18N::LangTags' => '0.27', - 'I18N::LangTags::List' => '0.25', - 'if' => '0.01', - 'integer' => '1.00', - 'IO' => '1.20', - 'IO::Dir' => '1.03_00', - 'IO::File' => '1.09', - 'IO::Handle' => '1.21_00', - 'IO::Pipe' => '1.122', - 'IO::Poll' => '0.06', - 'IO::Seekable' => '1.08_00', - 'IO::Select' => '1.15', - 'IO::Socket' => '1.27', - 'IO::Socket::INET' => '1.26', - 'IO::Socket::UNIX' => '1.20_00', - 'IPC::Msg' => '1.00_00', - 'IPC::Open2' => '1.01', - 'IPC::Open3' => '1.0104', - 'IPC::Semaphore' => '1.00_00', - 'IPC::SysV' => '1.03_00', - 'JNI' => '0.1', - 'JPL::AutoLoader' => undef, - 'JPL::Class' => undef, - 'JPL::Compile' => undef, - 'less' => '0.01', - 'lib' => '0.5564', - 'List::Util' => '1.06_00', - 'locale' => '1.00', - 'Locale::Constants' => '2.01', - 'Locale::Country' => '2.01', - 'Locale::Currency' => '2.01', - 'Locale::Language' => '2.01', - 'Locale::Maketext' => '1.03', - 'Locale::Script' => '2.01', - 'Math::BigFloat' => '1.30', - 'Math::BigInt' => '1.54', - 'Math::BigInt::Calc' => '0.25', - 'Math::Complex' => '1.34', - 'Math::Trig' => '1.01', - 'Memoize' => '0.66', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '0.66', - 'Memoize::ExpireFile' => '0.65', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'MIME::Base64' => '2.12', - 'MIME::QuotedPrint' => '2.03', - 'NDBM_File' => '1.04', - 'Net::Cmd' => '2.21', - 'Net::Config' => '1.10', - 'Net::Domain' => '2.17', - 'Net::FTP' => '2.64', - 'Net::FTP::A' => '1.15', - 'Net::FTP::dataconn' => '0.10', - 'Net::FTP::E' => '0.01', - 'Net::FTP::I' => '1.12', - 'Net::FTP::L' => '0.01', - 'Net::hostent' => '1.00', - 'Net::netent' => '1.00', - 'Net::Netrc' => '2.12', - 'Net::NNTP' => '2.21', - 'Net::Ping' => '2.12', - 'Net::POP3' => '2.23', - 'Net::protoent' => '1.00', - 'Net::servent' => '1.00', - 'Net::SMTP' => '2.21', - 'Net::Time' => '2.09', - 'NEXT' => '0.50', - 'O' => '1.00', - 'ODBM_File' => '1.03', - 'Opcode' => '1.05', - 'open' => '1.01', - 'ops' => '1.00', - 'OS2::DLL' => '1.00', - 'OS2::ExtAttr' => '0.01', - 'OS2::PrfDB' => '0.02', - 'OS2::Process' => '1.0', - 'OS2::REXX' => '1.01', - 'overload' => '1.00', - 'PerlIO' => '1.00', - 'PerlIO::Scalar' => '0.01', - 'PerlIO::Via' => '0.01', - 'Pod::Checker' => '1.3', - 'Pod::Find' => '0.22', - 'Pod::Functions' => '1.01', - 'Pod::Html' => '1.04', - 'Pod::LaTeX' => '0.54', - 'Pod::Man' => '1.32', - 'Pod::InputObjects' => '1.13', - 'Pod::ParseLink' => '1.05', - 'Pod::Parser' => '1.13', - 'Pod::ParseUtils' => '0.22', - 'Pod::Plainer' => '0.01', - 'Pod::Select' => '1.13', - 'Pod::Text' => '2.18', - 'Pod::Text::Color' => '1.03', - 'Pod::Text::Overstrike' => '1.08', - 'Pod::Text::Termcap' => '1.09', - 'Pod::Usage' => '1.14', - 'POSIX' => '1.05', - 're' => '0.03', - 'Safe' => '2.07', - 'Scalar::Util' => undef, - 'SDBM_File' => '1.03', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.00', - 'SelfLoader' => '1.0903', - 'Shell' => '0.4', - 'sigtrap' => '1.02', - 'Socket' => '1.75', - 'sort' => '1.00', - 'Storable' => '1.015', - 'strict' => '1.02', - 'subs' => '1.00', - 'Switch' => '2.06', - 'Symbol' => '1.04', - 'Sys::Hostname' => '1.1', - 'Sys::Syslog' => '0.02', - 'Term::ANSIColor' => '1.04', - 'Term::Cap' => '1.07', - 'Term::Complete' => '1.4', - 'Term::ReadLine' => '1.00', - 'Test' => '1.18', - 'Test::Builder' => '0.11', - 'Test::Harness' => '2.01', - 'Test::Harness::Assert' => '0.01', - 'Test::Harness::Iterator'=> '0.01', - 'Test::Harness::Straps' => '0.08', - 'Test::More' => '0.41', - 'Test::Simple' => '0.41', - 'Text::Abbrev' => '1.00', - 'Text::Balanced' => '1.89', - 'Text::ParseWords' => '3.21', - 'Text::Soundex' => '1.01', - 'Text::Tabs' => '98.112801', - 'Text::Wrap' => '2001.0929', - 'Thread' => '2.00', - 'Thread::Queue' => '1.00', - 'Thread::Semaphore' => '1.00', - 'Thread::Signal' => '1.00', - 'Thread::Specific' => '1.00', - 'threads' => '0.05', - 'threads::shared' => '0.90', - 'Tie::Array' => '1.02', - 'Tie::File' => '0.17', - 'Tie::Hash' => '1.00', - 'Tie::Handle' => '4.1', - 'Tie::Memoize' => '1.0', - 'Tie::RefHash' => '1.3_00', - 'Tie::Scalar' => '1.00', - 'Tie::SubstrHash' => '1.00', - 'Time::gmtime' => '1.02', - 'Time::HiRes' => '1.20_00', - 'Time::Local' => '1.04', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'Unicode::Collate' => '0.10', - 'Unicode::Normalize' => '0.14', - 'Unicode::UCD' => '0.2', - 'UNIVERSAL' => '1.00', - 'User::grent' => '1.00', - 'User::pwent' => '1.00', - 'utf8' => '1.00', - 'vars' => '1.01', - 'VMS::DCLsym' => '1.02', - 'VMS::Filespec' => '1.1', - 'VMS::Stdio' => '2.3', - 'vmsish' => '1.00', - 'warnings' => '1.00', - 'warnings::register' => '1.00', - 'XS::Typemap' => '0.01', - 'XSLoader' => '0.01', + 5.007003 => { + delta_from => 5.006001, + changed => { + 'AnyDBM_File' => '1.00', + 'Attribute::Handlers' => '0.76', + 'AutoLoader' => '5.59', + 'AutoSplit' => '1.0307', + 'B' => '1.00', + 'B::Asmdata' => '1.00', + 'B::Assembler' => '0.04', + 'B::Bblock' => '1.00', + 'B::Bytecode' => '1.00', + 'B::C' => '1.01', + 'B::CC' => '1.00', + 'B::Concise' => '0.52', + 'B::Debug' => '1.00', + 'B::Deparse' => '0.63', + 'B::Disassembler' => '1.01', + 'B::Lint' => '1.00', + 'B::Showlex' => '1.00', + 'B::Stackobj' => '1.00', + 'B::Stash' => '1.00', + 'B::Terse' => '1.00', + 'B::Xref' => '1.00', + 'Benchmark' => '1.04', + 'CGI' => '2.80', + 'CGI::Apache' => '1.00', + 'CGI::Carp' => '1.22', + 'CGI::Cookie' => '1.20', + 'CGI::Fast' => '1.04', + 'CGI::Pretty' => '1.05_00', + 'CGI::Switch' => '1.00', + 'CGI::Util' => '1.3', + 'CPAN' => '1.59_56', + 'CPAN::FirstTime' => '1.54 ', + 'CPAN::Nox' => '1.00_01', + 'Carp' => '1.01', + 'Class::ISA' => '0.32', + 'Class::Struct' => '0.61', + 'Cwd' => '2.06', + 'DB_File' => '1.804', + 'Data::Dumper' => '2.12', + 'Devel::DProf' => '20000000.00_01', + 'Devel::PPPort' => '2.0002', + 'Devel::Peek' => '1.00_03', + 'Devel::SelfStubber' => '1.03', + 'Digest' => '1.00', + 'Digest::MD5' => '2.16', + 'DirHandle' => '1.00', + 'Dumpvalue' => '1.10', + 'Encode' => '0.40', + 'Encode::CN' => '0.02', + 'Encode::CN::HZ' => undef, + 'Encode::Encoding' => '0.02', + 'Encode::Internal' => '0.30', + 'Encode::JP' => '0.02', + 'Encode::JP::Constants' => '1.02', + 'Encode::JP::H2Z' => '0.77', + 'Encode::JP::ISO_2022_JP'=> undef, + 'Encode::JP::JIS' => undef, + 'Encode::JP::Tr' => '0.77', + 'Encode::KR' => '0.02', + 'Encode::TW' => '0.02', + 'Encode::Tcl' => '1.01', + 'Encode::Tcl::Escape' => '1.01', + 'Encode::Tcl::Extended' => '1.01', + 'Encode::Tcl::HanZi' => '1.01', + 'Encode::Tcl::Table' => '1.01', + 'Encode::Unicode' => '0.30', + 'Encode::XS' => '0.40', + 'Encode::iso10646_1' => '0.30', + 'Encode::usc2_le' => '0.30', + 'Encode::utf8' => '0.30', + 'English' => '1.00', + 'Env' => '1.00', + 'Exporter' => '5.566', + 'Exporter::Heavy' => '5.562', + 'ExtUtils::Command' => '1.02', + 'ExtUtils::Constant' => '0.11', + 'ExtUtils::Embed' => '1.250601', + 'ExtUtils::Install' => '1.29', + 'ExtUtils::Installed' => '0.04', + 'ExtUtils::Liblist' => '1.2701', + 'ExtUtils::MM_BeOS' => '1.00', + 'ExtUtils::MM_Cygwin' => '1.00', + 'ExtUtils::MM_OS2' => '1.00', + 'ExtUtils::MM_Unix' => '1.12607', + 'ExtUtils::MM_VMS' => '5.56', + 'ExtUtils::MM_Win32' => '1.00_02', + 'ExtUtils::MakeMaker' => '5.48_03', + 'ExtUtils::Manifest' => '1.35', + 'ExtUtils::Mkbootstrap' => '1.1401', + 'ExtUtils::Mksymlists' => '1.18', + 'ExtUtils::Packlist' => '0.04', + 'ExtUtils::testlib' => '1.1201', + 'Fatal' => '1.03', + 'Fcntl' => '1.04', + 'File::Basename' => '2.71', + 'File::CheckTree' => '4.1', + 'File::Compare' => '1.1003', + 'File::Copy' => '2.05', + 'File::DosGlob' => '1.00', + 'File::Find' => '1.04', + 'File::Glob' => '1.01', + 'File::Path' => '1.05', + 'File::Spec' => '0.83', + 'File::Spec::Cygwin' => '1.0', + 'File::Spec::Epoc' => '1.00', + 'File::Spec::Functions' => '1.2', + 'File::Spec::Mac' => '1.3', + 'File::Spec::Unix' => '1.4', + 'File::Spec::VMS' => '1.2', + 'File::Spec::Win32' => '1.3', + 'File::Temp' => '0.13', + 'File::stat' => '1.00', + 'FileCache' => '1.00', + 'FileHandle' => '2.01', + 'Filter::Simple' => '0.77', + 'Filter::Util::Call' => '1.06', + 'FindBin' => '1.43', + 'GDBM_File' => '1.06', + 'Getopt::Long' => '2.28', + 'Getopt::Std' => '1.03', + 'I18N::Collate' => '1.00', + 'I18N::LangTags' => '0.27', + 'I18N::LangTags::List' => '0.25', + 'I18N::Langinfo' => '0.01', + 'IO::Dir' => '1.03_00', + 'IO::File' => '1.09', + 'IO::Handle' => '1.21_00', + 'IO::Pipe' => '1.122', + 'IO::Poll' => '0.06', + 'IO::Seekable' => '1.08_00', + 'IO::Select' => '1.15', + 'IO::Socket' => '1.27', + 'IO::Socket::INET' => '1.26', + 'IO::Socket::UNIX' => '1.20_00', + 'IPC::Msg' => '1.00_00', + 'IPC::Open3' => '1.0104', + 'IPC::Semaphore' => '1.00_00', + 'IPC::SysV' => '1.03_00', + 'List::Util' => '1.06_00', + 'Locale::Constants' => '2.01', + 'Locale::Country' => '2.01', + 'Locale::Currency' => '2.01', + 'Locale::Language' => '2.01', + 'Locale::Maketext' => '1.03', + 'Locale::Script' => '2.01', + 'MIME::Base64' => '2.12', + 'MIME::QuotedPrint' => '2.03', + 'Math::BigFloat' => '1.30', + 'Math::BigInt' => '1.54', + 'Math::BigInt::Calc' => '0.25', + 'Math::Complex' => '1.34', + 'Math::Trig' => '1.01', + 'Memoize' => '0.66', + 'Memoize::AnyDBM_File' => '0.65', + 'Memoize::Expire' => '0.66', + 'Memoize::ExpireFile' => '0.65', + 'Memoize::ExpireTest' => '0.65', + 'Memoize::NDBM_File' => '0.65', + 'Memoize::SDBM_File' => '0.65', + 'Memoize::Storable' => '0.65', + 'NEXT' => '0.50', + 'Net::Cmd' => '2.21', + 'Net::Config' => '1.10', + 'Net::Domain' => '2.17', + 'Net::FTP' => '2.64', + 'Net::FTP::A' => '1.15', + 'Net::FTP::E' => '0.01', + 'Net::FTP::I' => '1.12', + 'Net::FTP::L' => '0.01', + 'Net::FTP::dataconn' => '0.10', + 'Net::NNTP' => '2.21', + 'Net::Netrc' => '2.12', + 'Net::POP3' => '2.23', + 'Net::Ping' => '2.12', + 'Net::SMTP' => '2.21', + 'Net::Time' => '2.09', + 'Net::hostent' => '1.00', + 'Net::netent' => '1.00', + 'Net::protoent' => '1.00', + 'Net::servent' => '1.00', + 'O' => '1.00', + 'OS2::DLL' => '1.00', + 'OS2::Process' => '1.0', + 'OS2::REXX' => '1.01', + 'Opcode' => '1.05', + 'POSIX' => '1.05', + 'PerlIO' => '1.00', + 'PerlIO::Scalar' => '0.01', + 'PerlIO::Via' => '0.01', + 'Pod::Checker' => '1.3', + 'Pod::Find' => '0.22', + 'Pod::Functions' => '1.01', + 'Pod::Html' => '1.04', + 'Pod::LaTeX' => '0.54', + 'Pod::Man' => '1.32', + 'Pod::ParseLink' => '1.05', + 'Pod::Text' => '2.18', + 'Pod::Text::Color' => '1.03', + 'Pod::Text::Overstrike' => '1.08', + 'Pod::Text::Termcap' => '1.09', + 'Safe' => '2.07', + 'Scalar::Util' => undef, + 'Search::Dict' => '1.02', + 'SelectSaver' => '1.00', + 'SelfLoader' => '1.0903', + 'Shell' => '0.4', + 'Socket' => '1.75', + 'Storable' => '1.015', + 'Switch' => '2.06', + 'Symbol' => '1.04', + 'Sys::Syslog' => '0.02', + 'Term::ANSIColor' => '1.04', + 'Term::Cap' => '1.07', + 'Term::Complete' => '1.4', + 'Term::ReadLine' => '1.00', + 'Test' => '1.18', + 'Test::Builder' => '0.11', + 'Test::Harness' => '2.01', + 'Test::Harness::Assert' => '0.01', + 'Test::Harness::Iterator'=> '0.01', + 'Test::Harness::Straps' => '0.08', + 'Test::More' => '0.41', + 'Test::Simple' => '0.41', + 'Text::Abbrev' => '1.00', + 'Text::Balanced' => '1.89', + 'Text::ParseWords' => '3.21', + 'Text::Soundex' => '1.01', + 'Text::Wrap' => '2001.0929', + 'Thread' => '2.00', + 'Thread::Queue' => '1.00', + 'Thread::Semaphore' => '1.00', + 'Thread::Signal' => '1.00', + 'Thread::Specific' => '1.00', + 'Tie::Array' => '1.02', + 'Tie::File' => '0.17', + 'Tie::Handle' => '4.1', + 'Tie::Hash' => '1.00', + 'Tie::Memoize' => '1.0', + 'Tie::RefHash' => '1.3_00', + 'Tie::Scalar' => '1.00', + 'Tie::SubstrHash' => '1.00', + 'Time::HiRes' => '1.20_00', + 'Time::Local' => '1.04', + 'Time::gmtime' => '1.02', + 'Time::localtime' => '1.02', + 'Time::tm' => '1.00', + 'UNIVERSAL' => '1.00', + 'Unicode::Collate' => '0.10', + 'Unicode::Normalize' => '0.14', + 'Unicode::UCD' => '0.2', + 'User::grent' => '1.00', + 'User::pwent' => '1.00', + 'VMS::DCLsym' => '1.02', + 'VMS::Filespec' => '1.1', + 'VMS::Stdio' => '2.3', + 'XS::Typemap' => '0.01', + 'attributes' => '0.04_01', + 'attrs' => '1.01', + 'autouse' => '1.03', + 'base' => '1.02', + 'blib' => '1.01', + 'bytes' => '1.00', + 'charnames' => '1.01', + 'constant' => '1.04', + 'diagnostics' => '1.1', + 'encoding' => '1.00', + 'fields' => '1.02', + 'filetest' => '1.00', + 'if' => '0.01', + 'integer' => '1.00', + 'less' => '0.01', + 'locale' => '1.00', + 'open' => '1.01', + 'ops' => '1.00', + 'overload' => '1.00', + 're' => '0.03', + 'sort' => '1.00', + 'strict' => '1.02', + 'subs' => '1.00', + 'threads' => '0.05', + 'threads::shared' => '0.90', + 'utf8' => '1.00', + 'vars' => '1.01', + 'vmsish' => '1.00', + 'warnings' => '1.00', + 'warnings::register' => '1.00', + }, + removed => { + 'Errno' => 1, + } }, - - 5.008 => { - 'AnyDBM_File' => '1.00', #./lib/AnyDBM_File.pm - 'Attribute::Handlers' => '0.77', #./lib/Attribute/Handlers.pm - 'attributes' => '0.05', #./lib/attributes.pm - 'attrs' => '1.01', #./ext/attrs/attrs.pm - 'AutoLoader' => '5.59', #./lib/AutoLoader.pm - 'AutoSplit' => '1.0307', #./lib/AutoSplit.pm - 'autouse' => '1.03', #./lib/autouse.pm - 'B' => '1.01', #./ext/B/B.pm - 'B::Asmdata' => '1.00', #./ext/B/B/Asmdata.pm - 'B::Assembler' => '0.04', #./ext/B/B/Assembler.pm - 'B::Bblock' => '1.00', #./ext/B/B/Bblock.pm - 'B::Bytecode' => '1.00', #./ext/B/B/Bytecode.pm - 'B::C' => '1.01', #./ext/B/B/C.pm - 'B::CC' => '1.00', #./ext/B/B/CC.pm - 'B::Concise' => '0.52', #./ext/B/B/Concise.pm - 'B::Debug' => '1.00', #./ext/B/B/Debug.pm - 'B::Deparse' => '0.63', #./ext/B/B/Deparse.pm - 'B::Disassembler' => '1.01', #./ext/B/B/Disassembler.pm - 'B::Lint' => '1.01', #./ext/B/B/Lint.pm - 'B::Showlex' => '1.00', #./ext/B/B/Showlex.pm - 'B::Stackobj' => '1.00', #./ext/B/B/Stackobj.pm - 'B::Stash' => '1.00', #./ext/B/B/Stash.pm - 'B::Terse' => '1.00', #./ext/B/B/Terse.pm - 'B::Xref' => '1.01', #./ext/B/B/Xref.pm - 'base' => '1.03', #./lib/base.pm - 'Benchmark' => '1.04', #./lib/Benchmark.pm - 'bigint' => '0.02', #./lib/bigint.pm - 'bignum' => '0.11', #./lib/bignum.pm - 'bigrat' => '0.04', #./lib/bigrat.pm - 'blib' => '1.02', #./lib/blib.pm - 'ByteLoader' => '0.04', #./ext/ByteLoader/ByteLoader.pm - 'bytes' => '1.00', #./lib/bytes.pm - 'Carp' => '1.01', #./lib/Carp.pm - 'Carp::Heavy' => 'undef', #./lib/Carp/Heavy.pm - 'CGI' => '2.81', #./lib/CGI.pm - 'CGI::Apache' => '1.00', #./lib/CGI/Apache.pm - 'CGI::Carp' => '1.23', #./lib/CGI/Carp.pm - 'CGI::Cookie' => '1.20', #./lib/CGI/Cookie.pm - 'CGI::Fast' => '1.04', #./lib/CGI/Fast.pm - 'CGI::Pretty' => '1.05_00', #./lib/CGI/Pretty.pm - 'CGI::Push' => '1.04', #./lib/CGI/Push.pm - 'CGI::Switch' => '1.00', #./lib/CGI/Switch.pm - 'CGI::Util' => '1.3', #./lib/CGI/Util.pm - 'charnames' => '1.01', #./lib/charnames.pm - 'Class::ISA' => '0.32', #./lib/Class/ISA.pm - 'Class::Struct' => '0.61', #./lib/Class/Struct.pm - 'constant' => '1.04', #./lib/constant.pm - 'Config' => undef, - 'CPAN' => '1.61', #./lib/CPAN.pm - 'CPAN::FirstTime' => '1.56 ', #./lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.02', #./lib/CPAN/Nox.pm - 'Cwd' => '2.06', #./lib/Cwd.pm - 'Data::Dumper' => '2.12', #./ext/Data/Dumper/Dumper.pm - 'DB' => '1.0', #./lib/DB.pm - 'DB_File' => '1.804', #./ext/DB_File/DB_File.pm - 'Devel::DProf' => '20000000.00_01', #./ext/Devel/DProf/DProf.pm - 'Devel::Peek' => '1.00_03', #./ext/Devel/Peek/Peek.pm - 'Devel::PPPort' => '2.0002', #./ext/Devel/PPPort/PPPort.pm - 'Devel::SelfStubber' => '1.03', #./lib/Devel/SelfStubber.pm - 'diagnostics' => '1.1', #./lib/diagnostics.pm - 'Digest' => '1.00', #./lib/Digest.pm - 'Digest::MD5' => '2.20', #./ext/Digest/MD5/MD5.pm - 'DirHandle' => '1.00', #./lib/DirHandle.pm - 'Dumpvalue' => '1.11', #./lib/Dumpvalue.pm - 'DynaLoader' => '1.04', - 'Encode' => '1.75', #./ext/Encode/Encode.pm - 'Encode::Alias' => '1.32', #./ext/Encode/lib/Encode/Alias.pm - 'Encode::Byte' => '1.22', #./ext/Encode/Byte/Byte.pm - 'Encode::CJKConstants' => '1.00', #./ext/Encode/lib/Encode/CJKConstants.pm - 'Encode::CN' => '1.24', #./ext/Encode/CN/CN.pm - 'Encode::CN::HZ' => '1.04', #./ext/Encode/lib/Encode/CN/HZ.pm - 'Encode::Config' => '1.06', #./ext/Encode/lib/Encode/Config.pm - 'Encode::EBCDIC' => '1.21', #./ext/Encode/EBCDIC/EBCDIC.pm - 'Encode::Encoder' => '0.05', #./ext/Encode/lib/Encode/Encoder.pm - 'Encode::Encoding' => '1.30', #./ext/Encode/lib/Encode/Encoding.pm - 'Encode::Guess' => '1.06', #./ext/Encode/lib/Encode/Guess.pm - 'Encode::JP::H2Z' => '1.02', #./ext/Encode/lib/Encode/JP/H2Z.pm - 'Encode::JP::JIS7' => '1.08', #./ext/Encode/lib/Encode/JP/JIS7.pm - 'Encode::JP' => '1.25', #./ext/Encode/JP/JP.pm - 'Encode::KR' => '1.22', #./ext/Encode/KR/KR.pm - 'Encode::KR::2022_KR' => '1.05', #./ext/Encode/lib/Encode/KR/2022_KR.pm - 'Encode::MIME::Header' => '1.05', #./ext/Encode/lib/Encode/MIME/Header.pm - 'Encode::Symbol' => '1.22', #./ext/Encode/Symbol/Symbol.pm - 'Encode::TW' => '1.26', #./ext/Encode/TW/TW.pm - 'Encode::Unicode' => '1.37', #./ext/Encode/Unicode/Unicode.pm - 'encoding' => '1.35', #./ext/Encode/encoding.pm - 'English' => '1.00', #./lib/English.pm - 'Env' => '1.00', #./lib/Env.pm - 'Exporter' => '5.566', #./lib/Exporter.pm - 'Exporter::Heavy' => '5.566', #./lib/Exporter/Heavy.pm - 'ExtUtils::Command' => '1.04', #./lib/ExtUtils/Command.pm - 'ExtUtils::Command::MM' => '0.01', #./lib/ExtUtils/Command/MM.pm - 'ExtUtils::Constant' => '0.12', #./lib/ExtUtils/Constant.pm - 'ExtUtils::Embed' => '1.250601', #./lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.29', #./lib/ExtUtils/Install.pm - 'ExtUtils::Installed' => '0.06', #./lib/ExtUtils/Installed.pm - 'ExtUtils::Liblist' => '1.00', #./lib/ExtUtils/Liblist.pm - 'ExtUtils::Liblist::Kid'=> '1.29', #./lib/ExtUtils/Liblist/Kid.pm - 'ExtUtils::MakeMaker' => '6.03', #./lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => '1.38', #./lib/ExtUtils/Manifest.pm - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.19', #./lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM' => '0.04', #./lib/ExtUtils/MM.pm - 'ExtUtils::MM_Any' => '0.04', #./lib/ExtUtils/MM_Any.pm - 'ExtUtils::MM_BeOS' => '1.03', #./lib/ExtUtils/MM_BeOS.pm - 'ExtUtils::MM_Cygwin' => '1.04', #./lib/ExtUtils/MM_Cygwin.pm - 'ExtUtils::MM_DOS' => '0.01', #./lib/ExtUtils/MM_DOS.pm - 'ExtUtils::MM_MacOS' => '1.03', #./lib/ExtUtils/MM_MacOS.pm - 'ExtUtils::MM_NW5' => '2.05', #./lib/ExtUtils/MM_NW5.pm - 'ExtUtils::MM_OS2' => '1.03', #./lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.33', #./lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_UWIN' => '0.01', #./lib/ExtUtils/MM_UWIN.pm - 'ExtUtils::MM_VMS' => '5.65', #./lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => '1.05', #./lib/ExtUtils/MM_Win32.pm - 'ExtUtils::MM_Win95' => '0.02', #./lib/ExtUtils/MM_Win95.pm - 'ExtUtils::MY' => '0.01', #./lib/ExtUtils/MY.pm - 'ExtUtils::Packlist' => '0.04', #./lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.15', #./lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm - 'Fatal' => '1.03', #./lib/Fatal.pm - 'Fcntl' => '1.04', #./ext/Fcntl/Fcntl.pm - 'fields' => '1.02', #./lib/fields.pm - 'File::Basename' => '2.71', #./lib/File/Basename.pm - 'File::CheckTree' => '4.2', #./lib/File/CheckTree.pm - 'File::Compare' => '1.1003', #./lib/File/Compare.pm - 'File::Copy' => '2.05', #./lib/File/Copy.pm - 'File::DosGlob' => '1.00', #./lib/File/DosGlob.pm - 'File::Find' => '1.04', #./lib/File/Find.pm - 'File::Glob' => '1.01', #./ext/File/Glob/Glob.pm - 'File::Path' => '1.05', #./lib/File/Path.pm - 'File::Spec' => '0.83', #./lib/File/Spec.pm - 'File::Spec::Cygwin' => '1.0', #./lib/File/Spec/Cygwin.pm - 'File::Spec::Epoc' => '1.00', #./lib/File/Spec/Epoc.pm - 'File::Spec::Functions' => '1.2', #./lib/File/Spec/Functions.pm - 'File::Spec::Mac' => '1.3', #./lib/File/Spec/Mac.pm - 'File::Spec::OS2' => '1.1', #./lib/File/Spec/OS2.pm - 'File::Spec::Unix' => '1.4', #./lib/File/Spec/Unix.pm - 'File::Spec::VMS' => '1.2', #./lib/File/Spec/VMS.pm - 'File::Spec::Win32' => '1.3', #./lib/File/Spec/Win32.pm - 'File::stat' => '1.00', #./lib/File/stat.pm - 'File::Temp' => '0.13', #./lib/File/Temp.pm - 'FileCache' => '1.021', #./lib/FileCache.pm - 'FileHandle' => '2.01', #./lib/FileHandle.pm - 'filetest' => '1.00', #./lib/filetest.pm - 'Filter::Simple' => '0.78', #./lib/Filter/Simple.pm - 'Filter::Util::Call' => '1.06', #./ext/Filter/Util/Call/Call.pm - 'FindBin' => '1.43', #./lib/FindBin.pm - 'GDBM_File' => '1.06', #./ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => '2.32', #./lib/Getopt/Long.pm - 'Getopt::Std' => '1.03', #./lib/Getopt/Std.pm - 'Hash::Util' => '0.04', #./lib/Hash/Util.pm - 'I18N::Collate' => '1.00', #./lib/I18N/Collate.pm - 'I18N::Langinfo' => '0.01', #./ext/I18N/Langinfo/Langinfo.pm - 'I18N::LangTags' => '0.27', #./lib/I18N/LangTags.pm - 'I18N::LangTags::List' => '0.25', #./lib/I18N/LangTags/List.pm - 'if' => '0.01', #./lib/if.pm - 'integer' => '1.00', #./lib/integer.pm - 'IO' => '1.20', #./ext/IO/IO.pm - 'IO::Dir' => '1.03_00', #./ext/IO/lib/IO/Dir.pm - 'IO::File' => '1.09', #./ext/IO/lib/IO/File.pm - 'IO::Handle' => '1.21_00', #./ext/IO/lib/IO/Handle.pm - 'IO::Pipe' => '1.122', #./ext/IO/lib/IO/Pipe.pm - 'IO::Poll' => '0.06', #./ext/IO/lib/IO/Poll.pm - 'IO::Seekable' => '1.08_00', #./ext/IO/lib/IO/Seekable.pm - 'IO::Select' => '1.15', #./ext/IO/lib/IO/Select.pm - 'IO::Socket' => '1.27', #./ext/IO/lib/IO/Socket.pm - 'IO::Socket::INET' => '1.26', #./ext/IO/lib/IO/Socket/INET.pm - 'IO::Socket::UNIX' => '1.20_00', #./ext/IO/lib/IO/Socket/UNIX.pm - 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm - 'IPC::Open3' => '1.0104', #./lib/IPC/Open3.pm - 'IPC::Msg' => '1.00_00', #./ext/IPC/SysV/Msg.pm - 'IPC::Semaphore' => '1.00_00', #./ext/IPC/SysV/Semaphore.pm - 'IPC::SysV' => '1.03_00', #./ext/IPC/SysV/SysV.pm - 'JNI' => '0.1', #./jpl/JNI/JNI.pm - 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm - 'JPL::Class' => undef, #./jpl/JPL/Class.pm - 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm - 'less' => '0.01', #./lib/less.pm - 'lib' => '0.5564', - 'List::Util' => '1.07_00', #./ext/List/Util/lib/List/Util.pm - 'locale' => '1.00', #./lib/locale.pm - 'Locale::Constants' => '2.01', #./lib/Locale/Constants.pm - 'Locale::Country' => '2.04', #./lib/Locale/Country.pm - 'Locale::Currency' => '2.01', #./lib/Locale/Currency.pm - 'Locale::Language' => '2.01', #./lib/Locale/Language.pm - 'Locale::Maketext' => '1.03', #./lib/Locale/Maketext.pm - 'Locale::Script' => '2.01', #./lib/Locale/Script.pm - 'Math::BigFloat' => '1.35', #./lib/Math/BigFloat.pm - 'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm - 'Math::BigInt' => '1.60', #./lib/Math/BigInt.pm - 'Math::BigInt::Calc' => '0.30', #./lib/Math/BigInt/Calc.pm - 'Math::BigInt::Trace' => '0.01', #./lib/Math/BigInt/Trace.pm - 'Math::BigRat' => '0.07', #./lib/Math/BigRat.pm - 'Math::Complex' => '1.34', #./lib/Math/Complex.pm - 'Math::Trig' => '1.01', #./lib/Math/Trig.pm - 'Memoize' => '1.01', #./lib/Memoize.pm - 'Memoize::AnyDBM_File' => '0.65', #./lib/Memoize/AnyDBM_File.pm - 'Memoize::Expire' => '1.00', #./lib/Memoize/Expire.pm - 'Memoize::ExpireFile' => '1.01', #./lib/Memoize/ExpireFile.pm - 'Memoize::ExpireTest' => '0.65', #./lib/Memoize/ExpireTest.pm - 'Memoize::NDBM_File' => '0.65', #./lib/Memoize/NDBM_File.pm - 'Memoize::SDBM_File' => '0.65', #./lib/Memoize/SDBM_File.pm - 'Memoize::Storable' => '0.65', #./lib/Memoize/Storable.pm - 'MIME::Base64' => '2.12', #./ext/MIME/Base64/Base64.pm - 'MIME::QuotedPrint' => '2.03', #./ext/MIME/Base64/QuotedPrint.pm - 'NDBM_File' => '1.04', #./ext/NDBM_File/NDBM_File.pm - 'Net::Cmd' => '2.21', #./lib/Net/Cmd.pm - 'Net::Config' => '1.10', #./lib/Net/Config.pm - 'Net::Domain' => '2.17', #./lib/Net/Domain.pm - 'Net::FTP' => '2.65', #./lib/Net/FTP.pm - 'Net::FTP::A' => '1.15', #./lib/Net/FTP/A.pm - 'Net::FTP::dataconn' => '0.11', #./lib/Net/FTP/dataconn.pm - 'Net::FTP::E' => '0.01', #./lib/Net/FTP/E.pm - 'Net::FTP::I' => '1.12', #./lib/Net/FTP/I.pm - 'Net::FTP::L' => '0.01', #./lib/Net/FTP/L.pm - 'Net::hostent' => '1.00', #./lib/Net/hostent.pm - 'Net::netent' => '1.00', #./lib/Net/netent.pm - 'Net::Netrc' => '2.12', #./lib/Net/Netrc.pm - 'Net::NNTP' => '2.21', #./lib/Net/NNTP.pm - 'Net::Ping' => '2.19', #./lib/Net/Ping.pm - 'Net::POP3' => '2.23', #./lib/Net/POP3.pm - 'Net::protoent' => '1.00', #./lib/Net/protoent.pm - 'Net::servent' => '1.00', #./lib/Net/servent.pm - 'Net::SMTP' => '2.24', #./lib/Net/SMTP.pm - 'Net::Time' => '2.09', #./lib/Net/Time.pm - 'NEXT' => '0.50', #./lib/NEXT.pm - 'O' => '1.00', #./ext/B/O.pm - 'ODBM_File' => '1.03', #./ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.05', #./ext/Opcode/Opcode.pm - 'open' => '1.01', #./lib/open.pm - 'ops' => '1.00', #./ext/Opcode/ops.pm - 'OS2::DLL' => '1.00', #./os2/OS2/REXX/DLL/DLL.pm - 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '1.0', #./os2/OS2/Process/Process.pm - 'OS2::REXX' => '1.01', #./os2/OS2/REXX/REXX.pm - 'overload' => '1.00', #./lib/overload.pm - 'PerlIO' => '1.01', #./lib/PerlIO.pm - 'PerlIO::encoding' => '0.06', #./ext/PerlIO/encoding/encoding.pm - 'PerlIO::scalar' => '0.01', #./ext/PerlIO/scalar/scalar.pm - 'PerlIO::via' => '0.01', #./ext/PerlIO/via/via.pm - 'PerlIO::via::QuotedPrint'=> '0.04', #./lib/PerlIO/via/QuotedPrint.pm - 'Pod::Checker' => '1.3', #./lib/Pod/Checker.pm - 'Pod::Find' => '0.22', #./lib/Pod/Find.pm - 'Pod::Functions' => '1.01', #./lib/Pod/Functions.pm - 'Pod::Html' => '1.04', #./lib/Pod/Html.pm - 'Pod::InputObjects' => '1.13', #./lib/Pod/InputObjects.pm - 'Pod::LaTeX' => '0.54', #./lib/Pod/LaTeX.pm - 'Pod::Man' => '1.33', #./lib/Pod/Man.pm - 'Pod::ParseLink' => '1.05', #./lib/Pod/ParseLink.pm - 'Pod::Parser' => '1.13', #./lib/Pod/Parser.pm - 'Pod::ParseUtils' => '0.22', #./lib/Pod/ParseUtils.pm - 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm - 'Pod::Select' => '1.13', #./lib/Pod/Select.pm - 'Pod::Text' => '2.19', #./lib/Pod/Text.pm - 'Pod::Text::Color' => '1.03', #./lib/Pod/Text/Color.pm - 'Pod::Text::Overstrike' => '1.08', #./lib/Pod/Text/Overstrike.pm - 'Pod::Text::Termcap' => '1.09', #./lib/Pod/Text/Termcap.pm - 'Pod::Usage' => '1.14', #./lib/Pod/Usage.pm - 'POSIX' => '1.05', #./ext/POSIX/POSIX.pm - 're' => '0.03', #./ext/re/re.pm - 'Safe' => '2.07', #./ext/Opcode/Safe.pm - 'Scalar::Util' => 'undef', #./ext/List/Util/lib/Scalar/Util.pm - 'SDBM_File' => '1.03', #./ext/SDBM_File/SDBM_File.pm - 'Search::Dict' => '1.02', #./lib/Search/Dict.pm - 'SelectSaver' => '1.00', #./lib/SelectSaver.pm - 'SelfLoader' => '1.0903', #./lib/SelfLoader.pm - 'Shell' => '0.4', #./lib/Shell.pm - 'sigtrap' => '1.02', #./lib/sigtrap.pm - 'Socket' => '1.75', #./ext/Socket/Socket.pm - 'sort' => '1.01', #./lib/sort.pm - 'Storable' => '2.04', #./ext/Storable/Storable.pm - 'strict' => '1.02', #./lib/strict.pm - 'subs' => '1.00', #./lib/subs.pm - 'Switch' => '2.09', #./lib/Switch.pm - 'Symbol' => '1.04', #./lib/Symbol.pm - 'Sys::Hostname' => '1.1', #./ext/Sys/Hostname/Hostname.pm - 'Sys::Syslog' => '0.03', #./ext/Sys/Syslog/Syslog.pm - 'Term::ANSIColor' => '1.04', #./lib/Term/ANSIColor.pm - 'Term::Cap' => '1.07', #./lib/Term/Cap.pm - 'Term::Complete' => '1.4', #./lib/Term/Complete.pm - 'Term::ReadLine' => '1.00', #./lib/Term/ReadLine.pm - 'Test' => '1.20', #./lib/Test.pm - 'Test::Builder' => '0.15', #./lib/Test/Builder.pm - 'Test::Harness' => '2.26', #./lib/Test/Harness.pm - 'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm - 'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm - 'Test::Harness::Straps' => '0.14', #./lib/Test/Harness/Straps.pm - 'Test::More' => '0.45', #./lib/Test/More.pm - 'Test::Simple' => '0.45', #./lib/Test/Simple.pm - 'Text::Abbrev' => '1.00', #./lib/Text/Abbrev.pm - 'Text::Balanced' => '1.89', #./lib/Text/Balanced.pm - 'Text::ParseWords' => '3.21', #./lib/Text/ParseWords.pm - 'Text::Soundex' => '1.01', #./lib/Text/Soundex.pm - 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm - 'Text::Wrap' => '2001.0929', #./lib/Text/Wrap.pm - 'Thread' => '2.00', #./lib/Thread.pm - 'Thread::Queue' => '2.00', #./lib/Thread/Queue.pm - 'Thread::Semaphore' => '2.00', #./lib/Thread/Semaphore.pm - 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm - 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm - 'threads' => '0.99', #./ext/threads/threads.pm - 'threads::shared' => '0.90', #./ext/threads/shared/shared.pm - 'Tie::Array' => '1.02', #./lib/Tie/Array.pm - 'Tie::File' => '0.93', #./lib/Tie/File.pm - 'Tie::Handle' => '4.1', #./lib/Tie/Handle.pm - 'Tie::Hash' => '1.00', #./lib/Tie/Hash.pm - 'Tie::Memoize' => '1.0', #./lib/Tie/Memoize.pm - 'Tie::RefHash' => '1.30', #./lib/Tie/RefHash.pm - 'Tie::Scalar' => '1.00', #./lib/Tie/Scalar.pm - 'Tie::SubstrHash' => '1.00', #./lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.02', #./lib/Time/gmtime.pm - 'Time::HiRes' => '1.20_00', #./ext/Time/HiRes/HiRes.pm - 'Time::Local' => '1.04', #./lib/Time/Local.pm - 'Time::localtime' => '1.02', #./lib/Time/localtime.pm - 'Time::tm' => '1.00', #./lib/Time/tm.pm - 'Unicode' => '3.2.0', # lib/unicore/version - 'Unicode::Collate' => '0.12', #./lib/Unicode/Collate.pm - 'Unicode::Normalize' => '0.17', #./ext/Unicode/Normalize/Normalize.pm - 'Unicode::UCD' => '0.2', #./lib/Unicode/UCD.pm - 'UNIVERSAL' => '1.00', #./lib/UNIVERSAL.pm - 'User::grent' => '1.00', #./lib/User/grent.pm - 'User::pwent' => '1.00', #./lib/User/pwent.pm - 'utf8' => '1.00', #./lib/utf8.pm - 'vars' => '1.01', #./lib/vars.pm - 'VMS::DCLsym' => '1.02', #./vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => '1.1', #./vms/ext/Filespec.pm - 'VMS::Stdio' => '2.3', #./vms/ext/Stdio/Stdio.pm - 'vmsish' => '1.00', #./lib/vmsish.pm - 'warnings' => '1.00', #./lib/warnings.pm - 'warnings::register' => '1.00', #./lib/warnings/register.pm - 'XS::APItest' => '0.01', #./ext/XS/APItest/APItest.pm - 'XS::Typemap' => '0.01', #./ext/XS/Typemap/Typemap.pm - 'XSLoader' => '0.01', + 5.008 => { + delta_from => 5.007003, + changed => { + 'Attribute::Handlers' => '0.77', + 'B' => '1.01', + 'B::Lint' => '1.01', + 'B::Xref' => '1.01', + 'CGI' => '2.81', + 'CGI::Carp' => '1.23', + 'CPAN' => '1.61', + 'CPAN::FirstTime' => '1.56 ', + 'CPAN::Nox' => '1.02', + 'Carp::Heavy' => 'undef', + 'Digest::MD5' => '2.20', + 'Dumpvalue' => '1.11', + 'Encode' => '1.75', + 'Encode::Alias' => '1.32', + 'Encode::Byte' => '1.22', + 'Encode::CJKConstants' => '1.00', + 'Encode::CN' => '1.24', + 'Encode::CN::HZ' => '1.04', + 'Encode::Config' => '1.06', + 'Encode::EBCDIC' => '1.21', + 'Encode::Encoder' => '0.05', + 'Encode::Encoding' => '1.30', + 'Encode::Guess' => '1.06', + 'Encode::JP' => '1.25', + 'Encode::JP::H2Z' => '1.02', + 'Encode::JP::JIS7' => '1.08', + 'Encode::KR' => '1.22', + 'Encode::KR::2022_KR' => '1.05', + 'Encode::MIME::Header' => '1.05', + 'Encode::Symbol' => '1.22', + 'Encode::TW' => '1.26', + 'Encode::Unicode' => '1.37', + 'Exporter::Heavy' => '5.566', + 'ExtUtils::Command' => '1.04', + 'ExtUtils::Command::MM' => '0.01', + 'ExtUtils::Constant' => '0.12', + 'ExtUtils::Installed' => '0.06', + 'ExtUtils::Liblist' => '1.00', + 'ExtUtils::Liblist::Kid'=> '1.29', + 'ExtUtils::MM' => '0.04', + 'ExtUtils::MM_Any' => '0.04', + 'ExtUtils::MM_BeOS' => '1.03', + 'ExtUtils::MM_Cygwin' => '1.04', + 'ExtUtils::MM_DOS' => '0.01', + 'ExtUtils::MM_MacOS' => '1.03', + 'ExtUtils::MM_NW5' => '2.05', + 'ExtUtils::MM_OS2' => '1.03', + 'ExtUtils::MM_UWIN' => '0.01', + 'ExtUtils::MM_Unix' => '1.33', + 'ExtUtils::MM_VMS' => '5.65', + 'ExtUtils::MM_Win32' => '1.05', + 'ExtUtils::MM_Win95' => '0.02', + 'ExtUtils::MY' => '0.01', + 'ExtUtils::MakeMaker' => '6.03', + 'ExtUtils::Manifest' => '1.38', + 'ExtUtils::Mkbootstrap' => '1.15', + 'ExtUtils::Mksymlists' => '1.19', + 'ExtUtils::testlib' => '1.15', + 'File::CheckTree' => '4.2', + 'FileCache' => '1.021', + 'Filter::Simple' => '0.78', + 'Getopt::Long' => '2.32', + 'Hash::Util' => '0.04', + 'List::Util' => '1.07_00', + 'Locale::Country' => '2.04', + 'Math::BigFloat' => '1.35', + 'Math::BigFloat::Trace' => '0.01', + 'Math::BigInt' => '1.60', + 'Math::BigInt::Calc' => '0.30', + 'Math::BigInt::Trace' => '0.01', + 'Math::BigRat' => '0.07', + 'Memoize' => '1.01', + 'Memoize::Expire' => '1.00', + 'Memoize::ExpireFile' => '1.01', + 'Net::FTP' => '2.65', + 'Net::FTP::dataconn' => '0.11', + 'Net::Ping' => '2.19', + 'Net::SMTP' => '2.24', + 'PerlIO' => '1.01', + 'PerlIO::encoding' => '0.06', + 'PerlIO::scalar' => '0.01', + 'PerlIO::via' => '0.01', + 'PerlIO::via::QuotedPrint'=> '0.04', + 'Pod::Man' => '1.33', + 'Pod::Text' => '2.19', + 'Scalar::Util' => 'undef', + 'Storable' => '2.04', + 'Switch' => '2.09', + 'Sys::Syslog' => '0.03', + 'Test' => '1.20', + 'Test::Builder' => '0.15', + 'Test::Harness' => '2.26', + 'Test::Harness::Straps' => '0.14', + 'Test::More' => '0.45', + 'Test::Simple' => '0.45', + 'Thread::Queue' => '2.00', + 'Thread::Semaphore' => '2.00', + 'Tie::File' => '0.93', + 'Tie::RefHash' => '1.30', + 'Unicode' => '3.2.0', + 'Unicode::Collate' => '0.12', + 'Unicode::Normalize' => '0.17', + 'XS::APItest' => '0.01', + 'attributes' => '0.05', + 'base' => '1.03', + 'bigint' => '0.02', + 'bignum' => '0.11', + 'bigrat' => '0.04', + 'blib' => '1.02', + 'encoding' => '1.35', + 'sort' => '1.01', + 'threads' => '0.99', + }, + removed => { + 'Encode::Internal' => 1, + 'Encode::JP::Constants' => 1, + 'Encode::JP::ISO_2022_JP'=> 1, + 'Encode::JP::JIS' => 1, + 'Encode::JP::Tr' => 1, + 'Encode::Tcl' => 1, + 'Encode::Tcl::Escape' => 1, + 'Encode::Tcl::Extended' => 1, + 'Encode::Tcl::HanZi' => 1, + 'Encode::Tcl::Table' => 1, + 'Encode::XS' => 1, + 'Encode::iso10646_1' => 1, + 'Encode::usc2_le' => 1, + 'Encode::utf8' => 1, + 'PerlIO::Scalar' => 1, + 'PerlIO::Via' => 1, + } }, - 5.008001 => { - 'AnyDBM_File' => '1.00', #./lib/AnyDBM_File.pm - 'Attribute::Handlers' => '0.78', #./lib/Attribute/Handlers.pm - 'attributes' => '0.06', #./lib/attributes.pm - 'attrs' => '1.01', #./lib/attrs.pm - 'AutoLoader' => '5.60', #./lib/AutoLoader.pm - 'AutoSplit' => '1.04', #./lib/AutoSplit.pm - 'autouse' => '1.03', #./lib/autouse.pm - 'B' => '1.02', #./lib/B.pm - 'B::Asmdata' => '1.01', #./lib/B/Asmdata.pm - 'B::Assembler' => '0.06', #./lib/B/Assembler.pm - 'B::Bblock' => '1.02', #./lib/B/Bblock.pm - 'B::Bytecode' => '1.01', #./lib/B/Bytecode.pm - 'B::C' => '1.02', #./lib/B/C.pm - 'B::CC' => '1.00', #./lib/B/CC.pm - 'B::Concise' => '0.56', #./lib/B/Concise.pm - 'B::Debug' => '1.01', #./lib/B/Debug.pm - 'B::Deparse' => '0.64', #./lib/B/Deparse.pm - 'B::Disassembler' => '1.03', #./lib/B/Disassembler.pm - 'B::Lint' => '1.02', #./lib/B/Lint.pm - 'B::Showlex' => '1.00', #./lib/B/Showlex.pm - 'B::Stackobj' => '1.00', #./lib/B/Stackobj.pm - 'B::Stash' => '1.00', #./lib/B/Stash.pm - 'B::Terse' => '1.02', #./lib/B/Terse.pm - 'B::Xref' => '1.01', #./lib/B/Xref.pm - 'base' => '2.03', #./lib/base.pm - 'Benchmark' => '1.051', #./lib/Benchmark.pm - 'bigint' => '0.04', #./lib/bigint.pm - 'bignum' => '0.14', #./lib/bignum.pm - 'bigrat' => '0.06', #./lib/bigrat.pm - 'blib' => '1.02', #./lib/blib.pm - 'ByteLoader' => '0.05', #./lib/ByteLoader.pm - 'bytes' => '1.01', #./lib/bytes.pm - 'Carp' => '1.01', #./lib/Carp.pm - 'Carp::Heavy' => '1.01', #./lib/Carp/Heavy.pm - 'CGI' => '3.00', #./lib/CGI.pm - 'CGI::Apache' => '1.00', #./lib/CGI/Apache.pm - 'CGI::Carp' => '1.26', #./lib/CGI/Carp.pm - 'CGI::Cookie' => '1.24', #./lib/CGI/Cookie.pm - 'CGI::Fast' => '1.041', #./lib/CGI/Fast.pm - 'CGI::Pretty' => '1.07_00', #./lib/CGI/Pretty.pm - 'CGI::Push' => '1.04', #./lib/CGI/Push.pm - 'CGI::Switch' => '1.00', #./lib/CGI/Switch.pm - 'CGI::Util' => '1.31', #./lib/CGI/Util.pm - 'charnames' => '1.02', #./lib/charnames.pm - 'Class::ISA' => '0.32', #./lib/Class/ISA.pm - 'Class::Struct' => '0.63', #./lib/Class/Struct.pm - 'Config' => undef, #./lib/Config.pm - 'constant' => '1.04', #./lib/constant.pm - 'CPAN' => '1.76_01', #./lib/CPAN.pm - 'CPAN::FirstTime' => '1.60 ', #./lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.03', #./lib/CPAN/Nox.pm - 'Cwd' => '2.08', #./lib/Cwd.pm - 'Data::Dumper' => '2.121', #./lib/Data/Dumper.pm - 'DB' => '1.0', #./lib/DB.pm - 'DB_File' => '1.806', #./lib/DB_File.pm - 'Devel::DProf' => '20030813.00', #./lib/Devel/DProf.pm - 'Devel::Peek' => '1.01', #./lib/Devel/Peek.pm - 'Devel::PPPort' => '2.007', #./lib/Devel/PPPort.pm - 'Devel::SelfStubber' => '1.03', #./lib/Devel/SelfStubber.pm - 'diagnostics' => '1.11', #./lib/diagnostics.pm - 'Digest' => '1.02', #./lib/Digest.pm - 'Digest::MD5' => '2.27', #./lib/Digest/MD5.pm - 'DirHandle' => '1.00', #./lib/DirHandle.pm - 'Dumpvalue' => '1.11', #./lib/Dumpvalue.pm - 'DynaLoader' => '1.04', #./lib/DynaLoader.pm - 'Encode' => '1.9801', #./lib/Encode.pm - 'Encode::Alias' => '1.38', #./lib/Encode/Alias.pm - 'Encode::Byte' => '1.23', #./lib/Encode/Byte.pm - 'Encode::CJKConstants' => '1.02', #./lib/Encode/CJKConstants.pm - 'Encode::CN' => '1.24', #./lib/Encode/CN.pm - 'Encode::CN::HZ' => '1.05', #./lib/Encode/CN/HZ.pm - 'Encode::Config' => '1.07', #./lib/Encode/Config.pm - 'Encode::EBCDIC' => '1.21', #./lib/Encode/EBCDIC.pm - 'Encode::Encoder' => '0.07', #./lib/Encode/Encoder.pm - 'Encode::Encoding' => '1.33', #./lib/Encode/Encoding.pm - 'Encode::Guess' => '1.09', #./lib/Encode/Guess.pm - 'Encode::JP' => '1.25', #./lib/Encode/JP.pm - 'Encode::JP::H2Z' => '1.02', #./lib/Encode/JP/H2Z.pm - 'Encode::JP::JIS7' => '1.12', #./lib/Encode/JP/JIS7.pm - 'Encode::KR' => '1.23', #./lib/Encode/KR.pm - 'Encode::KR::2022_KR' => '1.06', #./lib/Encode/KR/2022_KR.pm - 'Encode::MIME::Header' => '1.09', #./lib/Encode/MIME/Header.pm - 'Encode::Symbol' => '1.22', #./lib/Encode/Symbol.pm - 'Encode::TW' => '1.26', #./lib/Encode/TW.pm - 'Encode::Unicode' => '1.40', #./lib/Encode/Unicode.pm - 'Encode::Unicode::UTF7' => '0.02', #./lib/Encode/Unicode/UTF7.pm - 'encoding' => '1.47', #./lib/encoding.pm - 'English' => '1.01', #./lib/English.pm - 'Env' => '1.00', #./lib/Env.pm - 'Errno' => '1.09_00', #./lib/Errno.pm - 'Exporter' => '5.567', #./lib/Exporter.pm - 'Exporter::Heavy' => '5.567', #./lib/Exporter/Heavy.pm - 'ExtUtils::Command' => '1.05', #./lib/ExtUtils/Command.pm - 'ExtUtils::Command::MM' => '0.03', #./lib/ExtUtils/Command/MM.pm - 'ExtUtils::Constant' => '0.14', #./lib/ExtUtils/Constant.pm - 'ExtUtils::Embed' => '1.250601', #./lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.32', #./lib/ExtUtils/Install.pm - 'ExtUtils::Installed' => '0.08', #./lib/ExtUtils/Installed.pm - 'ExtUtils::Liblist' => '1.01', #./lib/ExtUtils/Liblist.pm - 'ExtUtils::Liblist::Kid'=> '1.3', #./lib/ExtUtils/Liblist/Kid.pm - 'ExtUtils::MakeMaker' => '6.17', #./lib/ExtUtils/MakeMaker.pm - 'ExtUtils::MakeMaker::bytes'=> '0.01', #./lib/ExtUtils/MakeMaker/bytes.pm - 'ExtUtils::MakeMaker::vmsish'=> '0.01', #./lib/ExtUtils/MakeMaker/vmsish.pm - 'ExtUtils::Manifest' => '1.42', #./lib/ExtUtils/Manifest.pm - 'ExtUtils::Miniperl' => undef, #./lib/ExtUtils/Miniperl.pm - 'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.19', #./lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM' => '0.04', #./lib/ExtUtils/MM.pm - 'ExtUtils::MM_Any' => '0.07', #./lib/ExtUtils/MM_Any.pm - 'ExtUtils::MM_BeOS' => '1.04', #./lib/ExtUtils/MM_BeOS.pm - 'ExtUtils::MM_Cygwin' => '1.06', #./lib/ExtUtils/MM_Cygwin.pm - 'ExtUtils::MM_DOS' => '0.02', #./lib/ExtUtils/MM_DOS.pm - 'ExtUtils::MM_MacOS' => '1.07', #./lib/ExtUtils/MM_MacOS.pm - 'ExtUtils::MM_NW5' => '2.06', #./lib/ExtUtils/MM_NW5.pm - 'ExtUtils::MM_OS2' => '1.04', #./lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.42', #./lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_UWIN' => '0.02', #./lib/ExtUtils/MM_UWIN.pm - 'ExtUtils::MM_VMS' => '5.70', #./lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => '1.09', #./lib/ExtUtils/MM_Win32.pm - 'ExtUtils::MM_Win95' => '0.03', #./lib/ExtUtils/MM_Win95.pm - 'ExtUtils::MY' => '0.01', #./lib/ExtUtils/MY.pm - 'ExtUtils::Packlist' => '0.04', #./lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.15', #./lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm - 'Fatal' => '1.03', #./lib/Fatal.pm - 'Fcntl' => '1.05', #./lib/Fcntl.pm - 'fields' => '2.03', #./lib/fields.pm - 'File::Basename' => '2.72', #./lib/File/Basename.pm - 'File::CheckTree' => '4.2', #./lib/File/CheckTree.pm - 'File::Compare' => '1.1003', #./lib/File/Compare.pm - 'File::Copy' => '2.06', #./lib/File/Copy.pm - 'File::DosGlob' => '1.00', #./lib/File/DosGlob.pm - 'File::Find' => '1.05', #./lib/File/Find.pm - 'File::Glob' => '1.02', #./lib/File/Glob.pm - 'File::Path' => '1.06', #./lib/File/Path.pm - 'File::Spec' => '0.86', #./lib/File/Spec.pm - 'File::Spec::Cygwin' => '1.1', #./lib/File/Spec/Cygwin.pm - 'File::Spec::Epoc' => '1.1', #./lib/File/Spec/Epoc.pm - 'File::Spec::Functions' => '1.3', #./lib/File/Spec/Functions.pm - 'File::Spec::Mac' => '1.4', #./lib/File/Spec/Mac.pm - 'File::Spec::OS2' => '1.2', #./lib/File/Spec/OS2.pm - 'File::Spec::Unix' => '1.5', #./lib/File/Spec/Unix.pm - 'File::Spec::VMS' => '1.4', #./lib/File/Spec/VMS.pm - 'File::Spec::Win32' => '1.4', #./lib/File/Spec/Win32.pm - 'File::stat' => '1.00', #./lib/File/stat.pm - 'File::Temp' => '0.14', #./lib/File/Temp.pm - 'FileCache' => '1.03', #./lib/FileCache.pm - 'FileHandle' => '2.01', #./lib/FileHandle.pm - 'filetest' => '1.01', #./lib/filetest.pm - 'Filter::Simple' => '0.78', #./lib/Filter/Simple.pm - 'Filter::Util::Call' => '1.0601', #./lib/Filter/Util/Call.pm - 'FindBin' => '1.43', #./lib/FindBin.pm - 'GDBM_File' => '1.07', #./ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => '2.34', #./lib/Getopt/Long.pm - 'Getopt::Std' => '1.04', #./lib/Getopt/Std.pm - 'Hash::Util' => '0.05', #./lib/Hash/Util.pm - 'I18N::Collate' => '1.00', #./lib/I18N/Collate.pm - 'I18N::Langinfo' => '0.02', #./lib/I18N/Langinfo.pm - 'I18N::LangTags' => '0.28', #./lib/I18N/LangTags.pm - 'I18N::LangTags::List' => '0.26', #./lib/I18N/LangTags/List.pm - 'if' => '0.03', #./lib/if.pm - 'integer' => '1.00', #./lib/integer.pm - 'IO' => '1.21', #./lib/IO.pm - 'IO::Dir' => '1.04', #./lib/IO/Dir.pm - 'IO::File' => '1.10', #./lib/IO/File.pm - 'IO::Handle' => '1.23', #./lib/IO/Handle.pm - 'IO::Pipe' => '1.122', #./lib/IO/Pipe.pm - 'IO::Poll' => '0.06', #./lib/IO/Poll.pm - 'IO::Seekable' => '1.09', #./lib/IO/Seekable.pm - 'IO::Select' => '1.16', #./lib/IO/Select.pm - 'IO::Socket' => '1.28', #./lib/IO/Socket.pm - 'IO::Socket::INET' => '1.27', #./lib/IO/Socket/INET.pm - 'IO::Socket::UNIX' => '1.21', #./lib/IO/Socket/UNIX.pm - 'IPC::Msg' => '1.02', #./lib/IPC/Msg.pm - 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm - 'IPC::Open3' => '1.0105', #./lib/IPC/Open3.pm - 'IPC::Semaphore' => '1.02', #./lib/IPC/Semaphore.pm - 'IPC::SysV' => '1.04', #./lib/IPC/SysV.pm - 'JNI' => '0.2', #./jpl/JNI/JNI.pm - 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm - 'JPL::Class' => undef, #./jpl/JPL/Class.pm - 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm - 'less' => '0.01', #./lib/less.pm - 'lib' => '0.5565', #./lib/lib.pm - 'List::Util' => '1.13', #./lib/List/Util.pm - 'locale' => '1.00', #./lib/locale.pm - 'Locale::Constants' => '2.01', #./lib/Locale/Constants.pm - 'Locale::Country' => '2.61', #./lib/Locale/Country.pm - 'Locale::Currency' => '2.21', #./lib/Locale/Currency.pm - 'Locale::Language' => '2.21', #./lib/Locale/Language.pm - 'Locale::Maketext' => '1.06', #./lib/Locale/Maketext.pm - 'Locale::Maketext::Guts'=> undef, #./lib/Locale/Maketext/Guts.pm - 'Locale::Maketext::GutsLoader'=> undef, #./lib/Locale/Maketext/GutsLoader.pm - 'Locale::Script' => '2.21', #./lib/Locale/Script.pm - 'Math::BigFloat' => '1.40', #./lib/Math/BigFloat.pm - 'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm - 'Math::BigInt' => '1.66', #./lib/Math/BigInt.pm - 'Math::BigInt::Calc' => '0.36', #./lib/Math/BigInt/Calc.pm - 'Math::BigInt::Scalar' => '0.11', #./lib/Math/BigInt/Scalar.pm - 'Math::BigInt::Trace' => '0.01', #./lib/Math/BigInt/Trace.pm - 'Math::BigRat' => '0.10', #./lib/Math/BigRat.pm - 'Math::Complex' => '1.34', #./lib/Math/Complex.pm - 'Math::Trig' => '1.02', #./lib/Math/Trig.pm - 'Memoize' => '1.01', #./lib/Memoize.pm - 'Memoize::AnyDBM_File' => '0.65', #./lib/Memoize/AnyDBM_File.pm - 'Memoize::Expire' => '1.00', #./lib/Memoize/Expire.pm - 'Memoize::ExpireFile' => '1.01', #./lib/Memoize/ExpireFile.pm - 'Memoize::ExpireTest' => '0.65', #./lib/Memoize/ExpireTest.pm - 'Memoize::NDBM_File' => '0.65', #./lib/Memoize/NDBM_File.pm - 'Memoize::SDBM_File' => '0.65', #./lib/Memoize/SDBM_File.pm - 'Memoize::Storable' => '0.65', #./lib/Memoize/Storable.pm - 'MIME::Base64' => '2.20', #./lib/MIME/Base64.pm - 'MIME::QuotedPrint' => '2.20', #./lib/MIME/QuotedPrint.pm - 'NDBM_File' => '1.05', #./ext/NDBM_File/NDBM_File.pm - 'Net::Cmd' => '2.24', #./lib/Net/Cmd.pm - 'Net::Config' => '1.10', #./lib/Net/Config.pm - 'Net::Domain' => '2.18', #./lib/Net/Domain.pm - 'Net::FTP' => '2.71', #./lib/Net/FTP.pm - 'Net::FTP::A' => '1.16', #./lib/Net/FTP/A.pm - 'Net::FTP::dataconn' => '0.11', #./lib/Net/FTP/dataconn.pm - 'Net::FTP::E' => '0.01', #./lib/Net/FTP/E.pm - 'Net::FTP::I' => '1.12', #./lib/Net/FTP/I.pm - 'Net::FTP::L' => '0.01', #./lib/Net/FTP/L.pm - 'Net::hostent' => '1.01', #./lib/Net/hostent.pm - 'Net::netent' => '1.00', #./lib/Net/netent.pm - 'Net::Netrc' => '2.12', #./lib/Net/Netrc.pm - 'Net::NNTP' => '2.22', #./lib/Net/NNTP.pm - 'Net::Ping' => '2.31', #./lib/Net/Ping.pm - 'Net::POP3' => '2.24', #./lib/Net/POP3.pm - 'Net::protoent' => '1.00', #./lib/Net/protoent.pm - 'Net::servent' => '1.01', #./lib/Net/servent.pm - 'Net::SMTP' => '2.26', #./lib/Net/SMTP.pm - 'Net::Time' => '2.09', #./lib/Net/Time.pm - 'NEXT' => '0.60', #./lib/NEXT.pm - 'O' => '1.00', #./lib/O.pm - 'ODBM_File' => '1.04', #./ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.05', #./lib/Opcode.pm - 'open' => '1.02', #./lib/open.pm - 'ops' => '1.00', #./lib/ops.pm - 'OS2::ExtAttr' => '0.02', #./os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.03', #./os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '1.01', #./os2/OS2/Process/Process.pm - 'OS2::DLL' => '1.01', #./os2/OS2/REXX/DLL/DLL.pm - 'OS2::REXX' => '1.02', #./os2/OS2/REXX/REXX.pm - 'overload' => '1.01', #./lib/overload.pm - 'PerlIO' => '1.02', #./lib/PerlIO.pm - 'PerlIO::encoding' => '0.07', #./lib/PerlIO/encoding.pm - 'PerlIO::scalar' => '0.02', #./lib/PerlIO/scalar.pm - 'PerlIO::via' => '0.02', #./lib/PerlIO/via.pm - 'PerlIO::via::QuotedPrint'=> '0.05', #./lib/PerlIO/via/QuotedPrint.pm - 'Pod::Checker' => '1.41', #./lib/Pod/Checker.pm - 'Pod::Find' => '0.24', #./lib/Pod/Find.pm - 'Pod::Functions' => '1.02', #./lib/Pod/Functions.pm - 'Pod::Html' => '1.0501', #./lib/Pod/Html.pm - 'Pod::InputObjects' => '1.14', #./lib/Pod/InputObjects.pm - 'Pod::LaTeX' => '0.55', #./lib/Pod/LaTeX.pm - 'Pod::Man' => '1.37', #./lib/Pod/Man.pm - 'Pod::ParseLink' => '1.06', #./lib/Pod/ParseLink.pm - 'Pod::Parser' => '1.13', #./lib/Pod/Parser.pm - 'Pod::ParseUtils' => '0.3', #./lib/Pod/ParseUtils.pm - 'Pod::Perldoc' => '3.10', #./lib/Pod/Perldoc.pm - 'Pod::Perldoc::BaseTo' => undef, #./lib/Pod/Perldoc/BaseTo.pm - 'Pod::Perldoc::GetOptsOO'=> undef, #./lib/Pod/Perldoc/GetOptsOO.pm - 'Pod::Perldoc::ToChecker'=> undef, #./lib/Pod/Perldoc/ToChecker.pm - 'Pod::Perldoc::ToMan' => undef, #./lib/Pod/Perldoc/ToMan.pm - 'Pod::Perldoc::ToNroff' => undef, #./lib/Pod/Perldoc/ToNroff.pm - 'Pod::Perldoc::ToPod' => undef, #./lib/Pod/Perldoc/ToPod.pm - 'Pod::Perldoc::ToRtf' => undef, #./lib/Pod/Perldoc/ToRtf.pm - 'Pod::Perldoc::ToText' => undef, #./lib/Pod/Perldoc/ToText.pm - 'Pod::Perldoc::ToTk' => 'undef', #./lib/Pod/Perldoc/ToTk.pm - 'Pod::Perldoc::ToXml' => undef, #./lib/Pod/Perldoc/ToXml.pm - 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm - 'Pod::PlainText' => '2.01', #./lib/Pod/PlainText.pm - 'Pod::Select' => '1.13', #./lib/Pod/Select.pm - 'Pod::Text' => '2.21', #./lib/Pod/Text.pm - 'Pod::Text::Color' => '1.04', #./lib/Pod/Text/Color.pm - 'Pod::Text::Overstrike' => '1.1', #./lib/Pod/Text/Overstrike.pm - 'Pod::Text::Termcap' => '1.11', #./lib/Pod/Text/Termcap.pm - 'Pod::Usage' => '1.16', #./lib/Pod/Usage.pm - 'POSIX' => '1.06', #./lib/POSIX.pm - 're' => '0.04', #./lib/re.pm - 'Safe' => '2.10', #./lib/Safe.pm - 'Scalar::Util' => '1.13', #./lib/Scalar/Util.pm - 'SDBM_File' => '1.04', #./lib/SDBM_File.pm - 'Search::Dict' => '1.02', #./lib/Search/Dict.pm - 'SelectSaver' => '1.00', #./lib/SelectSaver.pm - 'SelfLoader' => '1.0904', #./lib/SelfLoader.pm - 'Shell' => '0.5', #./lib/Shell.pm - 'sigtrap' => '1.02', #./lib/sigtrap.pm - 'Socket' => '1.76', #./lib/Socket.pm - 'sort' => '1.02', #./lib/sort.pm - 'Storable' => '2.08', #./lib/Storable.pm - 'strict' => '1.03', #./lib/strict.pm - 'subs' => '1.00', #./lib/subs.pm - 'Switch' => '2.10', #./lib/Switch.pm - 'Symbol' => '1.05', #./lib/Symbol.pm - 'Sys::Hostname' => '1.11', #./lib/Sys/Hostname.pm - 'Sys::Syslog' => '0.04', #./lib/Sys/Syslog.pm - 'Term::ANSIColor' => '1.07', #./lib/Term/ANSIColor.pm - 'Term::Cap' => '1.08', #./lib/Term/Cap.pm - 'Term::Complete' => '1.401', #./lib/Term/Complete.pm - 'Term::ReadLine' => '1.01', #./lib/Term/ReadLine.pm - 'Test' => '1.24', #./lib/Test.pm - 'Test::Builder' => '0.17', #./lib/Test/Builder.pm - 'Test::Harness' => '2.30', #./lib/Test/Harness.pm - 'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm - 'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm - 'Test::Harness::Straps' => '0.15', #./lib/Test/Harness/Straps.pm - 'Test::More' => '0.47', #./lib/Test/More.pm - 'Test::Simple' => '0.47', #./lib/Test/Simple.pm - 'Text::Abbrev' => '1.01', #./lib/Text/Abbrev.pm - 'Text::Balanced' => '1.95', #./lib/Text/Balanced.pm - 'Text::ParseWords' => '3.21', #./lib/Text/ParseWords.pm - 'Text::Soundex' => '1.01', #./lib/Text/Soundex.pm - 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm - 'Text::Wrap' => '2001.09291', #./lib/Text/Wrap.pm - 'Thread' => '2.00', #./lib/Thread.pm - 'Thread::Queue' => '2.00', #./lib/Thread/Queue.pm - 'Thread::Semaphore' => '2.01', #./lib/Thread/Semaphore.pm - 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm - 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm - 'threads' => '1.00', #./lib/threads.pm - 'threads::shared' => '0.91', #./lib/threads/shared.pm - 'Tie::Array' => '1.03', #./lib/Tie/Array.pm - 'Tie::File' => '0.97', #./lib/Tie/File.pm - 'Tie::Handle' => '4.1', #./lib/Tie/Handle.pm - 'Tie::Hash' => '1.00', #./lib/Tie/Hash.pm - 'Tie::Memoize' => '1.0', #./lib/Tie/Memoize.pm - 'Tie::RefHash' => '1.31', #./lib/Tie/RefHash.pm - 'Tie::Scalar' => '1.00', #./lib/Tie/Scalar.pm - 'Tie::SubstrHash' => '1.00', #./lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.02', #./lib/Time/gmtime.pm - 'Time::HiRes' => '1.51', #./lib/Time/HiRes.pm - 'Time::Local' => '1.07', #./lib/Time/Local.pm - 'Time::localtime' => '1.02', #./lib/Time/localtime.pm - 'Time::tm' => '1.00', #./lib/Time/tm.pm - 'Unicode' => '4.0.0', # lib/unicore/version - 'Unicode::Collate' => '0.28', #./lib/Unicode/Collate.pm - 'Unicode::Normalize' => '0.23', #./lib/Unicode/Normalize.pm - 'Unicode::UCD' => '0.21', #./lib/Unicode/UCD.pm - 'UNIVERSAL' => '1.01', #./lib/UNIVERSAL.pm - 'User::grent' => '1.00', #./lib/User/grent.pm - 'User::pwent' => '1.00', #./lib/User/pwent.pm - 'utf8' => '1.02', #./lib/utf8.pm - 'vars' => '1.01', #./lib/vars.pm - 'VMS::DCLsym' => '1.02', #./vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => '1.11', #./vms/ext/Filespec.pm - 'VMS::Stdio' => '2.3', #./vms/ext/Stdio/Stdio.pm - 'vmsish' => '1.01', #./lib/vmsish.pm - 'warnings' => '1.03', #./lib/warnings.pm - 'warnings::register' => '1.00', #./lib/warnings/register.pm - 'XS::APItest' => '0.02', #./lib/XS/APItest.pm - 'XS::Typemap' => '0.01', #./lib/XS/Typemap.pm - 'XSLoader' => '0.02', #./lib/XSLoader.pm + delta_from => 5.008, + changed => { + 'Attribute::Handlers' => '0.78', + 'AutoLoader' => '5.60', + 'AutoSplit' => '1.04', + 'B' => '1.02', + 'B::Asmdata' => '1.01', + 'B::Assembler' => '0.06', + 'B::Bblock' => '1.02', + 'B::Bytecode' => '1.01', + 'B::C' => '1.02', + 'B::Concise' => '0.56', + 'B::Debug' => '1.01', + 'B::Deparse' => '0.64', + 'B::Disassembler' => '1.03', + 'B::Lint' => '1.02', + 'B::Terse' => '1.02', + 'Benchmark' => '1.051', + 'ByteLoader' => '0.05', + 'CGI' => '3.00', + 'CGI::Carp' => '1.26', + 'CGI::Cookie' => '1.24', + 'CGI::Fast' => '1.041', + 'CGI::Pretty' => '1.07_00', + 'CGI::Util' => '1.31', + 'CPAN' => '1.76_01', + 'CPAN::FirstTime' => '1.60 ', + 'CPAN::Nox' => '1.03', + 'Carp::Heavy' => '1.01', + 'Class::Struct' => '0.63', + 'Cwd' => '2.08', + 'DB_File' => '1.806', + 'Data::Dumper' => '2.121', + 'Devel::DProf' => '20030813.00', + 'Devel::PPPort' => '2.007', + 'Devel::Peek' => '1.01', + 'Digest' => '1.02', + 'Digest::MD5' => '2.27', + 'Encode' => '1.9801', + 'Encode::Alias' => '1.38', + 'Encode::Byte' => '1.23', + 'Encode::CJKConstants' => '1.02', + 'Encode::CN::HZ' => '1.05', + 'Encode::Config' => '1.07', + 'Encode::Encoder' => '0.07', + 'Encode::Encoding' => '1.33', + 'Encode::Guess' => '1.09', + 'Encode::JP::JIS7' => '1.12', + 'Encode::KR' => '1.23', + 'Encode::KR::2022_KR' => '1.06', + 'Encode::MIME::Header' => '1.09', + 'Encode::Unicode' => '1.40', + 'Encode::Unicode::UTF7' => '0.02', + 'English' => '1.01', + 'Errno' => '1.09_00', + 'Exporter' => '5.567', + 'Exporter::Heavy' => '5.567', + 'ExtUtils::Command' => '1.05', + 'ExtUtils::Command::MM' => '0.03', + 'ExtUtils::Constant' => '0.14', + 'ExtUtils::Install' => '1.32', + 'ExtUtils::Installed' => '0.08', + 'ExtUtils::Liblist' => '1.01', + 'ExtUtils::Liblist::Kid'=> '1.3', + 'ExtUtils::MM_Any' => '0.07', + 'ExtUtils::MM_BeOS' => '1.04', + 'ExtUtils::MM_Cygwin' => '1.06', + 'ExtUtils::MM_DOS' => '0.02', + 'ExtUtils::MM_MacOS' => '1.07', + 'ExtUtils::MM_NW5' => '2.06', + 'ExtUtils::MM_OS2' => '1.04', + 'ExtUtils::MM_UWIN' => '0.02', + 'ExtUtils::MM_Unix' => '1.42', + 'ExtUtils::MM_VMS' => '5.70', + 'ExtUtils::MM_Win32' => '1.09', + 'ExtUtils::MM_Win95' => '0.03', + 'ExtUtils::MakeMaker' => '6.17', + 'ExtUtils::MakeMaker::bytes'=> '0.01', + 'ExtUtils::MakeMaker::vmsish'=> '0.01', + 'ExtUtils::Manifest' => '1.42', + 'Fcntl' => '1.05', + 'File::Basename' => '2.72', + 'File::Copy' => '2.06', + 'File::Find' => '1.05', + 'File::Glob' => '1.02', + 'File::Path' => '1.06', + 'File::Spec' => '0.86', + 'File::Spec::Cygwin' => '1.1', + 'File::Spec::Epoc' => '1.1', + 'File::Spec::Functions' => '1.3', + 'File::Spec::Mac' => '1.4', + 'File::Spec::OS2' => '1.2', + 'File::Spec::Unix' => '1.5', + 'File::Spec::VMS' => '1.4', + 'File::Spec::Win32' => '1.4', + 'File::Temp' => '0.14', + 'FileCache' => '1.03', + 'Filter::Util::Call' => '1.0601', + 'GDBM_File' => '1.07', + 'Getopt::Long' => '2.34', + 'Getopt::Std' => '1.04', + 'Hash::Util' => '0.05', + 'I18N::LangTags' => '0.28', + 'I18N::LangTags::List' => '0.26', + 'I18N::Langinfo' => '0.02', + 'IO' => '1.21', + 'IO::Dir' => '1.04', + 'IO::File' => '1.10', + 'IO::Handle' => '1.23', + 'IO::Seekable' => '1.09', + 'IO::Select' => '1.16', + 'IO::Socket' => '1.28', + 'IO::Socket::INET' => '1.27', + 'IO::Socket::UNIX' => '1.21', + 'IPC::Msg' => '1.02', + 'IPC::Open3' => '1.0105', + 'IPC::Semaphore' => '1.02', + 'IPC::SysV' => '1.04', + 'JNI' => '0.2', + 'List::Util' => '1.13', + 'Locale::Country' => '2.61', + 'Locale::Currency' => '2.21', + 'Locale::Language' => '2.21', + 'Locale::Maketext' => '1.06', + 'Locale::Maketext::Guts'=> undef, + 'Locale::Maketext::GutsLoader'=> undef, + 'Locale::Script' => '2.21', + 'MIME::Base64' => '2.20', + 'MIME::QuotedPrint' => '2.20', + 'Math::BigFloat' => '1.40', + 'Math::BigInt' => '1.66', + 'Math::BigInt::Calc' => '0.36', + 'Math::BigInt::Scalar' => '0.11', + 'Math::BigRat' => '0.10', + 'Math::Trig' => '1.02', + 'NDBM_File' => '1.05', + 'NEXT' => '0.60', + 'Net::Cmd' => '2.24', + 'Net::Domain' => '2.18', + 'Net::FTP' => '2.71', + 'Net::FTP::A' => '1.16', + 'Net::NNTP' => '2.22', + 'Net::POP3' => '2.24', + 'Net::Ping' => '2.31', + 'Net::SMTP' => '2.26', + 'Net::hostent' => '1.01', + 'Net::servent' => '1.01', + 'ODBM_File' => '1.04', + 'OS2::DLL' => '1.01', + 'OS2::ExtAttr' => '0.02', + 'OS2::PrfDB' => '0.03', + 'OS2::Process' => '1.01', + 'OS2::REXX' => '1.02', + 'POSIX' => '1.06', + 'PerlIO' => '1.02', + 'PerlIO::encoding' => '0.07', + 'PerlIO::scalar' => '0.02', + 'PerlIO::via' => '0.02', + 'PerlIO::via::QuotedPrint'=> '0.05', + 'Pod::Checker' => '1.41', + 'Pod::Find' => '0.24', + 'Pod::Functions' => '1.02', + 'Pod::Html' => '1.0501', + 'Pod::InputObjects' => '1.14', + 'Pod::LaTeX' => '0.55', + 'Pod::Man' => '1.37', + 'Pod::ParseLink' => '1.06', + 'Pod::ParseUtils' => '0.3', + 'Pod::Perldoc' => '3.10', + 'Pod::Perldoc::BaseTo' => undef, + 'Pod::Perldoc::GetOptsOO'=> undef, + 'Pod::Perldoc::ToChecker'=> undef, + 'Pod::Perldoc::ToMan' => undef, + 'Pod::Perldoc::ToNroff' => undef, + 'Pod::Perldoc::ToPod' => undef, + 'Pod::Perldoc::ToRtf' => undef, + 'Pod::Perldoc::ToText' => undef, + 'Pod::Perldoc::ToTk' => 'undef', + 'Pod::Perldoc::ToXml' => undef, + 'Pod::PlainText' => '2.01', + 'Pod::Text' => '2.21', + 'Pod::Text::Color' => '1.04', + 'Pod::Text::Overstrike' => '1.1', + 'Pod::Text::Termcap' => '1.11', + 'Pod::Usage' => '1.16', + 'SDBM_File' => '1.04', + 'Safe' => '2.10', + 'Scalar::Util' => '1.13', + 'SelfLoader' => '1.0904', + 'Shell' => '0.5', + 'Socket' => '1.76', + 'Storable' => '2.08', + 'Switch' => '2.10', + 'Symbol' => '1.05', + 'Sys::Hostname' => '1.11', + 'Sys::Syslog' => '0.04', + 'Term::ANSIColor' => '1.07', + 'Term::Cap' => '1.08', + 'Term::Complete' => '1.401', + 'Term::ReadLine' => '1.01', + 'Test' => '1.24', + 'Test::Builder' => '0.17', + 'Test::Harness' => '2.30', + 'Test::Harness::Straps' => '0.15', + 'Test::More' => '0.47', + 'Test::Simple' => '0.47', + 'Text::Abbrev' => '1.01', + 'Text::Balanced' => '1.95', + 'Text::Wrap' => '2001.09291', + 'Thread::Semaphore' => '2.01', + 'Tie::Array' => '1.03', + 'Tie::File' => '0.97', + 'Tie::RefHash' => '1.31', + 'Time::HiRes' => '1.51', + 'Time::Local' => '1.07', + 'UNIVERSAL' => '1.01', + 'Unicode' => '4.0.0', + 'Unicode::Collate' => '0.28', + 'Unicode::Normalize' => '0.23', + 'Unicode::UCD' => '0.21', + 'VMS::Filespec' => '1.11', + 'XS::APItest' => '0.02', + 'XSLoader' => '0.02', + 'attributes' => '0.06', + 'base' => '2.03', + 'bigint' => '0.04', + 'bignum' => '0.14', + 'bigrat' => '0.06', + 'bytes' => '1.01', + 'charnames' => '1.02', + 'diagnostics' => '1.11', + 'encoding' => '1.47', + 'fields' => '2.03', + 'filetest' => '1.01', + 'if' => '0.03', + 'lib' => '0.5565', + 'open' => '1.02', + 'overload' => '1.01', + 're' => '0.04', + 'sort' => '1.02', + 'strict' => '1.03', + 'threads' => '1.00', + 'threads::shared' => '0.91', + 'utf8' => '1.02', + 'vmsish' => '1.01', + 'warnings' => '1.03', + }, + removed => { + } }, - 5.008002 => { - 'AnyDBM_File' => '1.00', #AnyDBM_File.pm - 'Attribute::Handlers' => 0.78, #Attribute\Handlers.pm - 'attributes' => 0.06, #attributes.pm - 'attrs' => 1.01, #attrs.pm - 'AutoLoader' => '5.60', #AutoLoader.pm - 'AutoSplit' => 1.04, #AutoSplit.pm - 'autouse' => 1.03, #autouse.pm - 'B' => 1.02, #B.pm - 'B::Asmdata' => 1.01, #B\Asmdata.pm - 'B::Assembler' => 0.06, #B\Assembler.pm - 'B::Bblock' => 1.02, #B\Bblock.pm - 'B::Bytecode' => 1.01, #B\Bytecode.pm - 'B::C' => 1.02, #B\C.pm - 'B::CC' => '1.00', #B\CC.pm - 'B::Concise' => 0.56, #B\Concise.pm - 'B::Debug' => 1.01, #B\Debug.pm - 'B::Deparse' => 0.64, #B\Deparse.pm - 'B::Disassembler' => 1.03, #B\Disassembler.pm - 'B::Lint' => 1.02, #B\Lint.pm - 'B::Showlex' => '1.00', #B\Showlex.pm - 'B::Stackobj' => '1.00', #B\Stackobj.pm - 'B::Stash' => '1.00', #B\Stash.pm - 'B::Terse' => 1.02, #B\Terse.pm - 'B::Xref' => 1.01, #B\Xref.pm - 'base' => 2.03, #base.pm - 'Benchmark' => 1.051, #Benchmark.pm - 'bigint' => 0.04, #bigint.pm - 'bignum' => 0.14, #bignum.pm - 'bigrat' => 0.06, #bigrat.pm - 'blib' => 1.02, #blib.pm - 'ByteLoader' => 0.05, #ByteLoader.pm - 'bytes' => 1.01, #bytes.pm - 'Carp' => 1.01, #Carp.pm - 'Carp::Heavy' => 1.01, #Carp\Heavy.pm - 'CGI' => '3.00', #CGI.pm - 'CGI::Apache' => '1.00', #CGI\Apache.pm - 'CGI::Carp' => 1.26, #CGI\Carp.pm - 'CGI::Cookie' => 1.24, #CGI\Cookie.pm - 'CGI::Fast' => 1.041, #CGI\Fast.pm - 'CGI::Pretty' => '1.07_00', #CGI\Pretty.pm - 'CGI::Push' => 1.04, #CGI\Push.pm - 'CGI::Switch' => '1.00', #CGI\Switch.pm - 'CGI::Util' => 1.31, #CGI\Util.pm - 'charnames' => 1.02, #charnames.pm - 'Class::ISA' => 0.32, #Class\ISA.pm - 'Class::Struct' => 0.63, #Class\Struct.pm - 'Config' => undef, #Config.pm - 'constant' => 1.04, #constant.pm - 'CPAN' => '1.76_01', #CPAN.pm - 'CPAN::FirstTime' => '1.60 ', #CPAN\FirstTime.pm - 'CPAN::Nox' => 1.03, #CPAN\Nox.pm - 'Cwd' => 2.08, #Cwd.pm - 'Data::Dumper' => 2.121, #Data\Dumper.pm - 'DB' => '1.0', #DB.pm - 'Devel::DProf' => '20030813.00', #Devel\DProf.pm - 'Devel::Peek' => 1.01, #Devel\Peek.pm - 'Devel::PPPort' => 2.009, #Devel\PPPort.pm - 'Devel::SelfStubber' => 1.03, #Devel\SelfStubber.pm - 'diagnostics' => 1.11, #diagnostics.pm - 'Digest' => 1.02, #Digest.pm - 'Digest::MD5' => '2.30', #Digest\MD5.pm - 'DirHandle' => '1.00', #DirHandle.pm - 'Dumpvalue' => 1.11, #Dumpvalue.pm - 'DynaLoader' => 1.04, #DynaLoader.pm - 'Encode' => 1.9801, #Encode.pm - 'Encode::Alias' => 1.38, #Encode\Alias.pm - 'Encode::Byte' => 1.23, #Encode\Byte.pm - 'Encode::CJKConstants' => 1.02, #Encode\CJKConstants.pm - 'Encode::CN' => 1.24, #Encode\CN.pm - 'Encode::CN::HZ' => 1.05, #Encode\CN\HZ.pm - 'Encode::Config' => 1.07, #Encode\Config.pm - 'Encode::EBCDIC' => 1.21, #Encode\EBCDIC.pm - 'Encode::Encoder' => 0.07, #Encode\Encoder.pm - 'Encode::Encoding' => 1.33, #Encode\Encoding.pm - 'Encode::Guess' => 1.09, #Encode\Guess.pm - 'Encode::JP' => 1.25, #Encode\JP.pm - 'Encode::JP::H2Z' => 1.02, #Encode\JP\H2Z.pm - 'Encode::JP::JIS7' => 1.12, #Encode\JP\JIS7.pm - 'Encode::KR' => 1.23, #Encode\KR.pm - 'Encode::KR::2022_KR' => 1.06, #Encode\KR\2022_KR.pm - 'Encode::MIME::Header' => 1.09, #Encode\MIME\Header.pm - 'Encode::Symbol' => 1.22, #Encode\Symbol.pm - 'Encode::TW' => 1.26, #Encode\TW.pm - 'Encode::Unicode' => '1.40', #Encode\Unicode.pm - 'Encode::Unicode::UTF7' => 0.02, #Encode\Unicode\UTF7.pm - 'encoding' => 1.47, #encoding.pm - 'English' => 1.01, #English.pm - 'Env' => '1.00', #Env.pm - 'Errno' => '1.09_00', #Errno.pm - 'Exporter' => 5.567, #Exporter.pm - 'Exporter::Heavy' => 5.567, #Exporter\Heavy.pm - 'ExtUtils::Command' => 1.05, #ExtUtils\Command.pm - 'ExtUtils::Command::MM' => 0.03, #ExtUtils\Command\MM.pm - 'ExtUtils::Constant' => 0.14, #ExtUtils\Constant.pm - 'ExtUtils::Embed' => 1.250601, #ExtUtils\Embed.pm - 'ExtUtils::Install' => 1.32, #ExtUtils\Install.pm - 'ExtUtils::Installed' => 0.08, #ExtUtils\Installed.pm - 'ExtUtils::Liblist' => 1.01, #ExtUtils\Liblist.pm - 'ExtUtils::Liblist::Kid' => 1.3, #ExtUtils\Liblist\Kid.pm - 'ExtUtils::MakeMaker' => 6.17, #ExtUtils\MakeMaker.pm - 'ExtUtils::MakeMaker::bytes' => 0.01, #ExtUtils\MakeMaker\bytes.pm - 'ExtUtils::MakeMaker::vmsish' => 0.01, #ExtUtils\MakeMaker\vmsish.pm - 'ExtUtils::Manifest' => 1.42, #ExtUtils\Manifest.pm - 'ExtUtils::Miniperl' => undef, #ExtUtils\Miniperl.pm - 'ExtUtils::Mkbootstrap' => 1.15, #ExtUtils\Mkbootstrap.pm - 'ExtUtils::Mksymlists' => 1.19, #ExtUtils\Mksymlists.pm - 'ExtUtils::MM' => 0.04, #ExtUtils\MM.pm - 'ExtUtils::MM_Any' => 0.07, #ExtUtils\MM_Any.pm - 'ExtUtils::MM_BeOS' => 1.04, #ExtUtils\MM_BeOS.pm - 'ExtUtils::MM_Cygwin' => 1.06, #ExtUtils\MM_Cygwin.pm - 'ExtUtils::MM_DOS' => 0.02, #ExtUtils\MM_DOS.pm - 'ExtUtils::MM_MacOS' => 1.07, #ExtUtils\MM_MacOS.pm - 'ExtUtils::MM_NW5' => 2.06, #ExtUtils\MM_NW5.pm - 'ExtUtils::MM_OS2' => 1.04, #ExtUtils\MM_OS2.pm - 'ExtUtils::MM_Unix' => 1.42, #ExtUtils\MM_Unix.pm - 'ExtUtils::MM_UWIN' => 0.02, #ExtUtils\MM_UWIN.pm - 'ExtUtils::MM_VMS' => '5.70', #ExtUtils\MM_VMS.pm - 'ExtUtils::MM_Win32' => 1.09, #ExtUtils\MM_Win32.pm - 'ExtUtils::MM_Win95' => 0.03, #ExtUtils\MM_Win95.pm - 'ExtUtils::MY' => 0.01, #ExtUtils\MY.pm - 'ExtUtils::Packlist' => 0.04, #ExtUtils\Packlist.pm - 'ExtUtils::testlib' => 1.15, #ExtUtils\testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #vms\ext\XSSymSet.pm - 'Fatal' => 1.03, #Fatal.pm - 'Fcntl' => 1.05, #Fcntl.pm - 'fields' => 2.03, #fields.pm - 'File::Basename' => 2.72, #File\Basename.pm - 'File::CheckTree' => 4.2, #File\CheckTree.pm - 'File::Compare' => 1.1003, #File\Compare.pm - 'File::Copy' => 2.06, #File\Copy.pm - 'File::DosGlob' => '1.00', #File\DosGlob.pm - 'File::Find' => 1.05, #File\Find.pm - 'File::Glob' => 1.02, #File\Glob.pm - 'File::Path' => 1.06, #File\Path.pm - 'File::Spec' => 0.86, #File\Spec.pm - 'File::Spec::Cygwin' => 1.1, #File\Spec\Cygwin.pm - 'File::Spec::Epoc' => 1.1, #File\Spec\Epoc.pm - 'File::Spec::Functions' => 1.3, #File\Spec\Functions.pm - 'File::Spec::Mac' => 1.4, #File\Spec\Mac.pm - 'File::Spec::OS2' => 1.2, #File\Spec\OS2.pm - 'File::Spec::Unix' => 1.5, #File\Spec\Unix.pm - 'File::Spec::VMS' => 1.4, #File\Spec\VMS.pm - 'File::Spec::Win32' => 1.4, #File\Spec\Win32.pm - 'File::stat' => '1.00', #File\stat.pm - 'File::Temp' => 0.14, #File\Temp.pm - 'FileCache' => 1.03, #FileCache.pm - 'FileHandle' => 2.01, #FileHandle.pm - 'filetest' => 1.01, #filetest.pm - 'Filter::Simple' => 0.78, #Filter\Simple.pm - 'Filter::Util::Call' => 1.0601, #Filter\Util\Call.pm - 'FindBin' => 1.43, #FindBin.pm - 'GDBM_File' => '1.07', #ext\GDBM_File\GDBM_File.pm - 'Getopt::Long' => 2.34, #Getopt\Long.pm - 'Getopt::Std' => 1.04, #Getopt\Std.pm - 'Hash::Util' => 0.05, #Hash\Util.pm - 'I18N::Collate' => '1.00', #I18N\Collate.pm - 'I18N::Langinfo' => '0.02', #I18N\Langinfo.pm - 'I18N::LangTags' => 0.29, #I18N\LangTags.pm - 'I18N::LangTags::List' => 0.29, #I18N\LangTags\List.pm - 'if' => 0.03, #if.pm - 'integer' => '1.00', #integer.pm - 'IO' => 1.21, #IO.pm - 'IO::Dir' => 1.04, #IO\Dir.pm - 'IO::File' => '1.10', #IO\File.pm - 'IO::Handle' => 1.23, #IO\Handle.pm - 'IO::Pipe' => 1.122, #IO\Pipe.pm - 'IO::Poll' => 0.06, #IO\Poll.pm - 'IO::Seekable' => 1.09, #IO\Seekable.pm - 'IO::Select' => 1.16, #IO\Select.pm - 'IO::Socket' => 1.28, #IO\Socket.pm - 'IO::Socket::INET' => 1.27, #IO\Socket\INET.pm - 'IO::Socket::UNIX' => 1.21, #IO\Socket\UNIX.pm - 'IPC::Msg' => 1.02, #IPC\Msg.pm - 'IPC::Open2' => 1.01, #IPC\Open2.pm - 'IPC::Open3' => 1.0105, #IPC\Open3.pm - 'IPC::Semaphore' => 1.02, #IPC\Semaphore.pm - 'IPC::SysV' => 1.04, #IPC\SysV.pm - 'JNI' => '0.2', #jpl\JNI\JNI.pm - 'JPL::AutoLoader' => undef, #jpl\JPL\AutoLoader.pm - 'JPL::Class' => undef, #jpl\JPL\Class.pm - 'JPL::Compile' => undef, #jpl\JPL\Compile.pm - 'less' => 0.01, #less.pm - 'lib' => 0.5565, #lib.pm - 'List::Util' => 1.13, #List\Util.pm - 'locale' => '1.00', #locale.pm - 'Locale::Constants' => 2.01, #Locale\Constants.pm - 'Locale::Country' => 2.61, #Locale\Country.pm - 'Locale::Currency' => 2.21, #Locale\Currency.pm - 'Locale::Language' => 2.21, #Locale\Language.pm - 'Locale::Maketext' => 1.06, #Locale\Maketext.pm - 'Locale::Maketext::Guts' => undef, #Locale\Maketext\Guts.pm - 'Locale::Maketext::GutsLoader' => undef, #Locale\Maketext\GutsLoader.pm - 'Locale::Script' => 2.21, #Locale\Script.pm - 'Math::BigFloat' => '1.40', #Math\BigFloat.pm - 'Math::BigFloat::Trace' => 0.01, #Math\BigFloat\Trace.pm - 'Math::BigInt' => 1.66, #Math\BigInt.pm - 'Math::BigInt::Calc' => 0.36, #Math\BigInt\Calc.pm - 'Math::BigInt::Scalar' => 0.11, #Math\BigInt\Scalar.pm - 'Math::BigInt::Trace' => 0.01, #Math\BigInt\Trace.pm - 'Math::BigRat' => '0.10', #Math\BigRat.pm - 'Math::Complex' => 1.34, #Math\Complex.pm - 'Math::Trig' => 1.02, #Math\Trig.pm - 'Memoize' => 1.01, #Memoize.pm - 'Memoize::AnyDBM_File' => 0.65, #Memoize\AnyDBM_File.pm - 'Memoize::Expire' => '1.00', #Memoize\Expire.pm - 'Memoize::ExpireFile' => 1.01, #Memoize\ExpireFile.pm - 'Memoize::ExpireTest' => 0.65, #Memoize\ExpireTest.pm - 'Memoize::NDBM_File' => 0.65, #Memoize\NDBM_File.pm - 'Memoize::SDBM_File' => 0.65, #Memoize\SDBM_File.pm - 'Memoize::Storable' => 0.65, #Memoize\Storable.pm - 'MIME::Base64' => 2.21, #MIME\Base64.pm - 'MIME::QuotedPrint' => 2.21, #MIME\QuotedPrint.pm - 'NDBM_File' => '1.05', #ext\NDBM_File\NDBM_File.pm - 'Net::Cmd' => 2.24, #Net\Cmd.pm - 'Net::Config' => '1.10', #Net\Config.pm - 'Net::Domain' => 2.19, #Net\Domain.pm - 'Net::FTP' => 2.72, #Net\FTP.pm - 'Net::FTP::A' => 1.16, #Net\FTP\A.pm - 'Net::FTP::dataconn' => 0.11, #Net\FTP\dataconn.pm - 'Net::FTP::E' => 0.01, #Net\FTP\E.pm - 'Net::FTP::I' => 1.12, #Net\FTP\I.pm - 'Net::FTP::L' => 0.01, #Net\FTP\L.pm - 'Net::hostent' => 1.01, #Net\hostent.pm - 'Net::netent' => '1.00', #Net\netent.pm - 'Net::Netrc' => 2.12, #Net\Netrc.pm - 'Net::NNTP' => 2.22, #Net\NNTP.pm - 'Net::Ping' => 2.31, #Net\Ping.pm - 'Net::POP3' => 2.24, #Net\POP3.pm - 'Net::protoent' => '1.00', #Net\protoent.pm - 'Net::servent' => 1.01, #Net\servent.pm - 'Net::SMTP' => 2.26, #Net\SMTP.pm - 'Net::Time' => 2.09, #Net\Time.pm - 'NEXT' => '0.60', #NEXT.pm - 'O' => '1.00', #O.pm - 'ODBM_File' => '1.04', #ext\ODBM_File\ODBM_File.pm - 'Opcode' => 1.05, #Opcode.pm - 'open' => 1.02, #open.pm - 'ops' => '1.00', #ops.pm - 'OS2::DLL' => '1.01', #os2\OS2\REXX\DLL\DLL.pm - 'OS2::ExtAttr' => '0.02', #os2\OS2\ExtAttr\ExtAttr.pm - 'OS2::PrfDB' => '0.03', #os2\OS2\PrfDB\PrfDB.pm - 'OS2::Process' => '1.01', #os2\OS2\Process\Process.pm - 'OS2::REXX' => '1.02', #os2\OS2\REXX\REXX.pm - 'overload' => 1.01, #overload.pm - 'PerlIO' => 1.02, #PerlIO.pm - 'PerlIO::encoding' => 0.07, #PerlIO\encoding.pm - 'PerlIO::scalar' => 0.02, #PerlIO\scalar.pm - 'PerlIO::via' => 0.02, #PerlIO\via.pm - 'PerlIO::via::QuotedPrint' => 0.05, #PerlIO\via\QuotedPrint.pm - 'Pod::Checker' => 1.41, #Pod\Checker.pm - 'Pod::Find' => 0.24, #Pod\Find.pm - 'Pod::Functions' => 1.02, #Pod\Functions.pm - 'Pod::Html' => 1.0501, #Pod\Html.pm - 'Pod::InputObjects' => 1.14, #Pod\InputObjects.pm - 'Pod::LaTeX' => 0.55, #Pod\LaTeX.pm - 'Pod::Man' => 1.37, #Pod\Man.pm - 'Pod::ParseLink' => 1.06, #Pod\ParseLink.pm - 'Pod::Parser' => 1.13, #Pod\Parser.pm - 'Pod::ParseUtils' => 0.3, #Pod\ParseUtils.pm - 'Pod::Perldoc' => 3.11, #Pod\Perldoc.pm - 'Pod::Perldoc::BaseTo' => undef, #Pod\Perldoc\BaseTo.pm - 'Pod::Perldoc::GetOptsOO' => undef, #Pod\Perldoc\GetOptsOO.pm - 'Pod::Perldoc::ToChecker' => undef, #Pod\Perldoc\ToChecker.pm - 'Pod::Perldoc::ToMan' => undef, #Pod\Perldoc\ToMan.pm - 'Pod::Perldoc::ToNroff' => undef, #Pod\Perldoc\ToNroff.pm - 'Pod::Perldoc::ToPod' => undef, #Pod\Perldoc\ToPod.pm - 'Pod::Perldoc::ToRtf' => undef, #Pod\Perldoc\ToRtf.pm - 'Pod::Perldoc::ToText' => undef, #Pod\Perldoc\ToText.pm - 'Pod::Perldoc::ToTk' => undef, #Pod\Perldoc\ToTk.pm - 'Pod::Perldoc::ToXml' => undef, #Pod\Perldoc\ToXml.pm - 'Pod::Plainer' => 0.01, #Pod\Plainer.pm - 'Pod::PlainText' => 2.01, #Pod\PlainText.pm - 'Pod::Select' => 1.13, #Pod\Select.pm - 'Pod::Text' => 2.21, #Pod\Text.pm - 'Pod::Text::Color' => 1.04, #Pod\Text\Color.pm - 'Pod::Text::Overstrike' => 1.1, #Pod\Text\Overstrike.pm - 'Pod::Text::Termcap' => 1.11, #Pod\Text\Termcap.pm - 'Pod::Usage' => 1.16, #Pod\Usage.pm - 'POSIX' => 1.06, #POSIX.pm - 're' => 0.04, #re.pm - 'Safe' => '2.10', #Safe.pm - 'Scalar::Util' => 1.13, #Scalar\Util.pm - 'SDBM_File' => 1.04, #SDBM_File.pm - 'Search::Dict' => 1.02, #Search\Dict.pm - 'SelectSaver' => '1.00', #SelectSaver.pm - 'SelfLoader' => 1.0904, #SelfLoader.pm - 'Shell' => 0.5, #Shell.pm - 'sigtrap' => 1.02, #sigtrap.pm - 'Socket' => 1.76, #Socket.pm - 'sort' => 1.02, #sort.pm - 'Storable' => 2.08, #Storable.pm - 'strict' => 1.03, #strict.pm - 'subs' => '1.00', #subs.pm - 'Switch' => '2.10', #Switch.pm - 'Symbol' => 1.05, #Symbol.pm - 'Sys::Hostname' => 1.11, #Sys\Hostname.pm - 'Sys::Syslog' => '0.04', #ext\Sys\Syslog\Syslog.pm - 'Term::ANSIColor' => 1.07, #Term\ANSIColor.pm - 'Term::Cap' => 1.08, #Term\Cap.pm - 'Term::Complete' => 1.401, #Term\Complete.pm - 'Term::ReadLine' => 1.01, #Term\ReadLine.pm - 'Test' => 1.24, #Test.pm - 'Test::Builder' => 0.17, #Test\Builder.pm - 'Test::Harness' => '2.30', #Test\Harness.pm - 'Test::Harness::Assert' => 0.01, #Test\Harness\Assert.pm - 'Test::Harness::Iterator' => 0.01, #Test\Harness\Iterator.pm - 'Test::Harness::Straps' => 0.15, #Test\Harness\Straps.pm - 'Test::More' => 0.47, #Test\More.pm - 'Test::Simple' => 0.47, #Test\Simple.pm - 'Text::Abbrev' => 1.01, #Text\Abbrev.pm - 'Text::Balanced' => 1.95, #Text\Balanced.pm - 'Text::ParseWords' => 3.21, #Text\ParseWords.pm - 'Text::Soundex' => 1.01, #Text\Soundex.pm - 'Text::Tabs' => 98.112801, #Text\Tabs.pm - 'Text::Wrap' => 2001.09291, #Text\Wrap.pm - 'Thread' => '2.00', #Thread.pm - 'Thread::Queue' => '2.00', #Thread\Queue.pm - 'Thread::Semaphore' => 2.01, #Thread\Semaphore.pm - 'Thread::Signal' => '1.00', #Thread\Signal.pm - 'Thread::Specific' => '1.00', #Thread\Specific.pm - 'threads' => '1.00', #threads.pm - 'threads::shared' => 0.91, #threads\shared.pm - 'Tie::Array' => 1.03, #Tie\Array.pm - 'Tie::File' => 0.97, #Tie\File.pm - 'Tie::Handle' => 4.1, #Tie\Handle.pm - 'Tie::Hash' => '1.00', #Tie\Hash.pm - 'Tie::Memoize' => '1.0', #Tie\Memoize.pm - 'Tie::RefHash' => 1.31, #Tie\RefHash.pm - 'Tie::Scalar' => '1.00', #Tie\Scalar.pm - 'Tie::SubstrHash' => '1.00', #Tie\SubstrHash.pm - 'Time::gmtime' => 1.02, #Time\gmtime.pm - 'Time::HiRes' => 1.52, #Time\HiRes.pm - 'Time::Local' => 1.07, #Time\Local.pm - 'Time::localtime' => 1.02, #Time\localtime.pm - 'Time::tm' => '1.00', #Time\tm.pm - 'Unicode' => '4.0.0', # lib/unicore/version - 'Unicode::Collate' => '0.30', #Unicode\Collate.pm - 'Unicode::Normalize' => 0.25, #Unicode\Normalize.pm - 'Unicode::UCD' => 0.21, #Unicode\UCD.pm - 'UNIVERSAL' => 1.01, #UNIVERSAL.pm - 'User::grent' => '1.00', #User\grent.pm - 'User::pwent' => '1.00', #User\pwent.pm - 'utf8' => 1.02, #utf8.pm - 'vars' => 1.01, #vars.pm - 'VMS::DCLsym' => '1.02', #vms\ext\DCLsym\DCLsym.pm - 'VMS::Filespec' => '1.11', #vms\ext\Filespec.pm - 'VMS::Stdio' => '2.3', #vms\ext\Stdio\Stdio.pm - 'vmsish' => 1.01, #vmsish.pm - 'warnings' => 1.03, #warnings.pm - 'warnings::register' => '1.00', #warnings\register.pm - 'XS::APItest' => 0.02, #XS\APItest.pm - 'XS::Typemap' => 0.01, #XS\Typemap.pm - 'XSLoader' => 0.02, #XSLoader.pm + delta_from => 5.008001, + changed => { + 'DB_File' => '1.807', + 'Devel::PPPort' => '2.009', + 'Digest::MD5' => '2.30', + 'I18N::LangTags' => '0.29', + 'I18N::LangTags::List' => '0.29', + 'MIME::Base64' => '2.21', + 'MIME::QuotedPrint' => '2.21', + 'Net::Domain' => '2.19', + 'Net::FTP' => '2.72', + 'Pod::Perldoc' => '3.11', + 'Pod::Perldoc::ToTk' => undef, + 'Time::HiRes' => '1.52', + 'Unicode::Collate' => '0.30', + 'Unicode::Normalize' => '0.25', + }, + removed => { + } }, - 5.008003 => { - 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm - 'Attribute::Handlers' => '0.78', #lib/Attribute/Handlers.pm - 'attributes' => '0.06', #lib/attributes.pm - 'attrs' => '1.01', #lib/attrs.pm - 'AutoLoader' => '5.60', #lib/AutoLoader.pm - 'AutoSplit' => '1.04', #lib/AutoSplit.pm - 'autouse' => '1.03', #lib/autouse.pm - 'B' => '1.02', #lib/B.pm - 'base' => '2.04', #lib/base.pm - 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm - 'B::Assembler' => '0.06', #lib/B/Assembler.pm - 'B::Bblock' => '1.02', #lib/B/Bblock.pm - 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm - 'B::C' => '1.02', #lib/B/C.pm - 'B::CC' => '1.00', #lib/B/CC.pm - 'B::Concise' => '0.56', #lib/B/Concise.pm - 'B::Debug' => '1.01', #lib/B/Debug.pm - 'B::Deparse' => '0.64', #lib/B/Deparse.pm - 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm - 'Benchmark' => '1.052', #lib/Benchmark.pm - 'bigint' => '0.04', #lib/bigint.pm - 'bignum' => '0.14', #lib/bignum.pm - 'bigrat' => '0.06', #lib/bigrat.pm - 'blib' => '1.02', #lib/blib.pm - 'B::Lint' => '1.02', #lib/B/Lint.pm - 'B::Showlex' => '1.00', #lib/B/Showlex.pm - 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm - 'B::Stash' => '1.00', #lib/B/Stash.pm - 'B::Terse' => '1.02', #lib/B/Terse.pm - 'B::Xref' => '1.01', #lib/B/Xref.pm - 'ByteLoader' => '0.05', #lib/ByteLoader.pm - 'bytes' => '1.01', #lib/bytes.pm - 'Carp' => '1.01', #lib/Carp.pm - 'Carp::Heavy' => '1.01', #lib/Carp/Heavy.pm - 'CGI' => '3.01', #lib/CGI.pm - 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm - 'CGI::Carp' => '1.27', #lib/CGI/Carp.pm - 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm - 'CGI::Fast' => '1.05', #lib/CGI/Fast.pm - 'CGI::Pretty' => '1.08', #lib/CGI/Pretty.pm - 'CGI::Push' => '1.04', #lib/CGI/Push.pm - 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm - 'CGI::Util' => '1.4', #lib/CGI/Util.pm - 'charnames' => '1.02', #lib/charnames.pm - 'Class::ISA' => '0.32', #lib/Class/ISA.pm - 'Class::Struct' => '0.63', #lib/Class/Struct.pm - 'Config' => undef, #lib/Config.pm - 'constant' => '1.04', #lib/constant.pm - 'CPAN' => '1.76_01', #lib/CPAN.pm - 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm - 'Cwd' => '2.12', #lib/Cwd.pm - 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm - 'DB' => '1.0', #lib/DB.pm - 'DB_File' => '1.808', #lib/DB_File.pm - 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm - 'Devel::Peek' => '1.01', #lib/Devel/Peek.pm - 'Devel::PPPort' => '2.011', #lib/Devel/PPPort.pm - 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm - 'diagnostics' => '1.12', #lib/diagnostics.pm - 'Digest' => '1.05', #lib/Digest.pm - 'Digest::base' => '1.00', #lib/Digest/base.pm - 'Digest::MD5' => '2.33', #lib/Digest/MD5.pm - 'DirHandle' => '1.00', #lib/DirHandle.pm - 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm - 'DynaLoader' => '1.04', #lib/DynaLoader.pm - 'Encode' => '1.99', #lib/Encode.pm - 'Encode::Alias' => '1.38', #lib/Encode/Alias.pm - 'Encode::Byte' => '1.23', #lib/Encode/Byte.pm - 'Encode::CJKConstants' => '1.02', #lib/Encode/CJKConstants.pm - 'Encode::CN' => '1.24', #lib/Encode/CN.pm - 'Encode::CN::HZ' => '1.05', #lib/Encode/CN/HZ.pm - 'Encode::Config' => '1.07', #lib/Encode/Config.pm - 'Encode::EBCDIC' => '1.21', #lib/Encode/EBCDIC.pm - 'Encode::Encoder' => '0.07', #lib/Encode/Encoder.pm - 'Encode::Encoding' => '1.33', #lib/Encode/Encoding.pm - 'Encode::Guess' => '1.09', #lib/Encode/Guess.pm - 'Encode::JP' => '1.25', #lib/Encode/JP.pm - 'Encode::JP::H2Z' => '1.02', #lib/Encode/JP/H2Z.pm - 'Encode::JP::JIS7' => '1.12', #lib/Encode/JP/JIS7.pm - 'Encode::KR' => '1.23', #lib/Encode/KR.pm - 'Encode::KR::2022_KR' => '1.06', #lib/Encode/KR/2022_KR.pm - 'Encode::MIME::Header' => '1.09', #lib/Encode/MIME/Header.pm - 'Encode::Symbol' => '1.22', #lib/Encode/Symbol.pm - 'Encode::TW' => '1.26', #lib/Encode/TW.pm - 'Encode::Unicode' => '1.40', #lib/Encode/Unicode.pm - 'Encode::Unicode::UTF7' => '0.02', #lib/Encode/Unicode/UTF7.pm - 'encoding' => '1.48', #lib/encoding.pm - 'English' => '1.01', #lib/English.pm - 'Env' => '1.00', #lib/Env.pm - 'Errno' => '1.09_00', #lib/Errno.pm - 'Exporter' => '5.57', #lib/Exporter.pm - 'Exporter::Heavy' => '5.567', #lib/Exporter/Heavy.pm - 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm - 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm - 'ExtUtils::Constant' => '0.14', #lib/ExtUtils/Constant.pm - 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm - 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm - 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm - 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm - 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm - 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm - 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm - 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm - 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm - 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm - 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm - 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm - 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm - 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm - 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm - 'ExtUtils::MM_NW5' => '2.06', #lib/ExtUtils/MM_NW5.pm - 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm - 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm - 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm - 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm - 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm - 'Fatal' => '1.03', #lib/Fatal.pm - 'Fcntl' => '1.05', #lib/Fcntl.pm - 'fields' => '2.03', #lib/fields.pm - 'File::Basename' => '2.72', #lib/File/Basename.pm - 'FileCache' => '1.03', #lib/FileCache.pm - 'File::CheckTree' => '4.3', #lib/File/CheckTree.pm - 'File::Compare' => '1.1003', #lib/File/Compare.pm - 'File::Copy' => '2.07', #lib/File/Copy.pm - 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm - 'File::Find' => '1.06', #lib/File/Find.pm - 'File::Glob' => '1.02', #lib/File/Glob.pm - 'FileHandle' => '2.01', #lib/FileHandle.pm - 'File::Path' => '1.06', #lib/File/Path.pm - 'File::Spec' => '0.87', #lib/File/Spec.pm - 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm - 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm - 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm - 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm - 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm - 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm - 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm - 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm - 'File::stat' => '1.00', #lib/File/stat.pm - 'File::Temp' => '0.14', #lib/File/Temp.pm - 'filetest' => '1.01', #lib/filetest.pm - 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm - 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm - 'FindBin' => '1.44', #lib/FindBin.pm - 'GDBM_File' => '1.07', #lib/GDBM_File.pm - 'Getopt::Long' => '2.34', #lib/Getopt/Long.pm - 'Getopt::Std' => '1.05', #lib/Getopt/Std.pm - 'Hash::Util' => '0.05', #lib/Hash/Util.pm - 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm - 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm - 'I18N::LangTags' => '0.29', #lib/I18N/LangTags.pm - 'I18N::LangTags::List' => '0.29', #lib/I18N/LangTags/List.pm - 'if' => '0.03', #lib/if.pm - 'integer' => '1.00', #lib/integer.pm - 'IO' => '1.21', #lib/IO.pm - 'IO::Dir' => '1.04', #lib/IO/Dir.pm - 'IO::File' => '1.10', #lib/IO/File.pm - 'IO::Handle' => '1.23', #lib/IO/Handle.pm - 'IO::Pipe' => '1.122', #lib/IO/Pipe.pm - 'IO::Poll' => '0.06', #lib/IO/Poll.pm - 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm - 'IO::Select' => '1.16', #lib/IO/Select.pm - 'IO::Socket' => '1.28', #lib/IO/Socket.pm - 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm - 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm - 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm - 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm - 'IPC::Open3' => '1.0105', #lib/IPC/Open3.pm - 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm - 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm - 'JNI' => '0.2', #jpl/JNI/JNI.pm - 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm - 'JPL::Class' => undef, #jpl/JPL/Class.pm - 'JPL::Compile' => undef, #jpl/JPL/Compile.pm - 'less' => '0.01', #lib/less.pm - 'lib' => '0.5565', #lib/lib.pm - 'List::Util' => '1.13', #lib/List/Util.pm - 'locale' => '1.00', #lib/locale.pm - 'Locale::Constants' => '2.01', #lib/Locale/Constants.pm - 'Locale::Country' => '2.61', #lib/Locale/Country.pm - 'Locale::Currency' => '2.21', #lib/Locale/Currency.pm - 'Locale::Language' => '2.21', #lib/Locale/Language.pm - 'Locale::Maketext' => '1.06', #lib/Locale/Maketext.pm - 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm - 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm - 'Locale::Script' => '2.21', #lib/Locale/Script.pm - 'Math::BigFloat' => '1.42', #lib/Math/BigFloat.pm - 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm - 'Math::BigInt' => '1.68', #lib/Math/BigInt.pm - 'Math::BigInt::Calc' => '0.38', #lib/Math/BigInt/Calc.pm - 'Math::BigInt::CalcEmu' => '0.02', #lib/Math/BigInt/CalcEmu.pm - 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm - 'Math::BigRat' => '0.10', #lib/Math/BigRat.pm - 'Math::Complex' => '1.34', #lib/Math/Complex.pm - 'Math::Trig' => '1.02', #lib/Math/Trig.pm - 'Memoize' => '1.01', #lib/Memoize.pm - 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm - 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm - 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm - 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm - 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm - 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm - 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm - 'MIME::Base64' => '2.21', #lib/MIME/Base64.pm - 'MIME::QuotedPrint' => '2.21', #lib/MIME/QuotedPrint.pm - 'NDBM_File' => '1.05', #lib/NDBM_File.pm - 'Net::Cmd' => '2.24', #lib/Net/Cmd.pm - 'Net::Config' => '1.10', #lib/Net/Config.pm - 'Net::Domain' => '2.19', #lib/Net/Domain.pm - 'Net::FTP' => '2.72', #lib/Net/FTP.pm - 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm - 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm - 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm - 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm - 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm - 'Net::hostent' => '1.01', #lib/Net/hostent.pm - 'Net::netent' => '1.00', #lib/Net/netent.pm - 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm - 'Net::NNTP' => '2.22', #lib/Net/NNTP.pm - 'Net::Ping' => '2.31', #lib/Net/Ping.pm - 'Net::POP3' => '2.24', #lib/Net/POP3.pm - 'Net::protoent' => '1.00', #lib/Net/protoent.pm - 'Net::servent' => '1.01', #lib/Net/servent.pm - 'Net::SMTP' => '2.26', #lib/Net/SMTP.pm - 'Net::Time' => '2.09', #lib/Net/Time.pm - 'NEXT' => '0.60', #lib/NEXT.pm - 'O' => '1.00', #lib/O.pm - 'ODBM_File' => '1.04', #ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.05', #lib/Opcode.pm - 'open' => '1.02', #lib/open.pm - 'ops' => '1.00', #lib/ops.pm - 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm - 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm - 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm - 'overload' => '1.01', #lib/overload.pm - 'PerlIO' => '1.03', #lib/PerlIO.pm - 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm - 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm - 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm - 'PerlIO::via::QuotedPrint'=> '0.06', #lib/PerlIO/via/QuotedPrint.pm - 'Pod::Checker' => '1.41', #lib/Pod/Checker.pm - 'Pod::Find' => '0.24', #lib/Pod/Find.pm - 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm - 'Pod::Html' => '1.0502', #lib/Pod/Html.pm - 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm - 'Pod::LaTeX' => '0.55', #lib/Pod/LaTeX.pm - 'Pod::Man' => '1.37', #lib/Pod/Man.pm - 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm - 'Pod::Parser' => '1.14', #lib/Pod/Parser.pm - 'Pod::ParseUtils' => '0.3', #lib/Pod/ParseUtils.pm - 'Pod::Perldoc' => '3.12', #lib/Pod/Perldoc.pm - 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm - 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm - 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm - 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm - 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm - 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm - 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm - 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm - 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm - 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm - 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm - 'Pod::PlainText' => '2.02', #lib/Pod/PlainText.pm - 'Pod::Select' => '1.13', #lib/Pod/Select.pm - 'Pod::Text' => '2.21', #lib/Pod/Text.pm - 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm - 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm - 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm - 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm - 'POSIX' => '1.07', #lib/POSIX.pm - 're' => '0.04', #lib/re.pm - 'Safe' => '2.10', #lib/Safe.pm - 'Scalar::Util' => '1.13', #lib/Scalar/Util.pm - 'SDBM_File' => '1.04', #lib/SDBM_File.pm - 'Search::Dict' => '1.02', #lib/Search/Dict.pm - 'SelectSaver' => '1.00', #lib/SelectSaver.pm - 'SelfLoader' => '1.0904', #lib/SelfLoader.pm - 'Shell' => '0.5', #lib/Shell.pm - 'sigtrap' => '1.02', #lib/sigtrap.pm - 'Socket' => '1.76', #lib/Socket.pm - 'sort' => '1.02', #lib/sort.pm - 'Storable' => '2.09', #lib/Storable.pm - 'strict' => '1.03', #lib/strict.pm - 'subs' => '1.00', #lib/subs.pm - 'Switch' => '2.10', #lib/Switch.pm - 'Symbol' => '1.05', #lib/Symbol.pm - 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm - 'Sys::Syslog' => '0.04', #lib/Sys/Syslog.pm - 'Term::ANSIColor' => '1.07', #lib/Term/ANSIColor.pm - 'Term::Cap' => '1.08', #lib/Term/Cap.pm - 'Term::Complete' => '1.401', #lib/Term/Complete.pm - 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm - 'Test' => '1.24', #lib/Test.pm - 'Test::Builder' => '0.17', #lib/Test/Builder.pm - 'Test::Harness' => '2.40', #lib/Test/Harness.pm - 'Test::Harness::Assert' => '0.02', #lib/Test/Harness/Assert.pm - 'Test::Harness::Iterator'=> '0.02', #lib/Test/Harness/Iterator.pm - 'Test::Harness::Straps' => '0.19', #lib/Test/Harness/Straps.pm - 'Test::More' => '0.47', #lib/Test/More.pm - 'Test::Simple' => '0.47', #lib/Test/Simple.pm - 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm - 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm - 'Text::ParseWords' => '3.21', #lib/Text/ParseWords.pm - 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm - 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm - 'Text::Wrap' => '2001.09291', #lib/Text/Wrap.pm - 'Thread' => '2.00', #lib/Thread.pm - 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm - 'threads' => '1.01', #lib/threads.pm - 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm - 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm - 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm - 'threads::shared' => '0.92', #lib/threads/shared.pm - 'Tie::Array' => '1.03', #lib/Tie/Array.pm - 'Tie::File' => '0.97', #lib/Tie/File.pm - 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm - 'Tie::Hash' => '1.01', #lib/Tie/Hash.pm - 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm - 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm - 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm - 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm - 'Time::HiRes' => '1.52', #lib/Time/HiRes.pm - 'Time::Local' => '1.07', #lib/Time/Local.pm - 'Time::localtime' => '1.02', #lib/Time/localtime.pm - 'Time::tm' => '1.00', #lib/Time/tm.pm - 'Unicode' => '4.0.0', # lib/unicore/version - 'Unicode::Collate' => '0.33', #lib/Unicode/Collate.pm - 'Unicode::Normalize' => '0.28', #lib/Unicode/Normalize.pm - 'Unicode::UCD' => '0.21', #lib/Unicode/UCD.pm - 'UNIVERSAL' => '1.01', #lib/UNIVERSAL.pm - 'User::grent' => '1.00', #lib/User/grent.pm - 'User::pwent' => '1.00', #lib/User/pwent.pm - 'utf8' => '1.02', #lib/utf8.pm - 'vars' => '1.01', #lib/vars.pm - 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm - 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm - 'vmsish' => '1.01', #lib/vmsish.pm - 'warnings' => '1.03', #lib/warnings.pm - 'warnings::register' => '1.00', #lib/warnings/register.pm - 'XS::APItest' => '0.03', #lib/XS/APItest.pm - 'XSLoader' => '0.02', #lib/XSLoader.pm - 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm - }, - - 5.009 => { - 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm - 'assertions' => '0.01', #lib/assertions.pm - 'assertions::activate' => '0.01', #lib/assertions/activate.pm - 'Attribute::Handlers' => '0.78', #lib/Attribute/Handlers.pm - 'attributes' => '0.06', #lib/attributes.pm - 'attrs' => '1.01', #lib/attrs.pm - 'AutoLoader' => '5.60', #lib/AutoLoader.pm - 'AutoSplit' => '1.04', #lib/AutoSplit.pm - 'autouse' => '1.03', #lib/autouse.pm - 'B' => '1.03', #lib/B.pm - 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm - 'B::Assembler' => '0.06', #lib/B/Assembler.pm - 'B::Bblock' => '1.02', #lib/B/Bblock.pm - 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm - 'B::C' => '1.03', #lib/B/C.pm - 'B::CC' => '1.00', #lib/B/CC.pm - 'B::Concise' => '0.57', #lib/B/Concise.pm - 'B::Debug' => '1.01', #lib/B/Debug.pm - 'B::Deparse' => '0.65', #lib/B/Deparse.pm - 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm - 'B::Lint' => '1.02', #lib/B/Lint.pm - 'B::Showlex' => '1.00', #lib/B/Showlex.pm - 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm - 'B::Stash' => '1.00', #lib/B/Stash.pm - 'B::Terse' => '1.02', #lib/B/Terse.pm - 'B::Xref' => '1.01', #lib/B/Xref.pm - 'base' => '2.03', #lib/base.pm - 'Benchmark' => '1.051', #lib/Benchmark.pm - 'bigint' => '0.04', #lib/bigint.pm - 'bignum' => '0.14', #lib/bignum.pm - 'bigrat' => '0.06', #lib/bigrat.pm - 'blib' => '1.02', #lib/blib.pm - 'ByteLoader' => '0.05', #lib/ByteLoader.pm - 'bytes' => '1.01', #lib/bytes.pm - 'Carp' => '1.01', #lib/Carp.pm - 'Carp::Heavy' => '1.01', #lib/Carp/Heavy.pm - 'CGI' => '3.00', #lib/CGI.pm - 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm - 'CGI::Carp' => '1.26', #lib/CGI/Carp.pm - 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm - 'CGI::Fast' => '1.041', #lib/CGI/Fast.pm - 'CGI::Pretty' => '1.07_00', #lib/CGI/Pretty.pm - 'CGI::Push' => '1.04', #lib/CGI/Push.pm - 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm - 'CGI::Util' => '1.31', #lib/CGI/Util.pm - 'charnames' => '1.02', #lib/charnames.pm - 'Class::ISA' => '0.32', #lib/Class/ISA.pm - 'Class::Struct' => '0.63', #lib/Class/Struct.pm - 'Config' => undef, #lib/Config.pm - 'constant' => '1.04', #lib/constant.pm - 'CPAN' => '1.76_01', #lib/CPAN.pm - 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm - 'Cwd' => '2.08', #lib/Cwd.pm - 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm - 'DB' => '1.0', #lib/DB.pm - 'DB_File' => '1.806', #lib/DB_File.pm - 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm - 'Devel::Peek' => '1.01', #lib/Devel/Peek.pm - 'Devel::PPPort' => '2.008', #lib/Devel/PPPort.pm - 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm - 'diagnostics' => '1.11', #lib/diagnostics.pm - 'Digest' => '1.02', #lib/Digest.pm - 'Digest::MD5' => '2.30', #lib/Digest/MD5.pm - 'DirHandle' => '1.00', #lib/DirHandle.pm - 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm - 'DynaLoader' => '1.04', #lib/DynaLoader.pm - 'Encode' => '1.9801', #lib/Encode.pm - 'Encode::Alias' => '1.38', #lib/Encode/Alias.pm - 'Encode::Byte' => '1.23', #lib/Encode/Byte.pm - 'Encode::CJKConstants' => '1.02', #lib/Encode/CJKConstants.pm - 'Encode::CN' => '1.24', #lib/Encode/CN.pm - 'Encode::CN::HZ' => '1.05', #lib/Encode/CN/HZ.pm - 'Encode::Config' => '1.07', #lib/Encode/Config.pm - 'Encode::EBCDIC' => '1.21', #lib/Encode/EBCDIC.pm - 'Encode::Encoder' => '0.07', #lib/Encode/Encoder.pm - 'Encode::Encoding' => '1.33', #lib/Encode/Encoding.pm - 'Encode::Guess' => '1.09', #lib/Encode/Guess.pm - 'Encode::JP' => '1.25', #lib/Encode/JP.pm - 'Encode::JP::H2Z' => '1.02', #lib/Encode/JP/H2Z.pm - 'Encode::JP::JIS7' => '1.12', #lib/Encode/JP/JIS7.pm - 'Encode::KR' => '1.23', #lib/Encode/KR.pm - 'Encode::KR::2022_KR' => '1.06', #lib/Encode/KR/2022_KR.pm - 'Encode::MIME::Header' => '1.09', #lib/Encode/MIME/Header.pm - 'Encode::Symbol' => '1.22', #lib/Encode/Symbol.pm - 'Encode::TW' => '1.26', #lib/Encode/TW.pm - 'Encode::Unicode' => '1.40', #lib/Encode/Unicode.pm - 'Encode::Unicode::UTF7' => '0.02', #lib/Encode/Unicode/UTF7.pm - 'encoding' => '1.47', #lib/encoding.pm - 'English' => '1.02', #lib/English.pm - 'Env' => '1.00', #lib/Env.pm - 'Errno' => '1.09_00', #lib/Errno.pm - 'Exporter' => '5.567', #lib/Exporter.pm - 'Exporter::Heavy' => '5.567', #lib/Exporter/Heavy.pm - 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm - 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm - 'ExtUtils::Constant' => '0.14', #lib/ExtUtils/Constant.pm - 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm - 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm - 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm - 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm - 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm - 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm - 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm - 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm - 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm - 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm - 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm - 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm - 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm - 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm - 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm - 'ExtUtils::MM_NW5' => '2.06', #lib/ExtUtils/MM_NW5.pm - 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm - 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm - 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm - 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm - 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm - 'Fatal' => '1.04', #lib/Fatal.pm - 'Fcntl' => '1.05', #lib/Fcntl.pm - 'fields' => '2.03', #lib/fields.pm - 'File::Basename' => '2.72', #lib/File/Basename.pm - 'File::CheckTree' => '4.2', #lib/File/CheckTree.pm - 'File::Compare' => '1.1003', #lib/File/Compare.pm - 'File::Copy' => '2.06', #lib/File/Copy.pm - 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm - 'File::Find' => '1.05', #lib/File/Find.pm - 'File::Glob' => '1.02', #lib/File/Glob.pm - 'File::Path' => '1.06', #lib/File/Path.pm - 'File::Spec' => '0.86', #lib/File/Spec.pm - 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm - 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm - 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm - 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm - 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm - 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm - 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm - 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm - 'File::stat' => '1.00', #lib/File/stat.pm - 'File::Temp' => '0.14', #lib/File/Temp.pm - 'FileCache' => '1.03', #lib/FileCache.pm - 'FileHandle' => '2.01', #lib/FileHandle.pm - 'filetest' => '1.01', #lib/filetest.pm - 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm - 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm - 'FindBin' => '1.43', #lib/FindBin.pm - 'GDBM_File' => '1.07', #ext/GDBM_File/GDBM_File.pm - 'Getopt::Long' => '2.34', #lib/Getopt/Long.pm - 'Getopt::Std' => '1.04', #lib/Getopt/Std.pm - 'Hash::Util' => '0.05', #lib/Hash/Util.pm - 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm - 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm - 'I18N::LangTags' => '0.29', #lib/I18N/LangTags.pm - 'I18N::LangTags::List' => '0.29', #lib/I18N/LangTags/List.pm - 'if' => '0.03', #lib/if.pm - 'integer' => '1.00', #lib/integer.pm - 'IO' => '1.21', #lib/IO.pm - 'IO::Dir' => '1.04', #lib/IO/Dir.pm - 'IO::File' => '1.10', #lib/IO/File.pm - 'IO::Handle' => '1.23', #lib/IO/Handle.pm - 'IO::Pipe' => '1.122', #lib/IO/Pipe.pm - 'IO::Poll' => '0.06', #lib/IO/Poll.pm - 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm - 'IO::Select' => '1.16', #lib/IO/Select.pm - 'IO::Socket' => '1.28', #lib/IO/Socket.pm - 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm - 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm - 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm - 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm - 'IPC::Open3' => '1.0105', #lib/IPC/Open3.pm - 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm - 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm - 'JNI' => '0.2', #jpl/JNI/JNI.pm - 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm - 'JPL::Class' => undef, #jpl/JPL/Class.pm - 'JPL::Compile' => undef, #jpl/JPL/Compile.pm - 'less' => '0.01', #lib/less.pm - 'lib' => '0.5565', #lib/lib.pm - 'List::Util' => '1.13', #lib/List/Util.pm - 'locale' => '1.00', #lib/locale.pm - 'Locale::Constants' => '2.01', #lib/Locale/Constants.pm - 'Locale::Country' => '2.61', #lib/Locale/Country.pm - 'Locale::Currency' => '2.21', #lib/Locale/Currency.pm - 'Locale::Language' => '2.21', #lib/Locale/Language.pm - 'Locale::Maketext' => '1.06', #lib/Locale/Maketext.pm - 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm - 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm - 'Locale::Script' => '2.21', #lib/Locale/Script.pm - 'Math::BigFloat' => '1.40', #lib/Math/BigFloat.pm - 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm - 'Math::BigInt' => '1.66', #lib/Math/BigInt.pm - 'Math::BigInt::Calc' => '0.36', #lib/Math/BigInt/Calc.pm - 'Math::BigInt::Scalar' => '0.11', #lib/Math/BigInt/Scalar.pm - 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm - 'Math::BigRat' => '0.10', #lib/Math/BigRat.pm - 'Math::Complex' => '1.34', #lib/Math/Complex.pm - 'Math::Trig' => '1.02', #lib/Math/Trig.pm - 'Memoize' => '1.01', #lib/Memoize.pm - 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm - 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm - 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm - 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm - 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm - 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm - 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm - 'MIME::Base64' => '2.21', #lib/MIME/Base64.pm - 'MIME::QuotedPrint' => '2.21', #lib/MIME/QuotedPrint.pm - 'NDBM_File' => '1.05', #ext/NDBM_File/NDBM_File.pm - 'Net::Cmd' => '2.24', #lib/Net/Cmd.pm - 'Net::Config' => '1.10', #lib/Net/Config.pm - 'Net::Domain' => '2.19', #lib/Net/Domain.pm - 'Net::FTP' => '2.72', #lib/Net/FTP.pm - 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm - 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm - 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm - 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm - 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm - 'Net::hostent' => '1.01', #lib/Net/hostent.pm - 'Net::netent' => '1.00', #lib/Net/netent.pm - 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm - 'Net::NNTP' => '2.22', #lib/Net/NNTP.pm - 'Net::Ping' => '2.31', #lib/Net/Ping.pm - 'Net::POP3' => '2.24', #lib/Net/POP3.pm - 'Net::protoent' => '1.00', #lib/Net/protoent.pm - 'Net::servent' => '1.01', #lib/Net/servent.pm - 'Net::SMTP' => '2.26', #lib/Net/SMTP.pm - 'Net::Time' => '2.09', #lib/Net/Time.pm - 'NEXT' => '0.60', #lib/NEXT.pm - 'O' => '1.00', #lib/O.pm - 'ODBM_File' => '1.04', #ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.06', #lib/Opcode.pm - 'open' => '1.02', #lib/open.pm - 'ops' => '1.00', #lib/ops.pm - 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm - 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm - 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm - 'overload' => '1.02', #lib/overload.pm - 'PerlIO' => '1.02', #lib/PerlIO.pm - 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm - 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm - 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm - 'PerlIO::via::QuotedPrint'=> '0.05', #lib/PerlIO/via/QuotedPrint.pm - 'Pod::Checker' => '1.41', #lib/Pod/Checker.pm - 'Pod::Find' => '0.24', #lib/Pod/Find.pm - 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm - 'Pod::Html' => '1.0501', #lib/Pod/Html.pm - 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm - 'Pod::LaTeX' => '0.55', #lib/Pod/LaTeX.pm - 'Pod::Man' => '1.37', #lib/Pod/Man.pm - 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm - 'Pod::Parser' => '1.13', #lib/Pod/Parser.pm - 'Pod::ParseUtils' => '0.3', #lib/Pod/ParseUtils.pm - 'Pod::Perldoc' => '3.11', #lib/Pod/Perldoc.pm - 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm - 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm - 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm - 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm - 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm - 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm - 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm - 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm - 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm - 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm - 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm - 'Pod::PlainText' => '2.01', #lib/Pod/PlainText.pm - 'Pod::Select' => '1.13', #lib/Pod/Select.pm - 'Pod::Text' => '2.21', #lib/Pod/Text.pm - 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm - 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm - 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm - 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm - 'POSIX' => '1.06', #lib/POSIX.pm - 're' => '0.04', #lib/re.pm - 'Safe' => '2.10', #lib/Safe.pm - 'Scalar::Util' => '1.13', #lib/Scalar/Util.pm - 'SDBM_File' => '1.04', #lib/SDBM_File.pm - 'Search::Dict' => '1.02', #lib/Search/Dict.pm - 'SelectSaver' => '1.00', #lib/SelectSaver.pm - 'SelfLoader' => '1.0904', #lib/SelfLoader.pm - 'Shell' => '0.5', #lib/Shell.pm - 'sigtrap' => '1.02', #lib/sigtrap.pm - 'Socket' => '1.76', #lib/Socket.pm - 'sort' => '1.02', #lib/sort.pm - 'Storable' => '2.08', #lib/Storable.pm - 'strict' => '1.03', #lib/strict.pm - 'subs' => '1.00', #lib/subs.pm - 'Switch' => '2.10', #lib/Switch.pm - 'Symbol' => '1.05', #lib/Symbol.pm - 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm - 'Sys::Syslog' => '0.04', #lib/Sys/Syslog.pm - 'Term::ANSIColor' => '1.07', #lib/Term/ANSIColor.pm - 'Term::Cap' => '1.08', #lib/Term/Cap.pm - 'Term::Complete' => '1.401', #lib/Term/Complete.pm - 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm - 'Test' => '1.24', #lib/Test.pm - 'Test::Builder' => '0.17', #lib/Test/Builder.pm - 'Test::Harness' => '2.30', #lib/Test/Harness.pm - 'Test::Harness::Assert' => '0.01', #lib/Test/Harness/Assert.pm - 'Test::Harness::Iterator'=> '0.01', #lib/Test/Harness/Iterator.pm - 'Test::Harness::Straps' => '0.15', #lib/Test/Harness/Straps.pm - 'Test::More' => '0.47', #lib/Test/More.pm - 'Test::Simple' => '0.47', #lib/Test/Simple.pm - 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm - 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm - 'Text::ParseWords' => '3.21', #lib/Text/ParseWords.pm - 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm - 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm - 'Text::Wrap' => '2001.09291', #lib/Text/Wrap.pm - 'Thread' => '2.00', #lib/Thread.pm - 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm - 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm - 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm - 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm - 'threads' => '1.00', #lib/threads.pm - 'threads::shared' => '0.91', #lib/threads/shared.pm - 'Tie::Array' => '1.03', #lib/Tie/Array.pm - 'Tie::File' => '0.97', #lib/Tie/File.pm - 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm - 'Tie::Hash' => '1.00', #lib/Tie/Hash.pm - 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm - 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm - 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm - 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm - 'Time::HiRes' => '1.51', #lib/Time/HiRes.pm - 'Time::Local' => '1.07', #lib/Time/Local.pm - 'Time::localtime' => '1.02', #lib/Time/localtime.pm - 'Time::tm' => '1.00', #lib/Time/tm.pm - 'Unicode' => '4.0.0', #lib/unicore/version - 'Unicode::Collate' => '0.28', #lib/Unicode/Collate.pm - 'Unicode::Normalize' => '0.23', #lib/Unicode/Normalize.pm - 'Unicode::UCD' => '0.21', #lib/Unicode/UCD.pm - 'UNIVERSAL' => '1.01', #lib/UNIVERSAL.pm - 'User::grent' => '1.00', #lib/User/grent.pm - 'User::pwent' => '1.00', #lib/User/pwent.pm - 'utf8' => '1.02', #lib/utf8.pm - 'vars' => '1.01', #lib/vars.pm - 'version' => '0.29', #lib/version.pm - 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm - 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm - 'vmsish' => '1.01', #lib/vmsish.pm - 'warnings' => '1.03', #lib/warnings.pm - 'warnings::register' => '1.00', #lib/warnings/register.pm - 'XS::APItest' => '0.02', #lib/XS/APItest.pm - 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm - 'XSLoader' => '0.03', #lib/XSLoader.pm - }, - - 5.009001 => { - 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm - 'assertions' => '0.01', #lib/assertions.pm - 'assertions::activate' => '0.01', #lib/assertions/activate.pm - 'Attribute::Handlers' => '0.78_01', #lib/Attribute/Handlers.pm - 'attributes' => '0.06', #lib/attributes.pm - 'attrs' => '1.01', #lib/attrs.pm - 'AutoLoader' => '5.60', #lib/AutoLoader.pm - 'AutoSplit' => '1.04', #lib/AutoSplit.pm - 'autouse' => '1.03', #lib/autouse.pm - 'B' => '1.05', #lib/B.pm - 'base' => '2.04', #lib/base.pm - 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm - 'B::Assembler' => '0.06', #lib/B/Assembler.pm - 'B::Bblock' => '1.02', #lib/B/Bblock.pm - 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm - 'B::C' => '1.04', #lib/B/C.pm - 'B::CC' => '1.00', #lib/B/CC.pm - 'B::Concise' => '0.59', #lib/B/Concise.pm - 'B::Debug' => '1.02', #lib/B/Debug.pm - 'B::Deparse' => '0.65', #lib/B/Deparse.pm - 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm - 'Benchmark' => '1.06', #lib/Benchmark.pm - 'bigint' => '0.05', #lib/bigint.pm - 'bignum' => '0.15', #lib/bignum.pm - 'bigrat' => '0.06', #lib/bigrat.pm - 'blib' => '1.02', #lib/blib.pm - 'B::Lint' => '1.02', #lib/B/Lint.pm - 'B::Showlex' => '1.00', #lib/B/Showlex.pm - 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm - 'B::Stash' => '1.00', #lib/B/Stash.pm - 'B::Terse' => '1.02', #lib/B/Terse.pm - 'B::Xref' => '1.01', #lib/B/Xref.pm - 'ByteLoader' => '0.05', #lib/ByteLoader.pm - 'bytes' => '1.01', #lib/bytes.pm - 'Carp' => '1.02', #lib/Carp.pm - 'Carp::Heavy' => '1.01', #lib/Carp/Heavy.pm - 'CGI' => '3.04', #lib/CGI.pm - 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm - 'CGI::Carp' => '1.27', #lib/CGI/Carp.pm - 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm - 'CGI::Fast' => '1.05', #lib/CGI/Fast.pm - 'CGI::Pretty' => '1.08', #lib/CGI/Pretty.pm - 'CGI::Push' => '1.04', #lib/CGI/Push.pm - 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm - 'CGI::Util' => '1.4', #lib/CGI/Util.pm - 'charnames' => '1.03', #lib/charnames.pm - 'Class::ISA' => '0.32', #lib/Class/ISA.pm - 'Class::Struct' => '0.63', #lib/Class/Struct.pm - 'Config' => undef, #lib/Config.pm - 'constant' => '1.04', #lib/constant.pm - 'CPAN' => '1.76_01', #lib/CPAN.pm - 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm - 'Cwd' => '2.17', #lib/Cwd.pm - 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm - 'DB' => '1.0', #lib/DB.pm - 'DB_File' => '1.808_01', #lib/DB_File.pm - 'DBM_Filter' => '0.01', #lib/DBM_Filter.pm - 'DBM_Filter::compress' => '0.01', #lib/DBM_Filter/compress.pm - 'DBM_Filter::encode' => '0.01', #lib/DBM_Filter/encode.pm - 'DBM_Filter::int32' => '0.01', #lib/DBM_Filter/int32.pm - 'DBM_Filter::null' => '0.01', #lib/DBM_Filter/null.pm - 'DBM_Filter::utf8' => '0.01', #lib/DBM_Filter/utf8.pm - 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm - 'Devel::Peek' => '1.01', #lib/Devel/Peek.pm - 'Devel::PPPort' => '2.011_01', #lib/Devel/PPPort.pm - 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm - 'diagnostics' => '1.12', #lib/diagnostics.pm - 'Digest' => '1.05', #lib/Digest.pm - 'Digest::base' => '1.00', #lib/Digest/base.pm - 'Digest::MD5' => '2.33', #lib/Digest/MD5.pm - 'DirHandle' => '1.00', #lib/DirHandle.pm - 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm - 'DynaLoader' => '1.04', #lib/DynaLoader.pm - 'Encode' => '1.99_01', #lib/Encode.pm - 'Encode::Alias' => '1.38', #lib/Encode/Alias.pm - 'Encode::Byte' => '1.23', #lib/Encode/Byte.pm - 'Encode::CJKConstants' => '1.02', #lib/Encode/CJKConstants.pm - 'Encode::CN' => '1.24', #lib/Encode/CN.pm - 'Encode::CN::HZ' => '1.0501', #lib/Encode/CN/HZ.pm - 'Encode::Config' => '1.07', #lib/Encode/Config.pm - 'Encode::EBCDIC' => '1.21', #lib/Encode/EBCDIC.pm - 'Encode::Encoder' => '0.07', #lib/Encode/Encoder.pm - 'Encode::Encoding' => '1.33', #lib/Encode/Encoding.pm - 'Encode::Guess' => '1.09', #lib/Encode/Guess.pm - 'Encode::JP' => '1.25', #lib/Encode/JP.pm - 'Encode::JP::H2Z' => '1.02', #lib/Encode/JP/H2Z.pm - 'Encode::JP::JIS7' => '1.12', #lib/Encode/JP/JIS7.pm - 'Encode::KR' => '1.23', #lib/Encode/KR.pm - 'Encode::KR::2022_KR' => '1.06', #lib/Encode/KR/2022_KR.pm - 'Encode::MIME::Header' => '1.09', #lib/Encode/MIME/Header.pm - 'Encode::Symbol' => '1.22', #lib/Encode/Symbol.pm - 'Encode::TW' => '1.26', #lib/Encode/TW.pm - 'Encode::Unicode' => '1.40', #lib/Encode/Unicode.pm - 'Encode::Unicode::UTF7' => '0.02', #lib/Encode/Unicode/UTF7.pm - 'encoding' => '1.48', #lib/encoding.pm - 'English' => '1.02', #lib/English.pm - 'Env' => '1.00', #lib/Env.pm - 'Errno' => '1.09_00', #lib/Errno.pm - 'Exporter' => '5.58', #lib/Exporter.pm - 'Exporter::Heavy' => '5.567', #lib/Exporter/Heavy.pm - 'ExtUtils::Command' => '1.07', #lib/ExtUtils/Command.pm - 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm - 'ExtUtils::Constant' => '0.14', #lib/ExtUtils/Constant.pm - 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm - 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm - 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm - 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm - 'ExtUtils::MakeMaker' => '6.21_02', #lib/ExtUtils/MakeMaker.pm - 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm - 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm - 'ExtUtils::Manifest' => '1.43', #lib/ExtUtils/Manifest.pm - 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm - 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm - 'ExtUtils::MM_Any' => '0.0901', #lib/ExtUtils/MM_Any.pm - 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm - 'ExtUtils::MM_Cygwin' => '1.07', #lib/ExtUtils/MM_Cygwin.pm - 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm - 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm - 'ExtUtils::MM_NW5' => '2.07_01', #lib/ExtUtils/MM_NW5.pm - 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.45_01', #lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm - 'ExtUtils::MM_VMS' => '5.71_01', #lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => '1.10_01', #lib/ExtUtils/MM_Win32.pm - 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm - 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm - 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm - 'Fatal' => '1.04', #lib/Fatal.pm - 'Fcntl' => '1.05', #lib/Fcntl.pm - 'fields' => '2.03', #lib/fields.pm - 'File::Basename' => '2.72', #lib/File/Basename.pm - 'FileCache' => '1.03', #lib/FileCache.pm - 'File::CheckTree' => '4.3', #lib/File/CheckTree.pm - 'File::Compare' => '1.1003', #lib/File/Compare.pm - 'File::Copy' => '2.07', #lib/File/Copy.pm - 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm - 'File::Find' => '1.07', #lib/File/Find.pm - 'File::Glob' => '1.02', #lib/File/Glob.pm - 'FileHandle' => '2.01', #lib/FileHandle.pm - 'File::Path' => '1.06', #lib/File/Path.pm - 'File::Spec' => '0.87', #lib/File/Spec.pm - 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm - 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm - 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm - 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm - 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm - 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm - 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm - 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm - 'File::stat' => '1.00', #lib/File/stat.pm - 'File::Temp' => '0.14', #lib/File/Temp.pm - 'filetest' => '1.01', #lib/filetest.pm - 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm - 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm - 'FindBin' => '1.44', #lib/FindBin.pm - 'GDBM_File' => '1.07', #lib/GDBM_File.pm - 'Getopt::Long' => '2.3401', #lib/Getopt/Long.pm - 'Getopt::Std' => '1.05', #lib/Getopt/Std.pm - 'Hash::Util' => '0.05', #lib/Hash/Util.pm - 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm - 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm - 'I18N::LangTags' => '0.29', #lib/I18N/LangTags.pm - 'I18N::LangTags::List' => '0.29', #lib/I18N/LangTags/List.pm - 'if' => '0.0401', #lib/if.pm - 'integer' => '1.00', #lib/integer.pm - 'IO' => '1.21', #lib/IO.pm - 'IO::Dir' => '1.04', #lib/IO/Dir.pm - 'IO::File' => '1.10', #lib/IO/File.pm - 'IO::Handle' => '1.23', #lib/IO/Handle.pm - 'IO::Pipe' => '1.122', #lib/IO/Pipe.pm - 'IO::Poll' => '0.06', #lib/IO/Poll.pm - 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm - 'IO::Select' => '1.16', #lib/IO/Select.pm - 'IO::Socket' => '1.28', #lib/IO/Socket.pm - 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm - 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm - 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm - 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm - 'IPC::Open3' => '1.0105', #lib/IPC/Open3.pm - 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm - 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm - 'JNI' => '0.2', #jpl/JNI/JNI.pm - 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm - 'JPL::Class' => undef, #jpl/JPL/Class.pm - 'JPL::Compile' => undef, #jpl/JPL/Compile.pm - 'less' => '0.01', #lib/less.pm - 'lib' => '0.5565', #lib/lib.pm - 'List::Util' => '1.13', #lib/List/Util.pm - 'locale' => '1.00', #lib/locale.pm - 'Locale::Constants' => '2.01', #lib/Locale/Constants.pm - 'Locale::Country' => '2.61', #lib/Locale/Country.pm - 'Locale::Currency' => '2.21', #lib/Locale/Currency.pm - 'Locale::Language' => '2.21', #lib/Locale/Language.pm - 'Locale::Maketext' => '1.08', #lib/Locale/Maketext.pm - 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm - 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm - 'Locale::Script' => '2.21', #lib/Locale/Script.pm - 'Math::BigFloat' => '1.44', #lib/Math/BigFloat.pm - 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm - 'Math::BigInt' => '1.70', #lib/Math/BigInt.pm - 'Math::BigInt::Calc' => '0.40', #lib/Math/BigInt/Calc.pm - 'Math::BigInt::CalcEmu' => '0.04', #lib/Math/BigInt/CalcEmu.pm - 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm - 'Math::BigRat' => '0.12', #lib/Math/BigRat.pm - 'Math::Complex' => '1.34', #lib/Math/Complex.pm - 'Math::Trig' => '1.02', #lib/Math/Trig.pm - 'Memoize' => '1.01_01', #lib/Memoize.pm - 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm - 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm - 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm - 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm - 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm - 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm - 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm - 'MIME::Base64' => '3.00_01', #lib/MIME/Base64.pm - 'MIME::QuotedPrint' => '3.00', #lib/MIME/QuotedPrint.pm - 'NDBM_File' => '1.05', #lib/NDBM_File.pm - 'Net::Cmd' => '2.24', #lib/Net/Cmd.pm - 'Net::Config' => '1.10', #lib/Net/Config.pm - 'Net::Domain' => '2.19', #lib/Net/Domain.pm - 'Net::FTP' => '2.72', #lib/Net/FTP.pm - 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm - 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm - 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm - 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm - 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm - 'Net::hostent' => '1.01', #lib/Net/hostent.pm - 'Net::netent' => '1.00', #lib/Net/netent.pm - 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm - 'Net::NNTP' => '2.22', #lib/Net/NNTP.pm - 'Net::Ping' => '2.31', #lib/Net/Ping.pm - 'Net::POP3' => '2.24', #lib/Net/POP3.pm - 'Net::protoent' => '1.00', #lib/Net/protoent.pm - 'Net::servent' => '1.01', #lib/Net/servent.pm - 'Net::SMTP' => '2.26', #lib/Net/SMTP.pm - 'Net::Time' => '2.09', #lib/Net/Time.pm - 'NEXT' => '0.60', #lib/NEXT.pm - 'O' => '1.00', #lib/O.pm - 'ODBM_File' => '1.04', #ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.06', #lib/Opcode.pm - 'open' => '1.02', #lib/open.pm - 'ops' => '1.00', #lib/ops.pm - 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm - 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm - 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm - 'overload' => '1.02', #lib/overload.pm - 'PerlIO' => '1.03', #lib/PerlIO.pm - 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm - 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm - 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm - 'PerlIO::via::QuotedPrint'=> '0.06', #lib/PerlIO/via/QuotedPrint.pm - 'Pod::Checker' => '1.41', #lib/Pod/Checker.pm - 'Pod::Find' => '0.24', #lib/Pod/Find.pm - 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm - 'Pod::Html' => '1.0502', #lib/Pod/Html.pm - 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm - 'Pod::LaTeX' => '0.55', #lib/Pod/LaTeX.pm - 'Pod::Man' => '1.37', #lib/Pod/Man.pm - 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm - 'Pod::Parser' => '1.14', #lib/Pod/Parser.pm - 'Pod::ParseUtils' => '0.3', #lib/Pod/ParseUtils.pm - 'Pod::Perldoc' => '3.12', #lib/Pod/Perldoc.pm - 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm - 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm - 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm - 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm - 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm - 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm - 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm - 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm - 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm - 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm - 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm - 'Pod::PlainText' => '2.02', #lib/Pod/PlainText.pm - 'Pod::Select' => '1.13', #lib/Pod/Select.pm - 'Pod::Text' => '2.21', #lib/Pod/Text.pm - 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm - 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm - 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm - 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm - 'POSIX' => '1.07', #lib/POSIX.pm - 're' => '0.04', #lib/re.pm - 'Safe' => '2.10', #lib/Safe.pm - 'Scalar::Util' => '1.13', #lib/Scalar/Util.pm - 'SDBM_File' => '1.04', #lib/SDBM_File.pm - 'Search::Dict' => '1.02', #lib/Search/Dict.pm - 'SelectSaver' => '1.00', #lib/SelectSaver.pm - 'SelfLoader' => '1.0904', #lib/SelfLoader.pm - 'Shell' => '0.5.2', #lib/Shell.pm - 'sigtrap' => '1.02', #lib/sigtrap.pm - 'Socket' => '1.77', #lib/Socket.pm - 'sort' => '1.02', #lib/sort.pm - 'Storable' => '2.11', #lib/Storable.pm - 'strict' => '1.03', #lib/strict.pm - 'subs' => '1.00', #lib/subs.pm - 'Switch' => '2.10', #lib/Switch.pm - 'Symbol' => '1.05', #lib/Symbol.pm - 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm - 'Sys::Syslog' => '0.05', #lib/Sys/Syslog.pm - 'Term::ANSIColor' => '1.08', #lib/Term/ANSIColor.pm - 'Term::Cap' => '1.08', #lib/Term/Cap.pm - 'Term::Complete' => '1.401', #lib/Term/Complete.pm - 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm - 'Test' => '1.24', #lib/Test.pm - 'Test::Builder' => '0.17', #lib/Test/Builder.pm - 'Test::Harness' => '2.40', #lib/Test/Harness.pm - 'Test::Harness::Assert' => '0.02', #lib/Test/Harness/Assert.pm - 'Test::Harness::Iterator'=> '0.02', #lib/Test/Harness/Iterator.pm - 'Test::Harness::Straps' => '0.19', #lib/Test/Harness/Straps.pm - 'Test::More' => '0.47', #lib/Test/More.pm - 'Test::Simple' => '0.47', #lib/Test/Simple.pm - 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm - 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm - 'Text::ParseWords' => '3.21', #lib/Text/ParseWords.pm - 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm - 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm - 'Text::Wrap' => '2001.09291', #lib/Text/Wrap.pm - 'Thread' => '2.00', #lib/Thread.pm - 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm - 'threads' => '1.02', #lib/threads.pm - 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm - 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm - 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm - 'threads::shared' => '0.92', #lib/threads/shared.pm - 'Tie::Array' => '1.03', #lib/Tie/Array.pm - 'Tie::File' => '0.97', #lib/Tie/File.pm - 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm - 'Tie::Hash' => '1.01', #lib/Tie/Hash.pm - 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm - 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm - 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm - 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm - 'Time::HiRes' => '1.56', #lib/Time/HiRes.pm - 'Time::Local' => '1.07_94', #lib/Time/Local.pm - 'Time::localtime' => '1.02', #lib/Time/localtime.pm - 'Time::tm' => '1.00', #lib/Time/tm.pm - 'Unicode' => '4.0.0', #lib/unicore/version - 'Unicode::Collate' => '0.33', #lib/Unicode/Collate.pm - 'Unicode::Normalize' => '0.28', #lib/Unicode/Normalize.pm - 'Unicode::UCD' => '0.21', #lib/Unicode/UCD.pm - 'UNIVERSAL' => '1.02', #lib/UNIVERSAL.pm - 'User::grent' => '1.00', #lib/User/grent.pm - 'User::pwent' => '1.00', #lib/User/pwent.pm - 'utf8' => '1.02', #lib/utf8.pm - 'vars' => '1.01', #lib/vars.pm - 'version' => '0.36', #lib/version.pm - 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm - 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm - 'vmsish' => '1.01', #lib/vmsish.pm - 'warnings' => '1.03', #lib/warnings.pm - 'warnings::register' => '1.00', #lib/warnings/register.pm - 'XS::APItest' => '0.03', #lib/XS/APItest.pm - 'XSLoader' => '0.03', #lib/XSLoader.pm - 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm + delta_from => 5.008002, + changed => { + 'Benchmark' => '1.052', + 'CGI' => '3.01', + 'CGI::Carp' => '1.27', + 'CGI::Fast' => '1.05', + 'CGI::Pretty' => '1.08', + 'CGI::Util' => '1.4', + 'Cwd' => '2.12', + 'DB_File' => '1.808', + 'Devel::PPPort' => '2.011', + 'Digest' => '1.05', + 'Digest::MD5' => '2.33', + 'Digest::base' => '1.00', + 'Encode' => '1.99', + 'Exporter' => '5.57', + 'File::CheckTree' => '4.3', + 'File::Copy' => '2.07', + 'File::Find' => '1.06', + 'File::Spec' => '0.87', + 'FindBin' => '1.44', + 'Getopt::Std' => '1.05', + 'Math::BigFloat' => '1.42', + 'Math::BigInt' => '1.68', + 'Math::BigInt::Calc' => '0.38', + 'Math::BigInt::CalcEmu' => '0.02', + 'OS2::DLL' => '1.02', + 'POSIX' => '1.07', + 'PerlIO' => '1.03', + 'PerlIO::via::QuotedPrint'=> '0.06', + 'Pod::Html' => '1.0502', + 'Pod::Parser' => '1.14', + 'Pod::Perldoc' => '3.12', + 'Pod::Perldoc::ToTk' => 'undef', + 'Pod::PlainText' => '2.02', + 'Storable' => '2.09', + 'Test::Harness' => '2.40', + 'Test::Harness::Assert' => '0.02', + 'Test::Harness::Iterator'=> '0.02', + 'Test::Harness::Straps' => '0.19', + 'Tie::Hash' => '1.01', + 'Unicode::Collate' => '0.33', + 'Unicode::Normalize' => '0.28', + 'XS::APItest' => '0.03', + 'base' => '2.04', + 'diagnostics' => '1.12', + 'encoding' => '1.48', + 'threads' => '1.01', + 'threads::shared' => '0.92', + }, + removed => { + 'Math::BigInt::Scalar' => 1, + } }, - 5.008004 => { - 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm - 'attributes' => '0.06', #lib/attributes.pm - 'AutoLoader' => '5.60', #lib/AutoLoader.pm - 'AutoSplit' => '1.04', #lib/AutoSplit.pm - 'autouse' => '1.03', #lib/autouse.pm - 'base' => '2.05', #lib/base.pm - 'Benchmark' => '1.06', #lib/Benchmark.pm - 'bigint' => '0.05', #lib/bigint.pm - 'bignum' => '0.15', #lib/bignum.pm - 'bigrat' => '0.06', #lib/bigrat.pm - 'blib' => '1.02', #lib/blib.pm - 'bytes' => '1.01', #lib/bytes.pm - 'Carp' => '1.02', #lib/Carp.pm - 'CGI' => '3.04', #lib/CGI.pm - 'charnames' => '1.03', #lib/charnames.pm - 'constant' => '1.04', #lib/constant.pm - 'CPAN' => '1.76_01', #lib/CPAN.pm - 'Cwd' => '2.17', #lib/Cwd.pm - 'DBM_Filter' => '0.01', #lib/DBM_Filter.pm - 'DB' => '1.0', #lib/DB.pm - 'diagnostics' => '1.12', #lib/diagnostics.pm - 'Digest' => '1.06', #lib/Digest.pm - 'DirHandle' => '1.00', #lib/DirHandle.pm - 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm - 'English' => '1.01', #lib/English.pm - 'Env' => '1.00', #lib/Env.pm - 'Exporter' => '5.58', #lib/Exporter.pm - 'Fatal' => '1.03', #lib/Fatal.pm - 'fields' => '2.03', #lib/fields.pm - 'FileCache' => '1.03', #lib/FileCache.pm - 'FileHandle' => '2.01', #lib/FileHandle.pm - 'filetest' => '1.01', #lib/filetest.pm - 'FindBin' => '1.44', #lib/FindBin.pm - 'if' => '0.03', #lib/if.pm - 'integer' => '1.00', #lib/integer.pm - 'less' => '0.01', #lib/less.pm - 'locale' => '1.00', #lib/locale.pm - 'Memoize' => '1.01', #lib/Memoize.pm - 'NEXT' => '0.60', #lib/NEXT.pm - 'open' => '1.03', #lib/open.pm - 'overload' => '1.01', #lib/overload.pm - 'PerlIO' => '1.03', #lib/PerlIO.pm - 'SelectSaver' => '1.00', #lib/SelectSaver.pm - 'SelfLoader' => '1.0904', #lib/SelfLoader.pm - 'Shell' => '0.5.2', #lib/Shell.pm - 'sigtrap' => '1.02', #lib/sigtrap.pm - 'sort' => '1.02', #lib/sort.pm - 'strict' => '1.03', #lib/strict.pm - 'subs' => '1.00', #lib/subs.pm - 'Switch' => '2.10', #lib/Switch.pm - 'Symbol' => '1.05', #lib/Symbol.pm - 'Test' => '1.24', #lib/Test.pm - 'Thread' => '2.00', #lib/Thread.pm - 'Unicode' => '4.0.1', # lib/unicore/version - 'UNIVERSAL' => '1.01', #lib/UNIVERSAL.pm - 'utf8' => '1.03', #lib/utf8.pm - 'vars' => '1.01', #lib/vars.pm - 'vmsish' => '1.01', #lib/vmsish.pm - 'warnings' => '1.03', #lib/warnings.pm - 'Config' => undef, #lib/Config.pm - 'lib' => '0.5565', #lib/lib.pm - 're' => '0.04', #lib/re.pm - 'XSLoader' => '0.02', #lib/XSLoader.pm - 'DynaLoader' => '1.05', #lib/DynaLoader.pm - 'attrs' => '1.01', #lib/attrs.pm - 'B' => '1.02', #lib/B.pm - 'O' => '1.00', #lib/O.pm - 'ByteLoader' => '0.05', #lib/ByteLoader.pm - 'DB_File' => '1.808', #lib/DB_File.pm - 'Encode' => '1.99_01', #lib/Encode.pm - 'encoding' => '1.48', #lib/encoding.pm - 'Fcntl' => '1.05', #lib/Fcntl.pm - 'GDBM_File' => '1.07', #lib/GDBM_File.pm - 'IO' => '1.21', #lib/IO.pm - 'NDBM_File' => '1.05', #lib/NDBM_File.pm - 'Safe' => '2.10', #lib/Safe.pm - 'Opcode' => '1.05', #lib/Opcode.pm - 'ops' => '1.00', #lib/ops.pm - 'POSIX' => '1.08', #lib/POSIX.pm - 'SDBM_File' => '1.04', #lib/SDBM_File.pm - 'Socket' => '1.77', #lib/Socket.pm - 'Storable' => '2.12', #lib/Storable.pm - 'threads' => '1.03', #lib/threads.pm - 'Errno' => '1.09_00', #lib/Errno.pm - 'Attribute::Handlers' => '0.78_01', #lib/Attribute/Handlers.pm - 'Carp::Heavy' => '1.01', #lib/Carp/Heavy.pm - 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm - 'CGI::Carp' => '1.27', #lib/CGI/Carp.pm - 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm - 'CGI::Fast' => '1.05', #lib/CGI/Fast.pm - 'CGI::Pretty' => '1.08', #lib/CGI/Pretty.pm - 'CGI::Push' => '1.04', #lib/CGI/Push.pm - 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm - 'CGI::Util' => '1.4', #lib/CGI/Util.pm - 'Class::ISA' => '0.32', #lib/Class/ISA.pm - 'Class::Struct' => '0.63', #lib/Class/Struct.pm - 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm - 'DBM_Filter::compress' => '0.01', #lib/DBM_Filter/compress.pm - 'DBM_Filter::encode' => '0.01', #lib/DBM_Filter/encode.pm - 'DBM_Filter::int32' => '0.01', #lib/DBM_Filter/int32.pm - 'DBM_Filter::null' => '0.01', #lib/DBM_Filter/null.pm - 'DBM_Filter::utf8' => '0.01', #lib/DBM_Filter/utf8.pm - 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm - 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm - 'Devel::Peek' => '1.01', #lib/Devel/Peek.pm - 'Devel::PPPort' => '2.011', #lib/Devel/PPPort.pm - 'Digest::base' => '1.00', #lib/Digest/base.pm - 'Digest::MD5' => '2.33', #lib/Digest/MD5.pm - 'Exporter::Heavy' => '5.57', #lib/Exporter/Heavy.pm - 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm - 'ExtUtils::Constant' => '0.14', #lib/ExtUtils/Constant.pm - 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm - 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm - 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm - 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm - 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm - 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm - 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm - 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm - 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm - 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm - 'ExtUtils::MM_NW5' => '2.07_02', #lib/ExtUtils/MM_NW5.pm - 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm - 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm - 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm - 'ExtUtils::MM_Win95' => '0.0301', #lib/ExtUtils/MM_Win95.pm - 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm - 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm - 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm - 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm - 'ExtUtils::Liblist::Kid'=> '1.3001', #lib/ExtUtils/Liblist/Kid.pm - 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm - 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm - 'File::Basename' => '2.72', #lib/File/Basename.pm - 'File::CheckTree' => '4.3', #lib/File/CheckTree.pm - 'File::Compare' => '1.1003', #lib/File/Compare.pm - 'File::Copy' => '2.07', #lib/File/Copy.pm - 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm - 'File::Find' => '1.07', #lib/File/Find.pm - 'File::Path' => '1.06', #lib/File/Path.pm - 'File::Spec' => '0.87', #lib/File/Spec.pm - 'File::stat' => '1.00', #lib/File/stat.pm - 'File::Temp' => '0.14', #lib/File/Temp.pm - 'File::Glob' => '1.02', #lib/File/Glob.pm - 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm - 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm - 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm - 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm - 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm - 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm - 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm - 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm - 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm - 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm - 'Getopt::Long' => '2.34', #lib/Getopt/Long.pm - 'Getopt::Std' => '1.05', #lib/Getopt/Std.pm - 'Hash::Util' => '0.05', #lib/Hash/Util.pm - 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm - 'I18N::LangTags' => '0.29', #lib/I18N/LangTags.pm - 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm - 'I18N::LangTags::List' => '0.29', #lib/I18N/LangTags/List.pm - 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm - 'IPC::Open3' => '1.0106', #lib/IPC/Open3.pm - 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm - 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm - 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm - 'Locale::Constants' => '2.01', #lib/Locale/Constants.pm - 'Locale::Country' => '2.61', #lib/Locale/Country.pm - 'Locale::Currency' => '2.21', #lib/Locale/Currency.pm - 'Locale::Language' => '2.21', #lib/Locale/Language.pm - 'Locale::Maketext' => '1.08', #lib/Locale/Maketext.pm - 'Locale::Script' => '2.21', #lib/Locale/Script.pm - 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm - 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm - 'Math::BigFloat' => '1.44', #lib/Math/BigFloat.pm - 'Math::BigInt' => '1.70', #lib/Math/BigInt.pm - 'Math::BigRat' => '0.12', #lib/Math/BigRat.pm - 'Math::Complex' => '1.34', #lib/Math/Complex.pm - 'Math::Trig' => '1.02', #lib/Math/Trig.pm - 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm - 'Math::BigInt::CalcEmu' => '0.04', #lib/Math/BigInt/CalcEmu.pm - 'Math::BigInt::Calc' => '0.40', #lib/Math/BigInt/Calc.pm - 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm - 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm - 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm - 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm - 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm - 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm - 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm - 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm - 'Net::Cmd' => '2.24', #lib/Net/Cmd.pm - 'Net::Config' => '1.10', #lib/Net/Config.pm - 'Net::Domain' => '2.19', #lib/Net/Domain.pm - 'Net::FTP' => '2.72', #lib/Net/FTP.pm - 'Net::hostent' => '1.01', #lib/Net/hostent.pm - 'Net::netent' => '1.00', #lib/Net/netent.pm - 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm - 'Net::NNTP' => '2.22', #lib/Net/NNTP.pm - 'Net::Ping' => '2.31', #lib/Net/Ping.pm - 'Net::POP3' => '2.24', #lib/Net/POP3.pm - 'Net::protoent' => '1.00', #lib/Net/protoent.pm - 'Net::servent' => '1.01', #lib/Net/servent.pm - 'Net::SMTP' => '2.26', #lib/Net/SMTP.pm - 'Net::Time' => '2.09', #lib/Net/Time.pm - 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm - 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm - 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm - 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm - 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm - 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm - 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm - 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm - 'PerlIO::via::QuotedPrint'=> '0.06', #lib/PerlIO/via/QuotedPrint.pm - 'Pod::Checker' => '1.41', #lib/Pod/Checker.pm - 'Pod::Find' => '0.24', #lib/Pod/Find.pm - 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm - 'Pod::Html' => '1.0502', #lib/Pod/Html.pm - 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm - 'Pod::LaTeX' => '0.55', #lib/Pod/LaTeX.pm - 'Pod::Man' => '1.37', #lib/Pod/Man.pm - 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm - 'Pod::Parser' => '1.14', #lib/Pod/Parser.pm - 'Pod::ParseUtils' => '0.3', #lib/Pod/ParseUtils.pm - 'Pod::Perldoc' => '3.12', #lib/Pod/Perldoc.pm - 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm - 'Pod::PlainText' => '2.02', #lib/Pod/PlainText.pm - 'Pod::Select' => '1.13', #lib/Pod/Select.pm - 'Pod::Text' => '2.21', #lib/Pod/Text.pm - 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm - 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm - 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm - 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm - 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm - 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm - 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm - 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm - 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm - 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm - 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm - 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm - 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm - 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm - 'Search::Dict' => '1.02', #lib/Search/Dict.pm - 'Term::ANSIColor' => '1.08', #lib/Term/ANSIColor.pm - 'Term::Cap' => '1.08', #lib/Term/Cap.pm - 'Term::Complete' => '1.401', #lib/Term/Complete.pm - 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm - 'Test::Builder' => '0.17', #lib/Test/Builder.pm - 'Test::Harness' => '2.40', #lib/Test/Harness.pm - 'Test::More' => '0.47', #lib/Test/More.pm - 'Test::Simple' => '0.47', #lib/Test/Simple.pm - 'Test::Harness::Assert' => '0.02', #lib/Test/Harness/Assert.pm - 'Test::Harness::Iterator'=> '0.02', #lib/Test/Harness/Iterator.pm - 'Test::Harness::Straps' => '0.19', #lib/Test/Harness/Straps.pm - 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm - 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm - 'Text::ParseWords' => '3.21', #lib/Text/ParseWords.pm - 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm - 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm - 'Text::Wrap' => '2001.09291', #lib/Text/Wrap.pm - 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm - 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm - 'Tie::Array' => '1.03', #lib/Tie/Array.pm - 'Tie::File' => '0.97', #lib/Tie/File.pm - 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm - 'Tie::Hash' => '1.01', #lib/Tie/Hash.pm - 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm - 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm - 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm - 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm - 'Time::Local' => '1.07', #lib/Time/Local.pm - 'Time::localtime' => '1.02', #lib/Time/localtime.pm - 'Time::tm' => '1.00', #lib/Time/tm.pm - 'Time::HiRes' => '1.59', #lib/Time/HiRes.pm - 'Unicode::Collate' => '0.33', #lib/Unicode/Collate.pm - 'Unicode::UCD' => '0.22', #lib/Unicode/UCD.pm - 'Unicode::Normalize' => '0.28', #lib/Unicode/Normalize.pm - 'User::grent' => '1.00', #lib/User/grent.pm - 'User::pwent' => '1.00', #lib/User/pwent.pm - 'warnings::register' => '1.00', #lib/warnings/register.pm - 'B::Stash' => '1.00', #lib/B/Stash.pm - 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm - 'B::C' => '1.02', #lib/B/C.pm - 'B::Deparse' => '0.66', #lib/B/Deparse.pm - 'B::Debug' => '1.01', #lib/B/Debug.pm - 'B::Bblock' => '1.02', #lib/B/Bblock.pm - 'B::Assembler' => '0.07', #lib/B/Assembler.pm - 'B::Terse' => '1.02', #lib/B/Terse.pm - 'B::CC' => '1.00', #lib/B/CC.pm - 'B::Concise' => '0.60', #lib/B/Concise.pm - 'B::Lint' => '1.02', #lib/B/Lint.pm - 'B::Showlex' => '1.00', #lib/B/Showlex.pm - 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm - 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm - 'B::Xref' => '1.01', #lib/B/Xref.pm - 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm - 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm - 'Encode::Alias' => '1.38', #lib/Encode/Alias.pm - 'Encode::Encoding' => '1.33', #lib/Encode/Encoding.pm - 'Encode::Guess' => '1.09', #lib/Encode/Guess.pm - 'Encode::Config' => '1.07', #lib/Encode/Config.pm - 'Encode::Encoder' => '0.07', #lib/Encode/Encoder.pm - 'Encode::CJKConstants' => '1.02', #lib/Encode/CJKConstants.pm - 'Encode::Byte' => '1.23', #lib/Encode/Byte.pm - 'Encode::CN' => '1.24', #lib/Encode/CN.pm - 'Encode::EBCDIC' => '1.21', #lib/Encode/EBCDIC.pm - 'Encode::JP' => '1.25', #lib/Encode/JP.pm - 'Encode::KR' => '1.23', #lib/Encode/KR.pm - 'Encode::Symbol' => '1.22', #lib/Encode/Symbol.pm - 'Encode::TW' => '1.26', #lib/Encode/TW.pm - 'Encode::Unicode' => '1.40', #lib/Encode/Unicode.pm - 'Encode::JP::H2Z' => '1.02', #lib/Encode/JP/H2Z.pm - 'Encode::JP::JIS7' => '1.12', #lib/Encode/JP/JIS7.pm - 'Encode::Unicode::UTF7' => '0.02', #lib/Encode/Unicode/UTF7.pm - 'Encode::KR::2022_KR' => '1.06', #lib/Encode/KR/2022_KR.pm - 'Encode::MIME::Header' => '1.09', #lib/Encode/MIME/Header.pm - 'Encode::CN::HZ' => '1.0501', #lib/Encode/CN/HZ.pm - 'IO::Pipe' => '1.123', #lib/IO/Pipe.pm - 'IO::File' => '1.10', #lib/IO/File.pm - 'IO::Select' => '1.16', #lib/IO/Select.pm - 'IO::Socket' => '1.28', #lib/IO/Socket.pm - 'IO::Poll' => '0.06', #lib/IO/Poll.pm - 'IO::Dir' => '1.04', #lib/IO/Dir.pm - 'IO::Handle' => '1.24', #lib/IO/Handle.pm - 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm - 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm - 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm - 'List::Util' => '1.13', #lib/List/Util.pm - 'Scalar::Util' => '1.13', #lib/Scalar/Util.pm - 'MIME::QuotedPrint' => '3.01', #lib/MIME/QuotedPrint.pm - 'MIME::Base64' => '3.01', #lib/MIME/Base64.pm - 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm - 'Sys::Syslog' => '0.05', #lib/Sys/Syslog.pm - 'XS::APItest' => '0.03', #lib/XS/APItest.pm - 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm - 'threads::shared' => '0.92', #lib/threads/shared.pm - 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm - 'JNI' => '0.2', #jpl/JNI/JNI.pm - 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm - 'JPL::Class' => undef, #jpl/JPL/Class.pm - 'JPL::Compile' => undef, #jpl/JPL/Compile.pm - 'ODBM_File' => '1.05', #ext/ODBM_File/ODBM_File.pm - 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm - 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm - 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm - 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm - 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm - 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm - 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm + delta_from => 5.008003, + changed => { + 'Attribute::Handlers' => '0.78_01', + 'B::Assembler' => '0.07', + 'B::Concise' => '0.60', + 'B::Deparse' => '0.66', + 'Benchmark' => '1.06', + 'CGI' => '3.04', + 'Carp' => '1.02', + 'Cwd' => '2.17', + 'DBM_Filter' => '0.01', + 'DBM_Filter::compress' => '0.01', + 'DBM_Filter::encode' => '0.01', + 'DBM_Filter::int32' => '0.01', + 'DBM_Filter::null' => '0.01', + 'DBM_Filter::utf8' => '0.01', + 'Digest' => '1.06', + 'DynaLoader' => '1.05', + 'Encode' => '1.99_01', + 'Encode::CN::HZ' => '1.0501', + 'Exporter' => '5.58', + 'Exporter::Heavy' => '5.57', + 'ExtUtils::Liblist::Kid'=> '1.3001', + 'ExtUtils::MM_NW5' => '2.07_02', + 'ExtUtils::MM_Win95' => '0.0301', + 'File::Find' => '1.07', + 'IO::Handle' => '1.24', + 'IO::Pipe' => '1.123', + 'IPC::Open3' => '1.0106', + 'Locale::Maketext' => '1.08', + 'MIME::Base64' => '3.01', + 'MIME::QuotedPrint' => '3.01', + 'Math::BigFloat' => '1.44', + 'Math::BigInt' => '1.70', + 'Math::BigInt::Calc' => '0.40', + 'Math::BigInt::CalcEmu' => '0.04', + 'Math::BigRat' => '0.12', + 'ODBM_File' => '1.05', + 'POSIX' => '1.08', + 'Shell' => '0.5.2', + 'Socket' => '1.77', + 'Storable' => '2.12', + 'Sys::Syslog' => '0.05', + 'Term::ANSIColor' => '1.08', + 'Time::HiRes' => '1.59', + 'Unicode' => '4.0.1', + 'Unicode::UCD' => '0.22', + 'base' => '2.05', + 'bigint' => '0.05', + 'bignum' => '0.15', + 'charnames' => '1.03', + 'open' => '1.03', + 'threads' => '1.03', + 'utf8' => '1.03', + }, + removed => { + } }, - 5.008005 => { - 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm - 'attributes' => '0.06', #lib/attributes.pm - 'AutoLoader' => '5.60', #lib/AutoLoader.pm - 'AutoSplit' => '1.04', #lib/AutoSplit.pm - 'autouse' => '1.04', #lib/autouse.pm - 'base' => '2.06', #lib/base.pm - 'Benchmark' => '1.06', #lib/Benchmark.pm - 'bigint' => '0.05', #lib/bigint.pm - 'bignum' => '0.15', #lib/bignum.pm - 'bigrat' => '0.06', #lib/bigrat.pm - 'blib' => '1.02', #lib/blib.pm - 'bytes' => '1.01', #lib/bytes.pm - 'Carp' => '1.03', #lib/Carp.pm - 'CGI' => '3.05', #lib/CGI.pm - 'charnames' => '1.04', #lib/charnames.pm - 'constant' => '1.04', #lib/constant.pm - 'CPAN' => '1.76_01', #lib/CPAN.pm - 'Cwd' => '2.19', #lib/Cwd.pm - 'DBM_Filter' => '0.01', #lib/DBM_Filter.pm - 'DB' => '1.0', #lib/DB.pm - 'diagnostics' => '1.13', #lib/diagnostics.pm - 'Digest' => '1.08', #lib/Digest.pm - 'DirHandle' => '1.00', #lib/DirHandle.pm - 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm - 'English' => '1.01', #lib/English.pm - 'Env' => '1.00', #lib/Env.pm - 'Exporter' => '5.58', #lib/Exporter.pm - 'Fatal' => '1.03', #lib/Fatal.pm - 'fields' => '2.03', #lib/fields.pm - 'FileCache' => '1.04_01', #lib/FileCache.pm - 'FileHandle' => '2.01', #lib/FileHandle.pm - 'filetest' => '1.01', #lib/filetest.pm - 'FindBin' => '1.44', #lib/FindBin.pm - 'if' => '0.03', #lib/if.pm - 'integer' => '1.00', #lib/integer.pm - 'less' => '0.01', #lib/less.pm - 'locale' => '1.00', #lib/locale.pm - 'Memoize' => '1.01', #lib/Memoize.pm - 'NEXT' => '0.60', #lib/NEXT.pm - 'open' => '1.03', #lib/open.pm - 'overload' => '1.01', #lib/overload.pm - 'PerlIO' => '1.03', #lib/PerlIO.pm - 'SelectSaver' => '1.00', #lib/SelectSaver.pm - 'SelfLoader' => '1.0904', #lib/SelfLoader.pm - 'Shell' => '0.6', #lib/Shell.pm - 'sigtrap' => '1.02', #lib/sigtrap.pm - 'sort' => '1.02', #lib/sort.pm - 'strict' => '1.03', #lib/strict.pm - 'subs' => '1.00', #lib/subs.pm - 'Switch' => '2.10', #lib/Switch.pm - 'Symbol' => '1.05', #lib/Symbol.pm - 'Test' => '1.25', #lib/Test.pm - 'Thread' => '2.00', #lib/Thread.pm - 'UNIVERSAL' => '1.01', #lib/UNIVERSAL.pm - 'utf8' => '1.04', #lib/utf8.pm - 'vars' => '1.01', #lib/vars.pm - 'vmsish' => '1.01', #lib/vmsish.pm - 'warnings' => '1.03', #lib/warnings.pm - 'Config' => undef, #lib/Config.pm - 'lib' => '0.5565', #lib/lib.pm - 're' => '0.04', #lib/re.pm - 'XSLoader' => '0.02', #lib/XSLoader.pm - 'DynaLoader' => '1.05', #lib/DynaLoader.pm - 'attrs' => '1.01', #lib/attrs.pm - 'B' => '1.02', #lib/B.pm - 'O' => '1.00', #lib/O.pm - 'ByteLoader' => '0.05', #lib/ByteLoader.pm - 'DB_File' => '1.809', #lib/DB_File.pm - 'Encode' => '2.01', #lib/Encode.pm - 'encoding' => '2.00', #lib/encoding.pm - 'Fcntl' => '1.05', #lib/Fcntl.pm - 'GDBM_File' => '1.07', #lib/GDBM_File.pm - 'IO' => '1.21', #lib/IO.pm - 'NDBM_File' => '1.05', #lib/NDBM_File.pm - 'Safe' => '2.11', #lib/Safe.pm - 'Opcode' => '1.05', #lib/Opcode.pm - 'ops' => '1.00', #lib/ops.pm - 'POSIX' => '1.08', #lib/POSIX.pm - 'SDBM_File' => '1.04', #lib/SDBM_File.pm - 'Socket' => '1.77', #lib/Socket.pm - 'Storable' => '2.13', #lib/Storable.pm - 'threads' => '1.05', #lib/threads.pm - 'Errno' => '1.09_00', #lib/Errno.pm - 'Attribute::Handlers' => '0.78_01', #lib/Attribute/Handlers.pm - 'Carp::Heavy' => '1.01', #lib/Carp/Heavy.pm - 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm - 'CGI::Carp' => '1.28', #lib/CGI/Carp.pm - 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm - 'CGI::Fast' => '1.05', #lib/CGI/Fast.pm - 'CGI::Pretty' => '1.08', #lib/CGI/Pretty.pm - 'CGI::Push' => '1.04', #lib/CGI/Push.pm - 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm - 'CGI::Util' => '1.5', #lib/CGI/Util.pm - 'Class::ISA' => '0.32', #lib/Class/ISA.pm - 'Class::Struct' => '0.63', #lib/Class/Struct.pm - 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm - 'DBM_Filter::compress' => '0.01', #lib/DBM_Filter/compress.pm - 'DBM_Filter::encode' => '0.01', #lib/DBM_Filter/encode.pm - 'DBM_Filter::int32' => '0.01', #lib/DBM_Filter/int32.pm - 'DBM_Filter::null' => '0.01', #lib/DBM_Filter/null.pm - 'DBM_Filter::utf8' => '0.01', #lib/DBM_Filter/utf8.pm - 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm - 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm - 'Devel::Peek' => '1.01', #lib/Devel/Peek.pm - 'Devel::PPPort' => '2.011', #lib/Devel/PPPort.pm - 'Digest::base' => '1.00', #lib/Digest/base.pm - 'Digest::MD5' => '2.33', #lib/Digest/MD5.pm - 'Exporter::Heavy' => '5.57', #lib/Exporter/Heavy.pm - 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm - 'ExtUtils::Constant' => '0.14', #lib/ExtUtils/Constant.pm - 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm - 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm - 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm - 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm - 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm - 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm - 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm - 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm - 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm - 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm - 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm - 'ExtUtils::MM_NW5' => '2.07_02', #lib/ExtUtils/MM_NW5.pm - 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm - 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm - 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm - 'ExtUtils::MM_Win95' => '0.0301', #lib/ExtUtils/MM_Win95.pm - 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm - 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm - 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm - 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm - 'ExtUtils::Liblist::Kid'=> '1.3001', #lib/ExtUtils/Liblist/Kid.pm - 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm - 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm - 'File::Basename' => '2.73', #lib/File/Basename.pm - 'File::CheckTree' => '4.3', #lib/File/CheckTree.pm - 'File::Compare' => '1.1003', #lib/File/Compare.pm - 'File::Copy' => '2.08', #lib/File/Copy.pm - 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm - 'File::Find' => '1.07', #lib/File/Find.pm - 'File::Path' => '1.06', #lib/File/Path.pm - 'File::Spec' => '0.87', #lib/File/Spec.pm - 'File::stat' => '1.00', #lib/File/stat.pm - 'File::Temp' => '0.14', #lib/File/Temp.pm - 'File::Glob' => '1.03', #lib/File/Glob.pm - 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm - 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm - 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm - 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm - 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm - 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm - 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm - 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm - 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm - 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm - 'Getopt::Long' => '2.34', #lib/Getopt/Long.pm - 'Getopt::Std' => '1.05', #lib/Getopt/Std.pm - 'Hash::Util' => '0.05', #lib/Hash/Util.pm - 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm - 'I18N::LangTags' => '0.33', #lib/I18N/LangTags.pm - 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm - 'I18N::LangTags::Detect'=> '1.03', #lib/I18N/LangTags/Detect.pm - 'I18N::LangTags::List' => '0.29', #lib/I18N/LangTags/List.pm - 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm - 'IPC::Open3' => '1.0106', #lib/IPC/Open3.pm - 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm - 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm - 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm - 'Locale::Constants' => '2.07', #lib/Locale/Constants.pm - 'Locale::Country' => '2.07', #lib/Locale/Country.pm - 'Locale::Currency' => '2.07', #lib/Locale/Currency.pm - 'Locale::Language' => '2.07', #lib/Locale/Language.pm - 'Locale::Maketext' => '1.09', #lib/Locale/Maketext.pm - 'Locale::Script' => '2.07', #lib/Locale/Script.pm - 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm - 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm - 'Math::BigFloat' => '1.44', #lib/Math/BigFloat.pm - 'Math::BigInt' => '1.70', #lib/Math/BigInt.pm - 'Math::BigRat' => '0.12', #lib/Math/BigRat.pm - 'Math::Complex' => '1.34', #lib/Math/Complex.pm - 'Math::Trig' => '1.02', #lib/Math/Trig.pm - 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm - 'Math::BigInt::CalcEmu' => '0.04', #lib/Math/BigInt/CalcEmu.pm - 'Math::BigInt::Calc' => '0.40', #lib/Math/BigInt/Calc.pm - 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm - 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm - 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm - 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm - 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm - 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm - 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm - 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm - 'Net::Cmd' => '2.26', #lib/Net/Cmd.pm - 'Net::Config' => '1.10', #lib/Net/Config.pm - 'Net::Domain' => '2.19', #lib/Net/Domain.pm - 'Net::FTP' => '2.75', #lib/Net/FTP.pm - 'Net::hostent' => '1.01', #lib/Net/hostent.pm - 'Net::netent' => '1.00', #lib/Net/netent.pm - 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm - 'Net::NNTP' => '2.23', #lib/Net/NNTP.pm - 'Net::Ping' => '2.31', #lib/Net/Ping.pm - 'Net::POP3' => '2.28', #lib/Net/POP3.pm - 'Net::protoent' => '1.00', #lib/Net/protoent.pm - 'Net::servent' => '1.01', #lib/Net/servent.pm - 'Net::SMTP' => '2.29', #lib/Net/SMTP.pm - 'Net::Time' => '2.10', #lib/Net/Time.pm - 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm - 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm - 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm - 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm - 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm - 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm - 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm - 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm - 'PerlIO::via::QuotedPrint'=> '0.06', #lib/PerlIO/via/QuotedPrint.pm - 'Pod::Checker' => '1.42', #lib/Pod/Checker.pm - 'Pod::Find' => '0.2401', #lib/Pod/Find.pm - 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm - 'Pod::Html' => '1.0502', #lib/Pod/Html.pm - 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm - 'Pod::LaTeX' => '0.56', #lib/Pod/LaTeX.pm - 'Pod::Man' => '1.37', #lib/Pod/Man.pm - 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm - 'Pod::Parser' => '1.14', #lib/Pod/Parser.pm - 'Pod::ParseUtils' => '1.2', #lib/Pod/ParseUtils.pm - 'Pod::Perldoc' => '3.13', #lib/Pod/Perldoc.pm - 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm - 'Pod::PlainText' => '2.02', #lib/Pod/PlainText.pm - 'Pod::Select' => '1.13', #lib/Pod/Select.pm - 'Pod::Text' => '2.21', #lib/Pod/Text.pm - 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm - 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm - 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm - 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm - 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm - 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm - 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm - 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm - 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm - 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm - 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm - 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm - 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm - 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm - 'Search::Dict' => '1.02', #lib/Search/Dict.pm - 'Term::ANSIColor' => '1.08', #lib/Term/ANSIColor.pm - 'Term::Cap' => '1.09', #lib/Term/Cap.pm - 'Term::Complete' => '1.401', #lib/Term/Complete.pm - 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm - 'Test::Builder' => '0.17', #lib/Test/Builder.pm - 'Test::Harness' => '2.42', #lib/Test/Harness.pm - 'Test::More' => '0.47', #lib/Test/More.pm - 'Test::Simple' => '0.47', #lib/Test/Simple.pm - 'Test::Harness::Assert' => '0.02', #lib/Test/Harness/Assert.pm - 'Test::Harness::Iterator'=> '0.02', #lib/Test/Harness/Iterator.pm - 'Test::Harness::Straps' => '0.19', #lib/Test/Harness/Straps.pm - 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm - 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm - 'Text::ParseWords' => '3.22', #lib/Text/ParseWords.pm - 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm - 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm - 'Text::Wrap' => '2001.09292', #lib/Text/Wrap.pm - 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm - 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm - 'Tie::Array' => '1.03', #lib/Tie/Array.pm - 'Tie::File' => '0.97', #lib/Tie/File.pm - 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm - 'Tie::Hash' => '1.01', #lib/Tie/Hash.pm - 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm - 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm - 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm - 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm - 'Time::Local' => '1.10', #lib/Time/Local.pm - 'Time::localtime' => '1.02', #lib/Time/localtime.pm - 'Time::tm' => '1.00', #lib/Time/tm.pm - 'Time::HiRes' => '1.59', #lib/Time/HiRes.pm - 'Unicode' => '4.0.1', # lib/unicore/version - 'Unicode::Collate' => '0.40', #lib/Unicode/Collate.pm - 'Unicode::UCD' => '0.22', #lib/Unicode/UCD.pm - 'Unicode::Normalize' => '0.30', #lib/Unicode/Normalize.pm - 'User::grent' => '1.00', #lib/User/grent.pm - 'User::pwent' => '1.00', #lib/User/pwent.pm - 'warnings::register' => '1.00', #lib/warnings/register.pm - 'B::Stash' => '1.00', #lib/B/Stash.pm - 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm - 'B::C' => '1.02', #lib/B/C.pm - 'B::Deparse' => '0.67', #lib/B/Deparse.pm - 'B::Debug' => '1.01', #lib/B/Debug.pm - 'B::Bblock' => '1.02', #lib/B/Bblock.pm - 'B::Assembler' => '0.07', #lib/B/Assembler.pm - 'B::Terse' => '1.02', #lib/B/Terse.pm - 'B::CC' => '1.00', #lib/B/CC.pm - 'B::Concise' => '0.61', #lib/B/Concise.pm - 'B::Lint' => '1.02', #lib/B/Lint.pm - 'B::Showlex' => '1.00', #lib/B/Showlex.pm - 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm - 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm - 'B::Xref' => '1.01', #lib/B/Xref.pm - 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm - 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm - 'Encode::Alias' => '2.00', #lib/Encode/Alias.pm - 'Encode::Encoding' => '2.00', #lib/Encode/Encoding.pm - 'Encode::Guess' => '2.00', #lib/Encode/Guess.pm - 'Encode::Config' => '2.00', #lib/Encode/Config.pm - 'Encode::Encoder' => '2.00', #lib/Encode/Encoder.pm - 'Encode::CJKConstants' => '2.00', #lib/Encode/CJKConstants.pm - 'Encode::Byte' => '2.00', #lib/Encode/Byte.pm - 'Encode::CN' => '2.00', #lib/Encode/CN.pm - 'Encode::EBCDIC' => '2.00', #lib/Encode/EBCDIC.pm - 'Encode::JP' => '2.00', #lib/Encode/JP.pm - 'Encode::KR' => '2.00', #lib/Encode/KR.pm - 'Encode::Symbol' => '2.00', #lib/Encode/Symbol.pm - 'Encode::TW' => '2.00', #lib/Encode/TW.pm - 'Encode::Unicode' => '2.00', #lib/Encode/Unicode.pm - 'Encode::JP::H2Z' => '2.00', #lib/Encode/JP/H2Z.pm - 'Encode::JP::JIS7' => '2.00', #lib/Encode/JP/JIS7.pm - 'Encode::Unicode::UTF7' => '2.01', #lib/Encode/Unicode/UTF7.pm - 'Encode::KR::2022_KR' => '2.00', #lib/Encode/KR/2022_KR.pm - 'Encode::MIME::Header' => '2.00', #lib/Encode/MIME/Header.pm - 'Encode::CN::HZ' => '2.01', #lib/Encode/CN/HZ.pm - 'IO::Pipe' => '1.123', #lib/IO/Pipe.pm - 'IO::File' => '1.10', #lib/IO/File.pm - 'IO::Select' => '1.16', #lib/IO/Select.pm - 'IO::Socket' => '1.28', #lib/IO/Socket.pm - 'IO::Poll' => '0.06', #lib/IO/Poll.pm - 'IO::Dir' => '1.04', #lib/IO/Dir.pm - 'IO::Handle' => '1.24', #lib/IO/Handle.pm - 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm - 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm - 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm - 'List::Util' => '1.14', #lib/List/Util.pm - 'Scalar::Util' => '1.14', #lib/Scalar/Util.pm - 'MIME::QuotedPrint' => '3.01', #lib/MIME/QuotedPrint.pm - 'MIME::Base64' => '3.01', #lib/MIME/Base64.pm - 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm - 'Sys::Syslog' => '0.05', #lib/Sys/Syslog.pm - 'XS::APItest' => '0.04', #lib/XS/APItest.pm - 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm - 'threads::shared' => '0.92', #lib/threads/shared.pm - 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm - 'JNI' => '0.2', #jpl/JNI/JNI.pm - 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm - 'JPL::Class' => undef, #jpl/JPL/Class.pm - 'JPL::Compile' => undef, #jpl/JPL/Compile.pm - 'ODBM_File' => '1.05', #ext/ODBM_File/ODBM_File.pm - 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm - 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm - 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm - 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm - 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm - 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm - 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm + delta_from => 5.008004, + changed => { + 'B::Concise' => '0.61', + 'B::Deparse' => '0.67', + 'CGI' => '3.05', + 'CGI::Carp' => '1.28', + 'CGI::Util' => '1.5', + 'Carp' => '1.03', + 'Cwd' => '2.19', + 'DB_File' => '1.809', + 'Digest' => '1.08', + 'Encode' => '2.01', + 'Encode::Alias' => '2.00', + 'Encode::Byte' => '2.00', + 'Encode::CJKConstants' => '2.00', + 'Encode::CN' => '2.00', + 'Encode::CN::HZ' => '2.01', + 'Encode::Config' => '2.00', + 'Encode::EBCDIC' => '2.00', + 'Encode::Encoder' => '2.00', + 'Encode::Encoding' => '2.00', + 'Encode::Guess' => '2.00', + 'Encode::JP' => '2.00', + 'Encode::JP::H2Z' => '2.00', + 'Encode::JP::JIS7' => '2.00', + 'Encode::KR' => '2.00', + 'Encode::KR::2022_KR' => '2.00', + 'Encode::MIME::Header' => '2.00', + 'Encode::Symbol' => '2.00', + 'Encode::TW' => '2.00', + 'Encode::Unicode' => '2.00', + 'Encode::Unicode::UTF7' => '2.01', + 'File::Basename' => '2.73', + 'File::Copy' => '2.08', + 'File::Glob' => '1.03', + 'FileCache' => '1.04_01', + 'I18N::LangTags' => '0.33', + 'I18N::LangTags::Detect'=> '1.03', + 'List::Util' => '1.14', + 'Locale::Constants' => '2.07', + 'Locale::Country' => '2.07', + 'Locale::Currency' => '2.07', + 'Locale::Language' => '2.07', + 'Locale::Maketext' => '1.09', + 'Locale::Script' => '2.07', + 'Net::Cmd' => '2.26', + 'Net::FTP' => '2.75', + 'Net::NNTP' => '2.23', + 'Net::POP3' => '2.28', + 'Net::SMTP' => '2.29', + 'Net::Time' => '2.10', + 'Pod::Checker' => '1.42', + 'Pod::Find' => '0.2401', + 'Pod::LaTeX' => '0.56', + 'Pod::ParseUtils' => '1.2', + 'Pod::Perldoc' => '3.13', + 'Safe' => '2.11', + 'Scalar::Util' => '1.14', + 'Shell' => '0.6', + 'Storable' => '2.13', + 'Term::Cap' => '1.09', + 'Test' => '1.25', + 'Test::Harness' => '2.42', + 'Text::ParseWords' => '3.22', + 'Text::Wrap' => '2001.09292', + 'Time::Local' => '1.10', + 'Unicode::Collate' => '0.40', + 'Unicode::Normalize' => '0.30', + 'XS::APItest' => '0.04', + 'autouse' => '1.04', + 'base' => '2.06', + 'charnames' => '1.04', + 'diagnostics' => '1.13', + 'encoding' => '2.00', + 'threads' => '1.05', + 'utf8' => '1.04', + }, + removed => { + } }, - 5.008006 => { - 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm - 'Attribute::Handlers' => '0.78_01', #lib/Attribute/Handlers.pm - 'attributes' => '0.06', #lib/attributes.pm - 'attrs' => '1.01', #lib/attrs.pm - 'AutoLoader' => '5.60', #lib/AutoLoader.pm - 'AutoSplit' => '1.04', #lib/AutoSplit.pm - 'autouse' => '1.04', #lib/autouse.pm - 'B' => '1.07', #lib/B.pm - 'base' => '2.06', #lib/base.pm - 'B::Asmdata' => '1.01', #lib/B/Asmdata.pm - 'B::Assembler' => '0.07', #lib/B/Assembler.pm - 'B::Bblock' => '1.02', #lib/B/Bblock.pm - 'B::Bytecode' => '1.01', #lib/B/Bytecode.pm - 'B::C' => '1.04', #lib/B/C.pm - 'B::CC' => '1.00', #lib/B/CC.pm - 'B::Concise' => '0.64', #lib/B/Concise.pm - 'B::Debug' => '1.02', #lib/B/Debug.pm - 'B::Deparse' => '0.69', #lib/B/Deparse.pm - 'B::Disassembler' => '1.03', #lib/B/Disassembler.pm - 'Benchmark' => '1.06', #lib/Benchmark.pm - 'bigint' => '0.05', #lib/bigint.pm - 'bignum' => '0.15', #lib/bignum.pm - 'bigrat' => '0.06', #lib/bigrat.pm - 'blib' => '1.02', #lib/blib.pm - 'B::Lint' => '1.03', #lib/B/Lint.pm - 'B::Showlex' => '1.02', #lib/B/Showlex.pm - 'B::Stackobj' => '1.00', #lib/B/Stackobj.pm - 'B::Stash' => '1.00', #lib/B/Stash.pm - 'B::Terse' => '1.02', #lib/B/Terse.pm - 'B::Xref' => '1.01', #lib/B/Xref.pm - 'ByteLoader' => '0.05', #lib/ByteLoader.pm - 'bytes' => '1.01', #lib/bytes.pm - 'Carp' => '1.03', #lib/Carp.pm - 'Carp::Heavy' => '1.03', #lib/Carp/Heavy.pm - 'CGI' => '3.05', #lib/CGI.pm - 'CGI::Apache' => '1.00', #lib/CGI/Apache.pm - 'CGI::Carp' => '1.28', #lib/CGI/Carp.pm - 'CGI::Cookie' => '1.24', #lib/CGI/Cookie.pm - 'CGI::Fast' => '1.05', #lib/CGI/Fast.pm - 'CGI::Pretty' => '1.08', #lib/CGI/Pretty.pm - 'CGI::Push' => '1.04', #lib/CGI/Push.pm - 'CGI::Switch' => '1.00', #lib/CGI/Switch.pm - 'CGI::Util' => '1.5', #lib/CGI/Util.pm - 'charnames' => '1.04', #lib/charnames.pm - 'Class::ISA' => '0.32', #lib/Class/ISA.pm - 'Class::Struct' => '0.63', #lib/Class/Struct.pm - 'Config' => undef, #lib/Config.pm - 'constant' => '1.04', #lib/constant.pm - 'CPAN' => '1.76_01', #lib/CPAN.pm - 'CPAN::FirstTime' => '1.60 ', #lib/CPAN/FirstTime.pm - 'CPAN::Nox' => '1.03', #lib/CPAN/Nox.pm - 'Cwd' => '3.01', #lib/Cwd.pm - 'Data::Dumper' => '2.121_02', #lib/Data/Dumper.pm - 'DB' => '1.0', #lib/DB.pm - 'DB_File' => '1.810', #lib/DB_File.pm - 'DBM_Filter' => '0.01', #lib/DBM_Filter.pm - 'DBM_Filter::compress' => '0.01', #lib/DBM_Filter/compress.pm - 'DBM_Filter::encode' => '0.01', #lib/DBM_Filter/encode.pm - 'DBM_Filter::int32' => '0.01', #lib/DBM_Filter/int32.pm - 'DBM_Filter::null' => '0.01', #lib/DBM_Filter/null.pm - 'DBM_Filter::utf8' => '0.01', #lib/DBM_Filter/utf8.pm - 'Devel::DProf' => '20030813.00', #lib/Devel/DProf.pm - 'Devel::Peek' => '1.02', #lib/Devel/Peek.pm - 'Devel::PPPort' => '3.03', #lib/Devel/PPPort.pm - 'Devel::SelfStubber' => '1.03', #lib/Devel/SelfStubber.pm - 'diagnostics' => '1.14', #lib/diagnostics.pm - 'Digest' => '1.08', #lib/Digest.pm - 'Digest::base' => '1.00', #lib/Digest/base.pm - 'Digest::MD5' => '2.33', #lib/Digest/MD5.pm - 'DirHandle' => '1.00', #lib/DirHandle.pm - 'Dumpvalue' => '1.11', #lib/Dumpvalue.pm - 'DynaLoader' => '1.05', #lib/DynaLoader.pm - 'Encode' => '2.08', #lib/Encode.pm - 'Encode::Alias' => '2.02', #lib/Encode/Alias.pm - 'Encode::Byte' => '2.00', #lib/Encode/Byte.pm - 'Encode::CJKConstants' => '2.00', #lib/Encode/CJKConstants.pm - 'Encode::CN' => '2.00', #lib/Encode/CN.pm - 'Encode::CN::HZ' => '2.01', #lib/Encode/CN/HZ.pm - 'Encode::Config' => '2.00', #lib/Encode/Config.pm - 'Encode::EBCDIC' => '2.00', #lib/Encode/EBCDIC.pm - 'Encode::Encoder' => '2.00', #lib/Encode/Encoder.pm - 'Encode::Encoding' => '2.02', #lib/Encode/Encoding.pm - 'Encode::Guess' => '2.00', #lib/Encode/Guess.pm - 'Encode::JP' => '2.01', #lib/Encode/JP.pm - 'Encode::JP::H2Z' => '2.00', #lib/Encode/JP/H2Z.pm - 'Encode::JP::JIS7' => '2.00', #lib/Encode/JP/JIS7.pm - 'Encode::KR' => '2.00', #lib/Encode/KR.pm - 'Encode::KR::2022_KR' => '2.00', #lib/Encode/KR/2022_KR.pm - 'Encode::MIME::Header' => '2.00', #lib/Encode/MIME/Header.pm - 'Encode::Symbol' => '2.00', #lib/Encode/Symbol.pm - 'Encode::TW' => '2.00', #lib/Encode/TW.pm - 'Encode::Unicode' => '2.02', #lib/Encode/Unicode.pm - 'Encode::Unicode::UTF7' => '2.01', #lib/Encode/Unicode/UTF7.pm - 'encoding' => '2.01', #lib/encoding.pm - 'English' => '1.01', #lib/English.pm - 'Env' => '1.00', #lib/Env.pm - 'Errno' => '1.09_00', #lib/Errno.pm - 'Exporter' => '5.58', #lib/Exporter.pm - 'Exporter::Heavy' => '5.58', #lib/Exporter/Heavy.pm - 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm - 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm - 'ExtUtils::Constant' => '0.1401', #lib/ExtUtils/Constant.pm - 'ExtUtils::Embed' => '1.250601', #lib/ExtUtils/Embed.pm - 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm - 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm - 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm - 'ExtUtils::Liblist::Kid'=> '1.3001', #lib/ExtUtils/Liblist/Kid.pm - 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm - 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm - 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm - 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm - 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm - 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm - 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm - 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm - 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm - 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm - 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm - 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm - 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm - 'ExtUtils::MM_NW5' => '2.07_02', #lib/ExtUtils/MM_NW5.pm - 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm - 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm - 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm - 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm - 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm - 'ExtUtils::MM_Win95' => '0.0301', #lib/ExtUtils/MM_Win95.pm - 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm - 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm - 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm - 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm - 'Fatal' => '1.03', #lib/Fatal.pm - 'Fcntl' => '1.05', #lib/Fcntl.pm - 'fields' => '2.03', #lib/fields.pm - 'File::Basename' => '2.73', #lib/File/Basename.pm - 'FileCache' => '1.04_01', #lib/FileCache.pm - 'File::CheckTree' => '4.3', #lib/File/CheckTree.pm - 'File::Compare' => '1.1003', #lib/File/Compare.pm - 'File::Copy' => '2.08', #lib/File/Copy.pm - 'File::DosGlob' => '1.00', #lib/File/DosGlob.pm - 'File::Find' => '1.07', #lib/File/Find.pm - 'File::Glob' => '1.03', #lib/File/Glob.pm - 'FileHandle' => '2.01', #lib/FileHandle.pm - 'File::Path' => '1.06', #lib/File/Path.pm - 'File::Spec' => '3.01', #lib/File/Spec.pm - 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm - 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm - 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm - 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm - 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm - 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm - 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm - 'File::Spec::Win32' => '1.5', #lib/File/Spec/Win32.pm - 'File::stat' => '1.00', #lib/File/stat.pm - 'File::Temp' => '0.14', #lib/File/Temp.pm - 'filetest' => '1.01', #lib/filetest.pm - 'Filter::Simple' => '0.78', #lib/Filter/Simple.pm - 'Filter::Util::Call' => '1.0601', #lib/Filter/Util/Call.pm - 'FindBin' => '1.44', #lib/FindBin.pm - 'GDBM_File' => '1.07', #lib/GDBM_File.pm - 'Getopt::Long' => '2.34', #lib/Getopt/Long.pm - 'Getopt::Std' => '1.05', #lib/Getopt/Std.pm - 'Hash::Util' => '0.05', #lib/Hash/Util.pm - 'I18N::Collate' => '1.00', #lib/I18N/Collate.pm - 'I18N::Langinfo' => '0.02', #lib/I18N/Langinfo.pm - 'I18N::LangTags' => '0.35', #lib/I18N/LangTags.pm - 'I18N::LangTags::Detect'=> '1.03', #lib/I18N/LangTags/Detect.pm - 'I18N::LangTags::List' => '0.35', #lib/I18N/LangTags/List.pm - 'if' => '0.03', #lib/if.pm - 'integer' => '1.00', #lib/integer.pm - 'IO' => '1.21', #lib/IO.pm - 'IO::Dir' => '1.04', #lib/IO/Dir.pm - 'IO::File' => '1.10', #lib/IO/File.pm - 'IO::Handle' => '1.24', #lib/IO/Handle.pm - 'IO::Pipe' => '1.123', #lib/IO/Pipe.pm - 'IO::Poll' => '0.06', #lib/IO/Poll.pm - 'IO::Seekable' => '1.09', #lib/IO/Seekable.pm - 'IO::Select' => '1.16', #lib/IO/Select.pm - 'IO::Socket' => '1.28', #lib/IO/Socket.pm - 'IO::Socket::INET' => '1.27', #lib/IO/Socket/INET.pm - 'IO::Socket::UNIX' => '1.21', #lib/IO/Socket/UNIX.pm - 'IPC::Msg' => '1.02', #lib/IPC/Msg.pm - 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm - 'IPC::Open3' => '1.0106', #lib/IPC/Open3.pm - 'IPC::Semaphore' => '1.02', #lib/IPC/Semaphore.pm - 'IPC::SysV' => '1.04', #lib/IPC/SysV.pm - 'JNI' => '0.2', #jpl/JNI/JNI.pm - 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm - 'JPL::Class' => undef, #jpl/JPL/Class.pm - 'JPL::Compile' => undef, #jpl/JPL/Compile.pm - 'less' => '0.01', #lib/less.pm - 'lib' => '0.5565', #lib/lib.pm - 'List::Util' => '1.14', #lib/List/Util.pm - 'locale' => '1.00', #lib/locale.pm - 'Locale::Constants' => '2.07', #lib/Locale/Constants.pm - 'Locale::Country' => '2.07', #lib/Locale/Country.pm - 'Locale::Currency' => '2.07', #lib/Locale/Currency.pm - 'Locale::Language' => '2.07', #lib/Locale/Language.pm - 'Locale::Maketext' => '1.09', #lib/Locale/Maketext.pm - 'Locale::Maketext::GutsLoader'=> undef, #lib/Locale/Maketext/GutsLoader.pm - 'Locale::Maketext::Guts'=> undef, #lib/Locale/Maketext/Guts.pm - 'Locale::Script' => '2.07', #lib/Locale/Script.pm - 'Math::BigFloat' => '1.47', #lib/Math/BigFloat.pm - 'Math::BigFloat::Trace' => '0.01', #lib/Math/BigFloat/Trace.pm - 'Math::BigInt' => '1.73', #lib/Math/BigInt.pm - 'Math::BigInt::Calc' => '0.43', #lib/Math/BigInt/Calc.pm - 'Math::BigInt::CalcEmu' => '0.04', #lib/Math/BigInt/CalcEmu.pm - 'Math::BigInt::Trace' => '0.01', #lib/Math/BigInt/Trace.pm - 'Math::BigRat' => '0.13', #lib/Math/BigRat.pm - 'Math::Complex' => '1.34', #lib/Math/Complex.pm - 'Math::Trig' => '1.02', #lib/Math/Trig.pm - 'Memoize' => '1.01', #lib/Memoize.pm - 'Memoize::AnyDBM_File' => '0.65', #lib/Memoize/AnyDBM_File.pm - 'Memoize::Expire' => '1.00', #lib/Memoize/Expire.pm - 'Memoize::ExpireFile' => '1.01', #lib/Memoize/ExpireFile.pm - 'Memoize::ExpireTest' => '0.65', #lib/Memoize/ExpireTest.pm - 'Memoize::NDBM_File' => '0.65', #lib/Memoize/NDBM_File.pm - 'Memoize::SDBM_File' => '0.65', #lib/Memoize/SDBM_File.pm - 'Memoize::Storable' => '0.65', #lib/Memoize/Storable.pm - 'MIME::Base64' => '3.05', #lib/MIME/Base64.pm - 'MIME::QuotedPrint' => '3.03', #lib/MIME/QuotedPrint.pm - 'NDBM_File' => '1.05', #lib/NDBM_File.pm - 'Net::Cmd' => '2.26', #lib/Net/Cmd.pm - 'Net::Config' => '1.10', #lib/Net/Config.pm - 'Net::Domain' => '2.19', #lib/Net/Domain.pm - 'Net::FTP' => '2.75', #lib/Net/FTP.pm - 'Net::FTP::A' => '1.16', #lib/Net/FTP/A.pm - 'Net::FTP::dataconn' => '0.11', #lib/Net/FTP/dataconn.pm - 'Net::FTP::E' => '0.01', #lib/Net/FTP/E.pm - 'Net::FTP::I' => '1.12', #lib/Net/FTP/I.pm - 'Net::FTP::L' => '0.01', #lib/Net/FTP/L.pm - 'Net::hostent' => '1.01', #lib/Net/hostent.pm - 'Net::netent' => '1.00', #lib/Net/netent.pm - 'Net::Netrc' => '2.12', #lib/Net/Netrc.pm - 'Net::NNTP' => '2.23', #lib/Net/NNTP.pm - 'Net::Ping' => '2.31', #lib/Net/Ping.pm - 'Net::POP3' => '2.28', #lib/Net/POP3.pm - 'Net::protoent' => '1.00', #lib/Net/protoent.pm - 'Net::servent' => '1.01', #lib/Net/servent.pm - 'Net::SMTP' => '2.29', #lib/Net/SMTP.pm - 'Net::Time' => '2.10', #lib/Net/Time.pm - 'NEXT' => '0.60', #lib/NEXT.pm - 'O' => '1.00', #lib/O.pm - 'ODBM_File' => '1.05', #ext/ODBM_File/ODBM_File.pm - 'Opcode' => '1.05', #lib/Opcode.pm - 'open' => '1.04', #lib/open.pm - 'ops' => '1.00', #lib/ops.pm - 'OS2::DLL' => '1.02', #os2/OS2/REXX/DLL/DLL.pm - 'OS2::ExtAttr' => '0.02', #os2/OS2/ExtAttr/ExtAttr.pm - 'OS2::PrfDB' => '0.03', #os2/OS2/PrfDB/PrfDB.pm - 'OS2::Process' => '1.01', #os2/OS2/Process/Process.pm - 'OS2::REXX' => '1.02', #os2/OS2/REXX/REXX.pm - 'overload' => '1.02', #lib/overload.pm - 'PerlIO' => '1.03', #lib/PerlIO.pm - 'PerlIO::encoding' => '0.07', #lib/PerlIO/encoding.pm - 'PerlIO::scalar' => '0.02', #lib/PerlIO/scalar.pm - 'PerlIO::via' => '0.02', #lib/PerlIO/via.pm - 'PerlIO::via::QuotedPrint'=> '0.06', #lib/PerlIO/via/QuotedPrint.pm - 'Pod::Checker' => '1.42', #lib/Pod/Checker.pm - 'Pod::Find' => '0.2401', #lib/Pod/Find.pm - 'Pod::Functions' => '1.02', #lib/Pod/Functions.pm - 'Pod::Html' => '1.0502', #lib/Pod/Html.pm - 'Pod::InputObjects' => '1.14', #lib/Pod/InputObjects.pm - 'Pod::LaTeX' => '0.56', #lib/Pod/LaTeX.pm - 'Pod::Man' => '1.37', #lib/Pod/Man.pm - 'Pod::ParseLink' => '1.06', #lib/Pod/ParseLink.pm - 'Pod::Parser' => '1.14', #lib/Pod/Parser.pm - 'Pod::ParseUtils' => '1.2', #lib/Pod/ParseUtils.pm - 'Pod::Perldoc' => '3.13', #lib/Pod/Perldoc.pm - 'Pod::Perldoc::BaseTo' => undef, #lib/Pod/Perldoc/BaseTo.pm - 'Pod::Perldoc::GetOptsOO'=> undef, #lib/Pod/Perldoc/GetOptsOO.pm - 'Pod::Perldoc::ToChecker'=> undef, #lib/Pod/Perldoc/ToChecker.pm - 'Pod::Perldoc::ToMan' => undef, #lib/Pod/Perldoc/ToMan.pm - 'Pod::Perldoc::ToNroff' => undef, #lib/Pod/Perldoc/ToNroff.pm - 'Pod::Perldoc::ToPod' => undef, #lib/Pod/Perldoc/ToPod.pm - 'Pod::Perldoc::ToRtf' => undef, #lib/Pod/Perldoc/ToRtf.pm - 'Pod::Perldoc::ToText' => undef, #lib/Pod/Perldoc/ToText.pm - 'Pod::Perldoc::ToTk' => 'undef', #lib/Pod/Perldoc/ToTk.pm - 'Pod::Perldoc::ToXml' => undef, #lib/Pod/Perldoc/ToXml.pm - 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm - 'Pod::PlainText' => '2.02', #lib/Pod/PlainText.pm - 'Pod::Select' => '1.13', #lib/Pod/Select.pm - 'Pod::Text' => '2.21', #lib/Pod/Text.pm - 'Pod::Text::Color' => '1.04', #lib/Pod/Text/Color.pm - 'Pod::Text::Overstrike' => '1.1', #lib/Pod/Text/Overstrike.pm - 'Pod::Text::Termcap' => '1.11', #lib/Pod/Text/Termcap.pm - 'Pod::Usage' => '1.16', #lib/Pod/Usage.pm - 'POSIX' => '1.08', #lib/POSIX.pm - 're' => '0.04', #lib/re.pm - 'Safe' => '2.11', #lib/Safe.pm - 'Scalar::Util' => '1.14', #lib/Scalar/Util.pm - 'SDBM_File' => '1.04', #lib/SDBM_File.pm - 'Search::Dict' => '1.02', #lib/Search/Dict.pm - 'SelectSaver' => '1.00', #lib/SelectSaver.pm - 'SelfLoader' => '1.0904', #lib/SelfLoader.pm - 'Shell' => '0.6', #lib/Shell.pm - 'sigtrap' => '1.02', #lib/sigtrap.pm - 'Socket' => '1.77', #lib/Socket.pm - 'sort' => '1.02', #lib/sort.pm - 'Storable' => '2.13', #lib/Storable.pm - 'strict' => '1.03', #lib/strict.pm - 'subs' => '1.00', #lib/subs.pm - 'Switch' => '2.10', #lib/Switch.pm - 'Symbol' => '1.05', #lib/Symbol.pm - 'Sys::Hostname' => '1.11', #lib/Sys/Hostname.pm - 'Sys::Syslog' => '0.05', #lib/Sys/Syslog.pm - 'Term::ANSIColor' => '1.08', #lib/Term/ANSIColor.pm - 'Term::Cap' => '1.09', #lib/Term/Cap.pm - 'Term::Complete' => '1.401', #lib/Term/Complete.pm - 'Term::ReadLine' => '1.01', #lib/Term/ReadLine.pm - 'Test' => '1.25', #lib/Test.pm - 'Test::Builder' => '0.17', #lib/Test/Builder.pm - 'Test::Harness' => '2.42', #lib/Test/Harness.pm - 'Test::Harness::Assert' => '0.02', #lib/Test/Harness/Assert.pm - 'Test::Harness::Iterator'=> '0.02', #lib/Test/Harness/Iterator.pm - 'Test::Harness::Straps' => '0.19', #lib/Test/Harness/Straps.pm - 'Test::More' => '0.47', #lib/Test/More.pm - 'Test::Simple' => '0.47', #lib/Test/Simple.pm - 'Text::Abbrev' => '1.01', #lib/Text/Abbrev.pm - 'Text::Balanced' => '1.95', #lib/Text/Balanced.pm - 'Text::ParseWords' => '3.23', #lib/Text/ParseWords.pm - 'Text::Soundex' => '1.01', #lib/Text/Soundex.pm - 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm - 'Text::Wrap' => '2001.09292', #lib/Text/Wrap.pm - 'Thread' => '2.00', #lib/Thread.pm - 'Thread::Queue' => '2.00', #lib/Thread/Queue.pm - 'threads' => '1.05', #lib/threads.pm - 'Thread::Semaphore' => '2.01', #lib/Thread/Semaphore.pm - 'Thread::Signal' => '1.00', #ext/Thread/Thread/Signal.pm - 'Thread::Specific' => '1.00', #ext/Thread/Thread/Specific.pm - 'threads::shared' => '0.92', #lib/threads/shared.pm - 'Tie::Array' => '1.03', #lib/Tie/Array.pm - 'Tie::File' => '0.97', #lib/Tie/File.pm - 'Tie::Handle' => '4.1', #lib/Tie/Handle.pm - 'Tie::Hash' => '1.01', #lib/Tie/Hash.pm - 'Tie::Memoize' => '1.0', #lib/Tie/Memoize.pm - 'Tie::RefHash' => '1.31', #lib/Tie/RefHash.pm - 'Tie::Scalar' => '1.00', #lib/Tie/Scalar.pm - 'Tie::SubstrHash' => '1.00', #lib/Tie/SubstrHash.pm - 'Time::gmtime' => '1.02', #lib/Time/gmtime.pm - 'Time::HiRes' => '1.65', #lib/Time/HiRes.pm - 'Time::Local' => '1.10', #lib/Time/Local.pm - 'Time::localtime' => '1.02', #lib/Time/localtime.pm - 'Time::tm' => '1.00', #lib/Time/tm.pm - 'Unicode::Collate' => '0.40', #lib/Unicode/Collate.pm - 'Unicode::Normalize' => '0.30', #lib/Unicode/Normalize.pm - 'Unicode::UCD' => '0.22', #lib/Unicode/UCD.pm - 'UNIVERSAL' => '1.01', #lib/UNIVERSAL.pm - 'Unicode' => '4.0.1', # lib/unicore/version - 'User::grent' => '1.00', #lib/User/grent.pm - 'User::pwent' => '1.00', #lib/User/pwent.pm - 'utf8' => '1.04', #lib/utf8.pm - 'vars' => '1.01', #lib/vars.pm - 'VMS::DCLsym' => '1.02', #vms/ext/DCLsym/DCLsym.pm - 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm - 'vmsish' => '1.01', #lib/vmsish.pm - 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm - 'warnings' => '1.03', #lib/warnings.pm - 'warnings::register' => '1.00', #lib/warnings/register.pm - 'XS::APItest' => '0.05', #lib/XS/APItest.pm - 'XSLoader' => '0.02', #lib/XSLoader.pm - 'XS::Typemap' => '0.01', #lib/XS/Typemap.pm - }, - - 5.009002 => { - 'AnyDBM_File' => '1.00', - 'Attribute::Handlers' => '0.78_01', - 'AutoLoader' => '5.60', - 'AutoSplit' => '1.04', - 'B' => '1.07', - 'B::Asmdata' => '1.01', - 'B::Assembler' => '0.07', - 'B::Bblock' => '1.02', - 'B::Bytecode' => '1.01', - 'B::C' => '1.04', - 'B::CC' => '1.00', - 'B::Concise' => '0.64', - 'B::Debug' => '1.02', - 'B::Deparse' => '0.69', - 'B::Disassembler' => '1.03', - 'B::Lint' => '1.03', - 'B::Showlex' => '1.02', - 'B::Stackobj' => '1.00', - 'B::Stash' => '1.00', - 'B::Terse' => '1.02', - 'B::Xref' => '1.01', - 'Benchmark' => '1.07', - 'ByteLoader' => '0.05', - 'CGI' => '3.07', - 'CGI::Apache' => '1.00', - 'CGI::Carp' => '1.29', - 'CGI::Cookie' => '1.25', - 'CGI::Fast' => '1.05', - 'CGI::Pretty' => '1.08', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.00', - 'CGI::Util' => '1.5', - 'CPAN' => '1.76_01', - 'CPAN::FirstTime' => '1.60 ', - 'CPAN::Nox' => '1.03', - 'Carp' => '1.04', - 'Carp::Heavy' => '1.04', - 'Class::ISA' => '0.33', - 'Class::Struct' => '0.63', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.05', - 'DB' => '1.0', - 'DBM_Filter' => '0.01', - 'DBM_Filter::compress' => '0.01', - 'DBM_Filter::encode' => '0.01', - 'DBM_Filter::int32' => '0.01', - 'DBM_Filter::null' => '0.01', - 'DBM_Filter::utf8' => '0.01', - 'DB_File' => '1.811', - 'DCLsym' => '1.02', - 'Data::Dumper' => '2.121_04', - 'Devel::DProf' => '20030813.00', - 'Devel::PPPort' => '3.06', - 'Devel::Peek' => '1.02', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.10', - 'Digest::MD5' => '2.33', - 'Digest::base' => '1.00', - 'Digest::file' => '0.01', - 'DirHandle' => '1.00', - 'Dumpvalue' => '1.11', - 'DynaLoader' => '1.07', - 'Encode' => '2.09', - 'Encode::Alias' => '2.02', - 'Encode::Byte' => '2.00', - 'Encode::CJKConstants' => '2.00', - 'Encode::CN' => '2.00', - 'Encode::CN::HZ' => '2.01', - 'Encode::Config' => '2.00', - 'Encode::EBCDIC' => '2.00', - 'Encode::Encoder' => '2.00', - 'Encode::Encoding' => '2.02', - 'Encode::Guess' => '2.00', - 'Encode::JP' => '2.01', - 'Encode::JP::H2Z' => '2.00', - 'Encode::JP::JIS7' => '2.00', - 'Encode::KR' => '2.00', - 'Encode::KR::2022_KR' => '2.00', - 'Encode::MIME::Header' => '2.00', - 'Encode::Symbol' => '2.00', - 'Encode::TW' => '2.00', - 'Encode::Unicode' => '2.02', - 'Encode::Unicode::UTF7' => '2.01', - 'English' => '1.03', - 'Env' => '1.00', - 'Errno' => '1.09_01', - 'Exporter' => '5.59', - 'Exporter::Heavy' => '5.59', - 'ExtUtils::Command' => '1.07', - 'ExtUtils::Command::MM' => '0.03_01', - 'ExtUtils::Constant' => '0.16', - 'ExtUtils::Constant::Base'=> '0.01', - 'ExtUtils::Constant::Utils'=> '0.01', - 'ExtUtils::Constant::XS'=> '0.01', - 'ExtUtils::Embed' => '1.26', - 'ExtUtils::Install' => '1.32', - 'ExtUtils::Installed' => '0.08', - 'ExtUtils::Liblist' => '1.01', - 'ExtUtils::Liblist::Kid'=> '1.3', - 'ExtUtils::MM' => '0.04', - 'ExtUtils::MM_Any' => '0.10', - 'ExtUtils::MM_BeOS' => '1.04', - 'ExtUtils::MM_Cygwin' => '1.07', - 'ExtUtils::MM_DOS' => '0.02', - 'ExtUtils::MM_MacOS' => '1.08', - 'ExtUtils::MM_NW5' => '2.07', - 'ExtUtils::MM_OS2' => '1.04', - 'ExtUtils::MM_UWIN' => '0.02', - 'ExtUtils::MM_Unix' => '1.46_01', - 'ExtUtils::MM_VMS' => '5.71', - 'ExtUtils::MM_Win32' => '1.10', - 'ExtUtils::MM_Win95' => '0.03', - 'ExtUtils::MY' => '0.01', - 'ExtUtils::MakeMaker' => '6.25', - 'ExtUtils::MakeMaker::bytes'=> '0.01', - 'ExtUtils::MakeMaker::vmsish'=> '0.01', - 'ExtUtils::Manifest' => '1.44', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '1.15', - 'ExtUtils::Mksymlists' => '1.19', - 'ExtUtils::Packlist' => '0.04', - 'ExtUtils::testlib' => '1.15', - 'Fatal' => '1.04', - 'Fcntl' => '1.05', - 'File::Basename' => '2.73', - 'File::CheckTree' => '4.3', - 'File::Compare' => '1.1003', - 'File::Copy' => '2.08', - 'File::DosGlob' => '1.00', - 'File::Find' => '1.09', - 'File::Glob' => '1.04', - 'File::Path' => '1.06', - 'File::Spec' => '3.05', - 'File::Spec::Cygwin' => '1.1', - 'File::Spec::Epoc' => '1.1', - 'File::Spec::Functions' => '1.3', - 'File::Spec::Mac' => '1.4', - 'File::Spec::OS2' => '1.2', - 'File::Spec::Unix' => '1.5', - 'File::Spec::VMS' => '1.4', - 'File::Spec::Win32' => '1.5', - 'File::Temp' => '0.16', - 'File::stat' => '1.00', - 'FileCache' => '1.04_01', - 'FileHandle' => '2.01', - 'Filespec' => '1.11', - 'Filter::Simple' => '0.78', - 'Filter::Util::Call' => '1.0601', - 'FindBin' => '1.44', - 'GDBM_File' => '1.07', - 'Getopt::Long' => '2.3401', - 'Getopt::Std' => '1.05', - 'Hash::Util' => '0.05', - 'I18N::Collate' => '1.00', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.21', - 'IO::Dir' => '1.04', - 'IO::File' => '1.10', - 'IO::Handle' => '1.24', - 'IO::Pipe' => '1.123', - 'IO::Poll' => '0.06', - 'IO::Seekable' => '1.09', - 'IO::Select' => '1.16', - 'IO::Socket' => '1.28', - 'IO::Socket::INET' => '1.27', - 'IO::Socket::UNIX' => '1.21', - 'IPC::Msg' => '1.02', - 'IPC::Open2' => '1.01', - 'IPC::Open3' => '1.0106', - 'IPC::Semaphore' => '1.02', - 'IPC::SysV' => '1.04', - 'List::Util' => '1.14', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.09', - 'Locale::Maketext::Guts'=> undef, - 'Locale::Maketext::GutsLoader'=> undef, - 'Locale::Script' => '2.07', - 'MIME::Base64' => '3.05', - 'MIME::QuotedPrint' => '3.03', - 'Math::BigFloat' => '1.49', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.75', - 'Math::BigInt::Calc' => '0.45', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.14', - 'Math::Complex' => '1.34', - 'Math::Trig' => '1.02', - 'Memoize' => '1.01_01', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::CoreList' => '1.99', - 'NDBM_File' => '1.05', - 'NEXT' => '0.60_01', - 'Net::Cmd' => '2.26', - 'Net::Config' => '1.10', - 'Net::Domain' => '2.19', - 'Net::FTP' => '2.75', - 'Net::FTP::A' => '1.16', - 'Net::FTP::E' => '0.01', - 'Net::FTP::I' => '1.12', - 'Net::FTP::L' => '0.01', - 'Net::FTP::dataconn' => '0.11', - 'Net::NNTP' => '2.23', - 'Net::Netrc' => '2.12', - 'Net::POP3' => '2.28', - 'Net::Ping' => '2.31', - 'Net::SMTP' => '2.29', - 'Net::Time' => '2.10', - 'Net::hostent' => '1.01', - 'Net::netent' => '1.00', - 'Net::protoent' => '1.00', - 'Net::servent' => '1.01', - 'O' => '1.00', - 'ODBM_File' => '1.05', - 'Opcode' => '1.06', - 'POSIX' => '1.08', - 'PerlIO' => '1.03', - 'PerlIO::encoding' => '0.07', - 'PerlIO::scalar' => '0.02', - 'PerlIO::via' => '0.02', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.42', - 'Pod::Find' => '1.3', - 'Pod::Functions' => '1.02', - 'Pod::Html' => '1.0502', - 'Pod::InputObjects' => '1.3', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '1.37', - 'Pod::ParseLink' => '1.06', - 'Pod::ParseUtils' => '1.3', - 'Pod::Parser' => '1.3', - 'Pod::Perldoc' => '3.14', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.02', - 'Pod::Plainer' => '0.01', - 'Pod::Select' => '1.3', - 'Pod::Text' => '2.21', - 'Pod::Text::Color' => '1.04', - 'Pod::Text::Overstrike' => '1.1', - 'Pod::Text::Termcap' => '1.11', - 'Pod::Usage' => '1.3', - 'SDBM_File' => '1.04', - 'Safe' => '2.11', - 'Scalar::Util' => '1.14_1', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.01', - 'SelfLoader' => '1.0904', - 'Shell' => '0.6', - 'Socket' => '1.77', - 'Stdio' => '2.3', - 'Storable' => '2.14', - 'Switch' => '2.10', - 'Symbol' => '1.05', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.06', - 'Term::ANSIColor' => '1.09', - 'Term::Cap' => '1.09', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.01', - 'Test' => '1.25', - 'Test::Builder' => '0.22', - 'Test::Harness' => '2.46', - 'Test::Harness::Assert' => '0.02', - 'Test::Harness::Iterator'=> '0.02', - 'Test::Harness::Straps' => '0.20_01', - 'Test::More' => '0.54', - 'Test::Simple' => '0.54', - 'Text::Abbrev' => '1.01', - 'Text::Balanced' => '1.95_01', - 'Text::ParseWords' => '3.24', - 'Text::Soundex' => '1.01', - 'Text::Tabs' => '98.112801', - 'Text::Wrap' => '2001.09292', - 'Thread' => '2.00', - 'Thread::Queue' => '2.00', - 'Thread::Semaphore' => '2.01', - 'Thread::Signal' => '1.00', - 'Thread::Specific' => '1.00', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97', - 'Tie::Handle' => '4.1', - 'Tie::Hash' => '1.01', - 'Tie::Memoize' => '1.0', - 'Tie::RefHash' => '1.32', - 'Tie::Scalar' => '1.00', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.66', - 'Time::Local' => '1.11', - 'Time::gmtime' => '1.02', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.02', - 'Unicode' => '4.0.1', - 'Unicode::Collate' => '0.40', - 'Unicode::Normalize' => '0.30', - 'Unicode::UCD' => '0.22', - 'User::grent' => '1.00', - 'User::pwent' => '1.00', - 'Win32' => '0.23', - 'XS::APItest' => '0.05', - 'XS::Typemap' => '0.01', - 'XSLoader' => '0.03', - 'XSSymSet' => '1.0', - 'assertions' => '0.01', - 'assertions::activate' => '0.01', - 'attributes' => '0.06', - 'attrs' => '1.01', - 'autouse' => '1.04', - 'base' => '2.06', - 'bigint' => '0.06', - 'bignum' => '0.16', - 'bigrat' => '0.07', - 'blib' => '1.02', - 'bytes' => '1.01', - 'charnames' => '1.04', - 'constant' => '1.05', - 'diagnostics' => '1.14', - 'encoding' => '2.01', - 'encoding::warnings' => '0.05', - 'fields' => '2.03', - 'filetest' => '1.01', - 'if' => '0.0401', - 'integer' => '1.00', - 'less' => '0.01', - 'lib' => '0.5565', - 'locale' => '1.00', - 'open' => '1.04', - 'ops' => '1.00', - 'overload' => '1.03', - 're' => '0.05', - 'sigtrap' => '1.02', - 'sort' => '1.02', - 'strict' => '1.03', - 'subs' => '1.00', - 'threads' => '1.05', - 'threads::shared' => '0.92', - 'utf8' => '1.04', - 'vars' => '1.01', - 'version' => '0.42', - 'vmsish' => '1.01', - 'warnings' => '1.04', - 'warnings::register' => '1.00', + delta_from => 5.008005, + changed => { + 'B' => '1.07', + 'B::C' => '1.04', + 'B::Concise' => '0.64', + 'B::Debug' => '1.02', + 'B::Deparse' => '0.69', + 'B::Lint' => '1.03', + 'B::Showlex' => '1.02', + 'Carp::Heavy' => '1.03', + 'Cwd' => '3.01', + 'DB_File' => '1.810', + 'Data::Dumper' => '2.121_02', + 'Devel::PPPort' => '3.03', + 'Devel::Peek' => '1.02', + 'Encode' => '2.08', + 'Encode::Alias' => '2.02', + 'Encode::Encoding' => '2.02', + 'Encode::JP' => '2.01', + 'Encode::Unicode' => '2.02', + 'Exporter::Heavy' => '5.58', + 'ExtUtils::Constant' => '0.1401', + 'File::Spec' => '3.01', + 'File::Spec::Win32' => '1.5', + 'I18N::LangTags' => '0.35', + 'I18N::LangTags::List' => '0.35', + 'MIME::Base64' => '3.05', + 'MIME::QuotedPrint' => '3.03', + 'Math::BigFloat' => '1.47', + 'Math::BigInt' => '1.73', + 'Math::BigInt::Calc' => '0.43', + 'Math::BigRat' => '0.13', + 'Text::ParseWords' => '3.23', + 'Time::HiRes' => '1.65', + 'XS::APItest' => '0.05', + 'diagnostics' => '1.14', + 'encoding' => '2.01', + 'open' => '1.04', + 'overload' => '1.02', + }, + removed => { + } }, - 5.008007 => { - 'AnyDBM_File' => '1.00', - 'Attribute::Handlers' => '0.78_01', - 'AutoLoader' => '5.60', - 'AutoSplit' => '1.04', - 'B' => '1.09', - 'B::Asmdata' => '1.01', - 'B::Assembler' => '0.07', - 'B::Bblock' => '1.02', - 'B::Bytecode' => '1.01', - 'B::C' => '1.04', - 'B::CC' => '1.00', - 'B::Concise' => '0.65', - 'B::Debug' => '1.02', - 'B::Deparse' => '0.7', - 'B::Disassembler' => '1.04', - 'B::Lint' => '1.03', - 'B::Showlex' => '1.02', - 'B::Stackobj' => '1.00', - 'B::Stash' => '1.00', - 'B::Terse' => '1.03', - 'B::Xref' => '1.01', - 'Benchmark' => '1.07', - 'ByteLoader' => '0.05', - 'CGI' => '3.10', - 'CGI::Apache' => '1.00', - 'CGI::Carp' => '1.29', - 'CGI::Cookie' => '1.25', - 'CGI::Fast' => '1.05', - 'CGI::Pretty' => '1.08', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.00', - 'CGI::Util' => '1.5', - 'CPAN' => '1.76_01', - 'CPAN::FirstTime' => '1.60 ', - 'CPAN::Nox' => '1.03', - 'Carp' => '1.04', - 'Carp::Heavy' => '1.04', - 'Class::ISA' => '0.33', - 'Class::Struct' => '0.63', - 'Config' => undef, - 'Cwd' => '3.05', - 'DB' => '1.0', - 'DBM_Filter' => '0.01', - 'DBM_Filter::compress' => '0.01', - 'DBM_Filter::encode' => '0.01', - 'DBM_Filter::int32' => '0.01', - 'DBM_Filter::null' => '0.01', - 'DBM_Filter::utf8' => '0.01', - 'DB_File' => '1.811', - 'DCLsym' => '1.02', - 'Data::Dumper' => '2.121_04', - 'Devel::DProf' => '20050310.00', - 'Devel::PPPort' => '3.06', - 'Devel::Peek' => '1.02', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.10', - 'Digest::MD5' => '2.33', - 'Digest::base' => '1.00', - 'Digest::file' => '0.01', - 'DirHandle' => '1.00', - 'Dumpvalue' => '1.11', - 'DynaLoader' => '1.05', - 'Encode' => '2.10', - 'Encode::Alias' => '2.03', - 'Encode::Byte' => '2.00', - 'Encode::CJKConstants' => '2.00', - 'Encode::CN' => '2.00', - 'Encode::CN::HZ' => '2.01', - 'Encode::Config' => '2.00', - 'Encode::EBCDIC' => '2.00', - 'Encode::Encoder' => '2.00', - 'Encode::Encoding' => '2.02', - 'Encode::Guess' => '2.00', - 'Encode::JP' => '2.01', - 'Encode::JP::H2Z' => '2.00', - 'Encode::JP::JIS7' => '2.00', - 'Encode::KR' => '2.00', - 'Encode::KR::2022_KR' => '2.00', - 'Encode::MIME::Header' => '2.00', - 'Encode::Symbol' => '2.00', - 'Encode::TW' => '2.00', - 'Encode::Unicode' => '2.02', - 'Encode::Unicode::UTF7' => '2.01', - 'English' => '1.01', - 'Env' => '1.00', - 'Errno' => '1.09_01', - 'Exporter' => '5.58', - 'Exporter::Heavy' => '5.58', - 'ExtUtils::Command' => '1.05', - 'ExtUtils::Command::MM' => '0.03', - 'ExtUtils::Constant' => '0.16', - 'ExtUtils::Constant::Base'=> '0.01', - 'ExtUtils::Constant::Utils'=> '0.01', - 'ExtUtils::Constant::XS'=> '0.01', - 'ExtUtils::Embed' => '1.250601', - 'ExtUtils::Install' => '1.32', - 'ExtUtils::Installed' => '0.08', - 'ExtUtils::Liblist' => '1.01', - 'ExtUtils::Liblist::Kid'=> '1.3001', - 'ExtUtils::MM' => '0.04', - 'ExtUtils::MM_Any' => '0.07', - 'ExtUtils::MM_BeOS' => '1.04', - 'ExtUtils::MM_Cygwin' => '1.06', - 'ExtUtils::MM_DOS' => '0.02', - 'ExtUtils::MM_MacOS' => '1.07', - 'ExtUtils::MM_NW5' => '2.07_02', - 'ExtUtils::MM_OS2' => '1.04', - 'ExtUtils::MM_UWIN' => '0.02', - 'ExtUtils::MM_Unix' => '1.42', - 'ExtUtils::MM_VMS' => '5.70', - 'ExtUtils::MM_Win32' => '1.09', - 'ExtUtils::MM_Win95' => '0.0301', - 'ExtUtils::MY' => '0.01', - 'ExtUtils::MakeMaker' => '6.17', - 'ExtUtils::MakeMaker::bytes'=> '0.01', - 'ExtUtils::MakeMaker::vmsish'=> '0.01', - 'ExtUtils::Manifest' => '1.42', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '1.15', - 'ExtUtils::Mksymlists' => '1.19', - 'ExtUtils::Packlist' => '0.04', - 'ExtUtils::testlib' => '1.15', - 'Fatal' => '1.03', - 'Fcntl' => '1.05', - 'File::Basename' => '2.73', - 'File::CheckTree' => '4.3', - 'File::Compare' => '1.1003', - 'File::Copy' => '2.08', - 'File::DosGlob' => '1.00', - 'File::Find' => '1.09', - 'File::Glob' => '1.04', - 'File::Path' => '1.07', - 'File::Spec' => '3.05', - 'File::Spec::Cygwin' => '1.1', - 'File::Spec::Epoc' => '1.1', - 'File::Spec::Functions' => '1.3', - 'File::Spec::Mac' => '1.4', - 'File::Spec::OS2' => '1.2', - 'File::Spec::Unix' => '1.5', - 'File::Spec::VMS' => '1.4', - 'File::Spec::Win32' => '1.5', - 'File::Temp' => '0.16', - 'File::stat' => '1.00', - 'FileCache' => '1.05', - 'FileHandle' => '2.01', - 'Filespec' => '1.11', - 'Filter::Simple' => '0.78', - 'Filter::Util::Call' => '1.0601', - 'FindBin' => '1.44', - 'GDBM_File' => '1.07', - 'Getopt::Long' => '2.34', - 'Getopt::Std' => '1.05', - 'Hash::Util' => '0.05', - 'I18N::Collate' => '1.00', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.21', - 'IO::Dir' => '1.04', - 'IO::File' => '1.11', - 'IO::Handle' => '1.24', - 'IO::Pipe' => '1.123', - 'IO::Poll' => '0.06', - 'IO::Seekable' => '1.09', - 'IO::Select' => '1.16', - 'IO::Socket' => '1.28', - 'IO::Socket::INET' => '1.28', - 'IO::Socket::UNIX' => '1.21', - 'IPC::Msg' => '1.02', - 'IPC::Open2' => '1.01', - 'IPC::Open3' => '1.0106', - 'IPC::Semaphore' => '1.02', - 'IPC::SysV' => '1.04', - 'List::Util' => '1.14', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.09', - 'Locale::Maketext::Guts'=> undef, - 'Locale::Maketext::GutsLoader'=> undef, - 'Locale::Script' => '2.07', - 'MIME::Base64' => '3.05', - 'MIME::QuotedPrint' => '3.03', - 'Math::BigFloat' => '1.51', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.77', - 'Math::BigInt::Calc' => '0.47', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.15', - 'Math::Complex' => '1.34', - 'Math::Trig' => '1.02', - 'Memoize' => '1.01', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'NDBM_File' => '1.05', - 'NEXT' => '0.60', - 'Net::Cmd' => '2.26', - 'Net::Config' => '1.10', - 'Net::Domain' => '2.19', - 'Net::FTP' => '2.75', - 'Net::FTP::A' => '1.16', - 'Net::FTP::E' => '0.01', - 'Net::FTP::I' => '1.12', - 'Net::FTP::L' => '0.01', - 'Net::FTP::dataconn' => '0.11', - 'Net::NNTP' => '2.23', - 'Net::Netrc' => '2.12', - 'Net::POP3' => '2.28', - 'Net::Ping' => '2.31', - 'Net::SMTP' => '2.29', - 'Net::Time' => '2.10', - 'Net::hostent' => '1.01', - 'Net::netent' => '1.00', - 'Net::protoent' => '1.00', - 'Net::servent' => '1.01', - 'O' => '1.00', - 'ODBM_File' => '1.05', - 'Opcode' => '1.05', - 'POSIX' => '1.08', - 'PerlIO' => '1.03', - 'PerlIO::encoding' => '0.07', - 'PerlIO::scalar' => '0.02', - 'PerlIO::via' => '0.02', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.42', - 'Pod::Find' => '1.3', - 'Pod::Functions' => '1.02', - 'Pod::Html' => '1.0503', - 'Pod::InputObjects' => '1.3', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '1.37', - 'Pod::ParseLink' => '1.06', - 'Pod::ParseUtils' => '1.3', - 'Pod::Parser' => '1.3', - 'Pod::Perldoc' => '3.14', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.02', - 'Pod::Plainer' => '0.01', - 'Pod::Select' => '1.3', - 'Pod::Text' => '2.21', - 'Pod::Text::Color' => '1.04', - 'Pod::Text::Overstrike' => '1.1', - 'Pod::Text::Termcap' => '1.11', - 'Pod::Usage' => '1.3', - 'SDBM_File' => '1.04', - 'Safe' => '2.11', - 'Scalar::Util' => '1.14', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.01', - 'SelfLoader' => '1.0904', - 'Shell' => '0.6', - 'Socket' => '1.77', - 'Stdio' => '2.3', - 'Storable' => '2.13', - 'Switch' => '2.10', - 'Symbol' => '1.06', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.06', - 'Term::ANSIColor' => '1.09', - 'Term::Cap' => '1.09', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.01', - 'Test' => '1.25', - 'Test::Builder' => '0.22', - 'Test::Harness' => '2.48', - 'Test::Harness::Assert' => '0.02', - 'Test::Harness::Iterator'=> '0.02', - 'Test::Harness::Point' => '0.01', - 'Test::Harness::Straps' => '0.23', - 'Test::More' => '0.54', - 'Test::Simple' => '0.54', - 'Text::Abbrev' => '1.01', - 'Text::Balanced' => '1.95', - 'Text::ParseWords' => '3.24', - 'Text::Soundex' => '1.01', - 'Text::Tabs' => '98.112801', - 'Text::Wrap' => '2001.09293', - 'Thread' => '2.00', - 'Thread::Queue' => '2.00', - 'Thread::Semaphore' => '2.01', - 'Thread::Signal' => '1.00', - 'Thread::Specific' => '1.00', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97', - 'Tie::Handle' => '4.1', - 'Tie::Hash' => '1.01', - 'Tie::Memoize' => '1.0', - 'Tie::RefHash' => '1.32', - 'Tie::Scalar' => '1.00', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.66', - 'Time::Local' => '1.11', - 'Time::gmtime' => '1.02', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.01', - 'Unicode' => '4.1.0', # lib/unicore/version - 'Unicode::Collate' => '0.40', - 'Unicode::Normalize' => '0.32', - 'Unicode::UCD' => '0.23', - 'User::grent' => '1.00', - 'User::pwent' => '1.00', - 'Win32' => '0.24', - 'XS::APItest' => '0.06', - 'XS::Typemap' => '0.01', - 'XSLoader' => '0.02', - 'XSSymSet' => '1.0', - 'attributes' => '0.06', - 'attrs' => '1.01', - 'autouse' => '1.04', - 'base' => '2.07', - 'bigint' => '0.07', - 'bignum' => '0.17', - 'bigrat' => '0.08', - 'blib' => '1.02', - 'bytes' => '1.02', - 'charnames' => '1.04', - 'constant' => '1.05', - 'diagnostics' => '1.14', - 'encoding' => '2.01', - 'fields' => '2.03', - 'filetest' => '1.01', - 'if' => '0.03', - 'integer' => '1.00', - 'less' => '0.01', - 'lib' => '0.5565', - 'locale' => '1.00', - 'open' => '1.04', - 'ops' => '1.00', - 'overload' => '1.03', - 're' => '0.04', - 'sigtrap' => '1.02', - 'sort' => '1.02', - 'strict' => '1.03', - 'subs' => '1.00', - 'threads' => '1.05', - 'threads::shared' => '0.93', - 'utf8' => '1.05', - 'vars' => '1.01', - 'vmsish' => '1.01', - 'warnings' => '1.03', - 'warnings::register' => '1.00', - }, - - 5.009003 => { - 'AnyDBM_File' => '1.00', - 'Archive::Tar' => '1.26_01', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.78_02', - 'AutoLoader' => '5.60', - 'AutoSplit' => '1.04_01', - 'B' => '1.10', - 'B::Asmdata' => '1.01', - 'B::Assembler' => '0.07', - 'B::Bblock' => '1.02', - 'B::Bytecode' => '1.01', - 'B::C' => '1.04', - 'B::CC' => '1.00', - 'B::Concise' => '0.67', - 'B::Debug' => '1.02', - 'B::Deparse' => '0.73', - 'B::Disassembler' => '1.05', - 'B::Lint' => '1.04', - 'B::Showlex' => '1.02', - 'B::Stackobj' => '1.00', - 'B::Stash' => '1.00', - 'B::Terse' => '1.03', - 'B::Xref' => '1.01', - 'Benchmark' => '1.07', - 'ByteLoader' => '0.06', - 'CGI' => '3.15_01', - 'CGI::Apache' => '1.00', - 'CGI::Carp' => '1.29', - 'CGI::Cookie' => '1.26', - 'CGI::Fast' => '1.05', - 'CGI::Pretty' => '1.08', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.00', - 'CGI::Util' => '1.5', - 'CPAN' => '1.83_58', - 'CPAN::Debug' => '4.44', - 'CPAN::FirstTime' => '4.50', - 'CPAN::HandleConfig' => '4.31', - 'CPAN::Nox' => '2.31', - 'CPAN::Tarzip' => '3.36', - 'CPAN::Version' => '2.55', - 'Carp' => '1.05', - 'Carp::Heavy' => '1.05', - 'Class::ISA' => '0.33', - 'Class::Struct' => '0.63', - 'Compress::Zlib' => '2.000_07', - 'Compress::Zlib::Common'=> '2.000_07', - 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07', - 'Compress::Zlib::Compress::Zip::Constants'=> '1.00', - 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05', - 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05', - 'Compress::Zlib::File::GlobMapper'=> '0.000_02', - 'Compress::Zlib::FileConstants'=> '2.000_07', - 'Compress::Zlib::IO::Compress::Base'=> '2.000_05', - 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07', - 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07', - 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07', - 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04', - 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07', - 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05', - 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05', - 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07', - 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07', - 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07', - 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05', - 'Compress::Zlib::ParseParameters'=> '2.000_07', - 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05', - 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.15', - 'DB' => '1.01', - 'DBM_Filter' => '0.01', - 'DBM_Filter::compress' => '0.01', - 'DBM_Filter::encode' => '0.01', - 'DBM_Filter::int32' => '0.01', - 'DBM_Filter::null' => '0.01', - 'DBM_Filter::utf8' => '0.01', - 'DB_File' => '1.814', - 'DCLsym' => '1.02', - 'Data::Dumper' => '2.121_08', - 'Devel::DProf' => '20050603.00', - 'Devel::PPPort' => '3.08', - 'Devel::Peek' => '1.03', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.14', - 'Digest::MD5' => '2.36', - 'Digest::SHA' => '5.32', - 'Digest::base' => '1.00', - 'Digest::file' => '1.00', - 'DirHandle' => '1.01', - 'Dumpvalue' => '1.12', - 'DynaLoader' => '1.07', - 'Encode' => '2.14', - 'Encode::Alias' => '2.04', - 'Encode::Byte' => '2.00', - 'Encode::CJKConstants' => '2.00', - 'Encode::CN' => '2.00', - 'Encode::CN::HZ' => '2.02', - 'Encode::Config' => '2.01', - 'Encode::EBCDIC' => '2.00', - 'Encode::Encoder' => '2.00', - 'Encode::Encoding' => '2.02', - 'Encode::Guess' => '2.00', - 'Encode::JP' => '2.01', - 'Encode::JP::H2Z' => '2.00', - 'Encode::JP::JIS7' => '2.00', - 'Encode::KR' => '2.00', - 'Encode::KR::2022_KR' => '2.00', - 'Encode::MIME::Header' => '2.02', - 'Encode::MIME::Header::ISO_2022_JP'=> '1.01', - 'Encode::Symbol' => '2.00', - 'Encode::TW' => '2.00', - 'Encode::Unicode' => '2.02', - 'Encode::Unicode::UTF7' => '2.01', - 'English' => '1.04', - 'Env' => '1.00', - 'Errno' => '1.09_01', - 'Exporter' => '5.59', - 'Exporter::Heavy' => '5.59', - 'ExtUtils::CBuilder' => '0.15', - 'ExtUtils::CBuilder::Base'=> '0.12', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.12', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.12', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.12', - 'ExtUtils::CBuilder::Platform::aix'=> '0.12', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.12', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01', - 'ExtUtils::CBuilder::Platform::os2'=> '0.13', - 'ExtUtils::Command' => '1.09', - 'ExtUtils::Command::MM' => '0.05_01', - 'ExtUtils::Constant' => '0.2', - 'ExtUtils::Constant::Base'=> '0.02', - 'ExtUtils::Constant::ProxySubs'=> '0.01', - 'ExtUtils::Constant::Utils'=> '0.01', - 'ExtUtils::Constant::XS'=> '0.02', - 'ExtUtils::Embed' => '1.26', - 'ExtUtils::Install' => '1.33', - 'ExtUtils::Installed' => '0.08', - 'ExtUtils::Liblist' => '1.01', - 'ExtUtils::Liblist::Kid'=> '1.3', - 'ExtUtils::MM' => '0.05', - 'ExtUtils::MM_AIX' => '0.03', - 'ExtUtils::MM_Any' => '0.13_01', - 'ExtUtils::MM_BeOS' => '1.05', - 'ExtUtils::MM_Cygwin' => '1.08', - 'ExtUtils::MM_DOS' => '0.02', - 'ExtUtils::MM_MacOS' => '1.08', - 'ExtUtils::MM_NW5' => '2.08', - 'ExtUtils::MM_OS2' => '1.05', - 'ExtUtils::MM_QNX' => '0.02', - 'ExtUtils::MM_UWIN' => '0.02', - 'ExtUtils::MM_Unix' => '1.50_01', - 'ExtUtils::MM_VMS' => '5.73', - 'ExtUtils::MM_VOS' => '0.02', - 'ExtUtils::MM_Win32' => '1.12', - 'ExtUtils::MM_Win95' => '0.04', - 'ExtUtils::MY' => '0.01', - 'ExtUtils::MakeMaker' => '6.30_01', - 'ExtUtils::MakeMaker::Config'=> '0.02', - 'ExtUtils::MakeMaker::bytes'=> '0.01', - 'ExtUtils::MakeMaker::vmsish'=> '0.01', - 'ExtUtils::Manifest' => '1.46', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '1.15', - 'ExtUtils::Mksymlists' => '1.19', - 'ExtUtils::Packlist' => '0.04', - 'ExtUtils::ParseXS' => '2.15_02', - 'ExtUtils::testlib' => '1.15', - 'Fatal' => '1.04', - 'Fcntl' => '1.05', - 'File::Basename' => '2.74', - 'File::CheckTree' => '4.3', - 'File::Compare' => '1.1005', - 'File::Copy' => '2.09', - 'File::DosGlob' => '1.00', - 'File::Find' => '1.10', - 'File::Glob' => '1.05', - 'File::Path' => '1.08', - 'File::Spec' => '3.15', - 'File::Spec::Cygwin' => '1.1', - 'File::Spec::Epoc' => '1.1', - 'File::Spec::Functions' => '1.3', - 'File::Spec::Mac' => '1.4', - 'File::Spec::OS2' => '1.2', - 'File::Spec::Unix' => '1.5', - 'File::Spec::VMS' => '1.4', - 'File::Spec::Win32' => '1.6', - 'File::Temp' => '0.16_01', - 'File::stat' => '1.00', - 'FileCache' => '1.06', - 'FileHandle' => '2.01', - 'Filespec' => '1.11', - 'Filter::Simple' => '0.82', - 'Filter::Util::Call' => '1.0601', - 'FindBin' => '1.47', - 'GDBM_File' => '1.08', - 'Getopt::Long' => '2.35', - 'Getopt::Std' => '1.05', - 'Hash::Util' => '0.05', - 'I18N::Collate' => '1.00', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.22', - 'IO::Dir' => '1.05', - 'IO::File' => '1.13_01', - 'IO::Handle' => '1.26', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.29_01', - 'IO::Socket::INET' => '1.29_02', - 'IO::Socket::UNIX' => '1.22_01', - 'IO::Zlib' => '1.04_02', - 'IPC::Msg' => '1.02', - 'IPC::Open2' => '1.02', - 'IPC::Open3' => '1.02', - 'IPC::Semaphore' => '1.02', - 'IPC::SysV' => '1.04', - 'List::Util' => '1.18', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.10_01', - 'Locale::Maketext::Guts'=> undef, - 'Locale::Maketext::GutsLoader'=> undef, - 'Locale::Script' => '2.07', - 'MIME::Base64' => '3.07', - 'MIME::QuotedPrint' => '3.07', - 'Math::BigFloat' => '1.51', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.77', - 'Math::BigInt::Calc' => '0.47', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.10', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.15', - 'Math::Complex' => '1.35', - 'Math::Trig' => '1.03', - 'Memoize' => '1.01_01', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::CoreList' => '2.02', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.06', - 'NEXT' => '0.60_01', - 'Net::Cmd' => '2.26_01', - 'Net::Config' => '1.10', - 'Net::Domain' => '2.19_01', - 'Net::FTP' => '2.75', - 'Net::FTP::A' => '1.16', - 'Net::FTP::E' => '0.01', - 'Net::FTP::I' => '1.12', - 'Net::FTP::L' => '0.01', - 'Net::FTP::dataconn' => '0.11', - 'Net::NNTP' => '2.23', - 'Net::Netrc' => '2.12', - 'Net::POP3' => '2.28', - 'Net::Ping' => '2.31_04', - 'Net::SMTP' => '2.29', - 'Net::Time' => '2.10', - 'Net::hostent' => '1.01', - 'Net::netent' => '1.00', - 'Net::protoent' => '1.00', - 'Net::servent' => '1.01', - 'O' => '1.00', - 'ODBM_File' => '1.06', - 'Opcode' => '1.08', - 'POSIX' => '1.10', - 'PerlIO' => '1.04', - 'PerlIO::encoding' => '0.09', - 'PerlIO::scalar' => '0.04', - 'PerlIO::via' => '0.03', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.43', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.34', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.0504', - 'Pod::InputObjects' => '1.3', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.04', - 'Pod::ParseLink' => '1.06', - 'Pod::ParseUtils' => '1.33', - 'Pod::Parser' => '1.32', - 'Pod::Perldoc' => '3.14_01', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.02', - 'Pod::Plainer' => '0.01', - 'Pod::Select' => '1.3', - 'Pod::Simple' => '3.04', - 'Pod::Simple::BlackBox' => undef, - 'Pod::Simple::Checker' => '2.02', - 'Pod::Simple::Debug' => undef, - 'Pod::Simple::DumpAsText'=> '2.02', - 'Pod::Simple::DumpAsXML'=> '2.02', - 'Pod::Simple::HTML' => '3.03', - 'Pod::Simple::HTMLBatch'=> '3.02', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> undef, - 'Pod::Simple::Methody' => '2.02', - 'Pod::Simple::Progress' => '1.01', - 'Pod::Simple::PullParser'=> '2.02', - 'Pod::Simple::PullParserEndToken'=> undef, - 'Pod::Simple::PullParserStartToken'=> undef, - 'Pod::Simple::PullParserTextToken'=> undef, - 'Pod::Simple::PullParserToken'=> '2.02', - 'Pod::Simple::RTF' => '2.02', - 'Pod::Simple::Search' => '3.04', - 'Pod::Simple::SimpleTree'=> '2.02', - 'Pod::Simple::Text' => '2.02', - 'Pod::Simple::TextContent'=> '2.02', - 'Pod::Simple::TiedOutFH'=> undef, - 'Pod::Simple::Transcode'=> undef, - 'Pod::Simple::TranscodeDumb'=> '2.02', - 'Pod::Simple::TranscodeSmart'=> undef, - 'Pod::Simple::XMLOutStream'=> '2.02', - 'Pod::Text' => '3.01', - 'Pod::Text::Color' => '2.01', - 'Pod::Text::Overstrike' => '2', - 'Pod::Text::Termcap' => '2.01', - 'Pod::Usage' => '1.33_01', - 'SDBM_File' => '1.05', - 'Safe' => '2.12', - 'Scalar::Util' => '1.18', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.01', - 'SelfLoader' => '1.0905', - 'Shell' => '0.6', - 'Socket' => '1.78', - 'Stdio' => '2.3', - 'Storable' => '2.15_02', - 'Switch' => '2.10_01', - 'Symbol' => '1.06', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.13', - 'Term::ANSIColor' => '1.10', - 'Term::Cap' => '1.09', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.02', - 'Test' => '1.25', - 'Test::Builder' => '0.32', - 'Test::Builder::Module' => '0.03', - 'Test::Builder::Tester' => '1.02', - 'Test::Builder::Tester::Color'=> undef, - 'Test::Harness' => '2.56', - 'Test::Harness::Assert' => '0.02', - 'Test::Harness::Iterator'=> '0.02', - 'Test::Harness::Point' => '0.01', - 'Test::Harness::Straps' => '0.26', - 'Test::More' => '0.62', - 'Test::Simple' => '0.62', - 'Text::Abbrev' => '1.01', - 'Text::Balanced' => '1.95_01', - 'Text::ParseWords' => '3.24', - 'Text::Soundex' => '1.01', - 'Text::Tabs' => '2005.0824', - 'Text::Wrap' => '2005.082401', - 'Thread' => '2.00', - 'Thread::Queue' => '2.00', - 'Thread::Semaphore' => '2.01', - 'Thread::Signal' => '1.00', - 'Thread::Specific' => '1.00', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_01', - 'Tie::Handle' => '4.1', - 'Tie::Hash' => '1.02', - 'Tie::Memoize' => '1.0', - 'Tie::RefHash' => '1.32', - 'Tie::Scalar' => '1.00', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.86', - 'Time::Local' => '1.11', - 'Time::gmtime' => '1.02', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.03', - 'Unicode' => '4.1.0', - 'Unicode::Collate' => '0.52', - 'Unicode::Normalize' => '0.32', - 'Unicode::UCD' => '0.24', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'Win32' => '0.2601', - 'XS::APItest' => '0.09', - 'XS::Typemap' => '0.02', - 'XSLoader' => '0.06', - 'XSSymSet' => '1.0', - 'assertions' => '0.02', - 'assertions::activate' => '0.02', - 'assertions::compat' => undef, - 'attributes' => '0.06', - 'attrs' => '1.02', - 'autouse' => '1.05', - 'base' => '2.07', - 'bigint' => '0.07', - 'bignum' => '0.17', - 'bigrat' => '0.08', - 'blib' => '1.03', - 'bytes' => '1.02', - 'charnames' => '1.05', - 'constant' => '1.07', - 'diagnostics' => '1.15', - 'encoding' => '2.02', - 'encoding::warnings' => '0.05', - 'feature' => '1.00', - 'fields' => '2.03', - 'filetest' => '1.01', - 'if' => '0.05', - 'integer' => '1.00', - 'less' => '0.01', - 'lib' => '0.5565', - 'locale' => '1.00', - 'open' => '1.05', - 'ops' => '1.01', - 'overload' => '1.04', - 're' => '0.06', - 'sigtrap' => '1.02', - 'sort' => '2.00', - 'strict' => '1.03', - 'subs' => '1.00', - 'threads' => '1.07', - 'threads::shared' => '0.94', - 'utf8' => '1.06', - 'vars' => '1.01', - 'version' => '0.53', - 'vmsish' => '1.02', - 'warnings' => '1.05', - 'warnings::register' => '1.01', + delta_from => 5.008006, + changed => { + 'B' => '1.09', + 'B::Concise' => '0.65', + 'B::Deparse' => '0.7', + 'B::Disassembler' => '1.04', + 'B::Terse' => '1.03', + 'Benchmark' => '1.07', + 'CGI' => '3.10', + 'CGI::Carp' => '1.29', + 'CGI::Cookie' => '1.25', + 'Carp' => '1.04', + 'Carp::Heavy' => '1.04', + 'Class::ISA' => '0.33', + 'Cwd' => '3.05', + 'DB_File' => '1.811', + 'Data::Dumper' => '2.121_04', + 'Devel::DProf' => '20050310.00', + 'Devel::PPPort' => '3.06', + 'Digest' => '1.10', + 'Digest::file' => '0.01', + 'Encode' => '2.10', + 'Encode::Alias' => '2.03', + 'Errno' => '1.09_01', + 'ExtUtils::Constant' => '0.16', + 'ExtUtils::Constant::Base'=> '0.01', + 'ExtUtils::Constant::Utils'=> '0.01', + 'ExtUtils::Constant::XS'=> '0.01', + 'File::Find' => '1.09', + 'File::Glob' => '1.04', + 'File::Path' => '1.07', + 'File::Spec' => '3.05', + 'File::Temp' => '0.16', + 'FileCache' => '1.05', + 'IO::File' => '1.11', + 'IO::Socket::INET' => '1.28', + 'Math::BigFloat' => '1.51', + 'Math::BigInt' => '1.77', + 'Math::BigInt::Calc' => '0.47', + 'Math::BigInt::CalcEmu' => '0.05', + 'Math::BigRat' => '0.15', + 'Pod::Find' => '1.3', + 'Pod::Html' => '1.0503', + 'Pod::InputObjects' => '1.3', + 'Pod::LaTeX' => '0.58', + 'Pod::ParseUtils' => '1.3', + 'Pod::Parser' => '1.3', + 'Pod::Perldoc' => '3.14', + 'Pod::Perldoc::ToTk' => undef, + 'Pod::Select' => '1.3', + 'Pod::Usage' => '1.3', + 'SelectSaver' => '1.01', + 'Symbol' => '1.06', + 'Sys::Syslog' => '0.06', + 'Term::ANSIColor' => '1.09', + 'Term::Complete' => '1.402', + 'Test::Builder' => '0.22', + 'Test::Harness' => '2.48', + 'Test::Harness::Point' => '0.01', + 'Test::Harness::Straps' => '0.23', + 'Test::More' => '0.54', + 'Test::Simple' => '0.54', + 'Text::ParseWords' => '3.24', + 'Text::Wrap' => '2001.09293', + 'Tie::RefHash' => '1.32', + 'Time::HiRes' => '1.66', + 'Time::Local' => '1.11', + 'Unicode' => '4.1.0', + 'Unicode::Normalize' => '0.32', + 'Unicode::UCD' => '0.23', + 'Win32' => '0.24', + 'XS::APItest' => '0.06', + 'base' => '2.07', + 'bigint' => '0.07', + 'bignum' => '0.17', + 'bigrat' => '0.08', + 'bytes' => '1.02', + 'constant' => '1.05', + 'overload' => '1.03', + 'threads::shared' => '0.93', + 'utf8' => '1.05', + }, + removed => { + 'JNI' => 1, + 'JPL::AutoLoader' => 1, + 'JPL::Class' => 1, + 'JPL::Compile' => 1, + 'OS2::DLL' => 1, + 'OS2::ExtAttr' => 1, + 'OS2::PrfDB' => 1, + 'OS2::Process' => 1, + 'OS2::REXX' => 1, + } }, - 5.008008 => { - 'AnyDBM_File' => '1.00', - 'Attribute::Handlers' => '0.78_02', - 'AutoLoader' => '5.60', - 'AutoSplit' => '1.04', - 'B' => '1.09_01', - 'B::Asmdata' => '1.01', - 'B::Assembler' => '0.07', - 'B::Bblock' => '1.02_01', - 'B::Bytecode' => '1.01_01', - 'B::C' => '1.04_01', - 'B::CC' => '1.00_01', - 'B::Concise' => '0.66', - 'B::Debug' => '1.02_01', - 'B::Deparse' => '0.71', - 'B::Disassembler' => '1.05', - 'B::Lint' => '1.03', - 'B::Showlex' => '1.02', - 'B::Stackobj' => '1.00', - 'B::Stash' => '1.00', - 'B::Terse' => '1.03_01', - 'B::Xref' => '1.01', - 'Benchmark' => '1.07', - 'ByteLoader' => '0.06', - 'CGI' => '3.15', - 'CGI::Apache' => '1.00', - 'CGI::Carp' => '1.29', - 'CGI::Cookie' => '1.26', - 'CGI::Fast' => '1.05', - 'CGI::Pretty' => '1.08', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.00', - 'CGI::Util' => '1.5', - 'CPAN' => '1.76_02', - 'CPAN::FirstTime' => '1.60 ', - 'CPAN::Nox' => '1.03', - 'Carp' => '1.04', - 'Carp::Heavy' => '1.04', - 'Class::ISA' => '0.33', - 'Class::Struct' => '0.63', - 'Config' => undef, - 'Cwd' => '3.12', - 'DB' => '1.01', - 'DBM_Filter' => '0.01', - 'DBM_Filter::compress' => '0.01', - 'DBM_Filter::encode' => '0.01', - 'DBM_Filter::int32' => '0.01', - 'DBM_Filter::null' => '0.01', - 'DBM_Filter::utf8' => '0.01', - 'DB_File' => '1.814', - 'DCLsym' => '1.02', - 'Data::Dumper' => '2.121_08', - 'Devel::DProf' => '20050603.00', - 'Devel::PPPort' => '3.06_01', - 'Devel::Peek' => '1.03', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.14', - 'Digest::MD5' => '2.36', - 'Digest::base' => '1.00', - 'Digest::file' => '1.00', - 'DirHandle' => '1.00', - 'Dumpvalue' => '1.12', - 'DynaLoader' => '1.05', - 'Encode' => '2.12', - 'Encode::Alias' => '2.04', - 'Encode::Byte' => '2.00', - 'Encode::CJKConstants' => '2.00', - 'Encode::CN' => '2.00', - 'Encode::CN::HZ' => '2.01', - 'Encode::Config' => '2.01', - 'Encode::EBCDIC' => '2.00', - 'Encode::Encoder' => '2.00', - 'Encode::Encoding' => '2.02', - 'Encode::Guess' => '2.00', - 'Encode::JP' => '2.01', - 'Encode::JP::H2Z' => '2.00', - 'Encode::JP::JIS7' => '2.00', - 'Encode::KR' => '2.00', - 'Encode::KR::2022_KR' => '2.00', - 'Encode::MIME::Header' => '2.01', - 'Encode::MIME::Header::ISO_2022_JP'=> '1.01', - 'Encode::Symbol' => '2.00', - 'Encode::TW' => '2.00', - 'Encode::Unicode' => '2.02', - 'Encode::Unicode::UTF7' => '2.01', - 'English' => '1.02', - 'Env' => '1.00', - 'Errno' => '1.09_01', - 'Exporter' => '5.58', - 'Exporter::Heavy' => '5.58', - 'ExtUtils::Command' => '1.09', - 'ExtUtils::Command::MM' => '0.05', - 'ExtUtils::Constant' => '0.17', - 'ExtUtils::Constant::Base'=> '0.01', - 'ExtUtils::Constant::Utils'=> '0.01', - 'ExtUtils::Constant::XS'=> '0.01', - 'ExtUtils::Embed' => '1.26', - 'ExtUtils::Install' => '1.33', - 'ExtUtils::Installed' => '0.08', - 'ExtUtils::Liblist' => '1.01', - 'ExtUtils::Liblist::Kid'=> '1.3', - 'ExtUtils::MM' => '0.05', - 'ExtUtils::MM_AIX' => '0.03', - 'ExtUtils::MM_Any' => '0.13', - 'ExtUtils::MM_BeOS' => '1.05', - 'ExtUtils::MM_Cygwin' => '1.08', - 'ExtUtils::MM_DOS' => '0.02', - 'ExtUtils::MM_MacOS' => '1.08', - 'ExtUtils::MM_NW5' => '2.08', - 'ExtUtils::MM_OS2' => '1.05', - 'ExtUtils::MM_QNX' => '0.02', - 'ExtUtils::MM_UWIN' => '0.02', - 'ExtUtils::MM_Unix' => '1.50', - 'ExtUtils::MM_VMS' => '5.73', - 'ExtUtils::MM_VOS' => '0.02', - 'ExtUtils::MM_Win32' => '1.12', - 'ExtUtils::MM_Win95' => '0.04', - 'ExtUtils::MY' => '0.01', - 'ExtUtils::MakeMaker' => '6.30', - 'ExtUtils::MakeMaker::Config'=> '0.02', - 'ExtUtils::MakeMaker::bytes'=> '0.01', - 'ExtUtils::MakeMaker::vmsish'=> '0.01', - 'ExtUtils::Manifest' => '1.46', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '1.15', - 'ExtUtils::Mksymlists' => '1.19', - 'ExtUtils::Packlist' => '0.04', - 'ExtUtils::testlib' => '1.15', - 'Fatal' => '1.03', - 'Fcntl' => '1.05', - 'File::Basename' => '2.74', - 'File::CheckTree' => '4.3', - 'File::Compare' => '1.1003', - 'File::Copy' => '2.09', - 'File::DosGlob' => '1.00', - 'File::Find' => '1.10', - 'File::Glob' => '1.05', - 'File::Path' => '1.08', - 'File::Spec' => '3.12', - 'File::Spec::Cygwin' => '1.1', - 'File::Spec::Epoc' => '1.1', - 'File::Spec::Functions' => '1.3', - 'File::Spec::Mac' => '1.4', - 'File::Spec::OS2' => '1.2', - 'File::Spec::Unix' => '1.5', - 'File::Spec::VMS' => '1.4', - 'File::Spec::Win32' => '1.6', - 'File::Temp' => '0.16', - 'File::stat' => '1.00', - 'FileCache' => '1.06', - 'FileHandle' => '2.01', - 'Filespec' => '1.11', - 'Filter::Simple' => '0.82', - 'Filter::Util::Call' => '1.0601', - 'FindBin' => '1.47', - 'GDBM_File' => '1.08', - 'Getopt::Long' => '2.35', - 'Getopt::Std' => '1.05', - 'Hash::Util' => '0.05', - 'I18N::Collate' => '1.00', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.22', - 'IO::Dir' => '1.05', - 'IO::File' => '1.13', - 'IO::Handle' => '1.25', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.29', - 'IO::Socket::INET' => '1.29', - 'IO::Socket::UNIX' => '1.22', - 'IPC::Msg' => '1.02', - 'IPC::Open2' => '1.02', - 'IPC::Open3' => '1.02', - 'IPC::Semaphore' => '1.02', - 'IPC::SysV' => '1.04', - 'List::Util' => '1.18', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.09', - 'Locale::Maketext::Guts'=> undef, - 'Locale::Maketext::GutsLoader'=> undef, - 'Locale::Script' => '2.07', - 'MIME::Base64' => '3.07', - 'MIME::QuotedPrint' => '3.07', - 'Math::BigFloat' => '1.51', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.77', - 'Math::BigInt::Calc' => '0.47', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.15', - 'Math::Complex' => '1.35', - 'Math::Trig' => '1.03', - 'Memoize' => '1.01', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'NDBM_File' => '1.06', - 'NEXT' => '0.60', - 'Net::Cmd' => '2.26', - 'Net::Config' => '1.10', - 'Net::Domain' => '2.19', - 'Net::FTP' => '2.75', - 'Net::FTP::A' => '1.16', - 'Net::FTP::E' => '0.01', - 'Net::FTP::I' => '1.12', - 'Net::FTP::L' => '0.01', - 'Net::FTP::dataconn' => '0.11', - 'Net::NNTP' => '2.23', - 'Net::Netrc' => '2.12', - 'Net::POP3' => '2.28', - 'Net::Ping' => '2.31', - 'Net::SMTP' => '2.29', - 'Net::Time' => '2.10', - 'Net::hostent' => '1.01', - 'Net::netent' => '1.00', - 'Net::protoent' => '1.00', - 'Net::servent' => '1.01', - 'O' => '1.00', - 'ODBM_File' => '1.06', - 'Opcode' => '1.06', - 'POSIX' => '1.09', - 'PerlIO' => '1.04', - 'PerlIO::encoding' => '0.09', - 'PerlIO::scalar' => '0.04', - 'PerlIO::via' => '0.03', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.43', - 'Pod::Find' => '1.34', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.0504', - 'Pod::InputObjects' => '1.3', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '1.37', - 'Pod::ParseLink' => '1.06', - 'Pod::ParseUtils' => '1.33', - 'Pod::Parser' => '1.32', - 'Pod::Perldoc' => '3.14', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.02', - 'Pod::Plainer' => '0.01', - 'Pod::Select' => '1.3', - 'Pod::Text' => '2.21', - 'Pod::Text::Color' => '1.04', - 'Pod::Text::Overstrike' => '1.1', - 'Pod::Text::Termcap' => '1.11', - 'Pod::Usage' => '1.33', - 'SDBM_File' => '1.05', - 'Safe' => '2.12', - 'Scalar::Util' => '1.18', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.01', - 'SelfLoader' => '1.0904', - 'Shell' => '0.6', - 'Socket' => '1.78', - 'Stdio' => '2.3', - 'Storable' => '2.15', - 'Switch' => '2.10_01', - 'Symbol' => '1.06', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.13', - 'Term::ANSIColor' => '1.10', - 'Term::Cap' => '1.09', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.02', - 'Test' => '1.25', - 'Test::Builder' => '0.32', - 'Test::Builder::Module' => '0.02', - 'Test::Builder::Tester' => '1.02', - 'Test::Builder::Tester::Color'=> undef, - 'Test::Harness' => '2.56', - 'Test::Harness::Assert' => '0.02', - 'Test::Harness::Iterator'=> '0.02', - 'Test::Harness::Point' => '0.01', - 'Test::Harness::Straps' => '0.26', - 'Test::More' => '0.62', - 'Test::Simple' => '0.62', - 'Text::Abbrev' => '1.01', - 'Text::Balanced' => '1.95', - 'Text::ParseWords' => '3.24', - 'Text::Soundex' => '1.01', - 'Text::Tabs' => '2005.0824', - 'Text::Wrap' => '2005.082401', - 'Thread' => '2.00', - 'Thread::Queue' => '2.00', - 'Thread::Semaphore' => '2.01', - 'Thread::Signal' => '1.00', - 'Thread::Specific' => '1.00', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97', - 'Tie::Handle' => '4.1', - 'Tie::Hash' => '1.02', - 'Tie::Memoize' => '1.0', - 'Tie::RefHash' => '1.32', - 'Tie::Scalar' => '1.00', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.86', - 'Time::Local' => '1.11', - 'Time::gmtime' => '1.02', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.01', - 'Unicode' => '4.1.0', - 'Unicode::Collate' => '0.52', - 'Unicode::Normalize' => '0.32', - 'Unicode::UCD' => '0.24', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'Win32' => '0.2601', - 'XS::APItest' => '0.08', - 'XS::Typemap' => '0.02', - 'XSLoader' => '0.06', - 'XSSymSet' => '1.0', - 'attributes' => '0.06', - 'attrs' => '1.02', - 'autouse' => '1.05', - 'base' => '2.07', - 'bigint' => '0.07', - 'bignum' => '0.17', - 'bigrat' => '0.08', - 'blib' => '1.03', - 'bytes' => '1.02', - 'charnames' => '1.05', - 'constant' => '1.05', - 'diagnostics' => '1.15', - 'encoding' => '2.02', - 'fields' => '2.03', - 'filetest' => '1.01', - 'if' => '0.05', - 'integer' => '1.00', - 'less' => '0.01', - 'lib' => '0.5565', - 'locale' => '1.00', - 'open' => '1.05', - 'ops' => '1.01', - 'overload' => '1.04', - 're' => '0.05', - 'sigtrap' => '1.02', - 'sort' => '1.02', - 'strict' => '1.03', - 'subs' => '1.00', - 'threads' => '1.07', - 'threads::shared' => '0.94', - 'utf8' => '1.06', - 'vars' => '1.01', - 'vmsish' => '1.02', - 'warnings' => '1.05', - 'warnings::register' => '1.01', + delta_from => 5.008007, + changed => { + 'Attribute::Handlers' => '0.78_02', + 'B' => '1.09_01', + 'B::Bblock' => '1.02_01', + 'B::Bytecode' => '1.01_01', + 'B::C' => '1.04_01', + 'B::CC' => '1.00_01', + 'B::Concise' => '0.66', + 'B::Debug' => '1.02_01', + 'B::Deparse' => '0.71', + 'B::Disassembler' => '1.05', + 'B::Terse' => '1.03_01', + 'ByteLoader' => '0.06', + 'CGI' => '3.15', + 'CGI::Cookie' => '1.26', + 'CPAN' => '1.76_02', + 'Cwd' => '3.12', + 'DB' => '1.01', + 'DB_File' => '1.814', + 'Data::Dumper' => '2.121_08', + 'Devel::DProf' => '20050603.00', + 'Devel::PPPort' => '3.06_01', + 'Devel::Peek' => '1.03', + 'Digest' => '1.14', + 'Digest::MD5' => '2.36', + 'Digest::file' => '1.00', + 'Dumpvalue' => '1.12', + 'Encode' => '2.12', + 'Encode::Alias' => '2.04', + 'Encode::Config' => '2.01', + 'Encode::MIME::Header' => '2.01', + 'Encode::MIME::Header::ISO_2022_JP'=> '1.01', + 'English' => '1.02', + 'ExtUtils::Command' => '1.09', + 'ExtUtils::Command::MM' => '0.05', + 'ExtUtils::Constant' => '0.17', + 'ExtUtils::Embed' => '1.26', + 'ExtUtils::Install' => '1.33', + 'ExtUtils::Liblist::Kid'=> '1.3', + 'ExtUtils::MM' => '0.05', + 'ExtUtils::MM_AIX' => '0.03', + 'ExtUtils::MM_Any' => '0.13', + 'ExtUtils::MM_BeOS' => '1.05', + 'ExtUtils::MM_Cygwin' => '1.08', + 'ExtUtils::MM_MacOS' => '1.08', + 'ExtUtils::MM_NW5' => '2.08', + 'ExtUtils::MM_OS2' => '1.05', + 'ExtUtils::MM_QNX' => '0.02', + 'ExtUtils::MM_Unix' => '1.50', + 'ExtUtils::MM_VMS' => '5.73', + 'ExtUtils::MM_VOS' => '0.02', + 'ExtUtils::MM_Win32' => '1.12', + 'ExtUtils::MM_Win95' => '0.04', + 'ExtUtils::MakeMaker' => '6.30', + 'ExtUtils::MakeMaker::Config'=> '0.02', + 'ExtUtils::Manifest' => '1.46', + 'File::Basename' => '2.74', + 'File::Copy' => '2.09', + 'File::Find' => '1.10', + 'File::Glob' => '1.05', + 'File::Path' => '1.08', + 'File::Spec' => '3.12', + 'File::Spec::Win32' => '1.6', + 'FileCache' => '1.06', + 'Filter::Simple' => '0.82', + 'FindBin' => '1.47', + 'GDBM_File' => '1.08', + 'Getopt::Long' => '2.35', + 'IO' => '1.22', + 'IO::Dir' => '1.05', + 'IO::File' => '1.13', + 'IO::Handle' => '1.25', + 'IO::Pipe' => '1.13', + 'IO::Poll' => '0.07', + 'IO::Seekable' => '1.10', + 'IO::Select' => '1.17', + 'IO::Socket' => '1.29', + 'IO::Socket::INET' => '1.29', + 'IO::Socket::UNIX' => '1.22', + 'IPC::Open2' => '1.02', + 'IPC::Open3' => '1.02', + 'List::Util' => '1.18', + 'MIME::Base64' => '3.07', + 'MIME::QuotedPrint' => '3.07', + 'Math::Complex' => '1.35', + 'Math::Trig' => '1.03', + 'NDBM_File' => '1.06', + 'ODBM_File' => '1.06', + 'Opcode' => '1.06', + 'POSIX' => '1.09', + 'PerlIO' => '1.04', + 'PerlIO::encoding' => '0.09', + 'PerlIO::scalar' => '0.04', + 'PerlIO::via' => '0.03', + 'Pod::Checker' => '1.43', + 'Pod::Find' => '1.34', + 'Pod::Functions' => '1.03', + 'Pod::Html' => '1.0504', + 'Pod::ParseUtils' => '1.33', + 'Pod::Parser' => '1.32', + 'Pod::Usage' => '1.33', + 'SDBM_File' => '1.05', + 'Safe' => '2.12', + 'Scalar::Util' => '1.18', + 'Socket' => '1.78', + 'Storable' => '2.15', + 'Switch' => '2.10_01', + 'Sys::Syslog' => '0.13', + 'Term::ANSIColor' => '1.10', + 'Term::ReadLine' => '1.02', + 'Test::Builder' => '0.32', + 'Test::Builder::Module' => '0.02', + 'Test::Builder::Tester' => '1.02', + 'Test::Builder::Tester::Color'=> undef, + 'Test::Harness' => '2.56', + 'Test::Harness::Straps' => '0.26', + 'Test::More' => '0.62', + 'Test::Simple' => '0.62', + 'Text::Tabs' => '2005.0824', + 'Text::Wrap' => '2005.082401', + 'Tie::Hash' => '1.02', + 'Time::HiRes' => '1.86', + 'Unicode::Collate' => '0.52', + 'Unicode::UCD' => '0.24', + 'User::grent' => '1.01', + 'Win32' => '0.2601', + 'XS::APItest' => '0.08', + 'XS::Typemap' => '0.02', + 'XSLoader' => '0.06', + 'attrs' => '1.02', + 'autouse' => '1.05', + 'blib' => '1.03', + 'charnames' => '1.05', + 'diagnostics' => '1.15', + 'encoding' => '2.02', + 'if' => '0.05', + 'open' => '1.05', + 'ops' => '1.01', + 'overload' => '1.04', + 're' => '0.05', + 'threads' => '1.07', + 'threads::shared' => '0.94', + 'utf8' => '1.06', + 'vmsish' => '1.02', + 'warnings' => '1.05', + 'warnings::register' => '1.01', + }, + removed => { + } + }, + 5.008009 => { + delta_from => 5.008008, + changed => { + 'Attribute::Handlers' => '0.78_03', + 'AutoLoader' => '5.67', + 'AutoSplit' => '1.06', + 'B' => '1.19', + 'B::Asmdata' => '1.02', + 'B::Assembler' => '0.08', + 'B::C' => '1.05', + 'B::Concise' => '0.76', + 'B::Debug' => '1.05', + 'B::Deparse' => '0.87', + 'B::Lint' => '1.11', + 'B::Lint::Debug' => undef, + 'B::Terse' => '1.05', + 'Benchmark' => '1.1', + 'CGI' => '3.42', + 'CGI::Carp' => '1.30_01', + 'CGI::Cookie' => '1.29', + 'CGI::Fast' => '1.07', + 'CGI::Util' => '1.5_01', + 'CPAN' => '1.9301', + 'CPAN::Debug' => '5.5', + 'CPAN::DeferedCode' => '5.50', + 'CPAN::Distroprefs' => '6', + 'CPAN::FirstTime' => '5.5_01', + 'CPAN::HandleConfig' => '5.5', + 'CPAN::Kwalify' => '5.50', + 'CPAN::Nox' => '5.50', + 'CPAN::Queue' => '5.5', + 'CPAN::Tarzip' => '5.5', + 'CPAN::Version' => '5.5', + 'Carp' => '1.10', + 'Carp::Heavy' => '1.10', + 'Cwd' => '3.29', + 'DBM_Filter' => '0.02', + '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.817', + 'Data::Dumper' => '2.121_17', + 'Devel::DProf' => '20080331.00', + 'Devel::InnerPackage' => '0.3', + 'Devel::PPPort' => '3.14', + 'Devel::Peek' => '1.04', + 'Digest' => '1.15', + 'Digest::MD5' => '2.37', + 'DirHandle' => '1.02', + 'DynaLoader' => '1.09', + 'Encode' => '2.26', + 'Encode::Alias' => '2.10', + 'Encode::Byte' => '2.03', + 'Encode::CJKConstants' => '2.02', + 'Encode::CN' => '2.02', + 'Encode::CN::HZ' => '2.05', + 'Encode::Config' => '2.05', + 'Encode::EBCDIC' => '2.02', + 'Encode::Encoder' => '2.01', + 'Encode::Encoding' => '2.05', + 'Encode::GSM0338' => '2.01', + 'Encode::Guess' => '2.02', + 'Encode::JP' => '2.03', + 'Encode::JP::H2Z' => '2.02', + 'Encode::JP::JIS7' => '2.04', + 'Encode::KR' => '2.02', + 'Encode::KR::2022_KR' => '2.02', + 'Encode::MIME::Header' => '2.05', + 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', + 'Encode::MIME::Name' => '1.01', + 'Encode::Symbol' => '2.02', + 'Encode::TW' => '2.02', + 'Encode::Unicode' => '2.05', + 'Encode::Unicode::UTF7' => '2.04', + 'English' => '1.03', + 'Errno' => '1.10', + 'Exporter' => '5.63', + 'Exporter::Heavy' => '5.63', + 'ExtUtils::Command' => '1.15', + 'ExtUtils::Command::MM' => '6.48', + 'ExtUtils::Constant' => '0.21', + 'ExtUtils::Constant::Base'=> '0.04', + 'ExtUtils::Constant::ProxySubs'=> '0.06', + 'ExtUtils::Constant::Utils'=> '0.02', + 'ExtUtils::Constant::XS'=> '0.02', + 'ExtUtils::Embed' => '1.28', + 'ExtUtils::Install' => '1.50_01', + 'ExtUtils::Installed' => '1.43', + 'ExtUtils::Liblist' => '6.48', + 'ExtUtils::Liblist::Kid'=> '6.48', + 'ExtUtils::MM' => '6.48', + 'ExtUtils::MM_AIX' => '6.48', + 'ExtUtils::MM_Any' => '6.48', + 'ExtUtils::MM_BeOS' => '6.48', + 'ExtUtils::MM_Cygwin' => '6.48', + 'ExtUtils::MM_DOS' => '6.48', + 'ExtUtils::MM_Darwin' => '6.48', + 'ExtUtils::MM_MacOS' => '6.48', + 'ExtUtils::MM_NW5' => '6.48', + 'ExtUtils::MM_OS2' => '6.48', + 'ExtUtils::MM_QNX' => '6.48', + 'ExtUtils::MM_UWIN' => '6.48', + 'ExtUtils::MM_Unix' => '6.48', + 'ExtUtils::MM_VMS' => '6.48', + 'ExtUtils::MM_VOS' => '6.48', + 'ExtUtils::MM_Win32' => '6.48', + 'ExtUtils::MM_Win95' => '6.48', + 'ExtUtils::MY' => '6.48', + 'ExtUtils::MakeMaker' => '6.48', + 'ExtUtils::MakeMaker::Config'=> '6.48', + 'ExtUtils::MakeMaker::bytes'=> '6.48', + 'ExtUtils::MakeMaker::vmsish'=> '6.48', + 'ExtUtils::Manifest' => '1.55', + 'ExtUtils::Mkbootstrap' => '6.48', + 'ExtUtils::Mksymlists' => '6.48', + 'ExtUtils::Packlist' => '1.43', + 'ExtUtils::ParseXS' => '2.19', + 'ExtUtils::XSSymSet' => '1.1', + 'ExtUtils::testlib' => '6.48', + 'Fatal' => '1.06', + 'Fcntl' => '1.06', + 'File::Basename' => '2.77', + 'File::CheckTree' => '4.4', + 'File::Compare' => '1.1005', + 'File::Copy' => '2.13', + 'File::DosGlob' => '1.01', + 'File::Find' => '1.13', + 'File::Glob' => '1.06', + 'File::Path' => '2.07_02', + 'File::Spec' => '3.29', + 'File::Spec::Cygwin' => '3.29', + 'File::Spec::Epoc' => '3.29', + 'File::Spec::Functions' => '3.29', + 'File::Spec::Mac' => '3.29', + 'File::Spec::OS2' => '3.29', + 'File::Spec::Unix' => '3.29', + 'File::Spec::VMS' => '3.29', + 'File::Spec::Win32' => '3.29', + 'File::Temp' => '0.20', + 'File::stat' => '1.01', + 'FileCache' => '1.07', + 'Filter::Simple' => '0.83', + 'Filter::Util::Call' => '1.07', + 'FindBin' => '1.49', + 'GDBM_File' => '1.09', + 'Getopt::Long' => '2.37', + 'Getopt::Std' => '1.06', + 'Hash::Util' => '0.06', + 'IO' => '1.23', + 'IO::Dir' => '1.06', + 'IO::File' => '1.14', + 'IO::Handle' => '1.27', + 'IO::Socket' => '1.30', + 'IO::Socket::INET' => '1.31', + 'IO::Socket::UNIX' => '1.23', + 'IPC::Msg' => '2.00', + 'IPC::Open2' => '1.03', + 'IPC::Open3' => '1.03', + 'IPC::Semaphore' => '2.00', + 'IPC::SharedMem' => '2.00', + 'IPC::SysV' => '2.00', + 'List::Util' => '1.19', + 'Locale::Maketext' => '1.13', + 'Locale::Maketext::Guts'=> '1.13', + 'Locale::Maketext::GutsLoader'=> '1.13', + 'Math::BigFloat' => '1.60', + 'Math::BigInt' => '1.89', + 'Math::BigInt::Calc' => '0.52', + 'Math::BigRat' => '0.22', + 'Math::Complex' => '1.54', + 'Math::Trig' => '1.18', + 'Module::CoreList' => '2.17', + 'Module::Pluggable' => '3.8', + 'Module::Pluggable::Object'=> '3.6', + 'NDBM_File' => '1.07', + 'NEXT' => '0.61', + 'Net::Cmd' => '2.29', + 'Net::Config' => '1.11', + 'Net::Domain' => '2.20', + 'Net::FTP' => '2.77', + 'Net::FTP::A' => '1.18', + 'Net::NNTP' => '2.24', + 'Net::POP3' => '2.29', + 'Net::Ping' => '2.35', + 'Net::SMTP' => '2.31', + 'O' => '1.01', + 'ODBM_File' => '1.07', + 'Opcode' => '1.0601', + 'POSIX' => '1.15', + 'PerlIO' => '1.05', + 'PerlIO::encoding' => '0.11', + 'PerlIO::scalar' => '0.06', + 'PerlIO::via' => '0.05', + 'Pod::Html' => '1.09', + 'Pod::ParseUtils' => '1.35', + 'Pod::Parser' => '1.35', + 'Pod::Select' => '1.35', + 'Pod::Usage' => '1.35', + 'SDBM_File' => '1.06', + 'Safe' => '2.16', + 'Scalar::Util' => '1.19', + 'SelfLoader' => '1.17', + 'Shell' => '0.72', + 'Socket' => '1.81', + 'Storable' => '2.19', + 'Switch' => '2.13', + 'Sys::Syslog' => '0.27', + 'Sys::Syslog::win32::Win32'=> undef, + 'Term::ANSIColor' => '1.12', + 'Term::Cap' => '1.12', + 'Term::ReadLine' => '1.03', + 'Test::Builder' => '0.80', + 'Test::Builder::Module' => '0.80', + 'Test::Builder::Tester' => '1.13', + 'Test::Harness' => '2.64', + 'Test::Harness::Results'=> '0.01_01', + 'Test::Harness::Straps' => '0.26_01', + 'Test::Harness::Util' => '0.01', + 'Test::More' => '0.80', + 'Test::Simple' => '0.80', + 'Text::Balanced' => '1.98', + 'Text::ParseWords' => '3.27', + 'Text::Soundex' => '3.03', + 'Text::Tabs' => '2007.1117', + 'Text::Wrap' => '2006.1117', + 'Thread' => '2.01', + 'Thread::Queue' => '2.11', + 'Thread::Semaphore' => '2.09', + 'Tie::Handle' => '4.2', + 'Tie::Hash' => '1.03', + 'Tie::Memoize' => '1.1', + 'Tie::RefHash' => '1.38', + 'Tie::Scalar' => '1.01', + 'Tie::StdHandle' => '4.2', + 'Time::HiRes' => '1.9715', + 'Time::Local' => '1.1901', + 'Time::gmtime' => '1.03', + 'Unicode' => '5.1.0', + 'Unicode::Normalize' => '1.02', + 'Unicode::UCD' => '0.25', + 'VMS::DCLsym' => '1.03', + 'VMS::Stdio' => '2.4', + 'Win32' => '0.38', + 'Win32API::File' => '0.1001_01', + 'Win32API::File::ExtUtils::Myconst2perl'=> '1', + 'Win32CORE' => '0.02', + 'XS::APItest' => '0.15', + 'XS::Typemap' => '0.03', + 'XSLoader' => '0.10', + 'attributes' => '0.09', + 'autouse' => '1.06', + 'base' => '2.13', + 'bigint' => '0.23', + 'bignum' => '0.23', + 'bigrat' => '0.23', + 'blib' => '1.04', + 'charnames' => '1.06', + 'constant' => '1.17', + 'diagnostics' => '1.16', + 'encoding' => '2.6_01', + 'fields' => '2.12', + 'filetest' => '1.02', + 'lib' => '0.61', + 'open' => '1.06', + 'ops' => '1.02', + 'overload' => '1.06', + 're' => '0.0601', + 'sigtrap' => '1.04', + 'threads' => '1.71', + 'threads::shared' => '1.27', + 'utf8' => '1.07', + 'warnings' => '1.05_01', + }, + removed => { + } + }, + 5.009 => { + delta_from => 5.008002, + changed => { + 'B' => '1.03', + 'B::C' => '1.03', + 'B::Concise' => '0.57', + 'B::Deparse' => '0.65', + 'DB_File' => '1.806', + 'Devel::PPPort' => '2.008', + 'English' => '1.02', + 'Fatal' => '1.04', + 'OS2::DLL' => '1.02', + 'Opcode' => '1.06', + 'Pod::Perldoc::ToTk' => 'undef', + 'Time::HiRes' => '1.51', + 'Unicode::Collate' => '0.28', + 'Unicode::Normalize' => '0.23', + 'XSLoader' => '0.03', + 'assertions' => '0.01', + 'assertions::activate' => '0.01', + 'overload' => '1.02', + 'version' => '0.29', + }, + removed => { + } + }, + 5.009001 => { + delta_from => 5.008004, + changed => { + 'B' => '1.05', + 'B::Assembler' => '0.06', + 'B::C' => '1.04', + 'B::Concise' => '0.59', + 'B::Debug' => '1.02', + 'B::Deparse' => '0.65', + 'DB_File' => '1.808_01', + 'Devel::PPPort' => '2.011_01', + 'Digest' => '1.05', + 'DynaLoader' => '1.04', + 'English' => '1.02', + 'Exporter::Heavy' => '5.567', + 'ExtUtils::Command' => '1.07', + 'ExtUtils::Liblist::Kid'=> '1.3', + 'ExtUtils::MM_Any' => '0.0901', + 'ExtUtils::MM_Cygwin' => '1.07', + 'ExtUtils::MM_NW5' => '2.07_01', + 'ExtUtils::MM_Unix' => '1.45_01', + 'ExtUtils::MM_VMS' => '5.71_01', + 'ExtUtils::MM_Win32' => '1.10_01', + 'ExtUtils::MM_Win95' => '0.03', + 'ExtUtils::MakeMaker' => '6.21_02', + 'ExtUtils::Manifest' => '1.43', + 'Fatal' => '1.04', + 'Getopt::Long' => '2.3401', + 'IO::Handle' => '1.23', + 'IO::Pipe' => '1.122', + 'IPC::Open3' => '1.0105', + 'MIME::Base64' => '3.00_01', + 'MIME::QuotedPrint' => '3.00', + 'Memoize' => '1.01_01', + 'ODBM_File' => '1.04', + 'Opcode' => '1.06', + 'POSIX' => '1.07', + 'Storable' => '2.11', + 'Time::HiRes' => '1.56', + 'Time::Local' => '1.07_94', + 'UNIVERSAL' => '1.02', + 'Unicode' => '4.0.0', + 'Unicode::UCD' => '0.21', + 'XSLoader' => '0.03', + 'assertions' => '0.01', + 'assertions::activate' => '0.01', + 'base' => '2.04', + 'if' => '0.0401', + 'open' => '1.02', + 'overload' => '1.02', + 'threads' => '1.02', + 'utf8' => '1.02', + 'version' => '0.36', + }, + removed => { + } + }, + 5.009002 => { + delta_from => 5.008007, + changed => { + 'B' => '1.07', + 'B::Concise' => '0.64', + 'B::Deparse' => '0.69', + 'B::Disassembler' => '1.03', + 'B::Terse' => '1.02', + 'CGI' => '3.07', + 'Config::Extensions' => '0.01', + 'Devel::DProf' => '20030813.00', + 'DynaLoader' => '1.07', + 'Encode' => '2.09', + 'Encode::Alias' => '2.02', + 'English' => '1.03', + 'Exporter' => '5.59', + 'Exporter::Heavy' => '5.59', + 'ExtUtils::Command' => '1.07', + 'ExtUtils::Command::MM' => '0.03_01', + 'ExtUtils::Embed' => '1.26', + 'ExtUtils::Liblist::Kid'=> '1.3', + 'ExtUtils::MM_Any' => '0.10', + 'ExtUtils::MM_Cygwin' => '1.07', + 'ExtUtils::MM_MacOS' => '1.08', + 'ExtUtils::MM_NW5' => '2.07', + 'ExtUtils::MM_Unix' => '1.46_01', + 'ExtUtils::MM_VMS' => '5.71', + 'ExtUtils::MM_Win32' => '1.10', + 'ExtUtils::MM_Win95' => '0.03', + 'ExtUtils::MakeMaker' => '6.25', + 'ExtUtils::Manifest' => '1.44', + 'Fatal' => '1.04', + 'File::Path' => '1.06', + 'FileCache' => '1.04_01', + 'Getopt::Long' => '2.3401', + 'IO::File' => '1.10', + 'IO::Socket::INET' => '1.27', + 'Math::BigFloat' => '1.49', + 'Math::BigInt' => '1.75', + 'Math::BigInt::Calc' => '0.45', + 'Math::BigRat' => '0.14', + 'Memoize' => '1.01_01', + 'Module::CoreList' => '1.99', + 'NEXT' => '0.60_01', + 'Opcode' => '1.06', + 'Pod::Html' => '1.0502', + 'Scalar::Util' => '1.14_1', + 'Storable' => '2.14', + 'Symbol' => '1.05', + 'Test::Harness' => '2.46', + 'Test::Harness::Straps' => '0.20_01', + 'Text::Balanced' => '1.95_01', + 'Text::Wrap' => '2001.09292', + 'UNIVERSAL' => '1.02', + 'Unicode' => '4.0.1', + 'Unicode::Normalize' => '0.30', + 'Unicode::UCD' => '0.22', + 'Win32' => '0.23', + 'XS::APItest' => '0.05', + 'XSLoader' => '0.03', + 'assertions' => '0.01', + 'assertions::activate' => '0.01', + 'base' => '2.06', + 'bigint' => '0.06', + 'bignum' => '0.16', + 'bigrat' => '0.07', + 'bytes' => '1.01', + 'encoding::warnings' => '0.05', + 'if' => '0.0401', + 're' => '0.05', + 'threads::shared' => '0.92', + 'utf8' => '1.04', + 'version' => '0.42', + 'warnings' => '1.04', + }, + removed => { + 'Test::Harness::Point' => 1, + } + }, + 5.009003 => { + delta_from => 5.008008, + changed => { + 'Archive::Tar' => '1.26_01', + 'Archive::Tar::Constant'=> '0.02', + 'Archive::Tar::File' => '0.02', + 'AutoSplit' => '1.04_01', + 'B' => '1.10', + 'B::Bblock' => '1.02', + 'B::Bytecode' => '1.01', + 'B::C' => '1.04', + 'B::CC' => '1.00', + 'B::Concise' => '0.67', + 'B::Debug' => '1.02', + 'B::Deparse' => '0.73', + 'B::Lint' => '1.04', + 'B::Terse' => '1.03', + 'CGI' => '3.15_01', + 'CPAN' => '1.83_58', + 'CPAN::Debug' => '4.44', + 'CPAN::FirstTime' => '4.50', + 'CPAN::HandleConfig' => '4.31', + 'CPAN::Nox' => '2.31', + 'CPAN::Tarzip' => '3.36', + 'CPAN::Version' => '2.55', + 'Carp' => '1.05', + 'Carp::Heavy' => '1.05', + 'Compress::Zlib' => '2.000_07', + 'Compress::Zlib::Common'=> '2.000_07', + 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07', + 'Compress::Zlib::Compress::Zip::Constants'=> '1.00', + 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05', + 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05', + 'Compress::Zlib::File::GlobMapper'=> '0.000_02', + 'Compress::Zlib::FileConstants'=> '2.000_07', + 'Compress::Zlib::IO::Compress::Base'=> '2.000_05', + 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07', + 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07', + 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07', + 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04', + 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07', + 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05', + 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05', + 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07', + 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07', + 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07', + 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05', + 'Compress::Zlib::ParseParameters'=> '2.000_07', + 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05', + 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05', + 'Config::Extensions' => '0.01', + 'Cwd' => '3.15', + 'Devel::PPPort' => '3.08', + 'Digest::SHA' => '5.32', + 'DirHandle' => '1.01', + 'DynaLoader' => '1.07', + 'Encode' => '2.14', + 'Encode::CN::HZ' => '2.02', + 'Encode::MIME::Header' => '2.02', + 'English' => '1.04', + 'Exporter' => '5.59', + 'Exporter::Heavy' => '5.59', + 'ExtUtils::CBuilder' => '0.15', + 'ExtUtils::CBuilder::Base'=> '0.12', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.12', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.12', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.12', + 'ExtUtils::CBuilder::Platform::aix'=> '0.12', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.12', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01', + 'ExtUtils::CBuilder::Platform::os2'=> '0.13', + 'ExtUtils::Command::MM' => '0.05_01', + 'ExtUtils::Constant' => '0.2', + 'ExtUtils::Constant::Base'=> '0.02', + 'ExtUtils::Constant::ProxySubs'=> '0.01', + 'ExtUtils::Constant::XS'=> '0.02', + 'ExtUtils::MM_Any' => '0.13_01', + 'ExtUtils::MM_Unix' => '1.50_01', + 'ExtUtils::MakeMaker' => '6.30_01', + 'ExtUtils::ParseXS' => '2.15_02', + 'Fatal' => '1.04', + 'File::Compare' => '1.1005', + 'File::Spec' => '3.15', + 'File::Temp' => '0.16_01', + 'IO::File' => '1.13_01', + 'IO::Handle' => '1.26', + 'IO::Socket' => '1.29_01', + 'IO::Socket::INET' => '1.29_02', + 'IO::Socket::UNIX' => '1.22_01', + 'IO::Zlib' => '1.04_02', + 'Locale::Maketext' => '1.10_01', + 'Math::BigInt::FastCalc'=> '0.10', + 'Memoize' => '1.01_01', + 'Module::CoreList' => '2.02', + 'Moped::Msg' => '0.01', + 'NEXT' => '0.60_01', + 'Net::Cmd' => '2.26_01', + 'Net::Domain' => '2.19_01', + 'Net::Ping' => '2.31_04', + 'Opcode' => '1.08', + 'POSIX' => '1.10', + 'Pod::Escapes' => '1.04', + 'Pod::Man' => '2.04', + 'Pod::Perldoc' => '3.14_01', + 'Pod::Simple' => '3.04', + 'Pod::Simple::BlackBox' => undef, + 'Pod::Simple::Checker' => '2.02', + 'Pod::Simple::Debug' => undef, + 'Pod::Simple::DumpAsText'=> '2.02', + 'Pod::Simple::DumpAsXML'=> '2.02', + 'Pod::Simple::HTML' => '3.03', + 'Pod::Simple::HTMLBatch'=> '3.02', + 'Pod::Simple::HTMLLegacy'=> '5.01', + 'Pod::Simple::LinkSection'=> undef, + 'Pod::Simple::Methody' => '2.02', + 'Pod::Simple::Progress' => '1.01', + 'Pod::Simple::PullParser'=> '2.02', + 'Pod::Simple::PullParserEndToken'=> undef, + 'Pod::Simple::PullParserStartToken'=> undef, + 'Pod::Simple::PullParserTextToken'=> undef, + 'Pod::Simple::PullParserToken'=> '2.02', + 'Pod::Simple::RTF' => '2.02', + 'Pod::Simple::Search' => '3.04', + 'Pod::Simple::SimpleTree'=> '2.02', + 'Pod::Simple::Text' => '2.02', + 'Pod::Simple::TextContent'=> '2.02', + 'Pod::Simple::TiedOutFH'=> undef, + 'Pod::Simple::Transcode'=> undef, + 'Pod::Simple::TranscodeDumb'=> '2.02', + 'Pod::Simple::TranscodeSmart'=> undef, + 'Pod::Simple::XMLOutStream'=> '2.02', + 'Pod::Text' => '3.01', + 'Pod::Text::Color' => '2.01', + 'Pod::Text::Overstrike' => '2', + 'Pod::Text::Termcap' => '2.01', + 'Pod::Usage' => '1.33_01', + 'SelfLoader' => '1.0905', + 'Storable' => '2.15_02', + 'Test::Builder::Module' => '0.03', + 'Text::Balanced' => '1.95_01', + 'Tie::File' => '0.97_01', + 'UNIVERSAL' => '1.03', + 'XS::APItest' => '0.09', + 'assertions' => '0.02', + 'assertions::activate' => '0.02', + 'assertions::compat' => undef, + 'constant' => '1.07', + 'encoding::warnings' => '0.05', + 'feature' => '1.00', + 're' => '0.06', + 'sort' => '2.00', + 'version' => '0.53', + }, + removed => { + } }, - 5.009004 => { - 'AnyDBM_File' => '1.00', - 'Archive::Tar' => '1.30_01', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.78_02', - 'AutoLoader' => '5.61', - 'AutoSplit' => '1.04_01', - 'B' => '1.11', - 'B::Asmdata' => '1.01', - 'B::Assembler' => '0.07', - 'B::Bblock' => '1.02', - 'B::Bytecode' => '1.02', - 'B::C' => '1.05', - 'B::CC' => '1.00', - 'B::Concise' => '0.69', - 'B::Debug' => '1.02', - 'B::Deparse' => '0.76', - 'B::Disassembler' => '1.05', - 'B::Lint' => '1.08', - 'B::Showlex' => '1.02', - 'B::Stackobj' => '1.00', - 'B::Stash' => '1.00', - 'B::Terse' => '1.03', - 'B::Xref' => '1.01', - 'Benchmark' => '1.08', - 'ByteLoader' => '0.06', - 'CGI' => '3.20', - 'CGI::Apache' => '1.00', - 'CGI::Carp' => '1.29', - 'CGI::Cookie' => '1.27', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '1.08', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.00', - 'CGI::Util' => '1.5', - 'CPAN' => '1.87_55', - 'CPAN::Debug' => '5.400561', - 'CPAN::FirstTime' => '5.400742', - 'CPAN::HandleConfig' => '5.400740', - 'CPAN::Nox' => '5.400561', - 'CPAN::Tarzip' => '5.400714', - 'CPAN::Version' => '5.400561', - 'Carp' => '1.05', - 'Carp::Heavy' => '1.05', - 'Class::ISA' => '0.33', - 'Class::Struct' => '0.63', - 'Compress::Raw::Zlib' => '2.000_13', - 'Compress::Zlib' => '2.000_13', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.19', - 'DB' => '1.01', - 'DBM_Filter' => '0.01', - 'DBM_Filter::compress' => '0.01', - 'DBM_Filter::encode' => '0.01', - 'DBM_Filter::int32' => '0.01', - 'DBM_Filter::null' => '0.01', - 'DBM_Filter::utf8' => '0.01', - 'DB_File' => '1.814', - 'DCLsym' => '1.02', - 'Data::Dumper' => '2.121_08', - 'Devel::DProf' => '20050603.00', - 'Devel::PPPort' => '3.10', - 'Devel::Peek' => '1.03', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.15', - 'Digest::MD5' => '2.36', - 'Digest::SHA' => '5.43', - 'Digest::base' => '1.00', - 'Digest::file' => '1.00', - 'DirHandle' => '1.01', - 'Dumpvalue' => '1.12', - 'DynaLoader' => '1.07', - 'Encode' => '2.18_01', - 'Encode::Alias' => '2.06', - 'Encode::Byte' => '2.02', - 'Encode::CJKConstants' => '2.02', - 'Encode::CN' => '2.02', - 'Encode::CN::HZ' => '2.04', - 'Encode::Config' => '2.03', - 'Encode::EBCDIC' => '2.02', - 'Encode::Encoder' => '2.01', - 'Encode::Encoding' => '2.04', - 'Encode::Guess' => '2.02', - 'Encode::JP' => '2.03', - 'Encode::JP::H2Z' => '2.02', - 'Encode::JP::JIS7' => '2.02', - 'Encode::KR' => '2.02', - 'Encode::KR::2022_KR' => '2.02', - 'Encode::MIME::Header' => '2.04', - 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', - 'Encode::Symbol' => '2.02', - 'Encode::TW' => '2.02', - 'Encode::Unicode' => '2.03', - 'Encode::Unicode::UTF7' => '2.04', - 'English' => '1.04', - 'Env' => '1.00', - 'Errno' => '1.09_01', - 'Exporter' => '5.59', - 'Exporter::Heavy' => '5.59', - 'ExtUtils::CBuilder' => '0.18', - 'ExtUtils::CBuilder::Base'=> '0.12', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.12', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.12', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01', - 'ExtUtils::CBuilder::Platform::aix'=> '0.12', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.12', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01', - 'ExtUtils::CBuilder::Platform::os2'=> '0.13', - 'ExtUtils::Command' => '1.09', - 'ExtUtils::Command::MM' => '0.05_01', - 'ExtUtils::Constant' => '0.2', - 'ExtUtils::Constant::Base'=> '0.03', - 'ExtUtils::Constant::ProxySubs'=> '0.03', - 'ExtUtils::Constant::Utils'=> '0.01', - 'ExtUtils::Constant::XS'=> '0.02', - 'ExtUtils::Embed' => '1.26', - 'ExtUtils::Install' => '1.41', - 'ExtUtils::Installed' => '1.41', - 'ExtUtils::Liblist' => '1.01', - 'ExtUtils::Liblist::Kid'=> '1.3', - 'ExtUtils::MM' => '0.05', - 'ExtUtils::MM_AIX' => '0.03', - 'ExtUtils::MM_Any' => '0.13_02', - 'ExtUtils::MM_BeOS' => '1.05', - 'ExtUtils::MM_Cygwin' => '1.08', - 'ExtUtils::MM_DOS' => '0.02', - 'ExtUtils::MM_MacOS' => '1.08', - 'ExtUtils::MM_NW5' => '2.08_01', - 'ExtUtils::MM_OS2' => '1.05', - 'ExtUtils::MM_QNX' => '0.02', - 'ExtUtils::MM_UWIN' => '0.02', - 'ExtUtils::MM_Unix' => '1.5003', - 'ExtUtils::MM_VMS' => '5.73_03', - 'ExtUtils::MM_VOS' => '0.02', - 'ExtUtils::MM_Win32' => '1.12_02', - 'ExtUtils::MM_Win95' => '0.04_01', - 'ExtUtils::MY' => '0.01', - 'ExtUtils::MakeMaker' => '6.30_02', - 'ExtUtils::MakeMaker::Config'=> '0.02', - 'ExtUtils::MakeMaker::bytes'=> '0.01', - 'ExtUtils::MakeMaker::vmsish'=> '0.01', - 'ExtUtils::Manifest' => '1.46_01', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '1.15_01', - 'ExtUtils::Mksymlists' => '1.19_01', - 'ExtUtils::Packlist' => '1.41', - 'ExtUtils::ParseXS' => '2.15_02', - 'ExtUtils::testlib' => '1.15', - 'Fatal' => '1.04', - 'Fcntl' => '1.05', - 'File::Basename' => '2.75', - 'File::CheckTree' => '4.3', - 'File::Compare' => '1.1005', - 'File::Copy' => '2.09', - 'File::DosGlob' => '1.00', - 'File::Find' => '1.11', - 'File::Glob' => '1.05', - 'File::GlobMapper' => '0.000_02', - 'File::Path' => '1.08', - 'File::Spec' => '3.19', - 'File::Spec::Cygwin' => '1.1', - 'File::Spec::Epoc' => '1.1', - 'File::Spec::Functions' => '1.3', - 'File::Spec::Mac' => '1.4', - 'File::Spec::OS2' => '1.2', - 'File::Spec::Unix' => '1.5', - 'File::Spec::VMS' => '1.4', - 'File::Spec::Win32' => '1.6', - 'File::Temp' => '0.16_01', - 'File::stat' => '1.00', - 'FileCache' => '1.07', - 'FileHandle' => '2.01', - 'Filespec' => '1.11', - 'Filter::Simple' => '0.82', - 'Filter::Util::Call' => '1.0601', - 'FindBin' => '1.47', - 'GDBM_File' => '1.08', - 'Getopt::Long' => '2.3501', - 'Getopt::Std' => '1.05', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '0.01', - 'I18N::Collate' => '1.00', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.23_01', - 'IO::Compress::Adapter::Deflate'=> '2.000_13', - 'IO::Compress::Adapter::Identity'=> '2.000_13', - 'IO::Compress::Base' => '2.000_13', - 'IO::Compress::Base::Common'=> '2.000_13', - 'IO::Compress::Deflate' => '2.000_13', - 'IO::Compress::Gzip' => '2.000_13', - 'IO::Compress::Gzip::Constants'=> '2.000_13', - 'IO::Compress::RawDeflate'=> '2.000_13', - 'IO::Compress::Zip' => '2.000_13', - 'IO::Compress::Zip::Constants'=> '2.000_13', - 'IO::Compress::Zlib::Constants'=> '2.000_13', - 'IO::Compress::Zlib::Extra'=> '2.000_13', - 'IO::Dir' => '1.06', - 'IO::File' => '1.14', - 'IO::Handle' => '1.27', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.30_01', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Identity'=> '2.000_13', - 'IO::Uncompress::Adapter::Inflate'=> '2.000_13', - 'IO::Uncompress::AnyInflate'=> '2.000_13', - 'IO::Uncompress::AnyUncompress'=> '2.000_13', - 'IO::Uncompress::Base' => '2.000_13', - 'IO::Uncompress::Gunzip'=> '2.000_13', - 'IO::Uncompress::Inflate'=> '2.000_13', - 'IO::Uncompress::RawInflate'=> '2.000_13', - 'IO::Uncompress::Unzip' => '2.000_13', - 'IO::Zlib' => '1.04_02', - 'IPC::Msg' => '1.02', - 'IPC::Open2' => '1.02', - 'IPC::Open3' => '1.02', - 'IPC::Semaphore' => '1.02', - 'IPC::SysV' => '1.04', - 'List::Util' => '1.18', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.10_01', - 'Locale::Maketext::Guts'=> undef, - 'Locale::Maketext::GutsLoader'=> undef, - 'Locale::Script' => '2.07', - 'MIME::Base64' => '3.07_01', - 'MIME::QuotedPrint' => '3.07', - 'Math::BigFloat' => '1.51', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.77', - 'Math::BigInt::Calc' => '0.47', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.10', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.15', - 'Math::Complex' => '1.36', - 'Math::Trig' => '1.04', - 'Memoize' => '1.01_01', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.2805', - 'Module::Build::Base' => undef, - 'Module::Build::Compat' => '0.03', - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> undef, - 'Module::Build::ModuleInfo'=> undef, - 'Module::Build::Notes' => undef, - 'Module::Build::PPMMaker'=> undef, - 'Module::Build::Platform::Amiga'=> undef, - 'Module::Build::Platform::Default'=> undef, - 'Module::Build::Platform::EBCDIC'=> undef, - 'Module::Build::Platform::MPEiX'=> undef, - 'Module::Build::Platform::MacOS'=> undef, - 'Module::Build::Platform::RiscOS'=> undef, - 'Module::Build::Platform::Unix'=> undef, - 'Module::Build::Platform::VMS'=> undef, - 'Module::Build::Platform::VOS'=> undef, - 'Module::Build::Platform::Windows'=> undef, - 'Module::Build::Platform::aix'=> undef, - 'Module::Build::Platform::cygwin'=> undef, - 'Module::Build::Platform::darwin'=> undef, - 'Module::Build::Platform::os2'=> undef, - 'Module::Build::PodParser'=> undef, - 'Module::Build::Version'=> '0', - 'Module::Build::YAML' => '0.50', - 'Module::CoreList' => '2.08', - 'Module::Load' => '0.10', - 'Module::Loaded' => '0.01', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.06', - 'NEXT' => '0.60_01', - 'Net::Cmd' => '2.26_01', - 'Net::Config' => '1.10', - 'Net::Domain' => '2.19_01', - 'Net::FTP' => '2.75', - 'Net::FTP::A' => '1.16', - 'Net::FTP::E' => '0.01', - 'Net::FTP::I' => '1.12', - 'Net::FTP::L' => '0.01', - 'Net::FTP::dataconn' => '0.11', - 'Net::NNTP' => '2.23', - 'Net::Netrc' => '2.12', - 'Net::POP3' => '2.28', - 'Net::Ping' => '2.31_04', - 'Net::SMTP' => '2.29', - 'Net::Time' => '2.10', - 'Net::hostent' => '1.01', - 'Net::netent' => '1.00', - 'Net::protoent' => '1.00', - 'Net::servent' => '1.01', - 'O' => '1.00', - 'ODBM_File' => '1.06', - 'Opcode' => '1.08', - 'POSIX' => '1.10', - 'Package::Constants' => '0.01', - 'PerlIO' => '1.04', - 'PerlIO::encoding' => '0.09', - 'PerlIO::scalar' => '0.04', - 'PerlIO::via' => '0.03', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.43', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.34', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.07', - 'Pod::InputObjects' => '1.3', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.09', - 'Pod::ParseLink' => '1.06', - 'Pod::ParseUtils' => '1.33', - 'Pod::Parser' => '1.32', - 'Pod::Perldoc' => '3.14_01', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.02', - 'Pod::Plainer' => '0.01', - 'Pod::Select' => '1.3', - 'Pod::Simple' => '3.04', - 'Pod::Simple::BlackBox' => undef, - 'Pod::Simple::Checker' => '2.02', - 'Pod::Simple::Debug' => undef, - 'Pod::Simple::DumpAsText'=> '2.02', - 'Pod::Simple::DumpAsXML'=> '2.02', - 'Pod::Simple::HTML' => '3.03', - 'Pod::Simple::HTMLBatch'=> '3.02', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> undef, - 'Pod::Simple::Methody' => '2.02', - 'Pod::Simple::Progress' => '1.01', - 'Pod::Simple::PullParser'=> '2.02', - 'Pod::Simple::PullParserEndToken'=> undef, - 'Pod::Simple::PullParserStartToken'=> undef, - 'Pod::Simple::PullParserTextToken'=> undef, - 'Pod::Simple::PullParserToken'=> '2.02', - 'Pod::Simple::RTF' => '2.02', - 'Pod::Simple::Search' => '3.04', - 'Pod::Simple::SimpleTree'=> '2.02', - 'Pod::Simple::Text' => '2.02', - 'Pod::Simple::TextContent'=> '2.02', - 'Pod::Simple::TiedOutFH'=> undef, - 'Pod::Simple::Transcode'=> undef, - 'Pod::Simple::TranscodeDumb'=> '2.02', - 'Pod::Simple::TranscodeSmart'=> undef, - 'Pod::Simple::XMLOutStream'=> '2.02', - 'Pod::Text' => '3.07', - 'Pod::Text::Color' => '2.03', - 'Pod::Text::Overstrike' => '2', - 'Pod::Text::Termcap' => '2.03', - 'Pod::Usage' => '1.33_01', - 'SDBM_File' => '1.06', - 'Safe' => '2.12', - 'Scalar::Util' => '1.18', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.01', - 'SelfLoader' => '1.0905', - 'Shell' => '0.7', - 'Socket' => '1.78', - 'Stdio' => '2.3', - 'Storable' => '2.15_02', - 'Switch' => '2.10_01', - 'Symbol' => '1.06', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.17', - 'Term::ANSIColor' => '1.11', - 'Term::Cap' => '1.09', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.02', - 'Test' => '1.25', - 'Test::Builder' => '0.33', - 'Test::Builder::Module' => '0.03', - 'Test::Builder::Tester' => '1.04', - 'Test::Builder::Tester::Color'=> undef, - 'Test::Harness' => '2.62', - 'Test::Harness::Assert' => '0.02', - 'Test::Harness::Iterator'=> '0.02', - 'Test::Harness::Point' => '0.01', - 'Test::Harness::Straps' => '0.26', - 'Test::Harness::Util' => '0.01', - 'Test::More' => '0.64', - 'Test::Simple' => '0.64', - 'Text::Abbrev' => '1.01', - 'Text::Balanced' => '1.98_01', - 'Text::ParseWords' => '3.25', - 'Text::Soundex' => '1.01', - 'Text::Tabs' => '2007.071101', - 'Text::Wrap' => '2006.0711', - 'Thread' => '2.00', - 'Thread::Queue' => '2.00', - 'Thread::Semaphore' => '2.01', - 'Thread::Signal' => '1.00', - 'Thread::Specific' => '1.00', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_01', - 'Tie::Handle' => '4.1', - 'Tie::Hash' => '1.02', - 'Tie::Memoize' => '1.0', - 'Tie::RefHash' => '1.34_01', - 'Tie::Scalar' => '1.00', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.87', - 'Time::Local' => '1.13', - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.04', - 'Unicode' => '4.1.0', - 'Unicode::Collate' => '0.52', - 'Unicode::Normalize' => '1.01', - 'Unicode::UCD' => '0.24', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'Win32' => '0.2601', - 'Win32API::File' => '0.1001', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'XS::APItest' => '0.09', - 'XS::Typemap' => '0.02', - 'XSLoader' => '0.06', - 'XSSymSet' => '1.0', - 'assertions' => '0.03', - 'assertions::activate' => '0.02', - 'assertions::compat' => '0.02', - 'attributes' => '0.06', - 'attrs' => '1.02', - 'autouse' => '1.06', - 'base' => '2.07', - 'bigint' => '0.07', - 'bignum' => '0.17', - 'bigrat' => '0.08', - 'blib' => '1.03', - 'bytes' => '1.02', - 'charnames' => '1.05', - 'constant' => '1.07', - 'diagnostics' => '1.16', - 'encoding' => '2.04', - 'encoding::warnings' => '0.10', - 'feature' => '1.01', - 'fields' => '2.03', - 'filetest' => '1.01', - 'if' => '0.05', - 'integer' => '1.00', - 'less' => '0.01', - 'lib' => '0.5565', - 'locale' => '1.00', - 'open' => '1.05', - 'ops' => '1.01', - 'overload' => '1.04', - 're' => '0.0601', - 'sigtrap' => '1.02', - 'sort' => '2.00', - 'strict' => '1.03', - 'subs' => '1.00', - 'threads' => '1.38', - 'threads::shared' => '0.94_01', - 'utf8' => '1.06', - 'vars' => '1.01', - 'version' => '0.67', - 'vmsish' => '1.02', - 'warnings' => '1.05', - 'warnings::register' => '1.01', + delta_from => 5.009003, + changed => { + 'Archive::Tar' => '1.30_01', + 'AutoLoader' => '5.61', + 'B' => '1.11', + 'B::Bytecode' => '1.02', + 'B::C' => '1.05', + 'B::Concise' => '0.69', + 'B::Deparse' => '0.76', + 'B::Lint' => '1.08', + 'Benchmark' => '1.08', + 'CGI' => '3.20', + 'CGI::Cookie' => '1.27', + 'CGI::Fast' => '1.07', + 'CPAN' => '1.87_55', + 'CPAN::Debug' => '5.400561', + 'CPAN::FirstTime' => '5.400742', + 'CPAN::HandleConfig' => '5.400740', + 'CPAN::Nox' => '5.400561', + 'CPAN::Tarzip' => '5.400714', + 'CPAN::Version' => '5.400561', + 'Compress::Raw::Zlib' => '2.000_13', + 'Compress::Zlib' => '2.000_13', + 'Cwd' => '3.19', + 'Devel::PPPort' => '3.10', + 'Digest' => '1.15', + 'Digest::SHA' => '5.43', + 'Encode' => '2.18_01', + 'Encode::Alias' => '2.06', + 'Encode::Byte' => '2.02', + 'Encode::CJKConstants' => '2.02', + 'Encode::CN' => '2.02', + 'Encode::CN::HZ' => '2.04', + 'Encode::Config' => '2.03', + 'Encode::EBCDIC' => '2.02', + 'Encode::Encoder' => '2.01', + 'Encode::Encoding' => '2.04', + 'Encode::Guess' => '2.02', + 'Encode::JP' => '2.03', + 'Encode::JP::H2Z' => '2.02', + 'Encode::JP::JIS7' => '2.02', + 'Encode::KR' => '2.02', + 'Encode::KR::2022_KR' => '2.02', + 'Encode::MIME::Header' => '2.04', + 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', + 'Encode::Symbol' => '2.02', + 'Encode::TW' => '2.02', + 'Encode::Unicode' => '2.03', + 'Encode::Unicode::UTF7' => '2.04', + 'ExtUtils::CBuilder' => '0.18', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01', + 'ExtUtils::Constant::Base'=> '0.03', + 'ExtUtils::Constant::ProxySubs'=> '0.03', + 'ExtUtils::Install' => '1.41', + 'ExtUtils::Installed' => '1.41', + 'ExtUtils::MM_Any' => '0.13_02', + 'ExtUtils::MM_NW5' => '2.08_01', + 'ExtUtils::MM_Unix' => '1.5003', + 'ExtUtils::MM_VMS' => '5.73_03', + 'ExtUtils::MM_Win32' => '1.12_02', + 'ExtUtils::MM_Win95' => '0.04_01', + 'ExtUtils::MakeMaker' => '6.30_02', + 'ExtUtils::Manifest' => '1.46_01', + 'ExtUtils::Mkbootstrap' => '1.15_01', + 'ExtUtils::Mksymlists' => '1.19_01', + 'ExtUtils::Packlist' => '1.41', + 'File::Basename' => '2.75', + 'File::Find' => '1.11', + 'File::GlobMapper' => '0.000_02', + 'File::Spec' => '3.19', + 'FileCache' => '1.07', + 'Getopt::Long' => '2.3501', + 'Hash::Util' => '0.07', + 'Hash::Util::FieldHash' => '0.01', + 'IO' => '1.23_01', + 'IO::Compress::Adapter::Deflate'=> '2.000_13', + 'IO::Compress::Adapter::Identity'=> '2.000_13', + 'IO::Compress::Base' => '2.000_13', + 'IO::Compress::Base::Common'=> '2.000_13', + 'IO::Compress::Deflate' => '2.000_13', + 'IO::Compress::Gzip' => '2.000_13', + 'IO::Compress::Gzip::Constants'=> '2.000_13', + 'IO::Compress::RawDeflate'=> '2.000_13', + 'IO::Compress::Zip' => '2.000_13', + 'IO::Compress::Zip::Constants'=> '2.000_13', + 'IO::Compress::Zlib::Constants'=> '2.000_13', + 'IO::Compress::Zlib::Extra'=> '2.000_13', + 'IO::Dir' => '1.06', + 'IO::File' => '1.14', + 'IO::Handle' => '1.27', + 'IO::Socket' => '1.30_01', + 'IO::Socket::INET' => '1.31', + 'IO::Socket::UNIX' => '1.23', + 'IO::Uncompress::Adapter::Identity'=> '2.000_13', + 'IO::Uncompress::Adapter::Inflate'=> '2.000_13', + 'IO::Uncompress::AnyInflate'=> '2.000_13', + 'IO::Uncompress::AnyUncompress'=> '2.000_13', + 'IO::Uncompress::Base' => '2.000_13', + 'IO::Uncompress::Gunzip'=> '2.000_13', + 'IO::Uncompress::Inflate'=> '2.000_13', + 'IO::Uncompress::RawInflate'=> '2.000_13', + 'IO::Uncompress::Unzip' => '2.000_13', + 'MIME::Base64' => '3.07_01', + 'Math::Complex' => '1.36', + 'Math::Trig' => '1.04', + 'Module::Build' => '0.2805', + 'Module::Build::Base' => undef, + 'Module::Build::Compat' => '0.03', + 'Module::Build::ConfigData'=> undef, + 'Module::Build::Cookbook'=> undef, + 'Module::Build::ModuleInfo'=> undef, + 'Module::Build::Notes' => undef, + 'Module::Build::PPMMaker'=> undef, + 'Module::Build::Platform::Amiga'=> undef, + 'Module::Build::Platform::Default'=> undef, + 'Module::Build::Platform::EBCDIC'=> undef, + 'Module::Build::Platform::MPEiX'=> undef, + 'Module::Build::Platform::MacOS'=> undef, + 'Module::Build::Platform::RiscOS'=> undef, + 'Module::Build::Platform::Unix'=> undef, + 'Module::Build::Platform::VMS'=> undef, + 'Module::Build::Platform::VOS'=> undef, + 'Module::Build::Platform::Windows'=> undef, + 'Module::Build::Platform::aix'=> undef, + 'Module::Build::Platform::cygwin'=> undef, + 'Module::Build::Platform::darwin'=> undef, + 'Module::Build::Platform::os2'=> undef, + 'Module::Build::PodParser'=> undef, + 'Module::Build::Version'=> '0', + 'Module::Build::YAML' => '0.50', + 'Module::CoreList' => '2.08', + 'Module::Load' => '0.10', + 'Module::Loaded' => '0.01', + 'Package::Constants' => '0.01', + 'Pod::Html' => '1.07', + 'Pod::Man' => '2.09', + 'Pod::Text' => '3.07', + 'Pod::Text::Color' => '2.03', + 'Pod::Text::Termcap' => '2.03', + 'SDBM_File' => '1.06', + 'Shell' => '0.7', + 'Sys::Syslog' => '0.17', + 'Term::ANSIColor' => '1.11', + 'Test::Builder' => '0.33', + 'Test::Builder::Tester' => '1.04', + 'Test::Harness' => '2.62', + 'Test::Harness::Util' => '0.01', + 'Test::More' => '0.64', + 'Test::Simple' => '0.64', + 'Text::Balanced' => '1.98_01', + 'Text::ParseWords' => '3.25', + 'Text::Tabs' => '2007.071101', + 'Text::Wrap' => '2006.0711', + 'Tie::RefHash' => '1.34_01', + 'Time::HiRes' => '1.87', + 'Time::Local' => '1.13', + 'Time::gmtime' => '1.03', + 'UNIVERSAL' => '1.04', + 'Unicode::Normalize' => '1.01', + 'Win32API::File' => '0.1001', + 'Win32API::File::ExtUtils::Myconst2perl'=> '1', + 'assertions' => '0.03', + 'assertions::compat' => '0.02', + 'autouse' => '1.06', + 'diagnostics' => '1.16', + 'encoding' => '2.04', + 'encoding::warnings' => '0.10', + 'feature' => '1.01', + 're' => '0.0601', + 'threads' => '1.38', + 'threads::shared' => '0.94_01', + 'version' => '0.67', + }, + removed => { + 'Compress::Zlib::Common'=> 1, + 'Compress::Zlib::Compress::Gzip::Constants'=> 1, + 'Compress::Zlib::Compress::Zip::Constants'=> 1, + 'Compress::Zlib::CompressPlugin::Deflate'=> 1, + 'Compress::Zlib::CompressPlugin::Identity'=> 1, + 'Compress::Zlib::File::GlobMapper'=> 1, + 'Compress::Zlib::FileConstants'=> 1, + 'Compress::Zlib::IO::Compress::Base'=> 1, + 'Compress::Zlib::IO::Compress::Deflate'=> 1, + 'Compress::Zlib::IO::Compress::Gzip'=> 1, + 'Compress::Zlib::IO::Compress::RawDeflate'=> 1, + 'Compress::Zlib::IO::Compress::Zip'=> 1, + 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1, + 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1, + 'Compress::Zlib::IO::Uncompress::Base'=> 1, + 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1, + 'Compress::Zlib::IO::Uncompress::Inflate'=> 1, + 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1, + 'Compress::Zlib::IO::Uncompress::Unzip'=> 1, + 'Compress::Zlib::ParseParameters'=> 1, + 'Compress::Zlib::UncompressPlugin::Identity'=> 1, + 'Compress::Zlib::UncompressPlugin::Inflate'=> 1, + } }, - 5.009005 => { - 'AnyDBM_File' => '1.00', - 'Archive::Extract' => '0.22_01', - 'Archive::Tar' => '1.32', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.78_06', - 'AutoLoader' => '5.63', - 'AutoSplit' => '1.05', - 'B' => '1.16', - 'B::Concise' => '0.72', - 'B::Debug' => '1.05', - 'B::Deparse' => '0.82', - 'B::Lint' => '1.09', - 'B::Showlex' => '1.02', - 'B::Terse' => '1.05', - 'B::Xref' => '1.01', - 'Benchmark' => '1.1', - 'CGI' => '3.29', - 'CGI::Apache' => '1.00', - 'CGI::Carp' => '1.29', - 'CGI::Cookie' => '1.28', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '1.08', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.00', - 'CGI::Util' => '1.5_01', - 'CPAN' => '1.9102', - 'CPAN::Debug' => '5.400955', - 'CPAN::FirstTime' => '5.401669', - 'CPAN::HandleConfig' => '5.401744', - 'CPAN::Kwalify' => '5.401418', - 'CPAN::Nox' => '5.400844', - 'CPAN::Queue' => '5.401704', - 'CPAN::Tarzip' => '5.401717', - 'CPAN::Version' => '5.401387', - 'CPANPLUS' => '0.81_01', - 'CPANPLUS::Backend' => undef, - 'CPANPLUS::Backend::RV' => undef, - 'CPANPLUS::Config' => undef, - 'CPANPLUS::Configure' => undef, - 'CPANPLUS::Configure::Setup'=> undef, - 'CPANPLUS::Dist' => undef, - 'CPANPLUS::Dist::Base' => '0.01', - 'CPANPLUS::Dist::Build' => '0.06_01', - 'CPANPLUS::Dist::Build::Constants'=> '0.01', - 'CPANPLUS::Dist::MM' => undef, - 'CPANPLUS::Dist::Sample'=> undef, - 'CPANPLUS::Error' => undef, - 'CPANPLUS::Internals' => '0.81_01', - 'CPANPLUS::Internals::Constants'=> '0.01', - 'CPANPLUS::Internals::Constants::Report'=> '0.01', - 'CPANPLUS::Internals::Extract'=> undef, - 'CPANPLUS::Internals::Fetch'=> undef, - 'CPANPLUS::Internals::Report'=> undef, - 'CPANPLUS::Internals::Search'=> undef, - 'CPANPLUS::Internals::Source'=> 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.81_01', - 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'CPANPLUS::inc' => undef, - 'Carp' => '1.07', - 'Carp::Heavy' => '1.07', - 'Class::ISA' => '0.33', - 'Class::Struct' => '0.63', - 'Compress::Raw::Zlib' => '2.005', - 'Compress::Zlib' => '2.005', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.25', - 'DB' => '1.01', - 'DBM_Filter' => '0.02', - 'DBM_Filter::compress' => '0.01', - 'DBM_Filter::encode' => '0.01', - 'DBM_Filter::int32' => '0.01', - 'DBM_Filter::null' => '0.01', - 'DBM_Filter::utf8' => '0.01', - 'DB_File' => '1.815', - 'DCLsym' => '1.03', - 'Data::Dumper' => '2.121_13', - 'Devel::DProf' => '20050603.00', - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.11_01', - 'Devel::Peek' => '1.03', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.15', - 'Digest::MD5' => '2.36_01', - 'Digest::SHA' => '5.44', - 'Digest::base' => '1.00', - 'Digest::file' => '1.00', - 'DirHandle' => '1.01', - 'Dumpvalue' => '1.12', - 'DynaLoader' => '1.08', - 'Encode' => '2.23', - 'Encode::Alias' => '2.07', - 'Encode::Byte' => '2.03', - 'Encode::CJKConstants' => '2.02', - 'Encode::CN' => '2.02', - 'Encode::CN::HZ' => '2.04', - 'Encode::Config' => '2.04', - 'Encode::EBCDIC' => '2.02', - 'Encode::Encoder' => '2.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.00', - 'Encode::Guess' => '2.02', - 'Encode::JP' => '2.03', - 'Encode::JP::H2Z' => '2.02', - 'Encode::JP::JIS7' => '2.03', - 'Encode::KR' => '2.02', - 'Encode::KR::2022_KR' => '2.02', - 'Encode::MIME::Header' => '2.05', - 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', - 'Encode::MIME::Name' => '1.01', - 'Encode::Symbol' => '2.02', - 'Encode::TW' => '2.02', - 'Encode::Unicode' => '2.05', - 'Encode::Unicode::UTF7' => '2.04', - 'English' => '1.04', - 'Env' => '1.00', - 'Errno' => '1.10', - 'Exporter' => '5.60', - 'Exporter::Heavy' => '5.60', - 'ExtUtils::CBuilder' => '0.19', - 'ExtUtils::CBuilder::Base'=> '0.12', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.12', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.12', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.13', - 'ExtUtils::CBuilder::Platform::aix'=> '0.12', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.12', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01', - 'ExtUtils::CBuilder::Platform::os2'=> '0.13', - 'ExtUtils::Command' => '1.13', - 'ExtUtils::Command::MM' => '0.07', - 'ExtUtils::Constant' => '0.2', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.03', - 'ExtUtils::Constant::Utils'=> '0.01', - 'ExtUtils::Constant::XS'=> '0.02', - 'ExtUtils::Embed' => '1.26', - 'ExtUtils::Install' => '1.41_01', - 'ExtUtils::Installed' => '1.41', - 'ExtUtils::Liblist' => '1.03', - 'ExtUtils::Liblist::Kid'=> '1.33', - 'ExtUtils::MM' => '0.07', - 'ExtUtils::MM_AIX' => '0.05', - 'ExtUtils::MM_Any' => '0.15', - 'ExtUtils::MM_BeOS' => '1.07', - 'ExtUtils::MM_Cygwin' => '1.1', - 'ExtUtils::MM_DOS' => '0.04', - 'ExtUtils::MM_MacOS' => '1.1', - 'ExtUtils::MM_NW5' => '2.1', - 'ExtUtils::MM_OS2' => '1.07', - 'ExtUtils::MM_QNX' => '0.04', - 'ExtUtils::MM_UWIN' => '0.04', - 'ExtUtils::MM_Unix' => '1.54_01', - 'ExtUtils::MM_VMS' => '5.76', - 'ExtUtils::MM_VOS' => '0.04', - 'ExtUtils::MM_Win32' => '1.15', - 'ExtUtils::MM_Win95' => '0.06', - 'ExtUtils::MY' => '0.03', - 'ExtUtils::MakeMaker' => '6.36', - 'ExtUtils::MakeMaker::Config'=> '0.04', - 'ExtUtils::MakeMaker::bytes'=> '0.03', - 'ExtUtils::MakeMaker::vmsish'=> '0.03', - 'ExtUtils::Manifest' => '1.51_01', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '1.17', - 'ExtUtils::Mksymlists' => '1.21', - 'ExtUtils::Packlist' => '1.41', - 'ExtUtils::ParseXS' => '2.18', - 'ExtUtils::testlib' => '1.17', - 'Fatal' => '1.05', - 'Fcntl' => '1.06', - 'File::Basename' => '2.76', - 'File::CheckTree' => '4.3', - 'File::Compare' => '1.1005', - 'File::Copy' => '2.10', - 'File::DosGlob' => '1.00', - 'File::Fetch' => '0.10', - 'File::Find' => '1.11', - 'File::Glob' => '1.06', - 'File::GlobMapper' => '0.000_02', - 'File::Path' => '2.01', - 'File::Spec' => '3.25', - 'File::Spec::Cygwin' => '1.1_01', - 'File::Spec::Epoc' => '1.1', - 'File::Spec::Functions' => '1.3', - 'File::Spec::Mac' => '1.4', - 'File::Spec::OS2' => '1.2', - 'File::Spec::Unix' => '1.5', - 'File::Spec::VMS' => '1.4_01', - 'File::Spec::Win32' => '1.6', - 'File::Temp' => '0.18', - 'File::stat' => '1.00', - 'FileCache' => '1.07', - 'FileHandle' => '2.01', - 'Filespec' => '1.11', - 'Filter::Simple' => '0.82', - 'Filter::Util::Call' => '1.0602', - 'FindBin' => '1.49', - 'GDBM_File' => '1.08', - 'Getopt::Long' => '2.36', - 'Getopt::Std' => '1.05', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '1.01', - 'I18N::Collate' => '1.00', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.23_01', - 'IO::Compress::Adapter::Deflate'=> '2.005', - 'IO::Compress::Adapter::Identity'=> '2.005', - 'IO::Compress::Base' => '2.005', - 'IO::Compress::Base::Common'=> '2.005', - 'IO::Compress::Deflate' => '2.005', - 'IO::Compress::Gzip' => '2.005', - 'IO::Compress::Gzip::Constants'=> '2.005', - 'IO::Compress::RawDeflate'=> '2.005', - 'IO::Compress::Zip' => '2.005', - 'IO::Compress::Zip::Constants'=> '2.005', - 'IO::Compress::Zlib::Constants'=> '2.005', - 'IO::Compress::Zlib::Extra'=> '2.005', - 'IO::Dir' => '1.06', - 'IO::File' => '1.14', - 'IO::Handle' => '1.27', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.30_01', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Identity'=> '2.005', - 'IO::Uncompress::Adapter::Inflate'=> '2.005', - 'IO::Uncompress::AnyInflate'=> '2.005', - 'IO::Uncompress::AnyUncompress'=> '2.005', - 'IO::Uncompress::Base' => '2.005', - 'IO::Uncompress::Gunzip'=> '2.005', - 'IO::Uncompress::Inflate'=> '2.005', - 'IO::Uncompress::RawInflate'=> '2.005', - 'IO::Uncompress::Unzip' => '2.005', - 'IO::Zlib' => '1.05_01', - 'IPC::Cmd' => '0.36_01', - 'IPC::Msg' => '1.02', - 'IPC::Open2' => '1.02', - 'IPC::Open3' => '1.02', - 'IPC::Semaphore' => '1.02', - 'IPC::SysV' => '1.04', - 'List::Util' => '1.19', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.10_01', - 'Locale::Maketext::Guts'=> undef, - 'Locale::Maketext::GutsLoader'=> undef, - 'Locale::Maketext::Simple'=> '0.18', - 'Locale::Script' => '2.07', - 'Log::Message' => '0.01', - 'Log::Message::Config' => '0.01', - 'Log::Message::Handlers'=> undef, - 'Log::Message::Item' => undef, - 'Log::Message::Simple' => '0.0201', - 'MIME::Base64' => '3.07_01', - 'MIME::QuotedPrint' => '3.07', - 'Math::BigFloat' => '1.58', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.87', - 'Math::BigInt::Calc' => '0.51', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.15_01', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.19', - 'Math::Complex' => '1.37', - 'Math::Trig' => '1.04', - 'Memoize' => '1.01_02', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.2808', - 'Module::Build::Base' => undef, - 'Module::Build::Compat' => '0.03', - 'Module::Build::Config' => undef, - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> undef, - 'Module::Build::ModuleInfo'=> undef, - 'Module::Build::Notes' => undef, - 'Module::Build::PPMMaker'=> undef, - 'Module::Build::Platform::Amiga'=> undef, - 'Module::Build::Platform::Default'=> undef, - 'Module::Build::Platform::EBCDIC'=> undef, - 'Module::Build::Platform::MPEiX'=> undef, - 'Module::Build::Platform::MacOS'=> undef, - 'Module::Build::Platform::RiscOS'=> undef, - 'Module::Build::Platform::Unix'=> undef, - 'Module::Build::Platform::VMS'=> undef, - 'Module::Build::Platform::VOS'=> undef, - 'Module::Build::Platform::Windows'=> undef, - 'Module::Build::Platform::aix'=> undef, - 'Module::Build::Platform::cygwin'=> undef, - 'Module::Build::Platform::darwin'=> undef, - 'Module::Build::Platform::os2'=> undef, - 'Module::Build::PodParser'=> undef, - 'Module::Build::Version'=> '0.7203', - 'Module::Build::YAML' => '0.50', - 'Module::CoreList' => '2.12', - 'Module::Load' => '0.10', - 'Module::Load::Conditional'=> '0.16', - 'Module::Loaded' => '0.01', - 'Module::Pluggable' => '3.6', - 'Module::Pluggable::Object'=> '3.6', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.07', - 'NEXT' => '0.60_01', - 'Net::Cmd' => '2.28', - '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.31_04', - '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.00', - 'ODBM_File' => '1.07', - 'Object::Accessor' => '0.32', - 'Opcode' => '1.09', - 'POSIX' => '1.13', - 'Package::Constants' => '0.01', - 'Params::Check' => '0.26', - 'PerlIO' => '1.04', - 'PerlIO::encoding' => '0.10', - 'PerlIO::scalar' => '0.05', - 'PerlIO::via' => '0.04', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.43', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.34', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.08', - 'Pod::InputObjects' => '1.3', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.12', - 'Pod::ParseLink' => '1.06', - 'Pod::ParseUtils' => '1.35', - 'Pod::Parser' => '1.35', - 'Pod::Perldoc' => '3.14_01', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.02', - 'Pod::Plainer' => '0.01', - 'Pod::Select' => '1.35', - 'Pod::Simple' => '3.05', - 'Pod::Simple::BlackBox' => undef, - 'Pod::Simple::Checker' => '2.02', - 'Pod::Simple::Debug' => undef, - 'Pod::Simple::DumpAsText'=> '2.02', - 'Pod::Simple::DumpAsXML'=> '2.02', - 'Pod::Simple::HTML' => '3.03', - 'Pod::Simple::HTMLBatch'=> '3.02', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> undef, - 'Pod::Simple::Methody' => '2.02', - 'Pod::Simple::Progress' => '1.01', - 'Pod::Simple::PullParser'=> '2.02', - 'Pod::Simple::PullParserEndToken'=> undef, - 'Pod::Simple::PullParserStartToken'=> undef, - 'Pod::Simple::PullParserTextToken'=> undef, - 'Pod::Simple::PullParserToken'=> '2.02', - 'Pod::Simple::RTF' => '2.02', - 'Pod::Simple::Search' => '3.04', - 'Pod::Simple::SimpleTree'=> '2.02', - 'Pod::Simple::Text' => '2.02', - 'Pod::Simple::TextContent'=> '2.02', - 'Pod::Simple::TiedOutFH'=> undef, - 'Pod::Simple::Transcode'=> undef, - 'Pod::Simple::TranscodeDumb'=> '2.02', - 'Pod::Simple::TranscodeSmart'=> undef, - 'Pod::Simple::XMLOutStream'=> '2.02', - 'Pod::Text' => '3.08', - 'Pod::Text::Color' => '2.03', - 'Pod::Text::Overstrike' => '2', - 'Pod::Text::Termcap' => '2.03', - 'Pod::Usage' => '1.35', - 'SDBM_File' => '1.06', - 'Safe' => '2.12', - 'Scalar::Util' => '1.19', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.01', - 'SelfLoader' => '1.11', - 'Shell' => '0.72_01', - 'Socket' => '1.79', - 'Stdio' => '2.3', - 'Storable' => '2.16', - 'Switch' => '2.13', - 'Symbol' => '1.06', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.18_01', - 'Term::ANSIColor' => '1.12', - 'Term::Cap' => '1.09', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.02', - 'Term::UI' => '0.14_01', - 'Term::UI::History' => undef, - 'Test' => '1.25', - 'Test::Builder' => '0.70', - 'Test::Builder::Module' => '0.68', - 'Test::Builder::Tester' => '1.07', - 'Test::Builder::Tester::Color'=> undef, - 'Test::Harness' => '2.64', - 'Test::Harness::Assert' => '0.02', - 'Test::Harness::Iterator'=> '0.02', - 'Test::Harness::Point' => '0.01', - 'Test::Harness::Results'=> '0.01', - 'Test::Harness::Straps' => '0.26', - 'Test::Harness::Util' => '0.01', - 'Test::More' => '0.70', - 'Test::Simple' => '0.70', - 'Text::Abbrev' => '1.01', - 'Text::Balanced' => '2.0.0', - 'Text::ParseWords' => '3.25', - 'Text::Soundex' => '3.02', - 'Text::Tabs' => '2007.1117', - 'Text::Wrap' => '2006.1117', - 'Thread' => '3.02', - 'Thread::Queue' => '2.00', - 'Thread::Semaphore' => '2.01', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_02', - 'Tie::Handle' => '4.1', - 'Tie::Hash' => '1.02', - 'Tie::Hash::NamedCapture'=> '0.06', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.37', - 'Tie::Scalar' => '1.00', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9707', - 'Time::Local' => '1.17', - 'Time::Piece' => '1.11_02', - 'Time::Piece::Seconds' => undef, - 'Time::Seconds' => undef, - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.04', - 'Unicode' => '5.0.0', - 'Unicode::Collate' => '0.52', - 'Unicode::Normalize' => '1.02', - 'Unicode::UCD' => '0.25', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'Win32' => '0.30', - 'Win32API::File' => '0.1001_01', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.12', - 'XS::Typemap' => '0.02', - 'XSLoader' => '0.08', - 'XSSymSet' => '1.1', - 'attributes' => '0.08', - 'attrs' => '1.02', - 'autouse' => '1.06', - 'base' => '2.12', - 'bigint' => '0.22', - 'bignum' => '0.22', - 'bigrat' => '0.22', - 'blib' => '1.03', - 'bytes' => '1.03', - 'charnames' => '1.06', - 'constant' => '1.10', - 'diagnostics' => '1.17', - 'encoding' => '2.06', - 'encoding::warnings' => '0.11', - 'feature' => '1.10', - 'fields' => '2.12', - 'filetest' => '1.01', - 'if' => '0.05', - 'integer' => '1.00', - 'less' => '0.02', - 'lib' => '0.5565', - 'locale' => '1.00', - 'mro' => '1.00', - 'open' => '1.05', - 'ops' => '1.01', - 'overload' => '1.06', - 're' => '0.08', - 'sigtrap' => '1.04', - 'sort' => '2.01', - 'strict' => '1.04', - 'subs' => '1.00', - 'threads' => '1.63', - 'threads::shared' => '1.12', - 'utf8' => '1.07', - 'vars' => '1.01', - 'version' => '0.7203', - 'vmsish' => '1.02', - 'warnings' => '1.06', - 'warnings::register' => '1.01', - }, - - 5.010000 => { - 'AnyDBM_File' => '1.00', - 'Archive::Extract' => '0.24', - 'Archive::Tar' => '1.38', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.79', - 'AutoLoader' => '5.63', - 'AutoSplit' => '1.05', - 'B' => '1.17', - 'B::Concise' => '0.74', - 'B::Debug' => '1.05', - 'B::Deparse' => '0.83', - 'B::Lint' => '1.09', - 'B::Showlex' => '1.02', - 'B::Terse' => '1.05', - 'B::Xref' => '1.01', - 'Benchmark' => '1.1', - 'CGI' => '3.29', - 'CGI::Apache' => '1.00', - 'CGI::Carp' => '1.29', - 'CGI::Cookie' => '1.28', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '1.08', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.00', - 'CGI::Util' => '1.5_01', - 'CPAN' => '1.9205', - 'CPAN::API::HOWTO' => undef, - 'CPAN::Debug' => '5.402212', - 'CPAN::DeferedCode' => '5.50', - 'CPAN::FirstTime' => '5.402229', - 'CPAN::HandleConfig' => '5.402212', - 'CPAN::Kwalify' => '5.401418', - 'CPAN::Nox' => '5.402411', - 'CPAN::Queue' => '5.402212', - 'CPAN::Tarzip' => '5.402213', - 'CPAN::Version' => '5.5', - 'CPANPLUS' => '0.84', - 'CPANPLUS::Backend' => undef, - 'CPANPLUS::Backend::RV' => undef, - 'CPANPLUS::Config' => undef, - 'CPANPLUS::Configure' => undef, - 'CPANPLUS::Configure::Setup'=> undef, - 'CPANPLUS::Dist' => undef, - 'CPANPLUS::Dist::Base' => '0.01', - 'CPANPLUS::Dist::Build' => '0.06_02', - 'CPANPLUS::Dist::Build::Constants'=> '0.01', - 'CPANPLUS::Dist::MM' => undef, - 'CPANPLUS::Dist::Sample'=> undef, - 'CPANPLUS::Error' => undef, - 'CPANPLUS::Internals' => '0.84', - 'CPANPLUS::Internals::Constants'=> '0.01', - 'CPANPLUS::Internals::Constants::Report'=> '0.01', - 'CPANPLUS::Internals::Extract'=> undef, - 'CPANPLUS::Internals::Fetch'=> undef, - 'CPANPLUS::Internals::Report'=> undef, - 'CPANPLUS::Internals::Search'=> undef, - 'CPANPLUS::Internals::Source'=> 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.84', - 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'CPANPLUS::inc' => undef, - 'Carp' => '1.08', - 'Carp::Heavy' => '1.08', - 'Class::ISA' => '0.33', - 'Class::Struct' => '0.63', - 'Compress::Raw::Zlib' => '2.008', - 'Compress::Zlib' => '2.008', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.2501', - 'DB' => '1.01', - 'DBM_Filter' => '0.02', - 'DBM_Filter::compress' => '0.01', - 'DBM_Filter::encode' => '0.01', - 'DBM_Filter::int32' => '0.01', - 'DBM_Filter::null' => '0.01', - 'DBM_Filter::utf8' => '0.01', - 'DB_File' => '1.816_1', - 'DCLsym' => '1.03', - 'Data::Dumper' => '2.121_14', - 'Devel::DProf' => '20050603.00', - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.13', - 'Devel::Peek' => '1.03', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.15', - 'Digest::MD5' => '2.36_01', - 'Digest::SHA' => '5.45', - 'Digest::base' => '1.00', - 'Digest::file' => '1.00', - 'DirHandle' => '1.01', - 'Dumpvalue' => '1.12', - 'DynaLoader' => '1.08', - 'Encode' => '2.23', - 'Encode::Alias' => '2.07', - 'Encode::Byte' => '2.03', - 'Encode::CJKConstants' => '2.02', - 'Encode::CN' => '2.02', - 'Encode::CN::HZ' => '2.04', - 'Encode::Config' => '2.04', - 'Encode::EBCDIC' => '2.02', - 'Encode::Encoder' => '2.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.00', - 'Encode::Guess' => '2.02', - 'Encode::JP' => '2.03', - 'Encode::JP::H2Z' => '2.02', - 'Encode::JP::JIS7' => '2.03', - 'Encode::KR' => '2.02', - 'Encode::KR::2022_KR' => '2.02', - 'Encode::MIME::Header' => '2.05', - 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', - 'Encode::MIME::Name' => '1.01', - 'Encode::Symbol' => '2.02', - 'Encode::TW' => '2.02', - 'Encode::Unicode' => '2.05', - 'Encode::Unicode::UTF7' => '2.04', - 'English' => '1.04', - 'Env' => '1.00', - 'Errno' => '1.10', - 'Exporter' => '5.62', - 'Exporter::Heavy' => '5.62', - 'ExtUtils::CBuilder' => '0.21', - 'ExtUtils::CBuilder::Base'=> '0.21', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.21', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.22', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.21', - 'ExtUtils::CBuilder::Platform::aix'=> '0.21', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.21', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.21', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21', - 'ExtUtils::CBuilder::Platform::os2'=> '0.21', - 'ExtUtils::Command' => '1.13', - 'ExtUtils::Command::MM' => '6.42', - 'ExtUtils::Constant' => '0.2', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.05', - 'ExtUtils::Constant::Utils'=> '0.01', - 'ExtUtils::Constant::XS'=> '0.02', - 'ExtUtils::Embed' => '1.27', - 'ExtUtils::Install' => '1.44', - 'ExtUtils::Installed' => '1.43', - 'ExtUtils::Liblist' => '6.42', - 'ExtUtils::Liblist::Kid'=> '6.42', - 'ExtUtils::MM' => '6.42', - 'ExtUtils::MM_AIX' => '6.42', - 'ExtUtils::MM_Any' => '6.42', - 'ExtUtils::MM_BeOS' => '6.42', - 'ExtUtils::MM_Cygwin' => '6.42', - 'ExtUtils::MM_DOS' => '6.42', - 'ExtUtils::MM_MacOS' => '6.42', - 'ExtUtils::MM_NW5' => '6.42', - 'ExtUtils::MM_OS2' => '6.42', - 'ExtUtils::MM_QNX' => '6.42', - 'ExtUtils::MM_UWIN' => '6.42', - 'ExtUtils::MM_Unix' => '6.42', - 'ExtUtils::MM_VMS' => '6.42', - 'ExtUtils::MM_VOS' => '6.42', - 'ExtUtils::MM_Win32' => '6.42', - 'ExtUtils::MM_Win95' => '6.42', - 'ExtUtils::MY' => '6.42', - 'ExtUtils::MakeMaker' => '6.42', - 'ExtUtils::MakeMaker::Config'=> '6.42', - 'ExtUtils::MakeMaker::bytes'=> '6.42', - 'ExtUtils::MakeMaker::vmsish'=> '6.42', - 'ExtUtils::Manifest' => '1.51_01', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '6.42', - 'ExtUtils::Mksymlists' => '6.42', - 'ExtUtils::Packlist' => '1.43', - 'ExtUtils::ParseXS' => '2.18_02', - 'ExtUtils::testlib' => '6.42', - 'Fatal' => '1.05', - 'Fcntl' => '1.06', - 'File::Basename' => '2.76', - 'File::CheckTree' => '4.3', - 'File::Compare' => '1.1005', - 'File::Copy' => '2.11', - 'File::DosGlob' => '1.00', - 'File::Fetch' => '0.14', - 'File::Find' => '1.12', - 'File::Glob' => '1.06', - 'File::GlobMapper' => '0.000_02', - 'File::Path' => '2.04', - 'File::Spec' => '3.2501', - 'File::Spec::Cygwin' => '3.2501', - 'File::Spec::Epoc' => '3.2501', - 'File::Spec::Functions' => '3.2501', - 'File::Spec::Mac' => '3.2501', - 'File::Spec::OS2' => '3.2501', - 'File::Spec::Unix' => '3.2501', - 'File::Spec::VMS' => '3.2501', - 'File::Spec::Win32' => '3.2501', - 'File::Temp' => '0.18', - 'File::stat' => '1.00', - 'FileCache' => '1.07', - 'FileHandle' => '2.01', - 'Filespec' => '1.12', - 'Filter::Simple' => '0.82', - 'Filter::Util::Call' => '1.07', - 'FindBin' => '1.49', - 'GDBM_File' => '1.08', - 'Getopt::Long' => '2.37', - 'Getopt::Std' => '1.05', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '1.03', - 'I18N::Collate' => '1.00', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.23_01', - 'IO::Compress::Adapter::Deflate'=> '2.008', - 'IO::Compress::Adapter::Identity'=> '2.008', - 'IO::Compress::Base' => '2.008', - 'IO::Compress::Base::Common'=> '2.008', - 'IO::Compress::Deflate' => '2.008', - 'IO::Compress::Gzip' => '2.008', - 'IO::Compress::Gzip::Constants'=> '2.008', - 'IO::Compress::RawDeflate'=> '2.008', - 'IO::Compress::Zip' => '2.008', - 'IO::Compress::Zip::Constants'=> '2.008', - 'IO::Compress::Zlib::Constants'=> '2.008', - 'IO::Compress::Zlib::Extra'=> '2.008', - 'IO::Dir' => '1.06', - 'IO::File' => '1.14', - 'IO::Handle' => '1.27', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.30_01', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Identity'=> '2.008', - 'IO::Uncompress::Adapter::Inflate'=> '2.008', - 'IO::Uncompress::AnyInflate'=> '2.008', - 'IO::Uncompress::AnyUncompress'=> '2.008', - 'IO::Uncompress::Base' => '2.008', - 'IO::Uncompress::Gunzip'=> '2.008', - 'IO::Uncompress::Inflate'=> '2.008', - 'IO::Uncompress::RawInflate'=> '2.008', - 'IO::Uncompress::Unzip' => '2.008', - 'IO::Zlib' => '1.07', - 'IPC::Cmd' => '0.40_1', - 'IPC::Msg' => '1.02', - 'IPC::Open2' => '1.02', - 'IPC::Open3' => '1.02', - 'IPC::Semaphore' => '1.02', - 'IPC::SysV' => '1.05', - 'List::Util' => '1.19', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.12', - 'Locale::Maketext::Guts'=> undef, - 'Locale::Maketext::GutsLoader'=> undef, - 'Locale::Maketext::Simple'=> '0.18', - 'Locale::Script' => '2.07', - 'Log::Message' => '0.01', - 'Log::Message::Config' => '0.01', - 'Log::Message::Handlers'=> undef, - 'Log::Message::Item' => undef, - 'Log::Message::Simple' => '0.04', - 'MIME::Base64' => '3.07_01', - 'MIME::QuotedPrint' => '3.07', - 'Math::BigFloat' => '1.59', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.88', - 'Math::BigInt::Calc' => '0.52', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.16', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.21', - 'Math::Complex' => '1.37', - 'Math::Trig' => '1.04', - 'Memoize' => '1.01_02', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.2808_01', - 'Module::Build::Base' => '0.2808_01', - 'Module::Build::Compat' => '0.2808_01', - 'Module::Build::Config' => '0.2808_01', - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> undef, - 'Module::Build::Dumper' => undef, - 'Module::Build::ModuleInfo'=> '0.2808_01', - 'Module::Build::Notes' => '0.2808_01', - 'Module::Build::PPMMaker'=> '0.2808_01', - 'Module::Build::Platform::Amiga'=> '0.2808_01', - 'Module::Build::Platform::Default'=> '0.2808_01', - 'Module::Build::Platform::EBCDIC'=> '0.2808_01', - 'Module::Build::Platform::MPEiX'=> '0.2808_01', - 'Module::Build::Platform::MacOS'=> '0.2808_01', - 'Module::Build::Platform::RiscOS'=> '0.2808_01', - 'Module::Build::Platform::Unix'=> '0.2808_01', - 'Module::Build::Platform::VMS'=> '0.2808_01', - 'Module::Build::Platform::VOS'=> '0.2808_01', - 'Module::Build::Platform::Windows'=> '0.2808_01', - 'Module::Build::Platform::aix'=> '0.2808_01', - 'Module::Build::Platform::cygwin'=> '0.2808_01', - 'Module::Build::Platform::darwin'=> '0.2808_01', - 'Module::Build::Platform::os2'=> '0.2808_01', - 'Module::Build::PodParser'=> '0.2808_01', - 'Module::Build::Version'=> '0.7203', - 'Module::Build::YAML' => '0.50', - 'Module::CoreList' => '2.12', - 'Module::Load' => '0.12', - 'Module::Load::Conditional'=> '0.22', - 'Module::Loaded' => '0.01', - 'Module::Pluggable' => '3.6', - 'Module::Pluggable::Object'=> '3.6', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.07', - 'NEXT' => '0.60_01', - '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.33', - '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.00', - 'ODBM_File' => '1.07', - 'Object::Accessor' => '0.32', - 'Opcode' => '1.11', - 'POSIX' => '1.13', - 'Package::Constants' => '0.01', - 'Params::Check' => '0.26', - 'PerlIO' => '1.04', - 'PerlIO::encoding' => '0.10', - 'PerlIO::scalar' => '0.05', - 'PerlIO::via' => '0.04', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.43_01', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.34', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.08', - 'Pod::InputObjects' => '1.3', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.16', - 'Pod::ParseLink' => '1.06', - 'Pod::ParseUtils' => '1.35', - 'Pod::Parser' => '1.35', - 'Pod::Perldoc' => '3.14_02', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.02', - 'Pod::Plainer' => '0.01', - 'Pod::Select' => '1.35', - 'Pod::Simple' => '3.05', - 'Pod::Simple::BlackBox' => undef, - 'Pod::Simple::Checker' => '2.02', - 'Pod::Simple::Debug' => undef, - 'Pod::Simple::DumpAsText'=> '2.02', - 'Pod::Simple::DumpAsXML'=> '2.02', - 'Pod::Simple::HTML' => '3.03', - 'Pod::Simple::HTMLBatch'=> '3.02', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> undef, - 'Pod::Simple::Methody' => '2.02', - 'Pod::Simple::Progress' => '1.01', - 'Pod::Simple::PullParser'=> '2.02', - 'Pod::Simple::PullParserEndToken'=> undef, - 'Pod::Simple::PullParserStartToken'=> undef, - 'Pod::Simple::PullParserTextToken'=> undef, - 'Pod::Simple::PullParserToken'=> '2.02', - 'Pod::Simple::RTF' => '2.02', - 'Pod::Simple::Search' => '3.04', - 'Pod::Simple::SimpleTree'=> '2.02', - 'Pod::Simple::Text' => '2.02', - 'Pod::Simple::TextContent'=> '2.02', - 'Pod::Simple::TiedOutFH'=> undef, - 'Pod::Simple::Transcode'=> undef, - 'Pod::Simple::TranscodeDumb'=> '2.02', - 'Pod::Simple::TranscodeSmart'=> undef, - 'Pod::Simple::XMLOutStream'=> '2.02', - 'Pod::Text' => '3.08', - 'Pod::Text::Color' => '2.03', - 'Pod::Text::Overstrike' => '2', - 'Pod::Text::Termcap' => '2.03', - 'Pod::Usage' => '1.35', - 'SDBM_File' => '1.06', - 'Safe' => '2.12', - 'Scalar::Util' => '1.19', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.01', - 'SelfLoader' => '1.11', - 'Shell' => '0.72_01', - 'Socket' => '1.80', - 'Stdio' => '2.3', - 'Storable' => '2.18', - 'Switch' => '2.13', - 'Symbol' => '1.06', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.22', - 'Sys::Syslog::win32::Win32'=> undef, - 'Term::ANSIColor' => '1.12', - 'Term::Cap' => '1.12', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.03', - 'Term::UI' => '0.18', - 'Term::UI::History' => undef, - 'Test' => '1.25', - 'Test::Builder' => '0.72', - 'Test::Builder::Module' => '0.72', - 'Test::Builder::Tester' => '1.09', - 'Test::Builder::Tester::Color'=> undef, - 'Test::Harness' => '2.64', - 'Test::Harness::Assert' => '0.02', - 'Test::Harness::Iterator'=> '0.02', - 'Test::Harness::Point' => '0.01', - 'Test::Harness::Results'=> '0.01', - 'Test::Harness::Straps' => '0.26_01', - 'Test::Harness::Util' => '0.01', - 'Test::More' => '0.72', - 'Test::Simple' => '0.72', - 'Text::Abbrev' => '1.01', - 'Text::Balanced' => '2.0.0', - 'Text::ParseWords' => '3.26', - 'Text::Soundex' => '3.03', - 'Text::Tabs' => '2007.1117', - 'Text::Wrap' => '2006.1117', - 'Thread' => '3.02', - 'Thread::Queue' => '2.00', - 'Thread::Semaphore' => '2.01', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_02', - 'Tie::Handle' => '4.1', - 'Tie::Hash' => '1.02', - 'Tie::Hash::NamedCapture'=> '0.06', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.37', - 'Tie::Scalar' => '1.00', - 'Tie::StdHandle' => undef, - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9711', - 'Time::Local' => '1.18', - 'Time::Piece' => '1.12', - 'Time::Piece::Seconds' => undef, - 'Time::Seconds' => undef, - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.04', - 'Unicode' => '5.0.0', - 'Unicode::Collate' => '0.52', - 'Unicode::Normalize' => '1.02', - 'Unicode::UCD' => '0.25', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'Win32' => '0.34', - 'Win32API::File' => '0.1001_01', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.12', - 'XS::Typemap' => '0.02', - 'XSLoader' => '0.08', - 'XSSymSet' => '1.1', - 'attributes' => '0.08', - 'attrs' => '1.02', - 'autouse' => '1.06', - 'base' => '2.13', - 'bigint' => '0.22', - 'bignum' => '0.22', - 'bigrat' => '0.22', - 'blib' => '1.03', - 'bytes' => '1.03', - 'charnames' => '1.06', - 'constant' => '1.13', - 'diagnostics' => '1.17', - 'encoding' => '2.06', - 'encoding::warnings' => '0.11', - 'feature' => '1.11', - 'fields' => '2.13', - 'filetest' => '1.02', - 'if' => '0.05', - 'integer' => '1.00', - 'less' => '0.02', - 'lib' => '0.5565', - 'locale' => '1.00', - 'mro' => '1.00', - 'open' => '1.06', - 'ops' => '1.01', - 'overload' => '1.06', - 're' => '0.08', - 'sigtrap' => '1.04', - 'sort' => '2.01', - 'strict' => '1.04', - 'subs' => '1.00', - 'threads' => '1.67', - 'threads::shared' => '1.14', - 'utf8' => '1.07', - 'vars' => '1.01', - 'version' => '0.74', - 'vmsish' => '1.02', - 'warnings' => '1.06', - 'warnings::register' => '1.01', + delta_from => 5.009004, + changed => { + 'Archive::Extract' => '0.22_01', + 'Archive::Tar' => '1.32', + 'Attribute::Handlers' => '0.78_06', + 'AutoLoader' => '5.63', + 'AutoSplit' => '1.05', + 'B' => '1.16', + 'B::Concise' => '0.72', + 'B::Debug' => '1.05', + 'B::Deparse' => '0.82', + 'B::Lint' => '1.09', + 'B::Terse' => '1.05', + 'Benchmark' => '1.1', + 'CGI' => '3.29', + 'CGI::Cookie' => '1.28', + 'CGI::Util' => '1.5_01', + 'CPAN' => '1.9102', + 'CPAN::Debug' => '5.400955', + 'CPAN::FirstTime' => '5.401669', + 'CPAN::HandleConfig' => '5.401744', + 'CPAN::Kwalify' => '5.401418', + 'CPAN::Nox' => '5.400844', + 'CPAN::Queue' => '5.401704', + 'CPAN::Tarzip' => '5.401717', + 'CPAN::Version' => '5.401387', + 'CPANPLUS' => '0.81_01', + 'CPANPLUS::Backend' => undef, + 'CPANPLUS::Backend::RV' => undef, + 'CPANPLUS::Config' => undef, + 'CPANPLUS::Configure' => undef, + 'CPANPLUS::Configure::Setup'=> undef, + 'CPANPLUS::Dist' => undef, + 'CPANPLUS::Dist::Base' => '0.01', + 'CPANPLUS::Dist::Build' => '0.06_01', + 'CPANPLUS::Dist::Build::Constants'=> '0.01', + 'CPANPLUS::Dist::MM' => undef, + 'CPANPLUS::Dist::Sample'=> undef, + 'CPANPLUS::Error' => undef, + 'CPANPLUS::Internals' => '0.81_01', + 'CPANPLUS::Internals::Constants'=> '0.01', + 'CPANPLUS::Internals::Constants::Report'=> '0.01', + 'CPANPLUS::Internals::Extract'=> undef, + 'CPANPLUS::Internals::Fetch'=> undef, + 'CPANPLUS::Internals::Report'=> undef, + 'CPANPLUS::Internals::Search'=> undef, + 'CPANPLUS::Internals::Source'=> 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.81_01', + 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, + 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, + 'CPANPLUS::inc' => undef, + 'Carp' => '1.07', + 'Carp::Heavy' => '1.07', + 'Compress::Raw::Zlib' => '2.005', + 'Compress::Zlib' => '2.005', + 'Cwd' => '3.25', + 'DBM_Filter' => '0.02', + 'DB_File' => '1.815', + 'Data::Dumper' => '2.121_13', + 'Devel::InnerPackage' => '0.3', + 'Devel::PPPort' => '3.11_01', + 'Digest::MD5' => '2.36_01', + 'Digest::SHA' => '5.44', + 'DynaLoader' => '1.08', + 'Encode' => '2.23', + 'Encode::Alias' => '2.07', + 'Encode::Byte' => '2.03', + 'Encode::Config' => '2.04', + 'Encode::Encoding' => '2.05', + 'Encode::GSM0338' => '2.00', + 'Encode::JP::JIS7' => '2.03', + 'Encode::MIME::Header' => '2.05', + 'Encode::MIME::Name' => '1.01', + 'Encode::Unicode' => '2.05', + 'Errno' => '1.10', + 'Exporter' => '5.60', + 'Exporter::Heavy' => '5.60', + 'ExtUtils::CBuilder' => '0.19', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.13', + 'ExtUtils::Command' => '1.13', + 'ExtUtils::Command::MM' => '0.07', + 'ExtUtils::Constant::Base'=> '0.04', + 'ExtUtils::Install' => '1.41_01', + 'ExtUtils::Liblist' => '1.03', + 'ExtUtils::Liblist::Kid'=> '1.33', + 'ExtUtils::MM' => '0.07', + 'ExtUtils::MM_AIX' => '0.05', + 'ExtUtils::MM_Any' => '0.15', + 'ExtUtils::MM_BeOS' => '1.07', + 'ExtUtils::MM_Cygwin' => '1.1', + 'ExtUtils::MM_DOS' => '0.04', + 'ExtUtils::MM_MacOS' => '1.1', + 'ExtUtils::MM_NW5' => '2.1', + 'ExtUtils::MM_OS2' => '1.07', + 'ExtUtils::MM_QNX' => '0.04', + 'ExtUtils::MM_UWIN' => '0.04', + 'ExtUtils::MM_Unix' => '1.54_01', + 'ExtUtils::MM_VMS' => '5.76', + 'ExtUtils::MM_VOS' => '0.04', + 'ExtUtils::MM_Win32' => '1.15', + 'ExtUtils::MM_Win95' => '0.06', + 'ExtUtils::MY' => '0.03', + 'ExtUtils::MakeMaker' => '6.36', + 'ExtUtils::MakeMaker::Config'=> '0.04', + 'ExtUtils::MakeMaker::bytes'=> '0.03', + 'ExtUtils::MakeMaker::vmsish'=> '0.03', + 'ExtUtils::Manifest' => '1.51_01', + 'ExtUtils::Mkbootstrap' => '1.17', + 'ExtUtils::Mksymlists' => '1.21', + 'ExtUtils::ParseXS' => '2.18', + 'ExtUtils::XSSymSet' => '1.1', + 'ExtUtils::testlib' => '1.17', + 'Fatal' => '1.05', + 'Fcntl' => '1.06', + 'File::Basename' => '2.76', + 'File::Copy' => '2.10', + 'File::Fetch' => '0.10', + 'File::Glob' => '1.06', + 'File::Path' => '2.01', + 'File::Spec' => '3.25', + 'File::Spec::Cygwin' => '1.1_01', + 'File::Spec::VMS' => '1.4_01', + 'File::Temp' => '0.18', + 'Filter::Util::Call' => '1.0602', + 'FindBin' => '1.49', + 'Getopt::Long' => '2.36', + 'Hash::Util::FieldHash' => '1.01', + 'IO::Compress::Adapter::Deflate'=> '2.005', + 'IO::Compress::Adapter::Identity'=> '2.005', + 'IO::Compress::Base' => '2.005', + 'IO::Compress::Base::Common'=> '2.005', + 'IO::Compress::Deflate' => '2.005', + 'IO::Compress::Gzip' => '2.005', + 'IO::Compress::Gzip::Constants'=> '2.005', + 'IO::Compress::RawDeflate'=> '2.005', + 'IO::Compress::Zip' => '2.005', + 'IO::Compress::Zip::Constants'=> '2.005', + 'IO::Compress::Zlib::Constants'=> '2.005', + 'IO::Compress::Zlib::Extra'=> '2.005', + 'IO::Uncompress::Adapter::Identity'=> '2.005', + 'IO::Uncompress::Adapter::Inflate'=> '2.005', + 'IO::Uncompress::AnyInflate'=> '2.005', + 'IO::Uncompress::AnyUncompress'=> '2.005', + 'IO::Uncompress::Base' => '2.005', + 'IO::Uncompress::Gunzip'=> '2.005', + 'IO::Uncompress::Inflate'=> '2.005', + 'IO::Uncompress::RawInflate'=> '2.005', + 'IO::Uncompress::Unzip' => '2.005', + 'IO::Zlib' => '1.05_01', + 'IPC::Cmd' => '0.36_01', + 'List::Util' => '1.19', + 'Locale::Maketext::Simple'=> '0.18', + 'Log::Message' => '0.01', + 'Log::Message::Config' => '0.01', + 'Log::Message::Handlers'=> undef, + 'Log::Message::Item' => undef, + 'Log::Message::Simple' => '0.0201', + 'Math::BigFloat' => '1.58', + 'Math::BigInt' => '1.87', + 'Math::BigInt::Calc' => '0.51', + 'Math::BigInt::FastCalc'=> '0.15_01', + 'Math::BigRat' => '0.19', + 'Math::Complex' => '1.37', + 'Memoize' => '1.01_02', + 'Module::Build' => '0.2808', + 'Module::Build::Config' => undef, + 'Module::Build::Version'=> '0.7203', + 'Module::CoreList' => '2.12', + 'Module::Load::Conditional'=> '0.16', + 'Module::Pluggable' => '3.6', + 'Module::Pluggable::Object'=> '3.6', + 'NDBM_File' => '1.07', + 'Net::Cmd' => '2.28', + 'Net::Config' => '1.11', + 'Net::Domain' => '2.20', + 'Net::FTP' => '2.77', + 'Net::FTP::A' => '1.18', + 'Net::NNTP' => '2.24', + 'Net::POP3' => '2.29', + 'Net::SMTP' => '2.31', + 'ODBM_File' => '1.07', + 'Object::Accessor' => '0.32', + 'Opcode' => '1.09', + 'POSIX' => '1.13', + 'Params::Check' => '0.26', + 'PerlIO::encoding' => '0.10', + 'PerlIO::scalar' => '0.05', + 'PerlIO::via' => '0.04', + 'Pod::Html' => '1.08', + 'Pod::Man' => '2.12', + 'Pod::ParseUtils' => '1.35', + 'Pod::Parser' => '1.35', + 'Pod::Select' => '1.35', + 'Pod::Simple' => '3.05', + 'Pod::Text' => '3.08', + 'Pod::Usage' => '1.35', + 'Scalar::Util' => '1.19', + 'SelfLoader' => '1.11', + 'Shell' => '0.72_01', + 'Socket' => '1.79', + 'Storable' => '2.16', + 'Switch' => '2.13', + 'Sys::Syslog' => '0.18_01', + 'Term::ANSIColor' => '1.12', + 'Term::UI' => '0.14_01', + 'Term::UI::History' => undef, + 'Test::Builder' => '0.70', + 'Test::Builder::Module' => '0.68', + 'Test::Builder::Tester' => '1.07', + 'Test::Harness' => '2.64', + 'Test::Harness::Results'=> '0.01', + 'Test::More' => '0.70', + 'Test::Simple' => '0.70', + 'Text::Balanced' => '2.0.0', + 'Text::Soundex' => '3.02', + 'Text::Tabs' => '2007.1117', + 'Text::Wrap' => '2006.1117', + 'Thread' => '3.02', + 'Tie::File' => '0.97_02', + 'Tie::Hash::NamedCapture'=> '0.06', + 'Tie::Memoize' => '1.1', + 'Tie::RefHash' => '1.37', + 'Time::HiRes' => '1.9707', + 'Time::Local' => '1.17', + 'Time::Piece' => '1.11_02', + 'Time::Seconds' => undef, + 'Unicode' => '5.0.0', + 'Unicode::Normalize' => '1.02', + 'Unicode::UCD' => '0.25', + 'VMS::DCLsym' => '1.03', + 'Win32' => '0.30', + 'Win32API::File' => '0.1001_01', + 'Win32CORE' => '0.02', + 'XS::APItest' => '0.12', + 'XSLoader' => '0.08', + 'attributes' => '0.08', + 'base' => '2.12', + 'bigint' => '0.22', + 'bignum' => '0.22', + 'bigrat' => '0.22', + 'bytes' => '1.03', + 'charnames' => '1.06', + 'constant' => '1.10', + 'diagnostics' => '1.17', + 'encoding' => '2.06', + 'encoding::warnings' => '0.11', + 'feature' => '1.10', + 'fields' => '2.12', + 'less' => '0.02', + 'mro' => '1.00', + 'overload' => '1.06', + 're' => '0.08', + 'sigtrap' => '1.04', + 'sort' => '2.01', + 'strict' => '1.04', + 'threads' => '1.63', + 'threads::shared' => '1.12', + 'utf8' => '1.07', + 'version' => '0.7203', + 'warnings' => '1.06', + }, + removed => { + 'B::Asmdata' => 1, + 'B::Assembler' => 1, + 'B::Bblock' => 1, + 'B::Bytecode' => 1, + 'B::C' => 1, + 'B::CC' => 1, + 'B::Disassembler' => 1, + 'B::Stackobj' => 1, + 'B::Stash' => 1, + 'ByteLoader' => 1, + 'Thread::Signal' => 1, + 'Thread::Specific' => 1, + 'assertions' => 1, + 'assertions::activate' => 1, + 'assertions::compat' => 1, + } }, - - 5.008009 => { - 'AnyDBM_File' => '1.00', - 'Attribute::Handlers' => '0.78_03', - 'AutoLoader' => '5.67', - 'AutoSplit' => '1.06', - 'B' => '1.19', - 'B::Asmdata' => '1.02', - 'B::Assembler' => '0.08', - 'B::Bblock' => '1.02_01', - 'B::Bytecode' => '1.01_01', - 'B::C' => '1.05', - 'B::CC' => '1.00_01', - 'B::Concise' => '0.76', - 'B::Debug' => '1.05', - 'B::Deparse' => '0.87', - 'B::Disassembler' => '1.05', - 'B::Lint' => '1.11', - 'B::Lint::Debug' => undef, - 'B::Showlex' => '1.02', - 'B::Stackobj' => '1.00', - 'B::Stash' => '1.00', - 'B::Terse' => '1.05', - 'B::Xref' => '1.01', - 'Benchmark' => '1.1', - 'ByteLoader' => '0.06', - 'CGI' => '3.42', - 'CGI::Apache' => '1.00', - 'CGI::Carp' => '1.30_01', - 'CGI::Cookie' => '1.29', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '1.08', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.00', - 'CGI::Util' => '1.5_01', - 'CPAN' => '1.9301', - 'CPAN::Debug' => '5.5', - 'CPAN::DeferedCode' => '5.50', - 'CPAN::Distroprefs' => '6', - 'CPAN::FirstTime' => '5.5_01', - 'CPAN::HandleConfig' => '5.5', - 'CPAN::Kwalify' => '5.50', - 'CPAN::Nox' => '5.50', - 'CPAN::Queue' => '5.5', - 'CPAN::Tarzip' => '5.5', - 'CPAN::Version' => '5.5', - 'Carp' => '1.10', - 'Carp::Heavy' => '1.10', - 'Class::ISA' => '0.33', - 'Class::Struct' => '0.63', - 'Config' => undef, - 'Cwd' => '3.29', - 'DB' => '1.01', - 'DBM_Filter' => '0.02', - '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.817', - 'DCLsym' => '1.03', - 'Data::Dumper' => '2.121_17', - 'Devel::DProf' => '20080331.00', - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.14', - 'Devel::Peek' => '1.04', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.15', - 'Digest::MD5' => '2.37', - 'Digest::base' => '1.00', - 'Digest::file' => '1.00', - 'DirHandle' => '1.02', - 'Dumpvalue' => '1.12', - 'DynaLoader' => '1.09', - 'Encode' => '2.26', - 'Encode::Alias' => '2.10', - 'Encode::Byte' => '2.03', - 'Encode::CJKConstants' => '2.02', - 'Encode::CN' => '2.02', - 'Encode::CN::HZ' => '2.05', - 'Encode::Config' => '2.05', - 'Encode::EBCDIC' => '2.02', - 'Encode::Encoder' => '2.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.01', - 'Encode::Guess' => '2.02', - 'Encode::JP' => '2.03', - 'Encode::JP::H2Z' => '2.02', - 'Encode::JP::JIS7' => '2.04', - 'Encode::KR' => '2.02', - 'Encode::KR::2022_KR' => '2.02', - 'Encode::MIME::Header' => '2.05', - 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', - 'Encode::MIME::Name' => '1.01', - 'Encode::Symbol' => '2.02', - 'Encode::TW' => '2.02', - 'Encode::Unicode' => '2.05', - 'Encode::Unicode::UTF7' => '2.04', - 'English' => '1.03', - 'Env' => '1.00', - 'Errno' => '1.10', - 'Exporter' => '5.63', - 'Exporter::Heavy' => '5.63', - 'ExtUtils::Command' => '1.15', - 'ExtUtils::Command::MM' => '6.48', - 'ExtUtils::Constant' => '0.21', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.06', - 'ExtUtils::Constant::Utils'=> '0.02', - 'ExtUtils::Constant::XS'=> '0.02', - 'ExtUtils::Embed' => '1.28', - 'ExtUtils::Install' => '1.50_01', - 'ExtUtils::Installed' => '1.43', - 'ExtUtils::Liblist' => '6.48', - 'ExtUtils::Liblist::Kid'=> '6.48', - 'ExtUtils::MM' => '6.48', - 'ExtUtils::MM_AIX' => '6.48', - 'ExtUtils::MM_Any' => '6.48', - 'ExtUtils::MM_BeOS' => '6.48', - 'ExtUtils::MM_Cygwin' => '6.48', - 'ExtUtils::MM_DOS' => '6.48', - 'ExtUtils::MM_Darwin' => '6.48', - 'ExtUtils::MM_MacOS' => '6.48', - 'ExtUtils::MM_NW5' => '6.48', - 'ExtUtils::MM_OS2' => '6.48', - 'ExtUtils::MM_QNX' => '6.48', - 'ExtUtils::MM_UWIN' => '6.48', - 'ExtUtils::MM_Unix' => '6.48', - 'ExtUtils::MM_VMS' => '6.48', - 'ExtUtils::MM_VOS' => '6.48', - 'ExtUtils::MM_Win32' => '6.48', - 'ExtUtils::MM_Win95' => '6.48', - 'ExtUtils::MY' => '6.48', - 'ExtUtils::MakeMaker' => '6.48', - 'ExtUtils::MakeMaker::Config'=> '6.48', - 'ExtUtils::MakeMaker::bytes'=> '6.48', - 'ExtUtils::MakeMaker::vmsish'=> '6.48', - 'ExtUtils::Manifest' => '1.55', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '6.48', - 'ExtUtils::Mksymlists' => '6.48', - 'ExtUtils::Packlist' => '1.43', - 'ExtUtils::ParseXS' => '2.19', - 'ExtUtils::testlib' => '6.48', - 'Fatal' => '1.06', - 'Fcntl' => '1.06', - 'File::Basename' => '2.77', - 'File::CheckTree' => '4.4', - 'File::Compare' => '1.1005', - 'File::Copy' => '2.13', - 'File::DosGlob' => '1.01', - 'File::Find' => '1.13', - 'File::Glob' => '1.06', - 'File::Path' => '2.07_02', - 'File::Spec' => '3.29', - 'File::Spec::Cygwin' => '3.29', - 'File::Spec::Epoc' => '3.29', - 'File::Spec::Functions' => '3.29', - 'File::Spec::Mac' => '3.29', - 'File::Spec::OS2' => '3.29', - 'File::Spec::Unix' => '3.29', - 'File::Spec::VMS' => '3.29', - 'File::Spec::Win32' => '3.29', - 'File::Temp' => '0.20', - 'File::stat' => '1.01', - 'FileCache' => '1.07', - 'FileHandle' => '2.01', - 'Filespec' => '1.11', - 'Filter::Simple' => '0.83', - 'Filter::Util::Call' => '1.07', - 'FindBin' => '1.49', - 'GDBM_File' => '1.09', - 'Getopt::Long' => '2.37', - 'Getopt::Std' => '1.06', - 'Hash::Util' => '0.06', - 'I18N::Collate' => '1.00', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.23', - 'IO::Dir' => '1.06', - 'IO::File' => '1.14', - 'IO::Handle' => '1.27', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.30', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IPC::Msg' => '2.00', - 'IPC::Open2' => '1.03', - 'IPC::Open3' => '1.03', - 'IPC::Semaphore' => '2.00', - 'IPC::SharedMem' => '2.00', - 'IPC::SysV' => '2.00', - 'IPC::lib::IPC::Msg' => '2.00', - 'IPC::lib::IPC::Semaphore'=> '2.00', - 'IPC::lib::IPC::SharedMem'=> '2.00', - 'List::Util' => '1.19', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.13', - 'Locale::Maketext::Guts'=> '1.13', - 'Locale::Maketext::GutsLoader'=> '1.13', - 'Locale::Script' => '2.07', - 'MIME::Base64' => '3.07', - 'MIME::QuotedPrint' => '3.07', - 'Math::BigFloat' => '1.60', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.89', - 'Math::BigInt::Calc' => '0.52', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.22', - 'Math::Complex' => '1.54', - 'Math::Trig' => '1.18', - 'Memoize' => '1.01', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::CoreList' => '2.17', - 'Module::Pluggable' => '3.8', - 'Module::Pluggable::Object'=> '3.6', - 'Module::Pluggable::lib::Devel::InnerPackage'=> '0.3', - 'NDBM_File' => '1.07', - 'NEXT' => '0.61', - '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.35', - '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.07', - 'Opcode' => '1.0601', - 'POSIX' => '1.15', - 'PerlIO' => '1.05', - 'PerlIO::encoding' => '0.11', - 'PerlIO::scalar' => '0.06', - 'PerlIO::via' => '0.05', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.43', - 'Pod::Find' => '1.34', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.09', - 'Pod::InputObjects' => '1.3', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '1.37', - 'Pod::ParseLink' => '1.06', - 'Pod::ParseUtils' => '1.35', - 'Pod::Parser' => '1.35', - 'Pod::Perldoc' => '3.14', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.02', - 'Pod::Plainer' => '0.01', - 'Pod::Select' => '1.35', - 'Pod::Text' => '2.21', - 'Pod::Text::Color' => '1.04', - 'Pod::Text::Overstrike' => '1.1', - 'Pod::Text::Termcap' => '1.11', - 'Pod::Usage' => '1.35', - 'SDBM_File' => '1.06', - 'Safe' => '2.16', - 'Scalar::Util' => '1.19', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.01', - 'SelfLoader' => '1.17', - 'Shell' => '0.72', - 'Socket' => '1.81', - 'Stdio' => '2.4', - 'Storable' => '2.19', - 'Switch' => '2.13', - 'Symbol' => '1.06', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.27', - 'Sys::Syslog::win32::Win32'=> undef, - 'Term::ANSIColor' => '1.12', - 'Term::Cap' => '1.12', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.03', - 'Test' => '1.25', - 'Test::Builder' => '0.80', - 'Test::Builder::Module' => '0.80', - 'Test::Builder::Tester' => '1.13', - 'Test::Builder::Tester::Color'=> undef, - 'Test::Harness' => '2.64', - 'Test::Harness::Assert' => '0.02', - 'Test::Harness::Iterator'=> '0.02', - 'Test::Harness::Point' => '0.01', - 'Test::Harness::Results'=> '0.01_01', - 'Test::Harness::Straps' => '0.26_01', - 'Test::Harness::Util' => '0.01', - 'Test::More' => '0.80', - 'Test::Simple' => '0.80', - 'Text::Abbrev' => '1.01', - 'Text::Balanced' => '1.98', - 'Text::ParseWords' => '3.27', - 'Text::Soundex' => '3.03', - 'Text::Tabs' => '2007.1117', - 'Text::Wrap' => '2006.1117', - 'Thread' => '2.01', - 'Thread::Queue' => '2.11', - 'Thread::Semaphore' => '2.09', - 'Thread::Signal' => '1.00', - 'Thread::Specific' => '1.00', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97', - 'Tie::Handle' => '4.2', - 'Tie::Hash' => '1.03', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.38', - 'Tie::Scalar' => '1.01', - 'Tie::StdHandle' => '4.2', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9715', - 'Time::Local' => '1.1901', - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.01', - 'Unicode' => '5.1.0', - 'Unicode::Collate' => '0.52', - 'Unicode::Normalize' => '1.02', - 'Unicode::UCD' => '0.25', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'Win32' => '0.38', - 'Win32API::File' => '0.1001_01', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.15', - 'XS::Typemap' => '0.03', - 'XSLoader' => '0.10', - 'XSSymSet' => '1.1', - 'attributes' => '0.09', - 'attrs' => '1.02', - 'autouse' => '1.06', - 'base' => '2.13', - 'bigint' => '0.23', - 'bignum' => '0.23', - 'bigrat' => '0.23', - 'blib' => '1.04', - 'bytes' => '1.02', - 'charnames' => '1.06', - 'constant' => '1.17', - 'diagnostics' => '1.16', - 'encoding' => '2.6_01', - 'fields' => '2.12', - 'filetest' => '1.02', - 'if' => '0.05', - 'integer' => '1.00', - 'less' => '0.01', - 'lib' => '0.61', - 'locale' => '1.00', - 'open' => '1.06', - 'ops' => '1.02', - 'overload' => '1.06', - 're' => '0.0601', - 'sigtrap' => '1.04', - 'sort' => '1.02', - 'strict' => '1.03', - 'subs' => '1.00', - 'threads' => '1.71', - 'threads::shared' => '1.27', - 'utf8' => '1.07', - 'vars' => '1.01', - 'vmsish' => '1.02', - 'warnings' => '1.05_01', - 'warnings::register' => '1.01', + 5.01 => { + delta_from => 5.009005, + changed => { + 'Archive::Extract' => '0.24', + 'Archive::Tar' => '1.38', + 'Attribute::Handlers' => '0.79', + 'B' => '1.17', + 'B::Concise' => '0.74', + 'B::Deparse' => '0.83', + 'CPAN' => '1.9205', + 'CPAN::API::HOWTO' => undef, + 'CPAN::Debug' => '5.402212', + 'CPAN::DeferedCode' => '5.50', + 'CPAN::FirstTime' => '5.402229', + 'CPAN::HandleConfig' => '5.402212', + 'CPAN::Nox' => '5.402411', + 'CPAN::Queue' => '5.402212', + 'CPAN::Tarzip' => '5.402213', + 'CPAN::Version' => '5.5', + 'CPANPLUS' => '0.84', + 'CPANPLUS::Dist::Build' => '0.06_02', + 'CPANPLUS::Internals' => '0.84', + 'CPANPLUS::Shell::Default'=> '0.84', + 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, + 'Carp' => '1.08', + 'Carp::Heavy' => '1.08', + 'Compress::Raw::Zlib' => '2.008', + 'Compress::Zlib' => '2.008', + 'Cwd' => '3.2501', + 'DB_File' => '1.816_1', + 'Data::Dumper' => '2.121_14', + 'Devel::PPPort' => '3.13', + 'Digest::SHA' => '5.45', + 'Exporter' => '5.62', + 'Exporter::Heavy' => '5.62', + 'ExtUtils::CBuilder' => '0.21', + 'ExtUtils::CBuilder::Base'=> '0.21', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.21', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.22', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.21', + 'ExtUtils::CBuilder::Platform::aix'=> '0.21', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.21', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.21', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21', + 'ExtUtils::CBuilder::Platform::os2'=> '0.21', + 'ExtUtils::Command::MM' => '6.42', + 'ExtUtils::Constant::ProxySubs'=> '0.05', + 'ExtUtils::Embed' => '1.27', + 'ExtUtils::Install' => '1.44', + 'ExtUtils::Installed' => '1.43', + 'ExtUtils::Liblist' => '6.42', + 'ExtUtils::Liblist::Kid'=> '6.42', + 'ExtUtils::MM' => '6.42', + 'ExtUtils::MM_AIX' => '6.42', + 'ExtUtils::MM_Any' => '6.42', + 'ExtUtils::MM_BeOS' => '6.42', + 'ExtUtils::MM_Cygwin' => '6.42', + 'ExtUtils::MM_DOS' => '6.42', + 'ExtUtils::MM_MacOS' => '6.42', + 'ExtUtils::MM_NW5' => '6.42', + 'ExtUtils::MM_OS2' => '6.42', + 'ExtUtils::MM_QNX' => '6.42', + 'ExtUtils::MM_UWIN' => '6.42', + 'ExtUtils::MM_Unix' => '6.42', + 'ExtUtils::MM_VMS' => '6.42', + 'ExtUtils::MM_VOS' => '6.42', + 'ExtUtils::MM_Win32' => '6.42', + 'ExtUtils::MM_Win95' => '6.42', + 'ExtUtils::MY' => '6.42', + 'ExtUtils::MakeMaker' => '6.42', + 'ExtUtils::MakeMaker::Config'=> '6.42', + 'ExtUtils::MakeMaker::bytes'=> '6.42', + 'ExtUtils::MakeMaker::vmsish'=> '6.42', + 'ExtUtils::Mkbootstrap' => '6.42', + 'ExtUtils::Mksymlists' => '6.42', + 'ExtUtils::Packlist' => '1.43', + 'ExtUtils::ParseXS' => '2.18_02', + 'ExtUtils::testlib' => '6.42', + 'File::Copy' => '2.11', + 'File::Fetch' => '0.14', + 'File::Find' => '1.12', + 'File::Path' => '2.04', + 'File::Spec' => '3.2501', + 'File::Spec::Cygwin' => '3.2501', + 'File::Spec::Epoc' => '3.2501', + 'File::Spec::Functions' => '3.2501', + 'File::Spec::Mac' => '3.2501', + 'File::Spec::OS2' => '3.2501', + 'File::Spec::Unix' => '3.2501', + 'File::Spec::VMS' => '3.2501', + 'File::Spec::Win32' => '3.2501', + 'Filter::Util::Call' => '1.07', + 'Getopt::Long' => '2.37', + 'Hash::Util::FieldHash' => '1.03', + 'IO::Compress::Adapter::Deflate'=> '2.008', + 'IO::Compress::Adapter::Identity'=> '2.008', + 'IO::Compress::Base' => '2.008', + 'IO::Compress::Base::Common'=> '2.008', + 'IO::Compress::Deflate' => '2.008', + 'IO::Compress::Gzip' => '2.008', + 'IO::Compress::Gzip::Constants'=> '2.008', + 'IO::Compress::RawDeflate'=> '2.008', + 'IO::Compress::Zip' => '2.008', + 'IO::Compress::Zip::Constants'=> '2.008', + 'IO::Compress::Zlib::Constants'=> '2.008', + 'IO::Compress::Zlib::Extra'=> '2.008', + 'IO::Uncompress::Adapter::Identity'=> '2.008', + 'IO::Uncompress::Adapter::Inflate'=> '2.008', + 'IO::Uncompress::AnyInflate'=> '2.008', + 'IO::Uncompress::AnyUncompress'=> '2.008', + 'IO::Uncompress::Base' => '2.008', + 'IO::Uncompress::Gunzip'=> '2.008', + 'IO::Uncompress::Inflate'=> '2.008', + 'IO::Uncompress::RawInflate'=> '2.008', + 'IO::Uncompress::Unzip' => '2.008', + 'IO::Zlib' => '1.07', + 'IPC::Cmd' => '0.40_1', + 'IPC::SysV' => '1.05', + 'Locale::Maketext' => '1.12', + 'Log::Message::Simple' => '0.04', + 'Math::BigFloat' => '1.59', + 'Math::BigInt' => '1.88', + 'Math::BigInt::Calc' => '0.52', + 'Math::BigInt::FastCalc'=> '0.16', + 'Math::BigRat' => '0.21', + 'Module::Build' => '0.2808_01', + 'Module::Build::Base' => '0.2808_01', + 'Module::Build::Compat' => '0.2808_01', + 'Module::Build::Config' => '0.2808_01', + 'Module::Build::Dumper' => undef, + 'Module::Build::ModuleInfo'=> '0.2808_01', + 'Module::Build::Notes' => '0.2808_01', + 'Module::Build::PPMMaker'=> '0.2808_01', + 'Module::Build::Platform::Amiga'=> '0.2808_01', + 'Module::Build::Platform::Default'=> '0.2808_01', + 'Module::Build::Platform::EBCDIC'=> '0.2808_01', + 'Module::Build::Platform::MPEiX'=> '0.2808_01', + 'Module::Build::Platform::MacOS'=> '0.2808_01', + 'Module::Build::Platform::RiscOS'=> '0.2808_01', + 'Module::Build::Platform::Unix'=> '0.2808_01', + 'Module::Build::Platform::VMS'=> '0.2808_01', + 'Module::Build::Platform::VOS'=> '0.2808_01', + 'Module::Build::Platform::Windows'=> '0.2808_01', + 'Module::Build::Platform::aix'=> '0.2808_01', + 'Module::Build::Platform::cygwin'=> '0.2808_01', + 'Module::Build::Platform::darwin'=> '0.2808_01', + 'Module::Build::Platform::os2'=> '0.2808_01', + 'Module::Build::PodParser'=> '0.2808_01', + 'Module::CoreList' => '2.13', + 'Module::Load' => '0.12', + 'Module::Load::Conditional'=> '0.22', + 'Net::Cmd' => '2.29', + 'Net::Ping' => '2.33', + 'Opcode' => '1.11', + 'Pod::Checker' => '1.43_01', + 'Pod::Man' => '2.16', + 'Pod::Perldoc' => '3.14_02', + 'Socket' => '1.80', + 'Storable' => '2.18', + 'Sys::Syslog' => '0.22', + 'Sys::Syslog::win32::Win32'=> undef, + 'Term::Cap' => '1.12', + 'Term::ReadLine' => '1.03', + 'Term::UI' => '0.18', + 'Test::Builder' => '0.72', + 'Test::Builder::Module' => '0.72', + 'Test::Builder::Tester' => '1.09', + 'Test::Harness::Straps' => '0.26_01', + 'Test::More' => '0.72', + 'Test::Simple' => '0.72', + 'Text::ParseWords' => '3.26', + 'Text::Soundex' => '3.03', + 'Tie::StdHandle' => undef, + 'Time::HiRes' => '1.9711', + 'Time::Local' => '1.18', + 'Time::Piece' => '1.12', + 'VMS::Filespec' => '1.12', + 'Win32' => '0.34', + 'base' => '2.13', + 'constant' => '1.13', + 'feature' => '1.11', + 'fields' => '2.13', + 'filetest' => '1.02', + 'open' => '1.06', + 'threads' => '1.67', + 'threads::shared' => '1.14', + 'version' => '0.74', + }, + removed => { + } }, 5.010001 => { - 'AnyDBM_File' => '1.00', - 'App::Prove' => '3.17', - 'App::Prove::State' => '3.17', - 'App::Prove::State::Result'=> '3.17', - 'App::Prove::State::Result::Test'=> '3.17', - 'Archive::Extract' => '0.34', - 'Archive::Tar' => '1.52', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.85', - 'AutoLoader' => '5.68', - 'AutoSplit' => '1.06', - 'B' => '1.22', - 'B::Concise' => '0.76', - 'B::Debug' => '1.11', - 'B::Deparse' => '0.89', - 'B::Lint' => '1.11', - 'B::Lint::Debug' => undef, - 'B::Showlex' => '1.02', - 'B::Terse' => '1.05', - 'B::Xref' => '1.02', - 'Benchmark' => '1.11', - 'CGI' => '3.43', - 'CGI::Apache' => '1.00', - 'CGI::Carp' => '1.30_01', - 'CGI::Cookie' => '1.29', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '1.08', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.00', - 'CGI::Util' => '1.5_01', - 'CPAN' => '1.9402', - 'CPAN::Author' => '5.5', - 'CPAN::Bundle' => '5.5', - 'CPAN::CacheMgr' => '5.5', - 'CPAN::Complete' => '5.5', - 'CPAN::Debug' => '5.5', - 'CPAN::DeferredCode' => '5.50', - 'CPAN::Distribution' => '1.93', - 'CPAN::Distroprefs' => '6', - 'CPAN::Distrostatus' => '5.5', - 'CPAN::Exception::RecursiveDependency'=> '5.5', - 'CPAN::Exception::blocked_urllist'=> '1.0', - 'CPAN::Exception::yaml_not_installed'=> '5.5', - 'CPAN::FTP' => '5.5001', - 'CPAN::FTP::netrc' => '1.00', - 'CPAN::FirstTime' => '5.53', - 'CPAN::HandleConfig' => '5.5', - 'CPAN::Index' => '1.93', - 'CPAN::InfoObj' => '5.5', - 'CPAN::Kwalify' => '5.50', - 'CPAN::LWP::UserAgent' => '1.00', - 'CPAN::Module' => '5.5', - 'CPAN::Nox' => '5.50', - 'CPAN::Prompt' => '5.5', - 'CPAN::Queue' => '5.5', - 'CPAN::Shell' => '5.5', - 'CPAN::Tarzip' => '5.501', - 'CPAN::URL' => '5.5', - 'CPAN::Version' => '5.5', - 'CPANPLUS' => '0.88', - '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.36', - 'CPANPLUS::Dist::Build::Constants'=> '0.36', - 'CPANPLUS::Dist::MM' => undef, - 'CPANPLUS::Dist::Sample'=> undef, - 'CPANPLUS::Error' => undef, - 'CPANPLUS::Internals' => '0.88', - '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.88', - 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'Carp' => '1.11', - 'Carp::Heavy' => '1.11', - 'Class::ISA' => '0.33', - 'Class::Struct' => '0.63', - 'Compress::Raw::Bzip2' => '2.020', - 'Compress::Raw::Zlib' => '2.020', - 'Compress::Zlib' => '2.020', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.30', - 'DB' => '1.02', - 'DBM_Filter' => '0.02', - '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.820', - 'DCLsym' => '1.03', - 'Data::Dumper' => '2.124', - 'Devel::DProf' => '20080331.00', - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.19', - 'Devel::Peek' => '1.04', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.16', - 'Digest::MD5' => '2.39', - 'Digest::SHA' => '5.47', - 'Digest::base' => '1.16', - 'Digest::file' => '1.16', - 'DirHandle' => '1.03', - 'Dumpvalue' => '1.13', - 'DynaLoader' => '1.10', - 'Encode' => '2.35', - 'Encode::Alias' => '2.12', - 'Encode::Byte' => '2.03', - 'Encode::CJKConstants' => '2.02', - 'Encode::CN' => '2.02', - 'Encode::CN::HZ' => '2.05', - 'Encode::Config' => '2.05', - 'Encode::EBCDIC' => '2.02', - 'Encode::Encoder' => '2.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.01', - 'Encode::Guess' => '2.03', - 'Encode::JP' => '2.03', - 'Encode::JP::H2Z' => '2.02', - 'Encode::JP::JIS7' => '2.04', - 'Encode::KR' => '2.02', - 'Encode::KR::2022_KR' => '2.02', - 'Encode::MIME::Header' => '2.11', - 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', - 'Encode::MIME::Name' => '1.01', - 'Encode::Symbol' => '2.02', - 'Encode::TW' => '2.02', - 'Encode::Unicode' => '2.06', - 'Encode::Unicode::UTF7' => '2.04', - 'English' => '1.04', - 'Env' => '1.00', - 'Errno' => '1.11', - 'Exporter' => '5.63', - 'Exporter::Heavy' => '5.63', - 'ExtUtils::CBuilder' => '0.2602', - 'ExtUtils::CBuilder::Base'=> '0.2602', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.2602', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.2602', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.2602', - 'ExtUtils::CBuilder::Platform::aix'=> '0.2602', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.2602', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602', - 'ExtUtils::CBuilder::Platform::os2'=> '0.2602', - 'ExtUtils::Command' => '1.16', - 'ExtUtils::Command::MM' => '6.55_02', - 'ExtUtils::Constant' => '0.22', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.06', - 'ExtUtils::Constant::Utils'=> '0.02', - 'ExtUtils::Constant::XS'=> '0.03', - 'ExtUtils::Embed' => '1.28', - 'ExtUtils::Install' => '1.54', - 'ExtUtils::Installed' => '1.999_001', - 'ExtUtils::Liblist' => '6.55_02', - 'ExtUtils::Liblist::Kid'=> '6.5502', - 'ExtUtils::MM' => '6.55_02', - 'ExtUtils::MM_AIX' => '6.55_02', - 'ExtUtils::MM_Any' => '6.55_02', - 'ExtUtils::MM_BeOS' => '6.55_02', - 'ExtUtils::MM_Cygwin' => '6.55_02', - 'ExtUtils::MM_DOS' => '6.5502', - 'ExtUtils::MM_Darwin' => '6.55_02', - 'ExtUtils::MM_MacOS' => '6.5502', - 'ExtUtils::MM_NW5' => '6.55_02', - 'ExtUtils::MM_OS2' => '6.55_02', - 'ExtUtils::MM_QNX' => '6.55_02', - 'ExtUtils::MM_UWIN' => '6.5502', - 'ExtUtils::MM_Unix' => '6.55_02', - 'ExtUtils::MM_VMS' => '6.55_02', - 'ExtUtils::MM_VOS' => '6.55_02', - 'ExtUtils::MM_Win32' => '6.55_02', - 'ExtUtils::MM_Win95' => '6.55_02', - 'ExtUtils::MY' => '6.5502', - 'ExtUtils::MakeMaker' => '6.55_02', - 'ExtUtils::MakeMaker::Config'=> '6.55_02', - 'ExtUtils::Manifest' => '1.56', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '6.55_02', - 'ExtUtils::Mksymlists' => '6.55_02', - 'ExtUtils::Packlist' => '1.43', - 'ExtUtils::ParseXS' => '2.2002', - 'ExtUtils::XSSymSet' => '1.1', - 'ExtUtils::testlib' => '6.5502', - 'Fatal' => '2.06_01', - 'Fcntl' => '1.06', - 'File::Basename' => '2.77', - 'File::CheckTree' => '4.4', - 'File::Compare' => '1.1006', - 'File::Copy' => '2.14', - 'File::DosGlob' => '1.01', - 'File::Fetch' => '0.20', - 'File::Find' => '1.14', - 'File::Glob' => '1.06', - 'File::GlobMapper' => '1.000', - 'File::Path' => '2.07_03', - 'File::Spec' => '3.30', - 'File::Spec::Cygwin' => '3.30', - 'File::Spec::Epoc' => '3.30', - 'File::Spec::Functions' => '3.30', - 'File::Spec::Mac' => '3.30', - 'File::Spec::OS2' => '3.30', - 'File::Spec::Unix' => '3.30', - 'File::Spec::VMS' => '3.30', - 'File::Spec::Win32' => '3.30', - 'File::Temp' => '0.22', - 'File::stat' => '1.01', - 'FileCache' => '1.08', - 'FileHandle' => '2.02', - 'Filespec' => '1.12', - 'Filter::Simple' => '0.84', - 'Filter::Util::Call' => '1.08', - 'FindBin' => '1.50', - 'GDBM_File' => '1.09', - 'Getopt::Long' => '2.38', - 'Getopt::Std' => '1.06', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '1.04', - 'I18N::Collate' => '1.01', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.25', - 'IO::Compress::Adapter::Bzip2'=> '2.020', - 'IO::Compress::Adapter::Deflate'=> '2.020', - 'IO::Compress::Adapter::Identity'=> '2.020', - 'IO::Compress::Base' => '2.020', - 'IO::Compress::Base::Common'=> '2.020', - 'IO::Compress::Bzip2' => '2.020', - 'IO::Compress::Deflate' => '2.020', - 'IO::Compress::Gzip' => '2.020', - 'IO::Compress::Gzip::Constants'=> '2.020', - 'IO::Compress::RawDeflate'=> '2.020', - 'IO::Compress::Zip' => '2.020', - 'IO::Compress::Zip::Constants'=> '2.020', - 'IO::Compress::Zlib::Constants'=> '2.020', - 'IO::Compress::Zlib::Extra'=> '2.020', - 'IO::Dir' => '1.07', - 'IO::File' => '1.14', - 'IO::Handle' => '1.28', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.31', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Bunzip2'=> '2.020', - 'IO::Uncompress::Adapter::Identity'=> '2.020', - 'IO::Uncompress::Adapter::Inflate'=> '2.020', - 'IO::Uncompress::AnyInflate'=> '2.020', - 'IO::Uncompress::AnyUncompress'=> '2.020', - 'IO::Uncompress::Base' => '2.020', - 'IO::Uncompress::Bunzip2'=> '2.020', - 'IO::Uncompress::Gunzip'=> '2.020', - 'IO::Uncompress::Inflate'=> '2.020', - 'IO::Uncompress::RawInflate'=> '2.020', - 'IO::Uncompress::Unzip' => '2.020', - 'IO::Zlib' => '1.09', - 'IPC::Cmd' => '0.46', - 'IPC::Msg' => '2.01', - 'IPC::Open2' => '1.03', - 'IPC::Open3' => '1.04', - 'IPC::Semaphore' => '2.01', - 'IPC::SharedMem' => '2.01', - 'IPC::SysV' => '2.01', - 'List::Util' => '1.21', - 'List::Util::PP' => '1.21', - 'List::Util::XS' => '1.21', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.13', - 'Locale::Maketext::Guts'=> '1.13', - 'Locale::Maketext::GutsLoader'=> '1.13', - 'Locale::Maketext::Simple'=> '0.18', - 'Locale::Script' => '2.07', - 'Log::Message' => '0.02', - 'Log::Message::Config' => '0.01', - 'Log::Message::Handlers'=> undef, - 'Log::Message::Item' => undef, - 'Log::Message::Simple' => '0.04', - 'MIME::Base64' => '3.08', - 'MIME::QuotedPrint' => '3.08', - 'Math::BigFloat' => '1.60', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.89', - 'Math::BigInt::Calc' => '0.52', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.19', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.22', - 'Math::Complex' => '1.56', - 'Math::Trig' => '1.2', - 'Memoize' => '1.01_03', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.340201', - 'Module::Build::Base' => '0.340201', - 'Module::Build::Compat' => '0.340201', - 'Module::Build::Config' => '0.340201', - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> '0.340201', - 'Module::Build::Dumper' => '0.340201', - 'Module::Build::ModuleInfo'=> '0.340201', - 'Module::Build::Notes' => '0.340201', - 'Module::Build::PPMMaker'=> '0.340201', - 'Module::Build::Platform::Amiga'=> '0.340201', - 'Module::Build::Platform::Default'=> '0.340201', - 'Module::Build::Platform::EBCDIC'=> '0.340201', - 'Module::Build::Platform::MPEiX'=> '0.340201', - 'Module::Build::Platform::MacOS'=> '0.340201', - 'Module::Build::Platform::RiscOS'=> '0.340201', - 'Module::Build::Platform::Unix'=> '0.340201', - 'Module::Build::Platform::VMS'=> '0.340201', - 'Module::Build::Platform::VOS'=> '0.340201', - 'Module::Build::Platform::Windows'=> '0.340201', - 'Module::Build::Platform::aix'=> '0.340201', - 'Module::Build::Platform::cygwin'=> '0.340201', - 'Module::Build::Platform::darwin'=> '0.340201', - 'Module::Build::Platform::os2'=> '0.340201', - 'Module::Build::PodParser'=> '0.340201', - 'Module::Build::Version'=> '0.77', - 'Module::Build::YAML' => '0.50', - 'Module::CoreList' => '2.18', - 'Module::Load' => '0.16', - 'Module::Load::Conditional'=> '0.30', - 'Module::Loaded' => '0.02', - 'Module::Pluggable' => '3.9', - 'Module::Pluggable::Object'=> '3.9', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.08', - 'NEXT' => '0.64', - '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.36', - '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.07', - 'Object::Accessor' => '0.34', - 'Opcode' => '1.11', - 'POSIX' => '1.17', - 'Package::Constants' => '0.02', - 'Params::Check' => '0.26', - 'Parse::CPAN::Meta' => '1.39', - 'PerlIO' => '1.06', - 'PerlIO::encoding' => '0.11', - 'PerlIO::scalar' => '0.07', - 'PerlIO::via' => '0.07', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.45', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.35', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.09', - 'Pod::InputObjects' => '1.31', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.22', - 'Pod::ParseLink' => '1.09', - 'Pod::ParseUtils' => '1.36', - 'Pod::Parser' => '1.37', - 'Pod::Perldoc' => '3.14_04', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.04', - 'Pod::Plainer' => '0.01', - 'Pod::Select' => '1.36', - 'Pod::Simple' => '3.07', - 'Pod::Simple::BlackBox' => undef, - 'Pod::Simple::Checker' => '2.02', - 'Pod::Simple::Debug' => undef, - 'Pod::Simple::DumpAsText'=> '2.02', - 'Pod::Simple::DumpAsXML'=> '2.02', - 'Pod::Simple::HTML' => '3.03', - 'Pod::Simple::HTMLBatch'=> '3.02', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> undef, - 'Pod::Simple::Methody' => '2.02', - 'Pod::Simple::Progress' => '1.01', - 'Pod::Simple::PullParser'=> '2.02', - 'Pod::Simple::PullParserEndToken'=> undef, - 'Pod::Simple::PullParserStartToken'=> undef, - 'Pod::Simple::PullParserTextToken'=> undef, - 'Pod::Simple::PullParserToken'=> '2.02', - 'Pod::Simple::RTF' => '2.02', - 'Pod::Simple::Search' => '3.04', - 'Pod::Simple::SimpleTree'=> '2.02', - 'Pod::Simple::Text' => '2.02', - 'Pod::Simple::TextContent'=> '2.02', - 'Pod::Simple::TiedOutFH'=> undef, - 'Pod::Simple::Transcode'=> undef, - 'Pod::Simple::TranscodeDumb'=> '2.02', - 'Pod::Simple::TranscodeSmart'=> undef, - 'Pod::Simple::XHTML' => '3.04', - 'Pod::Simple::XMLOutStream'=> '2.02', - 'Pod::Text' => '3.13', - 'Pod::Text::Color' => '2.05', - 'Pod::Text::Overstrike' => '2.03', - 'Pod::Text::Termcap' => '2.05', - 'Pod::Usage' => '1.36', - 'SDBM_File' => '1.06', - 'Safe' => '2.18', - 'Scalar::Util' => '1.21', - 'Scalar::Util::PP' => '1.21', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.02', - 'SelfLoader' => '1.17', - 'Shell' => '0.72_01', - 'Socket' => '1.82', - 'Stdio' => '2.4', - 'Storable' => '2.20', - 'Switch' => '2.14', - 'Symbol' => '1.07', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.27', - 'Sys::Syslog::win32::Win32'=> undef, - 'TAP::Base' => '3.17', - 'TAP::Formatter::Base' => '3.17', - 'TAP::Formatter::Color' => '3.17', - 'TAP::Formatter::Console'=> '3.17', - 'TAP::Formatter::Console::ParallelSession'=> '3.17', - 'TAP::Formatter::Console::Session'=> '3.17', - 'TAP::Formatter::File' => '3.17', - 'TAP::Formatter::File::Session'=> '3.17', - 'TAP::Formatter::Session'=> '3.17', - 'TAP::Harness' => '3.17', - 'TAP::Object' => '3.17', - 'TAP::Parser' => '3.17', - 'TAP::Parser::Aggregator'=> '3.17', - 'TAP::Parser::Grammar' => '3.17', - 'TAP::Parser::Iterator' => '3.17', - 'TAP::Parser::Iterator::Array'=> '3.17', - 'TAP::Parser::Iterator::Process'=> '3.17', - 'TAP::Parser::Iterator::Stream'=> '3.17', - 'TAP::Parser::IteratorFactory'=> '3.17', - 'TAP::Parser::Multiplexer'=> '3.17', - 'TAP::Parser::Result' => '3.17', - 'TAP::Parser::Result::Bailout'=> '3.17', - 'TAP::Parser::Result::Comment'=> '3.17', - 'TAP::Parser::Result::Plan'=> '3.17', - 'TAP::Parser::Result::Pragma'=> '3.17', - 'TAP::Parser::Result::Test'=> '3.17', - 'TAP::Parser::Result::Unknown'=> '3.17', - 'TAP::Parser::Result::Version'=> '3.17', - 'TAP::Parser::Result::YAML'=> '3.17', - 'TAP::Parser::ResultFactory'=> '3.17', - 'TAP::Parser::Scheduler'=> '3.17', - 'TAP::Parser::Scheduler::Job'=> '3.17', - 'TAP::Parser::Scheduler::Spinner'=> '3.17', - 'TAP::Parser::Source' => '3.17', - 'TAP::Parser::Source::Perl'=> '3.17', - 'TAP::Parser::Utils' => '3.17', - 'TAP::Parser::YAMLish::Reader'=> '3.17', - 'TAP::Parser::YAMLish::Writer'=> '3.17', - 'Term::ANSIColor' => '2.00', - 'Term::Cap' => '1.12', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.04', - 'Term::UI' => '0.20', - 'Term::UI::History' => undef, - 'Test' => '1.25_02', - 'Test::Builder' => '0.92', - 'Test::Builder::Module' => '0.92', - 'Test::Builder::Tester' => '1.18', - 'Test::Builder::Tester::Color'=> '1.18', - 'Test::Harness' => '3.17', - 'Test::More' => '0.92', - 'Test::Simple' => '0.92', - 'Text::Abbrev' => '1.01', - 'Text::Balanced' => '2.0.0', - 'Text::ParseWords' => '3.27', - 'Text::Soundex' => '3.03', - 'Text::Tabs' => '2009.0305', - 'Text::Wrap' => '2009.0305', - 'Thread' => '3.02', - 'Thread::Queue' => '2.11', - 'Thread::Semaphore' => '2.09', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_02', - 'Tie::Handle' => '4.2', - 'Tie::Hash' => '1.03', - 'Tie::Hash::NamedCapture'=> '0.06', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.38', - 'Tie::Scalar' => '1.01', - 'Tie::StdHandle' => '4.2', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9719', - 'Time::Local' => '1.1901', - 'Time::Piece' => '1.15', - 'Time::Piece::Seconds' => undef, - 'Time::Seconds' => undef, - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.05', - 'Unicode' => '5.1.0', - 'Unicode::Collate' => '0.52', - 'Unicode::Normalize' => '1.03', - 'Unicode::UCD' => '0.27', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'Win32' => '0.39', - 'Win32API::File' => '0.1101', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.15', - 'XS::Typemap' => '0.03', - 'XSLoader' => '0.10', - 'attributes' => '0.09', - 'attrs' => '1.03', - 'autodie' => '2.06_01', - 'autodie::exception' => '2.06_01', - 'autodie::exception::system'=> '2.06_01', - 'autodie::hints' => '2.06_01', - 'autouse' => '1.06', - 'base' => '2.14', - 'bigint' => '0.23', - 'bignum' => '0.23', - 'bigrat' => '0.23', - 'blib' => '1.04', - 'bytes' => '1.03', - 'charnames' => '1.07', - 'constant' => '1.17', - 'diagnostics' => '1.17', - 'encoding' => '2.6_01', - 'encoding::warnings' => '0.11', - 'feature' => '1.13', - 'fields' => '2.14', - 'filetest' => '1.02', - 'if' => '0.05', - 'integer' => '1.00', - 'less' => '0.02', - 'lib' => '0.62', - 'locale' => '1.00', - 'mro' => '1.01', - 'open' => '1.07', - 'ops' => '1.02', - 'overload' => '1.07', - 'overload::numbers' => undef, - 'overloading' => '0.01', - 'parent' => '0.221', - 're' => '0.09', - 'sigtrap' => '1.04', - 'sort' => '2.01', - 'strict' => '1.04', - 'subs' => '1.00', - 'threads' => '1.72', - 'threads::shared' => '1.29', - 'utf8' => '1.07', - 'vars' => '1.01', - 'version' => '0.77', - 'vmsish' => '1.02', - 'warnings' => '1.06', - 'warnings::register' => '1.01', + delta_from => 5.01, + changed => { + 'App::Prove' => '3.17', + 'App::Prove::State' => '3.17', + 'App::Prove::State::Result'=> '3.17', + 'App::Prove::State::Result::Test'=> '3.17', + 'Archive::Extract' => '0.34', + 'Archive::Tar' => '1.52', + 'Attribute::Handlers' => '0.85', + 'AutoLoader' => '5.68', + 'AutoSplit' => '1.06', + 'B' => '1.22', + 'B::Concise' => '0.76', + 'B::Debug' => '1.11', + 'B::Deparse' => '0.89', + 'B::Lint' => '1.11', + 'B::Lint::Debug' => undef, + 'B::Xref' => '1.02', + 'Benchmark' => '1.11', + 'CGI' => '3.43', + 'CGI::Carp' => '1.30_01', + 'CGI::Cookie' => '1.29', + 'CPAN' => '1.9402', + 'CPAN::Author' => '5.5', + 'CPAN::Bundle' => '5.5', + 'CPAN::CacheMgr' => '5.5', + 'CPAN::Complete' => '5.5', + 'CPAN::Debug' => '5.5', + 'CPAN::DeferredCode' => '5.50', + 'CPAN::Distribution' => '1.93', + 'CPAN::Distroprefs' => '6', + 'CPAN::Distrostatus' => '5.5', + 'CPAN::Exception::RecursiveDependency'=> '5.5', + 'CPAN::Exception::blocked_urllist'=> '1.0', + 'CPAN::Exception::yaml_not_installed'=> '5.5', + 'CPAN::FTP' => '5.5001', + 'CPAN::FTP::netrc' => '1.00', + 'CPAN::FirstTime' => '5.53', + 'CPAN::HandleConfig' => '5.5', + 'CPAN::Index' => '1.93', + 'CPAN::InfoObj' => '5.5', + 'CPAN::Kwalify' => '5.50', + 'CPAN::LWP::UserAgent' => '1.00', + 'CPAN::Module' => '5.5', + 'CPAN::Nox' => '5.50', + 'CPAN::Prompt' => '5.5', + 'CPAN::Queue' => '5.5', + 'CPAN::Shell' => '5.5', + 'CPAN::Tarzip' => '5.501', + 'CPAN::URL' => '5.5', + 'CPANPLUS' => '0.88', + 'CPANPLUS::Dist::Autobundle'=> undef, + 'CPANPLUS::Dist::Base' => undef, + 'CPANPLUS::Dist::Build' => '0.36', + 'CPANPLUS::Dist::Build::Constants'=> '0.36', + 'CPANPLUS::Internals' => '0.88', + 'CPANPLUS::Internals::Constants'=> undef, + 'CPANPLUS::Internals::Constants::Report'=> undef, + 'CPANPLUS::Internals::Source::Memory'=> undef, + 'CPANPLUS::Internals::Source::SQLite'=> undef, + 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef, + 'CPANPLUS::Shell::Default'=> '0.88', + 'Carp' => '1.11', + 'Carp::Heavy' => '1.11', + 'Compress::Raw::Bzip2' => '2.020', + 'Compress::Raw::Zlib' => '2.020', + 'Compress::Zlib' => '2.020', + 'Cwd' => '3.30', + 'DB' => '1.02', + '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.820', + 'Data::Dumper' => '2.124', + 'Devel::DProf' => '20080331.00', + 'Devel::PPPort' => '3.19', + 'Devel::Peek' => '1.04', + 'Digest' => '1.16', + 'Digest::MD5' => '2.39', + 'Digest::SHA' => '5.47', + 'Digest::base' => '1.16', + 'Digest::file' => '1.16', + 'DirHandle' => '1.03', + 'Dumpvalue' => '1.13', + 'DynaLoader' => '1.10', + 'Encode' => '2.35', + 'Encode::Alias' => '2.12', + 'Encode::CN::HZ' => '2.05', + 'Encode::Config' => '2.05', + 'Encode::GSM0338' => '2.01', + 'Encode::Guess' => '2.03', + 'Encode::JP::JIS7' => '2.04', + 'Encode::MIME::Header' => '2.11', + 'Encode::Unicode' => '2.06', + 'Errno' => '1.11', + 'Exporter' => '5.63', + 'Exporter::Heavy' => '5.63', + 'ExtUtils::CBuilder' => '0.2602', + 'ExtUtils::CBuilder::Base'=> '0.2602', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.2602', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.2602', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.2602', + 'ExtUtils::CBuilder::Platform::aix'=> '0.2602', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.2602', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602', + 'ExtUtils::CBuilder::Platform::os2'=> '0.2602', + 'ExtUtils::Command' => '1.16', + 'ExtUtils::Command::MM' => '6.55_02', + 'ExtUtils::Constant' => '0.22', + 'ExtUtils::Constant::ProxySubs'=> '0.06', + 'ExtUtils::Constant::Utils'=> '0.02', + 'ExtUtils::Constant::XS'=> '0.03', + 'ExtUtils::Embed' => '1.28', + 'ExtUtils::Install' => '1.54', + 'ExtUtils::Installed' => '1.999_001', + 'ExtUtils::Liblist' => '6.55_02', + 'ExtUtils::Liblist::Kid'=> '6.5502', + 'ExtUtils::MM' => '6.55_02', + 'ExtUtils::MM_AIX' => '6.55_02', + 'ExtUtils::MM_Any' => '6.55_02', + 'ExtUtils::MM_BeOS' => '6.55_02', + 'ExtUtils::MM_Cygwin' => '6.55_02', + 'ExtUtils::MM_DOS' => '6.5502', + 'ExtUtils::MM_Darwin' => '6.55_02', + 'ExtUtils::MM_MacOS' => '6.5502', + 'ExtUtils::MM_NW5' => '6.55_02', + 'ExtUtils::MM_OS2' => '6.55_02', + 'ExtUtils::MM_QNX' => '6.55_02', + 'ExtUtils::MM_UWIN' => '6.5502', + 'ExtUtils::MM_Unix' => '6.55_02', + 'ExtUtils::MM_VMS' => '6.55_02', + 'ExtUtils::MM_VOS' => '6.55_02', + 'ExtUtils::MM_Win32' => '6.55_02', + 'ExtUtils::MM_Win95' => '6.55_02', + 'ExtUtils::MY' => '6.5502', + 'ExtUtils::MakeMaker' => '6.55_02', + 'ExtUtils::MakeMaker::Config'=> '6.55_02', + 'ExtUtils::Manifest' => '1.56', + 'ExtUtils::Mkbootstrap' => '6.55_02', + 'ExtUtils::Mksymlists' => '6.55_02', + 'ExtUtils::ParseXS' => '2.2002', + 'ExtUtils::testlib' => '6.5502', + 'Fatal' => '2.06_01', + 'File::Basename' => '2.77', + 'File::CheckTree' => '4.4', + 'File::Compare' => '1.1006', + 'File::Copy' => '2.14', + 'File::DosGlob' => '1.01', + 'File::Fetch' => '0.20', + 'File::Find' => '1.14', + 'File::GlobMapper' => '1.000', + 'File::Path' => '2.07_03', + 'File::Spec' => '3.30', + 'File::Spec::Cygwin' => '3.30', + 'File::Spec::Epoc' => '3.30', + 'File::Spec::Functions' => '3.30', + 'File::Spec::Mac' => '3.30', + 'File::Spec::OS2' => '3.30', + 'File::Spec::Unix' => '3.30', + 'File::Spec::VMS' => '3.30', + 'File::Spec::Win32' => '3.30', + 'File::Temp' => '0.22', + 'File::stat' => '1.01', + 'FileCache' => '1.08', + 'FileHandle' => '2.02', + 'Filter::Simple' => '0.84', + 'Filter::Util::Call' => '1.08', + 'FindBin' => '1.50', + 'GDBM_File' => '1.09', + 'Getopt::Long' => '2.38', + 'Getopt::Std' => '1.06', + 'Hash::Util::FieldHash' => '1.04', + 'I18N::Collate' => '1.01', + 'IO' => '1.25', + 'IO::Compress::Adapter::Bzip2'=> '2.020', + 'IO::Compress::Adapter::Deflate'=> '2.020', + 'IO::Compress::Adapter::Identity'=> '2.020', + 'IO::Compress::Base' => '2.020', + 'IO::Compress::Base::Common'=> '2.020', + 'IO::Compress::Bzip2' => '2.020', + 'IO::Compress::Deflate' => '2.020', + 'IO::Compress::Gzip' => '2.020', + 'IO::Compress::Gzip::Constants'=> '2.020', + 'IO::Compress::RawDeflate'=> '2.020', + 'IO::Compress::Zip' => '2.020', + 'IO::Compress::Zip::Constants'=> '2.020', + 'IO::Compress::Zlib::Constants'=> '2.020', + 'IO::Compress::Zlib::Extra'=> '2.020', + 'IO::Dir' => '1.07', + 'IO::Handle' => '1.28', + 'IO::Socket' => '1.31', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.020', + 'IO::Uncompress::Adapter::Identity'=> '2.020', + 'IO::Uncompress::Adapter::Inflate'=> '2.020', + 'IO::Uncompress::AnyInflate'=> '2.020', + 'IO::Uncompress::AnyUncompress'=> '2.020', + 'IO::Uncompress::Base' => '2.020', + 'IO::Uncompress::Bunzip2'=> '2.020', + 'IO::Uncompress::Gunzip'=> '2.020', + 'IO::Uncompress::Inflate'=> '2.020', + 'IO::Uncompress::RawInflate'=> '2.020', + 'IO::Uncompress::Unzip' => '2.020', + 'IO::Zlib' => '1.09', + 'IPC::Cmd' => '0.46', + 'IPC::Msg' => '2.01', + 'IPC::Open2' => '1.03', + 'IPC::Open3' => '1.04', + 'IPC::Semaphore' => '2.01', + 'IPC::SharedMem' => '2.01', + 'IPC::SysV' => '2.01', + 'List::Util' => '1.21', + 'List::Util::PP' => '1.21', + 'List::Util::XS' => '1.21', + 'Locale::Maketext' => '1.13', + 'Locale::Maketext::Guts'=> '1.13', + 'Locale::Maketext::GutsLoader'=> '1.13', + 'Log::Message' => '0.02', + 'MIME::Base64' => '3.08', + 'MIME::QuotedPrint' => '3.08', + 'Math::BigFloat' => '1.60', + 'Math::BigInt' => '1.89', + 'Math::BigInt::FastCalc'=> '0.19', + 'Math::BigRat' => '0.22', + 'Math::Complex' => '1.56', + 'Math::Trig' => '1.2', + 'Memoize' => '1.01_03', + 'Module::Build' => '0.340201', + 'Module::Build::Base' => '0.340201', + 'Module::Build::Compat' => '0.340201', + 'Module::Build::Config' => '0.340201', + 'Module::Build::Cookbook'=> '0.340201', + 'Module::Build::Dumper' => '0.340201', + 'Module::Build::ModuleInfo'=> '0.340201', + 'Module::Build::Notes' => '0.340201', + 'Module::Build::PPMMaker'=> '0.340201', + 'Module::Build::Platform::Amiga'=> '0.340201', + 'Module::Build::Platform::Default'=> '0.340201', + 'Module::Build::Platform::EBCDIC'=> '0.340201', + 'Module::Build::Platform::MPEiX'=> '0.340201', + 'Module::Build::Platform::MacOS'=> '0.340201', + 'Module::Build::Platform::RiscOS'=> '0.340201', + 'Module::Build::Platform::Unix'=> '0.340201', + 'Module::Build::Platform::VMS'=> '0.340201', + 'Module::Build::Platform::VOS'=> '0.340201', + 'Module::Build::Platform::Windows'=> '0.340201', + 'Module::Build::Platform::aix'=> '0.340201', + 'Module::Build::Platform::cygwin'=> '0.340201', + 'Module::Build::Platform::darwin'=> '0.340201', + 'Module::Build::Platform::os2'=> '0.340201', + 'Module::Build::PodParser'=> '0.340201', + 'Module::Build::Version'=> '0.77', + 'Module::CoreList' => '2.18', + 'Module::Load' => '0.16', + 'Module::Load::Conditional'=> '0.30', + 'Module::Loaded' => '0.02', + 'Module::Pluggable' => '3.9', + 'Module::Pluggable::Object'=> '3.9', + 'NDBM_File' => '1.08', + 'NEXT' => '0.64', + 'Net::Ping' => '2.36', + 'O' => '1.01', + 'Object::Accessor' => '0.34', + 'POSIX' => '1.17', + 'Package::Constants' => '0.02', + 'Parse::CPAN::Meta' => '1.39', + 'PerlIO' => '1.06', + 'PerlIO::encoding' => '0.11', + 'PerlIO::scalar' => '0.07', + 'PerlIO::via' => '0.07', + 'Pod::Checker' => '1.45', + 'Pod::Find' => '1.35', + 'Pod::Html' => '1.09', + 'Pod::InputObjects' => '1.31', + 'Pod::Man' => '2.22', + 'Pod::ParseLink' => '1.09', + 'Pod::ParseUtils' => '1.36', + 'Pod::Parser' => '1.37', + 'Pod::Perldoc' => '3.14_04', + 'Pod::PlainText' => '2.04', + 'Pod::Select' => '1.36', + 'Pod::Simple' => '3.07', + 'Pod::Simple::XHTML' => '3.04', + 'Pod::Text' => '3.13', + 'Pod::Text::Color' => '2.05', + 'Pod::Text::Overstrike' => '2.03', + 'Pod::Text::Termcap' => '2.05', + 'Pod::Usage' => '1.36', + 'Safe' => '2.18', + 'Scalar::Util' => '1.21', + 'Scalar::Util::PP' => '1.21', + 'SelectSaver' => '1.02', + 'SelfLoader' => '1.17', + 'Socket' => '1.82', + 'Storable' => '2.20', + 'Switch' => '2.14', + 'Symbol' => '1.07', + 'Sys::Syslog' => '0.27', + 'TAP::Base' => '3.17', + 'TAP::Formatter::Base' => '3.17', + 'TAP::Formatter::Color' => '3.17', + 'TAP::Formatter::Console'=> '3.17', + 'TAP::Formatter::Console::ParallelSession'=> '3.17', + 'TAP::Formatter::Console::Session'=> '3.17', + 'TAP::Formatter::File' => '3.17', + 'TAP::Formatter::File::Session'=> '3.17', + 'TAP::Formatter::Session'=> '3.17', + 'TAP::Harness' => '3.17', + 'TAP::Object' => '3.17', + 'TAP::Parser' => '3.17', + 'TAP::Parser::Aggregator'=> '3.17', + 'TAP::Parser::Grammar' => '3.17', + 'TAP::Parser::Iterator' => '3.17', + 'TAP::Parser::Iterator::Array'=> '3.17', + 'TAP::Parser::Iterator::Process'=> '3.17', + 'TAP::Parser::Iterator::Stream'=> '3.17', + 'TAP::Parser::IteratorFactory'=> '3.17', + 'TAP::Parser::Multiplexer'=> '3.17', + 'TAP::Parser::Result' => '3.17', + 'TAP::Parser::Result::Bailout'=> '3.17', + 'TAP::Parser::Result::Comment'=> '3.17', + 'TAP::Parser::Result::Plan'=> '3.17', + 'TAP::Parser::Result::Pragma'=> '3.17', + 'TAP::Parser::Result::Test'=> '3.17', + 'TAP::Parser::Result::Unknown'=> '3.17', + 'TAP::Parser::Result::Version'=> '3.17', + 'TAP::Parser::Result::YAML'=> '3.17', + 'TAP::Parser::ResultFactory'=> '3.17', + 'TAP::Parser::Scheduler'=> '3.17', + 'TAP::Parser::Scheduler::Job'=> '3.17', + 'TAP::Parser::Scheduler::Spinner'=> '3.17', + 'TAP::Parser::Source' => '3.17', + 'TAP::Parser::Source::Perl'=> '3.17', + 'TAP::Parser::Utils' => '3.17', + 'TAP::Parser::YAMLish::Reader'=> '3.17', + 'TAP::Parser::YAMLish::Writer'=> '3.17', + 'Term::ANSIColor' => '2.00', + 'Term::ReadLine' => '1.04', + 'Term::UI' => '0.20', + 'Test' => '1.25_02', + 'Test::Builder' => '0.92', + 'Test::Builder::Module' => '0.92', + 'Test::Builder::Tester' => '1.18', + 'Test::Builder::Tester::Color'=> '1.18', + 'Test::Harness' => '3.17', + 'Test::More' => '0.92', + 'Test::Simple' => '0.92', + 'Text::ParseWords' => '3.27', + 'Text::Tabs' => '2009.0305', + 'Text::Wrap' => '2009.0305', + 'Thread::Queue' => '2.11', + 'Thread::Semaphore' => '2.09', + 'Tie::Handle' => '4.2', + 'Tie::Hash' => '1.03', + 'Tie::RefHash' => '1.38', + 'Tie::Scalar' => '1.01', + 'Tie::StdHandle' => '4.2', + 'Time::HiRes' => '1.9719', + 'Time::Local' => '1.1901', + 'Time::Piece' => '1.15', + 'UNIVERSAL' => '1.05', + 'Unicode' => '5.1.0', + 'Unicode::Normalize' => '1.03', + 'Unicode::UCD' => '0.27', + 'VMS::Stdio' => '2.4', + 'Win32' => '0.39', + 'Win32API::File' => '0.1101', + 'XS::APItest' => '0.15', + 'XS::Typemap' => '0.03', + 'XSLoader' => '0.10', + 'attributes' => '0.09', + 'attrs' => '1.03', + 'autodie' => '2.06_01', + 'autodie::exception' => '2.06_01', + 'autodie::exception::system'=> '2.06_01', + 'autodie::hints' => '2.06_01', + 'base' => '2.14', + 'bigint' => '0.23', + 'bignum' => '0.23', + 'bigrat' => '0.23', + 'blib' => '1.04', + 'charnames' => '1.07', + 'constant' => '1.17', + 'encoding' => '2.6_01', + 'feature' => '1.13', + 'fields' => '2.14', + 'lib' => '0.62', + 'mro' => '1.01', + 'open' => '1.07', + 'ops' => '1.02', + 'overload' => '1.07', + 'overload::numbers' => undef, + 'overloading' => '0.01', + 'parent' => '0.221', + 're' => '0.09', + 'threads' => '1.72', + 'threads::shared' => '1.29', + 'version' => '0.77', + }, + removed => { + 'CPAN::API::HOWTO' => 1, + 'CPAN::DeferedCode' => 1, + 'CPANPLUS::inc' => 1, + 'ExtUtils::MakeMaker::bytes'=> 1, + 'ExtUtils::MakeMaker::vmsish'=> 1, + 'Test::Harness::Assert' => 1, + 'Test::Harness::Iterator'=> 1, + 'Test::Harness::Point' => 1, + 'Test::Harness::Results'=> 1, + 'Test::Harness::Straps' => 1, + 'Test::Harness::Util' => 1, + } }, - 5.011000 => { - 'AnyDBM_File' => '1.00', - 'App::Prove' => '3.17', - 'App::Prove::State' => '3.17', - 'App::Prove::State::Result'=> '3.17', - 'App::Prove::State::Result::Test'=> '3.17', - 'Archive::Extract' => '0.34', - 'Archive::Tar' => '1.54', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.87', - 'AutoLoader' => '5.70', - 'AutoSplit' => '1.06', - 'B' => '1.22', - 'B::Concise' => '0.76', - 'B::Debug' => '1.11', - 'B::Deparse' => '0.91', - 'B::Lint' => '1.11_01', - 'B::Lint::Debug' => '0.01', - 'B::Showlex' => '1.02', - 'B::Terse' => '1.05', - 'B::Xref' => '1.02', - 'Benchmark' => '1.11', - 'CGI' => '3.45', - 'CGI::Apache' => '1.01', - 'CGI::Carp' => '3.45', - 'CGI::Cookie' => '1.29', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '3.44', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.01', - 'CGI::Util' => '3.45', - 'CPAN' => '1.94_51', - 'CPAN::Author' => '5.5', - 'CPAN::Bundle' => '5.5', - 'CPAN::CacheMgr' => '5.5', - 'CPAN::Complete' => '5.5', - 'CPAN::Debug' => '5.5', - 'CPAN::DeferredCode' => '5.50', - 'CPAN::Distribution' => '1.94', - 'CPAN::Distroprefs' => '6', - 'CPAN::Distrostatus' => '5.5', - 'CPAN::Exception::RecursiveDependency'=> '5.5', - 'CPAN::Exception::blocked_urllist'=> '1.0', - 'CPAN::Exception::yaml_not_installed'=> '5.5', - 'CPAN::FTP' => '5.5002', - 'CPAN::FTP::netrc' => '1.00', - 'CPAN::FirstTime' => '5.53', - 'CPAN::HandleConfig' => '5.5', - 'CPAN::Index' => '1.94', - 'CPAN::InfoObj' => '5.5', - 'CPAN::Kwalify' => '5.50', - 'CPAN::LWP::UserAgent' => '1.94', - 'CPAN::Module' => '5.5', - 'CPAN::Nox' => '5.50', - 'CPAN::Prompt' => '5.5', - 'CPAN::Queue' => '5.5', - 'CPAN::Shell' => '5.5', - 'CPAN::Tarzip' => '5.501', - 'CPAN::URL' => '5.5', - 'CPAN::Version' => '5.5', - 'CPANPLUS' => '0.88', - '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.40', - 'CPANPLUS::Dist::Build::Constants'=> '0.40', - 'CPANPLUS::Dist::MM' => undef, - 'CPANPLUS::Dist::Sample'=> undef, - 'CPANPLUS::Error' => undef, - 'CPANPLUS::Internals' => '0.88', - '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.88', - 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'Carp' => '1.12', - 'Carp::Heavy' => '1.12', - 'Class::ISA' => '0.36', - 'Class::Struct' => '0.63', - 'Compress::Raw::Bzip2' => '2.021', - 'Compress::Raw::Zlib' => '2.021', - 'Compress::Zlib' => '2.021', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.3002', - 'DB' => '1.02', - 'DBM_Filter' => '0.02', - '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.820', - 'Data::Dumper' => '2.125', - 'Devel::DProf' => '20080331.00', - 'Devel::DProf::dprof::V'=> undef, - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.19', - 'Devel::Peek' => '1.04', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.16', - 'Digest::MD5' => '2.39', - 'Digest::SHA' => '5.47', - 'Digest::base' => '1.16', - 'Digest::file' => '1.16', - 'DirHandle' => '1.03', - 'Dumpvalue' => '1.13', - 'DynaLoader' => '1.10', - 'Encode' => '2.37', - 'Encode::Alias' => '2.12', - 'Encode::Byte' => '2.03', - 'Encode::CJKConstants' => '2.02', - 'Encode::CN' => '2.02', - 'Encode::CN::HZ' => '2.05', - 'Encode::Config' => '2.05', - 'Encode::EBCDIC' => '2.02', - 'Encode::Encoder' => '2.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.01', - 'Encode::Guess' => '2.03', - 'Encode::JP' => '2.03', - 'Encode::JP::H2Z' => '2.02', - 'Encode::JP::JIS7' => '2.04', - 'Encode::KR' => '2.02', - 'Encode::KR::2022_KR' => '2.02', - 'Encode::MIME::Header' => '2.11', - 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', - 'Encode::MIME::Name' => '1.01', - 'Encode::Symbol' => '2.02', - 'Encode::TW' => '2.02', - 'Encode::Unicode' => '2.06', - 'Encode::Unicode::UTF7' => '2.04', - 'English' => '1.04', - 'Env' => '1.00', - 'Errno' => '1.11', - 'Exporter' => '5.64', - 'Exporter::Heavy' => '5.64', - 'ExtUtils::CBuilder' => '0.2602', - 'ExtUtils::CBuilder::Base'=> '0.2602', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.2602', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.2602', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.2602', - 'ExtUtils::CBuilder::Platform::aix'=> '0.2602', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.2602', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602', - 'ExtUtils::CBuilder::Platform::os2'=> '0.2602', - 'ExtUtils::Command' => '1.16', - 'ExtUtils::Command::MM' => '6.55_02', - 'ExtUtils::Constant' => '0.22', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.06', - 'ExtUtils::Constant::Utils'=> '0.02', - 'ExtUtils::Constant::XS'=> '0.03', - 'ExtUtils::Embed' => '1.28', - 'ExtUtils::Install' => '1.54', - 'ExtUtils::Installed' => '1.999_001', - 'ExtUtils::Liblist' => '6.55_02', - 'ExtUtils::Liblist::Kid'=> '6.5502', - 'ExtUtils::MM' => '6.55_02', - 'ExtUtils::MM_AIX' => '6.55_02', - 'ExtUtils::MM_Any' => '6.55_02', - 'ExtUtils::MM_BeOS' => '6.55_02', - 'ExtUtils::MM_Cygwin' => '6.55_02', - 'ExtUtils::MM_DOS' => '6.5502', - 'ExtUtils::MM_Darwin' => '6.55_02', - 'ExtUtils::MM_MacOS' => '6.5502', - 'ExtUtils::MM_NW5' => '6.55_02', - 'ExtUtils::MM_OS2' => '6.55_02', - 'ExtUtils::MM_QNX' => '6.55_02', - 'ExtUtils::MM_UWIN' => '6.5502', - 'ExtUtils::MM_Unix' => '6.55_02', - 'ExtUtils::MM_VMS' => '6.55_02', - 'ExtUtils::MM_VOS' => '6.55_02', - 'ExtUtils::MM_Win32' => '6.55_02', - 'ExtUtils::MM_Win95' => '6.55_02', - 'ExtUtils::MY' => '6.5502', - 'ExtUtils::MakeMaker' => '6.55_02', - 'ExtUtils::MakeMaker::Config'=> '6.55_02', - 'ExtUtils::Manifest' => '1.56', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '6.55_02', - 'ExtUtils::Mksymlists' => '6.55_02', - 'ExtUtils::Packlist' => '1.43', - 'ExtUtils::ParseXS' => '2.200403', - 'ExtUtils::XSSymSet' => '1.1', - 'ExtUtils::testlib' => '6.5502', - 'Fatal' => '2.06_01', - 'Fcntl' => '1.06', - 'File::Basename' => '2.78', - 'File::CheckTree' => '4.4', - 'File::Compare' => '1.1006', - 'File::Copy' => '2.16', - 'File::DosGlob' => '1.01', - 'File::Fetch' => '0.20', - 'File::Find' => '1.14', - 'File::Glob' => '1.06', - 'File::GlobMapper' => '1.000', - 'File::Path' => '2.07_03', - 'File::Spec' => '3.30', - 'File::Spec::Cygwin' => '3.30', - 'File::Spec::Epoc' => '3.30', - 'File::Spec::Functions' => '3.30', - 'File::Spec::Mac' => '3.30', - 'File::Spec::OS2' => '3.30', - 'File::Spec::Unix' => '3.30', - 'File::Spec::VMS' => '3.30', - 'File::Spec::Win32' => '3.30', - 'File::Temp' => '0.22', - 'File::stat' => '1.02', - 'FileCache' => '1.08', - 'FileHandle' => '2.02', - 'Filespec' => '1.12', - 'Filter::Simple' => '0.84', - 'Filter::Util::Call' => '1.08', - 'FindBin' => '1.50', - 'GDBM_File' => '1.09', - 'Getopt::Long' => '2.38', - 'Getopt::Std' => '1.06', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '1.04', - 'I18N::Collate' => '1.01', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.25_01', - 'IO::Compress::Adapter::Bzip2'=> '2.021', - 'IO::Compress::Adapter::Deflate'=> '2.021', - 'IO::Compress::Adapter::Identity'=> '2.021', - 'IO::Compress::Base' => '2.021', - 'IO::Compress::Base::Common'=> '2.021', - 'IO::Compress::Bzip2' => '2.021', - 'IO::Compress::Deflate' => '2.021', - 'IO::Compress::Gzip' => '2.021', - 'IO::Compress::Gzip::Constants'=> '2.021', - 'IO::Compress::RawDeflate'=> '2.021', - 'IO::Compress::Zip' => '2.021', - 'IO::Compress::Zip::Constants'=> '2.021', - 'IO::Compress::Zlib::Constants'=> '2.021', - 'IO::Compress::Zlib::Extra'=> '2.021', - 'IO::Dir' => '1.07', - 'IO::File' => '1.14', - 'IO::Handle' => '1.28', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.31', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Bunzip2'=> '2.021', - 'IO::Uncompress::Adapter::Identity'=> '2.021', - 'IO::Uncompress::Adapter::Inflate'=> '2.021', - 'IO::Uncompress::AnyInflate'=> '2.021', - 'IO::Uncompress::AnyUncompress'=> '2.021', - 'IO::Uncompress::Base' => '2.021', - 'IO::Uncompress::Bunzip2'=> '2.021', - 'IO::Uncompress::Gunzip'=> '2.021', - 'IO::Uncompress::Inflate'=> '2.021', - 'IO::Uncompress::RawInflate'=> '2.021', - 'IO::Uncompress::Unzip' => '2.021', - 'IO::Zlib' => '1.10', - 'IPC::Cmd' => '0.50', - 'IPC::Msg' => '2.01', - 'IPC::Open2' => '1.03', - 'IPC::Open3' => '1.05', - 'IPC::Semaphore' => '2.01', - 'IPC::SharedMem' => '2.01', - 'IPC::SysV' => '2.01', - 'List::Util' => '1.21', - 'List::Util::PP' => '1.21', - 'List::Util::XS' => '1.21', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.13', - 'Locale::Maketext::Guts'=> '1.13', - 'Locale::Maketext::GutsLoader'=> '1.13', - 'Locale::Maketext::Simple'=> '0.21', - 'Locale::Script' => '2.07', - 'Log::Message' => '0.02', - 'Log::Message::Config' => '0.01', - 'Log::Message::Handlers'=> undef, - 'Log::Message::Item' => undef, - 'Log::Message::Simple' => '0.06', - 'MIME::Base64' => '3.08', - 'MIME::QuotedPrint' => '3.08', - 'Math::BigFloat' => '1.60', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.89_01', - 'Math::BigInt::Calc' => '0.52', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.19', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.24', - 'Math::Complex' => '1.56', - 'Math::Trig' => '1.2', - 'Memoize' => '1.01_03', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.35', - 'Module::Build::Base' => '0.35', - 'Module::Build::Compat' => '0.35', - 'Module::Build::Config' => '0.35', - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> '0.35', - 'Module::Build::Dumper' => '0.35', - 'Module::Build::ModuleInfo'=> '0.35', - 'Module::Build::Notes' => '0.35', - 'Module::Build::PPMMaker'=> '0.35', - 'Module::Build::Platform::Amiga'=> '0.35', - 'Module::Build::Platform::Default'=> '0.35', - 'Module::Build::Platform::EBCDIC'=> '0.35', - 'Module::Build::Platform::MPEiX'=> '0.35', - 'Module::Build::Platform::MacOS'=> '0.35', - 'Module::Build::Platform::RiscOS'=> '0.35', - 'Module::Build::Platform::Unix'=> '0.35', - 'Module::Build::Platform::VMS'=> '0.35', - 'Module::Build::Platform::VOS'=> '0.35', - 'Module::Build::Platform::Windows'=> '0.35', - 'Module::Build::Platform::aix'=> '0.35', - 'Module::Build::Platform::cygwin'=> '0.35', - 'Module::Build::Platform::darwin'=> '0.35', - 'Module::Build::Platform::os2'=> '0.35', - 'Module::Build::PodParser'=> '0.35', - 'Module::Build::Version'=> '0.77', - 'Module::Build::YAML' => '0.50', - 'Module::CoreList' => '2.19', - 'Module::Load' => '0.16', - 'Module::Load::Conditional'=> '0.30', - 'Module::Loaded' => '0.06', - 'Module::Pluggable' => '3.9', - 'Module::Pluggable::Object'=> '3.9', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.08', - 'NEXT' => '0.64', - '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.36', - '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.07', - 'Object::Accessor' => '0.34', - 'Opcode' => '1.13', - 'POSIX' => '1.17', - 'Package::Constants' => '0.02', - 'Params::Check' => '0.26', - 'Parse::CPAN::Meta' => '1.39', - 'PerlIO' => '1.06', - 'PerlIO::encoding' => '0.11', - 'PerlIO::scalar' => '0.07', - 'PerlIO::via' => '0.08', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.45', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.35', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.09', - 'Pod::InputObjects' => '1.31', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.22', - 'Pod::ParseLink' => '1.09', - 'Pod::ParseUtils' => '1.36', - 'Pod::Parser' => '1.37', - 'Pod::Perldoc' => '3.15_01', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.04', - 'Pod::Plainer' => '1.01', - 'Pod::Select' => '1.36', - 'Pod::Simple' => '3.07', - 'Pod::Simple::BlackBox' => undef, - 'Pod::Simple::Checker' => '2.02', - 'Pod::Simple::Debug' => undef, - 'Pod::Simple::DumpAsText'=> '2.02', - 'Pod::Simple::DumpAsXML'=> '2.02', - 'Pod::Simple::HTML' => '3.03', - 'Pod::Simple::HTMLBatch'=> '3.02', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> undef, - 'Pod::Simple::Methody' => '2.02', - 'Pod::Simple::Progress' => '1.01', - 'Pod::Simple::PullParser'=> '2.02', - 'Pod::Simple::PullParserEndToken'=> undef, - 'Pod::Simple::PullParserStartToken'=> undef, - 'Pod::Simple::PullParserTextToken'=> undef, - 'Pod::Simple::PullParserToken'=> '2.02', - 'Pod::Simple::RTF' => '2.02', - 'Pod::Simple::Search' => '3.04', - 'Pod::Simple::SimpleTree'=> '2.02', - 'Pod::Simple::Text' => '2.02', - 'Pod::Simple::TextContent'=> '2.02', - 'Pod::Simple::TiedOutFH'=> undef, - 'Pod::Simple::Transcode'=> undef, - 'Pod::Simple::TranscodeDumb'=> '2.02', - 'Pod::Simple::TranscodeSmart'=> undef, - 'Pod::Simple::XHTML' => '3.04', - 'Pod::Simple::XMLOutStream'=> '2.02', - 'Pod::Text' => '3.13', - 'Pod::Text::Color' => '2.05', - 'Pod::Text::Overstrike' => '2.03', - 'Pod::Text::Termcap' => '2.05', - 'Pod::Usage' => '1.36', - 'SDBM_File' => '1.06', - 'Safe' => '2.19', - 'Scalar::Util' => '1.21', - 'Scalar::Util::PP' => '1.21', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.02', - 'SelfLoader' => '1.17', - 'Shell' => '0.72_01', - 'Socket' => '1.84', - 'Storable' => '2.20', - 'Switch' => '2.14_01', - 'Symbol' => '1.07', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.27', - 'Sys::Syslog::win32::Win32'=> undef, - 'TAP::Base' => '3.17', - 'TAP::Formatter::Base' => '3.17', - 'TAP::Formatter::Color' => '3.17', - 'TAP::Formatter::Console'=> '3.17', - 'TAP::Formatter::Console::ParallelSession'=> '3.17', - 'TAP::Formatter::Console::Session'=> '3.17', - 'TAP::Formatter::File' => '3.17', - 'TAP::Formatter::File::Session'=> '3.17', - 'TAP::Formatter::Session'=> '3.17', - 'TAP::Harness' => '3.17', - 'TAP::Object' => '3.17', - 'TAP::Parser' => '3.17', - 'TAP::Parser::Aggregator'=> '3.17', - 'TAP::Parser::Grammar' => '3.17', - 'TAP::Parser::Iterator' => '3.17', - 'TAP::Parser::Iterator::Array'=> '3.17', - 'TAP::Parser::Iterator::Process'=> '3.17', - 'TAP::Parser::Iterator::Stream'=> '3.17', - 'TAP::Parser::IteratorFactory'=> '3.17', - 'TAP::Parser::Multiplexer'=> '3.17', - 'TAP::Parser::Result' => '3.17', - 'TAP::Parser::Result::Bailout'=> '3.17', - 'TAP::Parser::Result::Comment'=> '3.17', - 'TAP::Parser::Result::Plan'=> '3.17', - 'TAP::Parser::Result::Pragma'=> '3.17', - 'TAP::Parser::Result::Test'=> '3.17', - 'TAP::Parser::Result::Unknown'=> '3.17', - 'TAP::Parser::Result::Version'=> '3.17', - 'TAP::Parser::Result::YAML'=> '3.17', - 'TAP::Parser::ResultFactory'=> '3.17', - 'TAP::Parser::Scheduler'=> '3.17', - 'TAP::Parser::Scheduler::Job'=> '3.17', - 'TAP::Parser::Scheduler::Spinner'=> '3.17', - 'TAP::Parser::Source' => '3.17', - 'TAP::Parser::Source::Perl'=> '3.17', - 'TAP::Parser::Utils' => '3.17', - 'TAP::Parser::YAMLish::Reader'=> '3.17', - 'TAP::Parser::YAMLish::Writer'=> '3.17', - 'Term::ANSIColor' => '2.02', - 'Term::Cap' => '1.12', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.05', - 'Term::UI' => '0.20', - 'Term::UI::History' => undef, - 'Test' => '1.25_02', - 'Test::Builder' => '0.92', - 'Test::Builder::Module' => '0.92', - 'Test::Builder::Tester' => '1.18', - 'Test::Builder::Tester::Color'=> '1.18', - 'Test::Harness' => '3.17', - 'Test::More' => '0.92', - 'Test::Simple' => '0.92', - 'Text::Abbrev' => '1.01', - '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.11', - 'Thread::Semaphore' => '2.09', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_02', - 'Tie::Handle' => '4.2', - 'Tie::Hash' => '1.03', - 'Tie::Hash::NamedCapture'=> '0.06', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.38', - 'Tie::Scalar' => '1.01', - 'Tie::StdHandle' => '4.2', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9719', - 'Time::Local' => '1.1901_01', - 'Time::Piece' => '1.15', - 'Time::Piece::Seconds' => undef, - 'Time::Seconds' => undef, - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.05', - 'Unicode' => '5.1.0', - 'Unicode::Collate' => '0.52_01', - 'Unicode::Normalize' => '1.03', - 'Unicode::UCD' => '0.27', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'VMS::DCLsym' => '1.03', - 'VMS::Stdio' => '2.4', - 'Win32' => '0.39', - 'Win32API::File' => '0.1101', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.15', - 'XS::Typemap' => '0.03', - 'XSLoader' => '0.10', - 'XSLoader::XSLoader' => '0.10', - 'attributes' => '0.12', - 'autodie' => '2.06_01', - 'autodie::exception' => '2.06_01', - 'autodie::exception::system'=> '2.06_01', - 'autodie::hints' => '2.06_01', - 'autouse' => '1.06', - 'base' => '2.14', - 'bigint' => '0.23', - 'bignum' => '0.23', - 'bigrat' => '0.23', - 'blib' => '1.04', - 'bytes' => '1.03', - 'charnames' => '1.07', - 'constant' => '1.19', - 'deprecate' => '0.01', - 'diagnostics' => '1.17', - 'encoding' => '2.6_01', - 'encoding::warnings' => '0.11', - 'feature' => '1.13', - 'fields' => '2.14', - 'filetest' => '1.02', - 'if' => '0.05', - 'integer' => '1.00', - 'less' => '0.02', - 'lib' => '0.62', - 'locale' => '1.00', - 'mro' => '1.01', - 'open' => '1.07', - 'ops' => '1.02', - 'overload' => '1.08', - 'overload::numbers' => undef, - 'overloading' => '0.01', - 'parent' => '0.223', - 're' => '0.10', - 'sigtrap' => '1.04', - 'sort' => '2.01', - 'strict' => '1.04', - 'subs' => '1.00', - 'threads' => '1.74', - 'threads::shared' => '1.31', - 'utf8' => '1.07', - 'vars' => '1.01', - 'version' => '0.77', - 'vmsish' => '1.02', - 'warnings' => '1.07', - 'warnings::register' => '1.01', + 5.011 => { + delta_from => 5.010001, + changed => { + 'Archive::Tar' => '1.54', + 'Attribute::Handlers' => '0.87', + 'AutoLoader' => '5.70', + 'B::Deparse' => '0.91', + 'B::Lint' => '1.11_01', + 'B::Lint::Debug' => '0.01', + 'CGI' => '3.45', + 'CGI::Apache' => '1.01', + 'CGI::Carp' => '3.45', + 'CGI::Pretty' => '3.44', + 'CGI::Switch' => '1.01', + 'CGI::Util' => '3.45', + 'CPAN' => '1.94_51', + 'CPAN::Distribution' => '1.94', + 'CPAN::FTP' => '5.5002', + 'CPAN::Index' => '1.94', + 'CPAN::LWP::UserAgent' => '1.94', + 'CPANPLUS::Dist::Build' => '0.40', + 'CPANPLUS::Dist::Build::Constants'=> '0.40', + 'Carp' => '1.12', + 'Carp::Heavy' => '1.12', + 'Class::ISA' => '0.36', + 'Compress::Raw::Bzip2' => '2.021', + 'Compress::Raw::Zlib' => '2.021', + 'Compress::Zlib' => '2.021', + 'Cwd' => '3.3002', + 'Data::Dumper' => '2.125', + 'Encode' => '2.37', + 'Exporter' => '5.64', + 'Exporter::Heavy' => '5.64', + 'ExtUtils::ParseXS' => '2.200403', + 'File::Basename' => '2.78', + 'File::Copy' => '2.16', + 'File::stat' => '1.02', + 'IO' => '1.25_01', + 'IO::Compress::Adapter::Bzip2'=> '2.021', + 'IO::Compress::Adapter::Deflate'=> '2.021', + 'IO::Compress::Adapter::Identity'=> '2.021', + 'IO::Compress::Base' => '2.021', + 'IO::Compress::Base::Common'=> '2.021', + 'IO::Compress::Bzip2' => '2.021', + 'IO::Compress::Deflate' => '2.021', + 'IO::Compress::Gzip' => '2.021', + 'IO::Compress::Gzip::Constants'=> '2.021', + 'IO::Compress::RawDeflate'=> '2.021', + 'IO::Compress::Zip' => '2.021', + 'IO::Compress::Zip::Constants'=> '2.021', + 'IO::Compress::Zlib::Constants'=> '2.021', + 'IO::Compress::Zlib::Extra'=> '2.021', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.021', + 'IO::Uncompress::Adapter::Identity'=> '2.021', + 'IO::Uncompress::Adapter::Inflate'=> '2.021', + 'IO::Uncompress::AnyInflate'=> '2.021', + 'IO::Uncompress::AnyUncompress'=> '2.021', + 'IO::Uncompress::Base' => '2.021', + 'IO::Uncompress::Bunzip2'=> '2.021', + 'IO::Uncompress::Gunzip'=> '2.021', + 'IO::Uncompress::Inflate'=> '2.021', + 'IO::Uncompress::RawInflate'=> '2.021', + 'IO::Uncompress::Unzip' => '2.021', + 'IO::Zlib' => '1.10', + 'IPC::Cmd' => '0.50', + 'IPC::Open3' => '1.05', + 'Locale::Maketext::Simple'=> '0.21', + 'Log::Message::Simple' => '0.06', + 'Math::BigInt' => '1.89_01', + 'Math::BigRat' => '0.24', + 'Module::Build' => '0.35', + 'Module::Build::Base' => '0.35', + 'Module::Build::Compat' => '0.35', + 'Module::Build::Config' => '0.35', + 'Module::Build::Cookbook'=> '0.35', + 'Module::Build::Dumper' => '0.35', + 'Module::Build::ModuleInfo'=> '0.35', + 'Module::Build::Notes' => '0.35', + 'Module::Build::PPMMaker'=> '0.35', + 'Module::Build::Platform::Amiga'=> '0.35', + 'Module::Build::Platform::Default'=> '0.35', + 'Module::Build::Platform::EBCDIC'=> '0.35', + 'Module::Build::Platform::MPEiX'=> '0.35', + 'Module::Build::Platform::MacOS'=> '0.35', + 'Module::Build::Platform::RiscOS'=> '0.35', + 'Module::Build::Platform::Unix'=> '0.35', + 'Module::Build::Platform::VMS'=> '0.35', + 'Module::Build::Platform::VOS'=> '0.35', + 'Module::Build::Platform::Windows'=> '0.35', + 'Module::Build::Platform::aix'=> '0.35', + 'Module::Build::Platform::cygwin'=> '0.35', + 'Module::Build::Platform::darwin'=> '0.35', + 'Module::Build::Platform::os2'=> '0.35', + 'Module::Build::PodParser'=> '0.35', + 'Module::CoreList' => '2.19', + 'Module::Loaded' => '0.06', + 'Opcode' => '1.13', + 'PerlIO::via' => '0.08', + 'Pod::Perldoc' => '3.15_01', + 'Pod::Plainer' => '1.01', + 'Safe' => '2.19', + 'Socket' => '1.84', + 'Switch' => '2.14_01', + 'Term::ANSIColor' => '2.02', + 'Term::ReadLine' => '1.05', + 'Text::Balanced' => '2.02', + 'Text::Soundex' => '3.03_01', + 'Time::Local' => '1.1901_01', + 'Unicode::Collate' => '0.52_01', + 'attributes' => '0.12', + 'constant' => '1.19', + 'deprecate' => '0.01', + 'overload' => '1.08', + 'parent' => '0.223', + 're' => '0.10', + 'threads' => '1.74', + 'threads::shared' => '1.31', + 'warnings' => '1.07', + }, + removed => { + 'attrs' => 1, + } }, 5.011001 => { - 'AnyDBM_File' => '1.00', - 'App::Prove' => '3.17', - 'App::Prove::State' => '3.17', - 'App::Prove::State::Result'=> '3.17', - 'App::Prove::State::Result::Test'=> '3.17', - 'Archive::Extract' => '0.34', - 'Archive::Tar' => '1.54', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.87', - 'AutoLoader' => '5.70', - 'AutoSplit' => '1.06', - 'B' => '1.23', - 'B::Concise' => '0.77', - 'B::Debug' => '1.11', - 'B::Deparse' => '0.92', - 'B::Lint' => '1.11_01', - 'B::Lint::Debug' => '0.01', - 'B::Showlex' => '1.02', - 'B::Terse' => '1.05', - 'B::Xref' => '1.02', - 'Benchmark' => '1.11', - 'CGI' => '3.48', - 'CGI::Apache' => '1.01', - 'CGI::Carp' => '3.45', - 'CGI::Cookie' => '1.29', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '3.46', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.01', - 'CGI::Util' => '3.48', - 'CPAN' => '1.94_51', - 'CPAN::Author' => '5.5', - 'CPAN::Bundle' => '5.5', - 'CPAN::CacheMgr' => '5.5', - 'CPAN::Complete' => '5.5', - 'CPAN::Debug' => '5.5', - 'CPAN::DeferredCode' => '5.50', - 'CPAN::Distribution' => '1.94', - 'CPAN::Distroprefs' => '6', - 'CPAN::Distrostatus' => '5.5', - 'CPAN::Exception::RecursiveDependency'=> '5.5', - 'CPAN::Exception::blocked_urllist'=> '1.0', - 'CPAN::Exception::yaml_not_installed'=> '5.5', - 'CPAN::FTP' => '5.5002', - 'CPAN::FTP::netrc' => '1.00', - 'CPAN::FirstTime' => '5.53', - 'CPAN::HandleConfig' => '5.5', - 'CPAN::Index' => '1.94', - 'CPAN::InfoObj' => '5.5', - 'CPAN::Kwalify' => '5.50', - 'CPAN::LWP::UserAgent' => '1.94', - 'CPAN::Module' => '5.5', - 'CPAN::Nox' => '5.50', - 'CPAN::Prompt' => '5.5', - 'CPAN::Queue' => '5.5', - 'CPAN::Shell' => '5.5', - 'CPAN::Tarzip' => '5.501', - 'CPAN::URL' => '5.5', - 'CPAN::Version' => '5.5', - 'CPANPLUS' => '0.89_03', - '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.40', - 'CPANPLUS::Dist::Build::Constants'=> '0.40', - 'CPANPLUS::Dist::MM' => undef, - 'CPANPLUS::Dist::Sample'=> undef, - 'CPANPLUS::Error' => undef, - 'CPANPLUS::Internals' => '0.89_03', - '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.89_03', - 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'Carp' => '1.13', - 'Carp::Heavy' => '1.13', - 'Class::ISA' => '0.36', - 'Class::Struct' => '0.63', - 'Compress::Raw::Bzip2' => '2.021', - 'Compress::Raw::Zlib' => '2.021', - 'Compress::Zlib' => '2.021', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.3002', - 'DB' => '1.02', - 'DBM_Filter' => '0.02', - '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.820', - 'Data::Dumper' => '2.125', - 'Devel::DProf' => '20080331.00', - 'Devel::DProf::dprof::V'=> undef, - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.19', - 'Devel::Peek' => '1.04', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.16', - 'Digest::MD5' => '2.39', - 'Digest::SHA' => '5.47', - 'Digest::base' => '1.16', - 'Digest::file' => '1.16', - 'DirHandle' => '1.03', - 'Dumpvalue' => '1.13', - 'DynaLoader' => '1.10', - 'Encode' => '2.37', - 'Encode::Alias' => '2.12', - 'Encode::Byte' => '2.03', - 'Encode::CJKConstants' => '2.02', - 'Encode::CN' => '2.02', - 'Encode::CN::HZ' => '2.05', - 'Encode::Config' => '2.05', - 'Encode::EBCDIC' => '2.02', - 'Encode::Encoder' => '2.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.01', - 'Encode::Guess' => '2.03', - 'Encode::JP' => '2.03', - 'Encode::JP::H2Z' => '2.02', - 'Encode::JP::JIS7' => '2.04', - 'Encode::KR' => '2.02', - 'Encode::KR::2022_KR' => '2.02', - 'Encode::MIME::Header' => '2.11', - 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', - 'Encode::MIME::Name' => '1.01', - 'Encode::Symbol' => '2.02', - 'Encode::TW' => '2.02', - 'Encode::Unicode' => '2.06', - 'Encode::Unicode::UTF7' => '2.04', - 'English' => '1.04', - 'Env' => '1.00', - 'Errno' => '1.11', - 'Exporter' => '5.64', - 'Exporter::Heavy' => '5.64', - 'ExtUtils::CBuilder' => '0.260301', - 'ExtUtils::CBuilder::Base'=> '0.260301', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.260301', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.260301', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.260301', - 'ExtUtils::CBuilder::Platform::aix'=> '0.260301', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.260301', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301', - 'ExtUtils::CBuilder::Platform::os2'=> '0.260301', - 'ExtUtils::Command' => '1.16', - 'ExtUtils::Command::MM' => '6.55_02', - 'ExtUtils::Constant' => '0.22', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.06', - 'ExtUtils::Constant::Utils'=> '0.02', - 'ExtUtils::Constant::XS'=> '0.03', - 'ExtUtils::Embed' => '1.28', - 'ExtUtils::Install' => '1.55', - 'ExtUtils::Installed' => '1.999_001', - 'ExtUtils::Liblist' => '6.55_02', - 'ExtUtils::Liblist::Kid'=> '6.5502', - 'ExtUtils::MM' => '6.55_02', - 'ExtUtils::MM_AIX' => '6.55_02', - 'ExtUtils::MM_Any' => '6.55_02', - 'ExtUtils::MM_BeOS' => '6.55_02', - 'ExtUtils::MM_Cygwin' => '6.55_02', - 'ExtUtils::MM_DOS' => '6.5502', - 'ExtUtils::MM_Darwin' => '6.55_02', - 'ExtUtils::MM_MacOS' => '6.5502', - 'ExtUtils::MM_NW5' => '6.55_02', - 'ExtUtils::MM_OS2' => '6.55_02', - 'ExtUtils::MM_QNX' => '6.55_02', - 'ExtUtils::MM_UWIN' => '6.5502', - 'ExtUtils::MM_Unix' => '6.55_02', - 'ExtUtils::MM_VMS' => '6.55_02', - 'ExtUtils::MM_VOS' => '6.55_02', - 'ExtUtils::MM_Win32' => '6.55_02', - 'ExtUtils::MM_Win95' => '6.55_02', - 'ExtUtils::MY' => '6.5502', - 'ExtUtils::MakeMaker' => '6.55_02', - 'ExtUtils::MakeMaker::Config'=> '6.55_02', - 'ExtUtils::Manifest' => '1.57', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '6.55_02', - 'ExtUtils::Mksymlists' => '6.55_02', - 'ExtUtils::Packlist' => '1.44', - 'ExtUtils::ParseXS' => '2.21', - 'ExtUtils::XSSymSet' => '1.1', - 'ExtUtils::testlib' => '6.5502', - 'Fatal' => '2.06_01', - 'Fcntl' => '1.06', - 'File::Basename' => '2.78', - 'File::CheckTree' => '4.4', - 'File::Compare' => '1.1006', - 'File::Copy' => '2.16', - 'File::DosGlob' => '1.01', - 'File::Fetch' => '0.20', - 'File::Find' => '1.14', - 'File::Glob' => '1.07', - 'File::GlobMapper' => '1.000', - 'File::Path' => '2.08', - 'File::Spec' => '3.30', - 'File::Spec::Cygwin' => '3.30', - 'File::Spec::Epoc' => '3.30', - 'File::Spec::Functions' => '3.30', - 'File::Spec::Mac' => '3.30', - 'File::Spec::OS2' => '3.30', - 'File::Spec::Unix' => '3.30', - 'File::Spec::VMS' => '3.30', - 'File::Spec::Win32' => '3.30', - 'File::Temp' => '0.22', - 'File::stat' => '1.02', - 'FileCache' => '1.08', - 'FileHandle' => '2.02', - 'Filespec' => '1.12', - 'Filter::Simple' => '0.84', - 'Filter::Util::Call' => '1.08', - 'FindBin' => '1.50', - 'GDBM_File' => '1.09', - 'Getopt::Long' => '2.38', - 'Getopt::Std' => '1.06', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '1.04', - 'I18N::Collate' => '1.01', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.03', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.02', - 'IO' => '1.25_02', - 'IO::Compress::Adapter::Bzip2'=> '2.021', - 'IO::Compress::Adapter::Deflate'=> '2.021', - 'IO::Compress::Adapter::Identity'=> '2.021', - 'IO::Compress::Base' => '2.021', - 'IO::Compress::Base::Common'=> '2.021', - 'IO::Compress::Bzip2' => '2.021', - 'IO::Compress::Deflate' => '2.021', - 'IO::Compress::Gzip' => '2.021', - 'IO::Compress::Gzip::Constants'=> '2.021', - 'IO::Compress::RawDeflate'=> '2.021', - 'IO::Compress::Zip' => '2.021', - 'IO::Compress::Zip::Constants'=> '2.021', - 'IO::Compress::Zlib::Constants'=> '2.021', - 'IO::Compress::Zlib::Extra'=> '2.021', - 'IO::Dir' => '1.07', - 'IO::File' => '1.14', - 'IO::Handle' => '1.28', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.31', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Bunzip2'=> '2.021', - 'IO::Uncompress::Adapter::Identity'=> '2.021', - 'IO::Uncompress::Adapter::Inflate'=> '2.021', - 'IO::Uncompress::AnyInflate'=> '2.021', - 'IO::Uncompress::AnyUncompress'=> '2.021', - 'IO::Uncompress::Base' => '2.021', - 'IO::Uncompress::Bunzip2'=> '2.021', - 'IO::Uncompress::Gunzip'=> '2.021', - 'IO::Uncompress::Inflate'=> '2.021', - 'IO::Uncompress::RawInflate'=> '2.021', - 'IO::Uncompress::Unzip' => '2.021', - 'IO::Zlib' => '1.10', - 'IPC::Cmd' => '0.50', - 'IPC::Msg' => '2.01', - 'IPC::Open2' => '1.03', - 'IPC::Open3' => '1.05', - 'IPC::Semaphore' => '2.01', - 'IPC::SharedMem' => '2.01', - 'IPC::SysV' => '2.01', - 'List::Util' => '1.21', - 'List::Util::PP' => '1.21', - 'List::Util::XS' => '1.21', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.13', - 'Locale::Maketext::Guts'=> '1.13', - 'Locale::Maketext::GutsLoader'=> '1.13', - 'Locale::Maketext::Simple'=> '0.21', - 'Locale::Script' => '2.07', - 'Log::Message' => '0.02', - 'Log::Message::Config' => '0.01', - 'Log::Message::Handlers'=> undef, - 'Log::Message::Item' => undef, - 'Log::Message::Simple' => '0.06', - 'MIME::Base64' => '3.08', - 'MIME::QuotedPrint' => '3.08', - 'Math::BigFloat' => '1.60', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.89_01', - 'Math::BigInt::Calc' => '0.52', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.19', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.24', - 'Math::Complex' => '1.56', - 'Math::Trig' => '1.2', - 'Memoize' => '1.01_03', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.35', - 'Module::Build::Base' => '0.35', - 'Module::Build::Compat' => '0.35', - 'Module::Build::Config' => '0.35', - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> '0.35', - 'Module::Build::Dumper' => '0.35', - 'Module::Build::ModuleInfo'=> '0.35', - 'Module::Build::Notes' => '0.35', - 'Module::Build::PPMMaker'=> '0.35', - 'Module::Build::Platform::Amiga'=> '0.35', - 'Module::Build::Platform::Default'=> '0.35', - 'Module::Build::Platform::EBCDIC'=> '0.35', - 'Module::Build::Platform::MPEiX'=> '0.35', - 'Module::Build::Platform::MacOS'=> '0.35', - 'Module::Build::Platform::RiscOS'=> '0.35', - 'Module::Build::Platform::Unix'=> '0.35', - 'Module::Build::Platform::VMS'=> '0.35', - 'Module::Build::Platform::VOS'=> '0.35', - 'Module::Build::Platform::Windows'=> '0.35', - 'Module::Build::Platform::aix'=> '0.35', - 'Module::Build::Platform::cygwin'=> '0.35', - 'Module::Build::Platform::darwin'=> '0.35', - 'Module::Build::Platform::os2'=> '0.35', - 'Module::Build::PodParser'=> '0.35', - 'Module::Build::Version'=> '0.77', - 'Module::Build::YAML' => '0.50', - 'Module::CoreList' => '2.21', - 'Module::Load' => '0.16', - 'Module::Load::Conditional'=> '0.30', - 'Module::Loaded' => '0.06', - 'Module::Pluggable' => '3.9', - 'Module::Pluggable::Object'=> '3.9', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.08', - 'NEXT' => '0.64', - '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.36', - '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.07', - 'Object::Accessor' => '0.36', - 'Opcode' => '1.15', - 'POSIX' => '1.18', - 'Package::Constants' => '0.02', - 'Params::Check' => '0.26', - 'Parse::CPAN::Meta' => '1.40', - 'PerlIO' => '1.06', - 'PerlIO::encoding' => '0.11', - 'PerlIO::scalar' => '0.07', - 'PerlIO::via' => '0.09', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.45', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.35', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.09', - 'Pod::InputObjects' => '1.31', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.22', - 'Pod::ParseLink' => '1.09', - 'Pod::ParseUtils' => '1.36', - 'Pod::Parser' => '1.37', - 'Pod::Perldoc' => '3.15_01', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.04', - 'Pod::Plainer' => '1.01', - 'Pod::Select' => '1.36', - 'Pod::Simple' => '3.08', - 'Pod::Simple::BlackBox' => undef, - 'Pod::Simple::Checker' => '2.02', - 'Pod::Simple::Debug' => undef, - 'Pod::Simple::DumpAsText'=> '2.02', - 'Pod::Simple::DumpAsXML'=> '2.02', - 'Pod::Simple::HTML' => '3.03', - 'Pod::Simple::HTMLBatch'=> '3.02', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> undef, - 'Pod::Simple::Methody' => '2.02', - 'Pod::Simple::Progress' => '1.01', - 'Pod::Simple::PullParser'=> '2.02', - 'Pod::Simple::PullParserEndToken'=> undef, - 'Pod::Simple::PullParserStartToken'=> undef, - 'Pod::Simple::PullParserTextToken'=> undef, - 'Pod::Simple::PullParserToken'=> '2.02', - 'Pod::Simple::RTF' => '2.02', - 'Pod::Simple::Search' => '3.04', - 'Pod::Simple::SimpleTree'=> '2.02', - 'Pod::Simple::Text' => '2.02', - 'Pod::Simple::TextContent'=> '2.02', - 'Pod::Simple::TiedOutFH'=> undef, - 'Pod::Simple::Transcode'=> undef, - 'Pod::Simple::TranscodeDumb'=> '2.02', - 'Pod::Simple::TranscodeSmart'=> undef, - 'Pod::Simple::XHTML' => '3.04', - 'Pod::Simple::XMLOutStream'=> '2.02', - 'Pod::Text' => '3.13', - 'Pod::Text::Color' => '2.05', - 'Pod::Text::Overstrike' => '2.03', - 'Pod::Text::Termcap' => '2.05', - 'Pod::Usage' => '1.36', - 'SDBM_File' => '1.06', - 'Safe' => '2.19', - 'Scalar::Util' => '1.21', - 'Scalar::Util::PP' => '1.21', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.02', - 'SelfLoader' => '1.17', - 'Shell' => '0.72_01', - 'Socket' => '1.85', - 'Storable' => '2.22', - 'Switch' => '2.15', - 'Symbol' => '1.07', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.27', - 'Sys::Syslog::win32::Win32'=> undef, - 'TAP::Base' => '3.17', - 'TAP::Formatter::Base' => '3.17', - 'TAP::Formatter::Color' => '3.17', - 'TAP::Formatter::Console'=> '3.17', - 'TAP::Formatter::Console::ParallelSession'=> '3.17', - 'TAP::Formatter::Console::Session'=> '3.17', - 'TAP::Formatter::File' => '3.17', - 'TAP::Formatter::File::Session'=> '3.17', - 'TAP::Formatter::Session'=> '3.17', - 'TAP::Harness' => '3.17', - 'TAP::Object' => '3.17', - 'TAP::Parser' => '3.17', - 'TAP::Parser::Aggregator'=> '3.17', - 'TAP::Parser::Grammar' => '3.17', - 'TAP::Parser::Iterator' => '3.17', - 'TAP::Parser::Iterator::Array'=> '3.17', - 'TAP::Parser::Iterator::Process'=> '3.17', - 'TAP::Parser::Iterator::Stream'=> '3.17', - 'TAP::Parser::IteratorFactory'=> '3.17', - 'TAP::Parser::Multiplexer'=> '3.17', - 'TAP::Parser::Result' => '3.17', - 'TAP::Parser::Result::Bailout'=> '3.17', - 'TAP::Parser::Result::Comment'=> '3.17', - 'TAP::Parser::Result::Plan'=> '3.17', - 'TAP::Parser::Result::Pragma'=> '3.17', - 'TAP::Parser::Result::Test'=> '3.17', - 'TAP::Parser::Result::Unknown'=> '3.17', - 'TAP::Parser::Result::Version'=> '3.17', - 'TAP::Parser::Result::YAML'=> '3.17', - 'TAP::Parser::ResultFactory'=> '3.17', - 'TAP::Parser::Scheduler'=> '3.17', - 'TAP::Parser::Scheduler::Job'=> '3.17', - 'TAP::Parser::Scheduler::Spinner'=> '3.17', - 'TAP::Parser::Source' => '3.17', - 'TAP::Parser::Source::Perl'=> '3.17', - 'TAP::Parser::Utils' => '3.17', - 'TAP::Parser::YAMLish::Reader'=> '3.17', - 'TAP::Parser::YAMLish::Writer'=> '3.17', - 'Term::ANSIColor' => '2.02', - 'Term::Cap' => '1.12', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.05', - 'Term::UI' => '0.20', - 'Term::UI::History' => undef, - 'Test' => '1.25_02', - 'Test::Builder' => '0.94', - 'Test::Builder::Module' => '0.94', - 'Test::Builder::Tester' => '1.18', - 'Test::Builder::Tester::Color'=> '1.18', - 'Test::Harness' => '3.17', - 'Test::More' => '0.94', - 'Test::Simple' => '0.94', - 'Text::Abbrev' => '1.01', - '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.11', - 'Thread::Semaphore' => '2.09', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_02', - 'Tie::Handle' => '4.2', - 'Tie::Hash' => '1.03', - 'Tie::Hash::NamedCapture'=> '0.06', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.38', - 'Tie::Scalar' => '1.01', - 'Tie::StdHandle' => '4.2', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9719', - 'Time::Local' => '1.1901_01', - 'Time::Piece' => '1.15', - 'Time::Piece::Seconds' => undef, - 'Time::Seconds' => undef, - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.05', - 'Unicode' => '5.1.0', - 'Unicode::Collate' => '0.52_01', - 'Unicode::Normalize' => '1.03', - 'Unicode::UCD' => '0.27', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'VMS::DCLsym' => '1.03', - 'VMS::Stdio' => '2.4', - 'Win32' => '0.39', - 'Win32API::File' => '0.1101', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.16', - 'XS::Typemap' => '0.03', - 'XSLoader' => '0.10', - 'XSLoader::XSLoader' => '0.10', - 'attributes' => '0.12', - 'autodie' => '2.06_01', - 'autodie::exception' => '2.06_01', - 'autodie::exception::system'=> '2.06_01', - 'autodie::hints' => '2.06_01', - 'autouse' => '1.06', - 'base' => '2.14', - 'bigint' => '0.23', - 'bignum' => '0.23', - 'bigrat' => '0.23', - 'blib' => '1.04', - 'bytes' => '1.03', - 'charnames' => '1.07', - 'constant' => '1.19', - 'deprecate' => '0.01', - 'diagnostics' => '1.17', - 'encoding' => '2.6_01', - 'encoding::warnings' => '0.11', - 'feature' => '1.13', - 'fields' => '2.14', - 'filetest' => '1.02', - 'if' => '0.05', - 'integer' => '1.00', - 'less' => '0.02', - 'lib' => '0.62', - 'locale' => '1.00', - 'mro' => '1.02', - 'open' => '1.07', - 'ops' => '1.02', - 'overload' => '1.09', - 'overload::numbers' => undef, - 'overloading' => '0.01', - 'parent' => '0.223', - 're' => '0.10', - 'sigtrap' => '1.04', - 'sort' => '2.01', - 'strict' => '1.04', - 'subs' => '1.00', - 'threads' => '1.74', - 'threads::shared' => '1.32', - 'utf8' => '1.07', - 'vars' => '1.01', - 'version' => '0.77', - 'vmsish' => '1.02', - 'warnings' => '1.07', - 'warnings::register' => '1.01', + delta_from => 5.011, + changed => { + 'B' => '1.23', + 'B::Concise' => '0.77', + 'B::Deparse' => '0.92', + 'CGI' => '3.48', + 'CGI::Pretty' => '3.46', + 'CGI::Util' => '3.48', + 'CPANPLUS' => '0.89_03', + 'CPANPLUS::Internals' => '0.89_03', + 'CPANPLUS::Shell::Default'=> '0.89_03', + 'Carp' => '1.13', + 'Carp::Heavy' => '1.13', + 'ExtUtils::CBuilder' => '0.260301', + 'ExtUtils::CBuilder::Base'=> '0.260301', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.260301', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.260301', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.260301', + 'ExtUtils::CBuilder::Platform::aix'=> '0.260301', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.260301', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301', + 'ExtUtils::CBuilder::Platform::os2'=> '0.260301', + 'ExtUtils::Install' => '1.55', + 'ExtUtils::Manifest' => '1.57', + 'ExtUtils::Packlist' => '1.44', + 'ExtUtils::ParseXS' => '2.21', + 'File::Glob' => '1.07', + 'File::Path' => '2.08', + 'IO' => '1.25_02', + 'Module::CoreList' => '2.21', + 'Object::Accessor' => '0.36', + 'Opcode' => '1.15', + 'POSIX' => '1.18', + 'Parse::CPAN::Meta' => '1.40', + 'PerlIO::via' => '0.09', + 'Pod::Simple' => '3.08', + 'Socket' => '1.85', + 'Storable' => '2.22', + 'Switch' => '2.15', + 'Test::Builder' => '0.94', + 'Test::Builder::Module' => '0.94', + 'Test::More' => '0.94', + 'Test::Simple' => '0.94', + 'XS::APItest' => '0.16', + 'mro' => '1.02', + 'overload' => '1.09', + 'threads::shared' => '1.32', + }, + removed => { + } }, 5.011002 => { - 'AnyDBM_File' => '1.00', - 'App::Prove' => '3.17', - 'App::Prove::State' => '3.17', - 'App::Prove::State::Result'=> '3.17', - 'App::Prove::State::Result::Test'=> '3.17', - 'Archive::Extract' => '0.34', - 'Archive::Tar' => '1.54', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.87', - 'AutoLoader' => '5.70', - 'AutoSplit' => '1.06', - 'B' => '1.23', - 'B::Concise' => '0.78', - 'B::Debug' => '1.11', - 'B::Deparse' => '0.93', - 'B::Lint' => '1.11_01', - 'B::Lint::Debug' => '0.01', - 'B::Showlex' => '1.02', - 'B::Terse' => '1.05', - 'B::Xref' => '1.02', - 'Benchmark' => '1.11', - 'CGI' => '3.48', - 'CGI::Apache' => '1.01', - 'CGI::Carp' => '3.45', - 'CGI::Cookie' => '1.29', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '3.46', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.01', - 'CGI::Util' => '3.48', - 'CPAN' => '1.94_51', - 'CPAN::Author' => '5.5', - 'CPAN::Bundle' => '5.5', - 'CPAN::CacheMgr' => '5.5', - 'CPAN::Complete' => '5.5', - 'CPAN::Debug' => '5.5', - 'CPAN::DeferredCode' => '5.50', - 'CPAN::Distribution' => '1.94', - 'CPAN::Distroprefs' => '6', - 'CPAN::Distrostatus' => '5.5', - 'CPAN::Exception::RecursiveDependency'=> '5.5', - 'CPAN::Exception::blocked_urllist'=> '1.0', - 'CPAN::Exception::yaml_not_installed'=> '5.5', - 'CPAN::FTP' => '5.5002', - 'CPAN::FTP::netrc' => '1.00', - 'CPAN::FirstTime' => '5.53', - 'CPAN::HandleConfig' => '5.5', - 'CPAN::Index' => '1.94', - 'CPAN::InfoObj' => '5.5', - 'CPAN::Kwalify' => '5.50', - 'CPAN::LWP::UserAgent' => '1.94', - 'CPAN::Module' => '5.5', - 'CPAN::Nox' => '5.50', - 'CPAN::Prompt' => '5.5', - 'CPAN::Queue' => '5.5', - 'CPAN::Shell' => '5.5', - 'CPAN::Tarzip' => '5.501', - 'CPAN::URL' => '5.5', - 'CPAN::Version' => '5.5', - 'CPANPLUS' => '0.89_09', - '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.44', - 'CPANPLUS::Dist::Build::Constants'=> '0.44', - 'CPANPLUS::Dist::MM' => undef, - 'CPANPLUS::Dist::Sample'=> undef, - 'CPANPLUS::Error' => undef, - 'CPANPLUS::Internals' => '0.89_09', - '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.89_09', - 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'Carp' => '1.14', - 'Carp::Heavy' => '1.14', - 'Class::ISA' => '0.36', - 'Class::Struct' => '0.63', - 'Compress::Raw::Bzip2' => '2.021', - 'Compress::Raw::Zlib' => '2.021', - 'Compress::Zlib' => '2.022', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.3002', - 'DB' => '1.02', - 'DBM_Filter' => '0.03', - '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.820', - 'Data::Dumper' => '2.125', - 'Devel::DProf' => '20080331.00', - 'Devel::DProf::dprof::V'=> undef, - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.19', - 'Devel::Peek' => '1.04', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.16', - 'Digest::MD5' => '2.39', - 'Digest::SHA' => '5.47', - 'Digest::base' => '1.16', - 'Digest::file' => '1.16', - 'DirHandle' => '1.03', - 'Dumpvalue' => '1.13', - 'DynaLoader' => '1.10', - 'Encode' => '2.38', - 'Encode::Alias' => '2.12', - '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.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.01', - 'Encode::Guess' => '2.03', - '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.11', - '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.04', - 'English' => '1.04', - 'Env' => '1.01', - 'Errno' => '1.11', - 'Exporter' => '5.64_01', - 'Exporter::Heavy' => '5.64_01', - 'ExtUtils::CBuilder' => '0.27', - 'ExtUtils::CBuilder::Base'=> '0.27', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.27', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27', - 'ExtUtils::CBuilder::Platform::aix'=> '0.27', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.27', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27', - 'ExtUtils::CBuilder::Platform::os2'=> '0.27', - 'ExtUtils::Command' => '1.16', - 'ExtUtils::Command::MM' => '6.55_02', - 'ExtUtils::Constant' => '0.22', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.06', - 'ExtUtils::Constant::Utils'=> '0.02', - 'ExtUtils::Constant::XS'=> '0.03', - 'ExtUtils::Embed' => '1.28', - 'ExtUtils::Install' => '1.55', - 'ExtUtils::Installed' => '1.999_001', - 'ExtUtils::Liblist' => '6.55_02', - 'ExtUtils::Liblist::Kid'=> '6.5502', - 'ExtUtils::MM' => '6.55_02', - 'ExtUtils::MM_AIX' => '6.55_02', - 'ExtUtils::MM_Any' => '6.55_02', - 'ExtUtils::MM_BeOS' => '6.55_02', - 'ExtUtils::MM_Cygwin' => '6.55_02', - 'ExtUtils::MM_DOS' => '6.5502', - 'ExtUtils::MM_Darwin' => '6.55_02', - 'ExtUtils::MM_MacOS' => '6.5502', - 'ExtUtils::MM_NW5' => '6.55_02', - 'ExtUtils::MM_OS2' => '6.55_02', - 'ExtUtils::MM_QNX' => '6.55_02', - 'ExtUtils::MM_UWIN' => '6.5502', - 'ExtUtils::MM_Unix' => '6.55_02', - 'ExtUtils::MM_VMS' => '6.55_02', - 'ExtUtils::MM_VOS' => '6.55_02', - 'ExtUtils::MM_Win32' => '6.55_02', - 'ExtUtils::MM_Win95' => '6.55_02', - 'ExtUtils::MY' => '6.5502', - 'ExtUtils::MakeMaker' => '6.55_02', - 'ExtUtils::MakeMaker::Config'=> '6.55_02', - 'ExtUtils::Manifest' => '1.57', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '6.55_02', - 'ExtUtils::Mksymlists' => '6.55_02', - 'ExtUtils::Packlist' => '1.44', - 'ExtUtils::ParseXS' => '2.21', - 'ExtUtils::XSSymSet' => '1.1', - 'ExtUtils::testlib' => '6.5502', - 'Fatal' => '2.06_01', - 'Fcntl' => '1.06', - 'File::Basename' => '2.78', - 'File::CheckTree' => '4.4', - 'File::Compare' => '1.1006', - 'File::Copy' => '2.16', - 'File::DosGlob' => '1.01', - 'File::Fetch' => '0.22', - 'File::Find' => '1.14', - 'File::Glob' => '1.07', - 'File::GlobMapper' => '1.000', - 'File::Path' => '2.08', - 'File::Spec' => '3.30', - 'File::Spec::Cygwin' => '3.30', - 'File::Spec::Epoc' => '3.30', - 'File::Spec::Functions' => '3.30', - 'File::Spec::Mac' => '3.30', - 'File::Spec::OS2' => '3.30', - 'File::Spec::Unix' => '3.30', - 'File::Spec::VMS' => '3.30', - 'File::Spec::Win32' => '3.30', - 'File::Temp' => '0.22', - 'File::stat' => '1.02', - 'FileCache' => '1.08', - 'FileHandle' => '2.02', - 'Filespec' => '1.12', - 'Filter::Simple' => '0.84', - 'Filter::Util::Call' => '1.08', - 'FindBin' => '1.50', - 'GDBM_File' => '1.09', - 'Getopt::Long' => '2.38', - 'Getopt::Std' => '1.06', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '1.04', - 'I18N::Collate' => '1.01', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.04', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.03', - 'IO' => '1.25_02', - 'IO::Compress::Adapter::Bzip2'=> '2.022', - 'IO::Compress::Adapter::Deflate'=> '2.022', - 'IO::Compress::Adapter::Identity'=> '2.022', - 'IO::Compress::Base' => '2.022', - 'IO::Compress::Base::Common'=> '2.022', - 'IO::Compress::Bzip2' => '2.022', - 'IO::Compress::Deflate' => '2.022', - 'IO::Compress::Gzip' => '2.022', - 'IO::Compress::Gzip::Constants'=> '2.022', - 'IO::Compress::RawDeflate'=> '2.022', - 'IO::Compress::Zip' => '2.022', - 'IO::Compress::Zip::Constants'=> '2.022', - 'IO::Compress::Zlib::Constants'=> '2.022', - 'IO::Compress::Zlib::Extra'=> '2.022', - 'IO::Dir' => '1.07', - 'IO::File' => '1.14', - 'IO::Handle' => '1.28', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.31', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Bunzip2'=> '2.022', - 'IO::Uncompress::Adapter::Identity'=> '2.022', - 'IO::Uncompress::Adapter::Inflate'=> '2.022', - 'IO::Uncompress::AnyInflate'=> '2.022', - 'IO::Uncompress::AnyUncompress'=> '2.022', - 'IO::Uncompress::Base' => '2.022', - 'IO::Uncompress::Bunzip2'=> '2.022', - 'IO::Uncompress::Gunzip'=> '2.022', - 'IO::Uncompress::Inflate'=> '2.022', - 'IO::Uncompress::RawInflate'=> '2.022', - 'IO::Uncompress::Unzip' => '2.022', - 'IO::Zlib' => '1.10', - 'IPC::Cmd' => '0.54', - 'IPC::Msg' => '2.01', - 'IPC::Open2' => '1.03', - 'IPC::Open3' => '1.05', - 'IPC::Semaphore' => '2.01', - 'IPC::SharedMem' => '2.01', - 'IPC::SysV' => '2.01', - 'List::Util' => '1.22', - 'List::Util::PP' => '1.22', - 'List::Util::XS' => '1.22', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.14', - 'Locale::Maketext::Guts'=> '1.13', - 'Locale::Maketext::GutsLoader'=> '1.13', - 'Locale::Maketext::Simple'=> '0.21', - 'Locale::Script' => '2.07', - 'Log::Message' => '0.02', - 'Log::Message::Config' => '0.01', - 'Log::Message::Handlers'=> undef, - 'Log::Message::Item' => undef, - 'Log::Message::Simple' => '0.06', - 'MIME::Base64' => '3.08', - 'MIME::QuotedPrint' => '3.08', - 'Math::BigFloat' => '1.60', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.89_01', - 'Math::BigInt::Calc' => '0.52', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.19', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.24', - 'Math::Complex' => '1.56', - 'Math::Trig' => '1.2', - 'Memoize' => '1.01_03', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.35_09', - 'Module::Build::Base' => '0.35_09', - 'Module::Build::Compat' => '0.35_09', - 'Module::Build::Config' => '0.35_09', - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> '0.35_09', - 'Module::Build::Dumper' => '0.35_09', - 'Module::Build::ModuleInfo'=> '0.35_09', - 'Module::Build::Notes' => '0.35_09', - 'Module::Build::PPMMaker'=> '0.35_09', - 'Module::Build::Platform::Amiga'=> '0.35_09', - 'Module::Build::Platform::Default'=> '0.35_09', - 'Module::Build::Platform::EBCDIC'=> '0.35_09', - 'Module::Build::Platform::MPEiX'=> '0.35_09', - 'Module::Build::Platform::MacOS'=> '0.35_09', - 'Module::Build::Platform::RiscOS'=> '0.35_09', - 'Module::Build::Platform::Unix'=> '0.35_09', - 'Module::Build::Platform::VMS'=> '0.35_09', - 'Module::Build::Platform::VOS'=> '0.35_09', - 'Module::Build::Platform::Windows'=> '0.35_09', - 'Module::Build::Platform::aix'=> '0.35_09', - 'Module::Build::Platform::cygwin'=> '0.35_09', - 'Module::Build::Platform::darwin'=> '0.35_09', - 'Module::Build::Platform::os2'=> '0.35_09', - 'Module::Build::PodParser'=> '0.35_09', - 'Module::Build::Version'=> '0.77', - 'Module::Build::YAML' => '1.40', - 'Module::CoreList' => '2.23', - 'Module::Load' => '0.16', - 'Module::Load::Conditional'=> '0.34', - 'Module::Loaded' => '0.06', - 'Module::Pluggable' => '3.9', - 'Module::Pluggable::Object'=> '3.9', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.08', - 'NEXT' => '0.64', - '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.36', - '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.07', - 'Object::Accessor' => '0.36', - 'Opcode' => '1.15', - 'POSIX' => '1.18', - 'Package::Constants' => '0.02', - 'Params::Check' => '0.26', - 'Parse::CPAN::Meta' => '1.40', - 'PerlIO' => '1.06', - 'PerlIO::encoding' => '0.11', - 'PerlIO::scalar' => '0.07', - 'PerlIO::via' => '0.09', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.45', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.35', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.09', - 'Pod::InputObjects' => '1.31', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.22', - 'Pod::ParseLink' => '1.09', - 'Pod::ParseUtils' => '1.36', - 'Pod::Parser' => '1.37', - 'Pod::Perldoc' => '3.15_01', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.04', - 'Pod::Plainer' => '1.01', - 'Pod::Select' => '1.36', - 'Pod::Simple' => '3.10', - 'Pod::Simple::BlackBox' => undef, - 'Pod::Simple::Checker' => '2.02', - 'Pod::Simple::Debug' => undef, - 'Pod::Simple::DumpAsText'=> '2.02', - 'Pod::Simple::DumpAsXML'=> '2.02', - 'Pod::Simple::HTML' => '3.03', - 'Pod::Simple::HTMLBatch'=> '3.02', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> undef, - 'Pod::Simple::Methody' => '2.02', - 'Pod::Simple::Progress' => '1.01', - 'Pod::Simple::PullParser'=> '2.02', - 'Pod::Simple::PullParserEndToken'=> undef, - 'Pod::Simple::PullParserStartToken'=> undef, - 'Pod::Simple::PullParserTextToken'=> undef, - 'Pod::Simple::PullParserToken'=> '2.02', - 'Pod::Simple::RTF' => '2.02', - 'Pod::Simple::Search' => '3.04', - 'Pod::Simple::SimpleTree'=> '2.02', - 'Pod::Simple::Text' => '2.02', - 'Pod::Simple::TextContent'=> '2.02', - 'Pod::Simple::TiedOutFH'=> undef, - 'Pod::Simple::Transcode'=> undef, - 'Pod::Simple::TranscodeDumb'=> '2.02', - 'Pod::Simple::TranscodeSmart'=> undef, - 'Pod::Simple::XHTML' => '3.10', - 'Pod::Simple::XMLOutStream'=> '2.02', - 'Pod::Text' => '3.13', - 'Pod::Text::Color' => '2.05', - 'Pod::Text::Overstrike' => '2.03', - 'Pod::Text::Termcap' => '2.05', - 'Pod::Usage' => '1.36', - 'SDBM_File' => '1.06', - 'Safe' => '2.19', - 'Scalar::Util' => '1.22', - 'Scalar::Util::PP' => '1.22', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.02', - 'SelfLoader' => '1.17', - 'Shell' => '0.72_01', - 'Simple' => '0.01', - 'Socket' => '1.85', - 'Storable' => '2.22', - 'Switch' => '2.16', - 'Symbol' => '1.07', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.27', - 'Sys::Syslog::win32::Win32'=> undef, - 'TAP::Base' => '3.17', - 'TAP::Formatter::Base' => '3.17', - 'TAP::Formatter::Color' => '3.17', - 'TAP::Formatter::Console'=> '3.17', - 'TAP::Formatter::Console::ParallelSession'=> '3.17', - 'TAP::Formatter::Console::Session'=> '3.17', - 'TAP::Formatter::File' => '3.17', - 'TAP::Formatter::File::Session'=> '3.17', - 'TAP::Formatter::Session'=> '3.17', - 'TAP::Harness' => '3.17', - 'TAP::Object' => '3.17', - 'TAP::Parser' => '3.17', - 'TAP::Parser::Aggregator'=> '3.17', - 'TAP::Parser::Grammar' => '3.17', - 'TAP::Parser::Iterator' => '3.17', - 'TAP::Parser::Iterator::Array'=> '3.17', - 'TAP::Parser::Iterator::Process'=> '3.17', - 'TAP::Parser::Iterator::Stream'=> '3.17', - 'TAP::Parser::IteratorFactory'=> '3.17', - 'TAP::Parser::Multiplexer'=> '3.17', - 'TAP::Parser::Result' => '3.17', - 'TAP::Parser::Result::Bailout'=> '3.17', - 'TAP::Parser::Result::Comment'=> '3.17', - 'TAP::Parser::Result::Plan'=> '3.17', - 'TAP::Parser::Result::Pragma'=> '3.17', - 'TAP::Parser::Result::Test'=> '3.17', - 'TAP::Parser::Result::Unknown'=> '3.17', - 'TAP::Parser::Result::Version'=> '3.17', - 'TAP::Parser::Result::YAML'=> '3.17', - 'TAP::Parser::ResultFactory'=> '3.17', - 'TAP::Parser::Scheduler'=> '3.17', - 'TAP::Parser::Scheduler::Job'=> '3.17', - 'TAP::Parser::Scheduler::Spinner'=> '3.17', - 'TAP::Parser::Source' => '3.17', - 'TAP::Parser::Source::Perl'=> '3.17', - 'TAP::Parser::Utils' => '3.17', - 'TAP::Parser::YAMLish::Reader'=> '3.17', - 'TAP::Parser::YAMLish::Writer'=> '3.17', - 'Term::ANSIColor' => '2.02', - 'Term::Cap' => '1.12', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.05', - 'Term::UI' => '0.20', - 'Term::UI::History' => undef, - 'Test' => '1.25_02', - 'Test::Builder' => '0.94', - 'Test::Builder::Module' => '0.94', - 'Test::Builder::Tester' => '1.18', - 'Test::Builder::Tester::Color'=> '1.18', - 'Test::Harness' => '3.17', - 'Test::More' => '0.94', - 'Test::Simple' => '0.94', - 'Text::Abbrev' => '1.01', - '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.11', - 'Thread::Semaphore' => '2.09', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_02', - 'Tie::Handle' => '4.2', - 'Tie::Hash' => '1.03', - 'Tie::Hash::NamedCapture'=> '0.06', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.38', - 'Tie::Scalar' => '1.01', - 'Tie::StdHandle' => '4.2', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9719', - 'Time::Local' => '1.1901_01', - 'Time::Piece' => '1.15', - 'Time::Piece::Seconds' => undef, - 'Time::Seconds' => undef, - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.05', - 'Unicode' => '5.1.0', - 'Unicode::Collate' => '0.52_01', - 'Unicode::Normalize' => '1.03', - 'Unicode::UCD' => '0.27', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'VMS::DCLsym' => '1.03', - 'VMS::Stdio' => '2.4', - 'Win32' => '0.39', - 'Win32API::File' => '0.1101', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.17', - 'XS::APItest::KeywordRPN'=> '0.003', - 'XS::Typemap' => '0.03', - 'XSLoader' => '0.10', - 'XSLoader::XSLoader' => '0.10', - 'attributes' => '0.12', - 'autodie' => '2.06_01', - 'autodie::exception' => '2.06_01', - 'autodie::exception::system'=> '2.06_01', - 'autodie::hints' => '2.06_01', - 'autouse' => '1.06', - 'base' => '2.15', - 'bigint' => '0.23', - 'bignum' => '0.23', - 'bigrat' => '0.23', - 'blib' => '1.04', - 'bytes' => '1.03', - 'charnames' => '1.07', - 'constant' => '1.19', - 'deprecate' => '0.01', - 'diagnostics' => '1.18', - 'encoding' => '2.6_01', - 'encoding::warnings' => '0.11', - 'feature' => '1.13', - 'fields' => '2.15', - 'filetest' => '1.02', - 'if' => '0.05', - 'inc::latest' => '0.35_09', - 'integer' => '1.00', - 'legacy' => '1.00', - 'less' => '0.02', - 'lib' => '0.62', - 'locale' => '1.00', - 'mro' => '1.02', - 'open' => '1.07', - 'ops' => '1.02', - 'overload' => '1.10', - 'overload::numbers' => undef, - 'overloading' => '0.01', - 'parent' => '0.223', - 're' => '0.10', - 'sigtrap' => '1.04', - 'sort' => '2.01', - 'strict' => '1.04', - 'subs' => '1.00', - 'threads' => '1.74', - 'threads::shared' => '1.32', - 'utf8' => '1.07', - 'vars' => '1.01', - 'version' => '0.77', - 'vmsish' => '1.02', - 'warnings' => '1.07', - 'warnings::register' => '1.01', + delta_from => 5.011001, + changed => { + 'B::Concise' => '0.78', + 'B::Deparse' => '0.93', + 'CPANPLUS' => '0.89_09', + 'CPANPLUS::Dist::Build' => '0.44', + 'CPANPLUS::Dist::Build::Constants'=> '0.44', + 'CPANPLUS::Internals' => '0.89_09', + 'CPANPLUS::Shell::Default'=> '0.89_09', + 'Carp' => '1.14', + 'Carp::Heavy' => '1.14', + 'Compress::Zlib' => '2.022', + 'DBM_Filter' => '0.03', + 'Encode' => '2.38', + 'Encode::Byte' => '2.04', + 'Encode::CN' => '2.03', + 'Encode::JP' => '2.04', + 'Encode::KR' => '2.03', + 'Encode::TW' => '2.03', + 'Encode::Unicode' => '2.07', + 'Env' => '1.01', + 'Exporter' => '5.64_01', + 'Exporter::Heavy' => '5.64_01', + 'ExtUtils::CBuilder' => '0.27', + 'ExtUtils::CBuilder::Base'=> '0.27', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.27', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.27', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.27', + 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27', + 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27', + 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27', + 'ExtUtils::CBuilder::Platform::aix'=> '0.27', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.27', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27', + 'ExtUtils::CBuilder::Platform::os2'=> '0.27', + 'File::Fetch' => '0.22', + 'I18N::LangTags::Detect'=> '1.04', + 'I18N::Langinfo' => '0.03', + 'IO::Compress::Adapter::Bzip2'=> '2.022', + 'IO::Compress::Adapter::Deflate'=> '2.022', + 'IO::Compress::Adapter::Identity'=> '2.022', + 'IO::Compress::Base' => '2.022', + 'IO::Compress::Base::Common'=> '2.022', + 'IO::Compress::Bzip2' => '2.022', + 'IO::Compress::Deflate' => '2.022', + 'IO::Compress::Gzip' => '2.022', + 'IO::Compress::Gzip::Constants'=> '2.022', + 'IO::Compress::RawDeflate'=> '2.022', + 'IO::Compress::Zip' => '2.022', + 'IO::Compress::Zip::Constants'=> '2.022', + 'IO::Compress::Zlib::Constants'=> '2.022', + 'IO::Compress::Zlib::Extra'=> '2.022', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.022', + 'IO::Uncompress::Adapter::Identity'=> '2.022', + 'IO::Uncompress::Adapter::Inflate'=> '2.022', + 'IO::Uncompress::AnyInflate'=> '2.022', + 'IO::Uncompress::AnyUncompress'=> '2.022', + 'IO::Uncompress::Base' => '2.022', + 'IO::Uncompress::Bunzip2'=> '2.022', + 'IO::Uncompress::Gunzip'=> '2.022', + 'IO::Uncompress::Inflate'=> '2.022', + 'IO::Uncompress::RawInflate'=> '2.022', + 'IO::Uncompress::Unzip' => '2.022', + 'IPC::Cmd' => '0.54', + 'List::Util' => '1.22', + 'List::Util::PP' => '1.22', + 'List::Util::XS' => '1.22', + 'Locale::Maketext' => '1.14', + 'Module::Build' => '0.35_09', + 'Module::Build::Base' => '0.35_09', + 'Module::Build::Compat' => '0.35_09', + 'Module::Build::Config' => '0.35_09', + 'Module::Build::Cookbook'=> '0.35_09', + 'Module::Build::Dumper' => '0.35_09', + 'Module::Build::ModuleInfo'=> '0.35_09', + 'Module::Build::Notes' => '0.35_09', + 'Module::Build::PPMMaker'=> '0.35_09', + 'Module::Build::Platform::Amiga'=> '0.35_09', + 'Module::Build::Platform::Default'=> '0.35_09', + 'Module::Build::Platform::EBCDIC'=> '0.35_09', + 'Module::Build::Platform::MPEiX'=> '0.35_09', + 'Module::Build::Platform::MacOS'=> '0.35_09', + 'Module::Build::Platform::RiscOS'=> '0.35_09', + 'Module::Build::Platform::Unix'=> '0.35_09', + 'Module::Build::Platform::VMS'=> '0.35_09', + 'Module::Build::Platform::VOS'=> '0.35_09', + 'Module::Build::Platform::Windows'=> '0.35_09', + 'Module::Build::Platform::aix'=> '0.35_09', + 'Module::Build::Platform::cygwin'=> '0.35_09', + 'Module::Build::Platform::darwin'=> '0.35_09', + 'Module::Build::Platform::os2'=> '0.35_09', + 'Module::Build::PodParser'=> '0.35_09', + 'Module::Build::YAML' => '1.40', + 'Module::CoreList' => '2.23', + 'Module::Load::Conditional'=> '0.34', + 'Pod::Simple' => '3.10', + 'Pod::Simple::XHTML' => '3.10', + 'Scalar::Util' => '1.22', + 'Scalar::Util::PP' => '1.22', + 'Switch' => '2.16', + 'XS::APItest' => '0.17', + 'XS::APItest::KeywordRPN'=> '0.003', + 'base' => '2.15', + 'diagnostics' => '1.18', + 'fields' => '2.15', + 'inc::latest' => '0.35_09', + 'legacy' => '1.00', + 'overload' => '1.10', + }, + removed => { + } }, 5.011003 => { - 'AnyDBM_File' => '1.00', - 'App::Cpan' => '1.570001', - 'App::Prove' => '3.17', - 'App::Prove::State' => '3.17', - 'App::Prove::State::Result'=> '3.17', - 'App::Prove::State::Result::Test'=> '3.17', - 'Archive::Extract' => '0.36', - 'Archive::Tar' => '1.54', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.87', - 'AutoLoader' => '5.70', - 'AutoSplit' => '1.06', - 'B' => '1.23', - 'B::Concise' => '0.78', - 'B::Debug' => '1.11', - 'B::Deparse' => '0.93', - 'B::Lint' => '1.11_01', - 'B::Lint::Debug' => '0.01', - 'B::Showlex' => '1.02', - 'B::Terse' => '1.05', - 'B::Xref' => '1.02', - 'Benchmark' => '1.11', - 'CGI' => '3.48', - 'CGI::Apache' => '1.01', - 'CGI::Carp' => '3.45', - 'CGI::Cookie' => '1.29', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '3.46', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.01', - 'CGI::Util' => '3.48', - 'CPAN' => '1.94_5301', - 'CPAN::Author' => '5.5', - 'CPAN::Bundle' => '5.5', - 'CPAN::CacheMgr' => '5.5', - 'CPAN::Complete' => '5.5', - 'CPAN::Debug' => '5.5', - 'CPAN::DeferredCode' => '5.50', - 'CPAN::Distribution' => '1.94', - 'CPAN::Distroprefs' => '6', - 'CPAN::Distrostatus' => '5.5', - 'CPAN::Exception::RecursiveDependency'=> '5.5', - 'CPAN::Exception::blocked_urllist'=> '1.0', - 'CPAN::Exception::yaml_not_installed'=> '5.5', - 'CPAN::FTP' => '5.5004', - 'CPAN::FTP::netrc' => '1.00', - 'CPAN::FirstTime' => '5.530001', - 'CPAN::HandleConfig' => '5.5', - 'CPAN::Index' => '1.94', - 'CPAN::InfoObj' => '5.5', - 'CPAN::Kwalify' => '5.50', - 'CPAN::LWP::UserAgent' => '1.94', - 'CPAN::Mirrors' => '1.770001', - 'CPAN::Module' => '5.5', - 'CPAN::Nox' => '5.50', - 'CPAN::Prompt' => '5.5', - 'CPAN::Queue' => '5.5', - 'CPAN::Shell' => '5.5', - 'CPAN::Tarzip' => '5.501', - 'CPAN::URL' => '5.5', - 'CPAN::Version' => '5.5', - 'CPANPLUS' => '0.90', - '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.44', - 'CPANPLUS::Dist::Build::Constants'=> '0.44', - 'CPANPLUS::Dist::MM' => undef, - 'CPANPLUS::Dist::Sample'=> undef, - 'CPANPLUS::Error' => undef, - 'CPANPLUS::Internals' => '0.90', - '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.90', - 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'Carp' => '1.14', - 'Carp::Heavy' => '1.14', - 'Class::ISA' => '0.36', - 'Class::Struct' => '0.63', - 'Compress::Raw::Bzip2' => '2.021', - 'Compress::Raw::Zlib' => '2.021', - 'Compress::Zlib' => '2.022', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.31', - 'DB' => '1.02', - 'DBM_Filter' => '0.03', - '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.820', - 'Data::Dumper' => '2.125', - 'Devel::DProf' => '20080331.00', - 'Devel::DProf::V' => undef, - 'Devel::DProf::dprof::V'=> undef, - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.19', - 'Devel::Peek' => '1.04', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.16', - 'Digest::MD5' => '2.39', - 'Digest::SHA' => '5.47', - 'Digest::base' => '1.16', - 'Digest::file' => '1.16', - 'DirHandle' => '1.03', - 'Dumpvalue' => '1.13', - 'DynaLoader' => '1.10', - 'Encode' => '2.39', - 'Encode::Alias' => '2.12', - '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.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.01', - 'Encode::Guess' => '2.03', - '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.11', - '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.04', - 'English' => '1.04', - 'Env' => '1.01', - 'Errno' => '1.11', - 'Exporter' => '5.64_01', - 'Exporter::Heavy' => '5.64_01', - 'ExtUtils::CBuilder' => '0.27', - 'ExtUtils::CBuilder::Base'=> '0.27', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.27', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27', - 'ExtUtils::CBuilder::Platform::aix'=> '0.27', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.27', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27', - 'ExtUtils::CBuilder::Platform::os2'=> '0.27', - 'ExtUtils::Command' => '1.16', - 'ExtUtils::Command::MM' => '6.56', - 'ExtUtils::Constant' => '0.22', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.06', - 'ExtUtils::Constant::Utils'=> '0.02', - 'ExtUtils::Constant::XS'=> '0.03', - 'ExtUtils::Embed' => '1.28', - 'ExtUtils::Install' => '1.55', - 'ExtUtils::Installed' => '1.999_001', - 'ExtUtils::Liblist' => '6.56', - 'ExtUtils::Liblist::Kid'=> '6.56', - 'ExtUtils::MM' => '6.56', - 'ExtUtils::MM_AIX' => '6.56', - 'ExtUtils::MM_Any' => '6.56', - 'ExtUtils::MM_BeOS' => '6.56', - 'ExtUtils::MM_Cygwin' => '6.56', - 'ExtUtils::MM_DOS' => '6.56', - 'ExtUtils::MM_Darwin' => '6.56', - 'ExtUtils::MM_MacOS' => '6.56', - 'ExtUtils::MM_NW5' => '6.56', - 'ExtUtils::MM_OS2' => '6.56', - 'ExtUtils::MM_QNX' => '6.56', - 'ExtUtils::MM_UWIN' => '6.56', - 'ExtUtils::MM_Unix' => '6.56', - 'ExtUtils::MM_VMS' => '6.56', - 'ExtUtils::MM_VOS' => '6.56', - 'ExtUtils::MM_Win32' => '6.56', - 'ExtUtils::MM_Win95' => '6.56', - 'ExtUtils::MY' => '6.56', - 'ExtUtils::MakeMaker' => '6.56', - 'ExtUtils::MakeMaker::Config'=> '6.56', - 'ExtUtils::Manifest' => '1.57', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '6.56', - 'ExtUtils::Mksymlists' => '6.56', - 'ExtUtils::Packlist' => '1.44', - 'ExtUtils::ParseXS' => '2.21', - 'ExtUtils::XSSymSet' => '1.1', - 'ExtUtils::testlib' => '6.56', - 'Fatal' => '2.06_01', - 'Fcntl' => '1.06', - 'File::Basename' => '2.78', - 'File::CheckTree' => '4.4', - 'File::Compare' => '1.1006', - 'File::Copy' => '2.16', - 'File::DosGlob' => '1.01', - 'File::Fetch' => '0.22', - 'File::Find' => '1.15', - 'File::Glob' => '1.07', - 'File::GlobMapper' => '1.000', - 'File::Path' => '2.08_01', - 'File::Spec' => '3.31', - 'File::Spec::Cygwin' => '3.30', - 'File::Spec::Epoc' => '3.30', - 'File::Spec::Functions' => '3.30', - 'File::Spec::Mac' => '3.30', - 'File::Spec::OS2' => '3.30', - 'File::Spec::Unix' => '3.30', - 'File::Spec::VMS' => '3.30', - 'File::Spec::Win32' => '3.30', - 'File::Temp' => '0.22', - 'File::stat' => '1.02', - 'FileCache' => '1.08', - 'FileHandle' => '2.02', - 'Filespec' => '1.12', - 'Filter::Simple' => '0.84', - 'Filter::Util::Call' => '1.08', - 'FindBin' => '1.50', - 'GDBM_File' => '1.09', - 'Getopt::Long' => '2.38', - 'Getopt::Std' => '1.06', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '1.04', - 'I18N::Collate' => '1.01', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.04', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.03', - 'IO' => '1.25_02', - 'IO::Compress::Adapter::Bzip2'=> '2.022', - 'IO::Compress::Adapter::Deflate'=> '2.022', - 'IO::Compress::Adapter::Identity'=> '2.022', - 'IO::Compress::Base' => '2.022', - 'IO::Compress::Base::Common'=> '2.022', - 'IO::Compress::Bzip2' => '2.022', - 'IO::Compress::Deflate' => '2.022', - 'IO::Compress::Gzip' => '2.022', - 'IO::Compress::Gzip::Constants'=> '2.022', - 'IO::Compress::RawDeflate'=> '2.022', - 'IO::Compress::Zip' => '2.022', - 'IO::Compress::Zip::Constants'=> '2.022', - 'IO::Compress::Zlib::Constants'=> '2.022', - 'IO::Compress::Zlib::Extra'=> '2.022', - 'IO::Dir' => '1.07', - 'IO::File' => '1.14', - 'IO::Handle' => '1.28', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.31', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Bunzip2'=> '2.022', - 'IO::Uncompress::Adapter::Identity'=> '2.022', - 'IO::Uncompress::Adapter::Inflate'=> '2.022', - 'IO::Uncompress::AnyInflate'=> '2.022', - 'IO::Uncompress::AnyUncompress'=> '2.022', - 'IO::Uncompress::Base' => '2.022', - 'IO::Uncompress::Bunzip2'=> '2.022', - 'IO::Uncompress::Gunzip'=> '2.022', - 'IO::Uncompress::Inflate'=> '2.022', - 'IO::Uncompress::RawInflate'=> '2.022', - 'IO::Uncompress::Unzip' => '2.022', - 'IO::Zlib' => '1.10', - 'IPC::Cmd' => '0.54', - 'IPC::Msg' => '2.01', - 'IPC::Open2' => '1.03', - 'IPC::Open3' => '1.05', - 'IPC::Semaphore' => '2.01', - 'IPC::SharedMem' => '2.01', - 'IPC::SysV' => '2.01', - 'List::Util' => '1.22', - 'List::Util::PP' => '1.22', - 'List::Util::XS' => '1.22', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.14', - 'Locale::Maketext::Guts'=> '1.13', - 'Locale::Maketext::GutsLoader'=> '1.13', - 'Locale::Maketext::Simple'=> '0.21', - 'Locale::Script' => '2.07', - 'Log::Message' => '0.02', - 'Log::Message::Config' => '0.01', - 'Log::Message::Handlers'=> undef, - 'Log::Message::Item' => undef, - 'Log::Message::Simple' => '0.06', - 'MIME::Base64' => '3.08', - 'MIME::QuotedPrint' => '3.08', - 'Math::BigFloat' => '1.60', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.89_01', - 'Math::BigInt::Calc' => '0.52', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.19', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.24', - 'Math::Complex' => '1.56', - 'Math::Trig' => '1.2', - 'Memoize' => '1.01_03', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.36', - 'Module::Build::Base' => '0.36', - 'Module::Build::Compat' => '0.36', - 'Module::Build::Config' => '0.36', - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> '0.36', - 'Module::Build::Dumper' => '0.36', - 'Module::Build::ModuleInfo'=> '0.36', - 'Module::Build::Notes' => '0.36', - 'Module::Build::PPMMaker'=> '0.36', - 'Module::Build::Platform::Amiga'=> '0.36', - 'Module::Build::Platform::Default'=> '0.36', - 'Module::Build::Platform::EBCDIC'=> '0.36', - 'Module::Build::Platform::MPEiX'=> '0.36', - 'Module::Build::Platform::MacOS'=> '0.36', - 'Module::Build::Platform::RiscOS'=> '0.36', - 'Module::Build::Platform::Unix'=> '0.36', - 'Module::Build::Platform::VMS'=> '0.36', - 'Module::Build::Platform::VOS'=> '0.36', - 'Module::Build::Platform::Windows'=> '0.36', - 'Module::Build::Platform::aix'=> '0.36', - 'Module::Build::Platform::cygwin'=> '0.36', - 'Module::Build::Platform::darwin'=> '0.36', - 'Module::Build::Platform::os2'=> '0.36', - 'Module::Build::PodParser'=> '0.36', - 'Module::Build::Version'=> '0.77', - 'Module::Build::YAML' => '1.40', - 'Module::CoreList' => '2.24', - 'Module::Load' => '0.16', - 'Module::Load::Conditional'=> '0.34', - 'Module::Loaded' => '0.06', - 'Module::Pluggable' => '3.9', - 'Module::Pluggable::Object'=> '3.9', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.08', - 'NEXT' => '0.64', - '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.36', - '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.07', - 'Object::Accessor' => '0.36', - 'Opcode' => '1.15', - 'POSIX' => '1.19', - 'Package::Constants' => '0.02', - 'Params::Check' => '0.26', - 'Parse::CPAN::Meta' => '1.40', - 'PerlIO' => '1.06', - 'PerlIO::encoding' => '0.11', - 'PerlIO::scalar' => '0.07', - 'PerlIO::via' => '0.09', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.45', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.35', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.09', - 'Pod::InputObjects' => '1.31', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.22', - 'Pod::ParseLink' => '1.09', - 'Pod::ParseUtils' => '1.36', - 'Pod::Parser' => '1.37', - 'Pod::Perldoc' => '3.15_01', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.04', - 'Pod::Plainer' => '1.01', - 'Pod::Select' => '1.36', - 'Pod::Simple' => '3.13', - 'Pod::Simple::BlackBox' => '3.13', - 'Pod::Simple::Checker' => '3.13', - 'Pod::Simple::Debug' => '3.13', - 'Pod::Simple::DumpAsText'=> '3.13', - 'Pod::Simple::DumpAsXML'=> '3.13', - 'Pod::Simple::HTML' => '3.13', - 'Pod::Simple::HTMLBatch'=> '3.13', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> '3.13', - 'Pod::Simple::Methody' => '3.13', - 'Pod::Simple::Progress' => '3.13', - 'Pod::Simple::PullParser'=> '3.13', - 'Pod::Simple::PullParserEndToken'=> '3.13', - 'Pod::Simple::PullParserStartToken'=> '3.13', - 'Pod::Simple::PullParserTextToken'=> '3.13', - 'Pod::Simple::PullParserToken'=> '3.13', - 'Pod::Simple::RTF' => '3.13', - 'Pod::Simple::Search' => '3.13', - 'Pod::Simple::SimpleTree'=> '3.13', - 'Pod::Simple::Text' => '3.13', - 'Pod::Simple::TextContent'=> '3.13', - 'Pod::Simple::TiedOutFH'=> '3.13', - 'Pod::Simple::Transcode'=> '3.13', - 'Pod::Simple::TranscodeDumb'=> '3.13', - 'Pod::Simple::TranscodeSmart'=> '3.13', - 'Pod::Simple::XHTML' => '3.13', - 'Pod::Simple::XMLOutStream'=> '3.13', - 'Pod::Text' => '3.13', - 'Pod::Text::Color' => '2.05', - 'Pod::Text::Overstrike' => '2.03', - 'Pod::Text::Termcap' => '2.05', - 'Pod::Usage' => '1.36', - 'SDBM_File' => '1.06', - 'Safe' => '2.20', - 'Scalar::Util' => '1.22', - 'Scalar::Util::PP' => '1.22', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.02', - 'SelfLoader' => '1.17', - 'Shell' => '0.72_01', - 'Socket' => '1.85', - 'Storable' => '2.22', - 'Switch' => '2.16', - 'Symbol' => '1.07', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.27', - 'Sys::Syslog::win32::Win32'=> undef, - 'TAP::Base' => '3.17', - 'TAP::Formatter::Base' => '3.17', - 'TAP::Formatter::Color' => '3.17', - 'TAP::Formatter::Console'=> '3.17', - 'TAP::Formatter::Console::ParallelSession'=> '3.17', - 'TAP::Formatter::Console::Session'=> '3.17', - 'TAP::Formatter::File' => '3.17', - 'TAP::Formatter::File::Session'=> '3.17', - 'TAP::Formatter::Session'=> '3.17', - 'TAP::Harness' => '3.17', - 'TAP::Object' => '3.17', - 'TAP::Parser' => '3.17', - 'TAP::Parser::Aggregator'=> '3.17', - 'TAP::Parser::Grammar' => '3.17', - 'TAP::Parser::Iterator' => '3.17', - 'TAP::Parser::Iterator::Array'=> '3.17', - 'TAP::Parser::Iterator::Process'=> '3.17', - 'TAP::Parser::Iterator::Stream'=> '3.17', - 'TAP::Parser::IteratorFactory'=> '3.17', - 'TAP::Parser::Multiplexer'=> '3.17', - 'TAP::Parser::Result' => '3.17', - 'TAP::Parser::Result::Bailout'=> '3.17', - 'TAP::Parser::Result::Comment'=> '3.17', - 'TAP::Parser::Result::Plan'=> '3.17', - 'TAP::Parser::Result::Pragma'=> '3.17', - 'TAP::Parser::Result::Test'=> '3.17', - 'TAP::Parser::Result::Unknown'=> '3.17', - 'TAP::Parser::Result::Version'=> '3.17', - 'TAP::Parser::Result::YAML'=> '3.17', - 'TAP::Parser::ResultFactory'=> '3.17', - 'TAP::Parser::Scheduler'=> '3.17', - 'TAP::Parser::Scheduler::Job'=> '3.17', - 'TAP::Parser::Scheduler::Spinner'=> '3.17', - 'TAP::Parser::Source' => '3.17', - 'TAP::Parser::Source::Perl'=> '3.17', - 'TAP::Parser::Utils' => '3.17', - 'TAP::Parser::YAMLish::Reader'=> '3.17', - 'TAP::Parser::YAMLish::Writer'=> '3.17', - 'Term::ANSIColor' => '2.02', - 'Term::Cap' => '1.12', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.05', - 'Term::UI' => '0.20', - 'Term::UI::History' => undef, - 'Test' => '1.25_02', - 'Test::Builder' => '0.94', - 'Test::Builder::Module' => '0.94', - 'Test::Builder::Tester' => '1.18', - 'Test::Builder::Tester::Color'=> '1.18', - 'Test::Harness' => '3.17', - 'Test::More' => '0.94', - 'Test::Simple' => '0.94', - 'Text::Abbrev' => '1.01', - '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.11', - 'Thread::Semaphore' => '2.09', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_02', - 'Tie::Handle' => '4.2', - 'Tie::Hash' => '1.03', - 'Tie::Hash::NamedCapture'=> '0.06', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.38', - 'Tie::Scalar' => '1.01', - 'Tie::StdHandle' => '4.2', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9719', - 'Time::Local' => '1.1901_01', - 'Time::Piece' => '1.15', - 'Time::Piece::Seconds' => undef, - 'Time::Seconds' => undef, - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.05', - 'Unicode' => '5.2.0', - 'Unicode::Collate' => '0.52_01', - 'Unicode::Normalize' => '1.03', - 'Unicode::UCD' => '0.27', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'VMS::DCLsym' => '1.03', - 'VMS::Stdio' => '2.4', - 'Win32' => '0.39', - 'Win32API::File' => '0.1101', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.17', - 'XS::APItest::KeywordRPN'=> '0.003', - 'XS::Typemap' => '0.03', - 'XSLoader' => '0.10', - 'XSLoader::XSLoader' => '0.10', - 'attributes' => '0.12', - 'autodie' => '2.06_01', - 'autodie::exception' => '2.06_01', - 'autodie::exception::system'=> '2.06_01', - 'autodie::hints' => '2.06_01', - 'autouse' => '1.06', - 'base' => '2.15', - 'bigint' => '0.23', - 'bignum' => '0.23', - 'bigrat' => '0.23', - 'blib' => '1.04', - 'bytes' => '1.03', - 'charnames' => '1.07', - 'constant' => '1.20', - 'deprecate' => '0.01', - 'diagnostics' => '1.19', - 'encoding' => '2.6_01', - 'encoding::warnings' => '0.11', - 'feature' => '1.14', - 'fields' => '2.15', - 'filetest' => '1.02', - 'if' => '0.05', - 'inc::latest' => '0.36', - 'integer' => '1.00', - 'less' => '0.02', - 'lib' => '0.62', - 'locale' => '1.00', - 'mro' => '1.02', - 'open' => '1.07', - 'ops' => '1.02', - 'overload' => '1.10', - 'overload::numbers' => undef, - 'overloading' => '0.01', - 'parent' => '0.223', - 're' => '0.10', - 'sigtrap' => '1.04', - 'sort' => '2.01', - 'strict' => '1.04', - 'subs' => '1.00', - 'threads' => '1.75', - 'threads::shared' => '1.32', - 'utf8' => '1.07', - 'vars' => '1.01', - 'version' => '0.77', - 'vmsish' => '1.02', - 'warnings' => '1.08', - 'warnings::register' => '1.01', + delta_from => 5.011002, + changed => { + 'App::Cpan' => '1.570001', + 'Archive::Extract' => '0.36', + 'CPAN' => '1.94_5301', + 'CPAN::FTP' => '5.5004', + 'CPAN::FirstTime' => '5.530001', + 'CPAN::Mirrors' => '1.770001', + 'CPANPLUS' => '0.90', + 'CPANPLUS::Internals' => '0.90', + 'CPANPLUS::Shell::Default'=> '0.90', + 'Cwd' => '3.31', + 'Encode' => '2.39', + 'ExtUtils::Command::MM' => '6.56', + 'ExtUtils::Liblist' => '6.56', + 'ExtUtils::Liblist::Kid'=> '6.56', + 'ExtUtils::MM' => '6.56', + 'ExtUtils::MM_AIX' => '6.56', + 'ExtUtils::MM_Any' => '6.56', + 'ExtUtils::MM_BeOS' => '6.56', + 'ExtUtils::MM_Cygwin' => '6.56', + 'ExtUtils::MM_DOS' => '6.56', + 'ExtUtils::MM_Darwin' => '6.56', + 'ExtUtils::MM_MacOS' => '6.56', + 'ExtUtils::MM_NW5' => '6.56', + 'ExtUtils::MM_OS2' => '6.56', + 'ExtUtils::MM_QNX' => '6.56', + 'ExtUtils::MM_UWIN' => '6.56', + 'ExtUtils::MM_Unix' => '6.56', + 'ExtUtils::MM_VMS' => '6.56', + 'ExtUtils::MM_VOS' => '6.56', + 'ExtUtils::MM_Win32' => '6.56', + 'ExtUtils::MM_Win95' => '6.56', + 'ExtUtils::MY' => '6.56', + 'ExtUtils::MakeMaker' => '6.56', + 'ExtUtils::MakeMaker::Config'=> '6.56', + 'ExtUtils::Mkbootstrap' => '6.56', + 'ExtUtils::Mksymlists' => '6.56', + 'ExtUtils::testlib' => '6.56', + 'File::Find' => '1.15', + 'File::Path' => '2.08_01', + 'File::Spec' => '3.31', + 'Module::Build' => '0.36', + 'Module::Build::Base' => '0.36', + 'Module::Build::Compat' => '0.36', + 'Module::Build::Config' => '0.36', + 'Module::Build::Cookbook'=> '0.36', + 'Module::Build::Dumper' => '0.36', + 'Module::Build::ModuleInfo'=> '0.36', + 'Module::Build::Notes' => '0.36', + 'Module::Build::PPMMaker'=> '0.36', + 'Module::Build::Platform::Amiga'=> '0.36', + 'Module::Build::Platform::Default'=> '0.36', + 'Module::Build::Platform::EBCDIC'=> '0.36', + 'Module::Build::Platform::MPEiX'=> '0.36', + 'Module::Build::Platform::MacOS'=> '0.36', + 'Module::Build::Platform::RiscOS'=> '0.36', + 'Module::Build::Platform::Unix'=> '0.36', + 'Module::Build::Platform::VMS'=> '0.36', + 'Module::Build::Platform::VOS'=> '0.36', + 'Module::Build::Platform::Windows'=> '0.36', + 'Module::Build::Platform::aix'=> '0.36', + 'Module::Build::Platform::cygwin'=> '0.36', + 'Module::Build::Platform::darwin'=> '0.36', + 'Module::Build::Platform::os2'=> '0.36', + 'Module::Build::PodParser'=> '0.36', + 'Module::CoreList' => '2.24', + 'POSIX' => '1.19', + 'Pod::Simple' => '3.13', + 'Pod::Simple::BlackBox' => '3.13', + 'Pod::Simple::Checker' => '3.13', + 'Pod::Simple::Debug' => '3.13', + 'Pod::Simple::DumpAsText'=> '3.13', + 'Pod::Simple::DumpAsXML'=> '3.13', + 'Pod::Simple::HTML' => '3.13', + 'Pod::Simple::HTMLBatch'=> '3.13', + 'Pod::Simple::LinkSection'=> '3.13', + 'Pod::Simple::Methody' => '3.13', + 'Pod::Simple::Progress' => '3.13', + 'Pod::Simple::PullParser'=> '3.13', + 'Pod::Simple::PullParserEndToken'=> '3.13', + 'Pod::Simple::PullParserStartToken'=> '3.13', + 'Pod::Simple::PullParserTextToken'=> '3.13', + 'Pod::Simple::PullParserToken'=> '3.13', + 'Pod::Simple::RTF' => '3.13', + 'Pod::Simple::Search' => '3.13', + 'Pod::Simple::SimpleTree'=> '3.13', + 'Pod::Simple::Text' => '3.13', + 'Pod::Simple::TextContent'=> '3.13', + 'Pod::Simple::TiedOutFH'=> '3.13', + 'Pod::Simple::Transcode'=> '3.13', + 'Pod::Simple::TranscodeDumb'=> '3.13', + 'Pod::Simple::TranscodeSmart'=> '3.13', + 'Pod::Simple::XHTML' => '3.13', + 'Pod::Simple::XMLOutStream'=> '3.13', + 'Safe' => '2.20', + 'Unicode' => '5.2.0', + 'constant' => '1.20', + 'diagnostics' => '1.19', + 'feature' => '1.14', + 'inc::latest' => '0.36', + 'threads' => '1.75', + 'warnings' => '1.08', + }, + removed => { + 'legacy' => 1, + } }, 5.011004 => { - 'AnyDBM_File' => '1.00', - 'App::Cpan' => '1.5701', - 'App::Prove' => '3.17', - 'App::Prove::State' => '3.17', - 'App::Prove::State::Result'=> '3.17', - 'App::Prove::State::Result::Test'=> '3.17', - 'Archive::Extract' => '0.38', - 'Archive::Tar' => '1.54', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.87', - 'AutoLoader' => '5.70', - 'AutoSplit' => '1.06', - 'B' => '1.23', - 'B::Concise' => '0.78', - 'B::Debug' => '1.11', - 'B::Deparse' => '0.94', - 'B::Lint' => '1.11_01', - 'B::Lint::Debug' => '0.01', - 'B::Showlex' => '1.02', - 'B::Terse' => '1.05', - 'B::Xref' => '1.02', - 'Benchmark' => '1.11', - 'CGI' => '3.48', - 'CGI::Apache' => '1.01', - 'CGI::Carp' => '3.45', - 'CGI::Cookie' => '1.29', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '3.46', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.01', - 'CGI::Util' => '3.48', - 'CPAN' => '1.94_54', - 'CPAN::Author' => '5.5', - 'CPAN::Bundle' => '5.5', - 'CPAN::CacheMgr' => '5.5', - 'CPAN::Complete' => '5.5', - 'CPAN::Debug' => '5.5', - 'CPAN::DeferredCode' => '5.50', - 'CPAN::Distribution' => '1.94', - 'CPAN::Distroprefs' => '6', - 'CPAN::Distrostatus' => '5.5', - 'CPAN::Exception::RecursiveDependency'=> '5.5', - 'CPAN::Exception::blocked_urllist'=> '1.0', - 'CPAN::Exception::yaml_not_installed'=> '5.5', - 'CPAN::FTP' => '5.5004', - 'CPAN::FTP::netrc' => '1.00', - 'CPAN::FirstTime' => '5.53', - 'CPAN::HandleConfig' => '5.5', - 'CPAN::Index' => '1.94', - 'CPAN::InfoObj' => '5.5', - 'CPAN::Kwalify' => '5.50', - 'CPAN::LWP::UserAgent' => '1.94', - 'CPAN::Mirrors' => '1.77', - 'CPAN::Module' => '5.5', - 'CPAN::Nox' => '5.50', - 'CPAN::Prompt' => '5.5', - 'CPAN::Queue' => '5.5', - 'CPAN::Shell' => '5.5', - 'CPAN::Tarzip' => '5.501', - 'CPAN::URL' => '5.5', - 'CPAN::Version' => '5.5', - 'CPANPLUS' => '0.90', - '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.44', - 'CPANPLUS::Dist::Build::Constants'=> '0.44', - 'CPANPLUS::Dist::MM' => undef, - 'CPANPLUS::Dist::Sample'=> undef, - 'CPANPLUS::Error' => undef, - 'CPANPLUS::Internals' => '0.90', - '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.90', - 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'Carp' => '1.15', - 'Carp::Heavy' => '1.15', - 'Class::ISA' => '0.36', - 'Class::Struct' => '0.63', - 'Compress::Raw::Bzip2' => '2.024', - 'Compress::Raw::Zlib' => '2.024', - 'Compress::Zlib' => '2.024', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.31', - 'DB' => '1.02', - 'DBM_Filter' => '0.03', - '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.820', - 'Data::Dumper' => '2.125', - 'Devel::DProf' => '20080331.00', - 'Devel::DProf::dprof::V'=> undef, - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.19', - 'Devel::Peek' => '1.04', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.16', - 'Digest::MD5' => '2.39', - 'Digest::SHA' => '5.47', - 'Digest::base' => '1.16', - 'Digest::file' => '1.16', - 'DirHandle' => '1.03', - 'Dumpvalue' => '1.13', - 'DynaLoader' => '1.10', - 'Encode' => '2.39', - 'Encode::Alias' => '2.12', - '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.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.01', - 'Encode::Guess' => '2.03', - '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.11', - '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.04', - 'English' => '1.04', - 'Env' => '1.01', - 'Errno' => '1.11', - 'Exporter' => '5.64_01', - 'Exporter::Heavy' => '5.64_01', - 'ExtUtils::CBuilder' => '0.27', - 'ExtUtils::CBuilder::Base'=> '0.27', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.27', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27', - 'ExtUtils::CBuilder::Platform::aix'=> '0.27', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.27', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27', - 'ExtUtils::CBuilder::Platform::os2'=> '0.27', - 'ExtUtils::Command' => '1.16', - 'ExtUtils::Command::MM' => '6.56', - 'ExtUtils::Constant' => '0.22', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.06', - 'ExtUtils::Constant::Utils'=> '0.02', - 'ExtUtils::Constant::XS'=> '0.03', - 'ExtUtils::Embed' => '1.28', - 'ExtUtils::Install' => '1.55', - 'ExtUtils::Installed' => '1.999_001', - 'ExtUtils::Liblist' => '6.56', - 'ExtUtils::Liblist::Kid'=> '6.56', - 'ExtUtils::MM' => '6.56', - 'ExtUtils::MM_AIX' => '6.56', - 'ExtUtils::MM_Any' => '6.56', - 'ExtUtils::MM_BeOS' => '6.56', - 'ExtUtils::MM_Cygwin' => '6.56', - 'ExtUtils::MM_DOS' => '6.56', - 'ExtUtils::MM_Darwin' => '6.56', - 'ExtUtils::MM_MacOS' => '6.56', - 'ExtUtils::MM_NW5' => '6.56', - 'ExtUtils::MM_OS2' => '6.56', - 'ExtUtils::MM_QNX' => '6.56', - 'ExtUtils::MM_UWIN' => '6.56', - 'ExtUtils::MM_Unix' => '6.56', - 'ExtUtils::MM_VMS' => '6.56', - 'ExtUtils::MM_VOS' => '6.56', - 'ExtUtils::MM_Win32' => '6.56', - 'ExtUtils::MM_Win95' => '6.56', - 'ExtUtils::MY' => '6.56', - 'ExtUtils::MakeMaker' => '6.56', - 'ExtUtils::MakeMaker::Config'=> '6.56', - 'ExtUtils::Manifest' => '1.57', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '6.56', - 'ExtUtils::Mksymlists' => '6.56', - 'ExtUtils::Packlist' => '1.44', - 'ExtUtils::ParseXS' => '2.21', - 'ExtUtils::XSSymSet' => '1.1', - 'ExtUtils::testlib' => '6.56', - 'Fatal' => '2.06_01', - 'Fcntl' => '1.06', - 'File::Basename' => '2.78', - 'File::CheckTree' => '4.4', - 'File::Compare' => '1.1006', - 'File::Copy' => '2.17', - 'File::DosGlob' => '1.01', - 'File::Fetch' => '0.24', - 'File::Find' => '1.15', - 'File::Glob' => '1.07', - 'File::GlobMapper' => '1.000', - 'File::Path' => '2.08_01', - 'File::Spec' => '3.31', - 'File::Spec::Cygwin' => '3.30', - 'File::Spec::Epoc' => '3.30', - 'File::Spec::Functions' => '3.30', - 'File::Spec::Mac' => '3.30', - 'File::Spec::OS2' => '3.30', - 'File::Spec::Unix' => '3.30', - 'File::Spec::VMS' => '3.30', - 'File::Spec::Win32' => '3.30', - 'File::Temp' => '0.22', - 'File::stat' => '1.02', - 'FileCache' => '1.08', - 'FileHandle' => '2.02', - 'Filespec' => '1.12', - 'Filter::Simple' => '0.84', - 'Filter::Util::Call' => '1.08', - 'FindBin' => '1.50', - 'GDBM_File' => '1.10', - 'Getopt::Long' => '2.38', - 'Getopt::Std' => '1.06', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '1.04', - 'I18N::Collate' => '1.01', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.04', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.03', - 'IO' => '1.25_02', - 'IO::Compress::Adapter::Bzip2'=> '2.024', - 'IO::Compress::Adapter::Deflate'=> '2.024', - 'IO::Compress::Adapter::Identity'=> '2.024', - 'IO::Compress::Base' => '2.024', - 'IO::Compress::Base::Common'=> '2.024', - 'IO::Compress::Bzip2' => '2.024', - 'IO::Compress::Deflate' => '2.024', - 'IO::Compress::Gzip' => '2.024', - 'IO::Compress::Gzip::Constants'=> '2.024', - 'IO::Compress::RawDeflate'=> '2.024', - 'IO::Compress::Zip' => '2.024', - 'IO::Compress::Zip::Constants'=> '2.024', - 'IO::Compress::Zlib::Constants'=> '2.024', - 'IO::Compress::Zlib::Extra'=> '2.024', - 'IO::Dir' => '1.07', - 'IO::File' => '1.14', - 'IO::Handle' => '1.28', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.31', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Bunzip2'=> '2.024', - 'IO::Uncompress::Adapter::Identity'=> '2.024', - 'IO::Uncompress::Adapter::Inflate'=> '2.024', - 'IO::Uncompress::AnyInflate'=> '2.024', - 'IO::Uncompress::AnyUncompress'=> '2.024', - 'IO::Uncompress::Base' => '2.024', - 'IO::Uncompress::Bunzip2'=> '2.024', - 'IO::Uncompress::Gunzip'=> '2.024', - 'IO::Uncompress::Inflate'=> '2.024', - 'IO::Uncompress::RawInflate'=> '2.024', - 'IO::Uncompress::Unzip' => '2.024', - 'IO::Zlib' => '1.10', - 'IPC::Cmd' => '0.54', - 'IPC::Msg' => '2.01', - 'IPC::Open2' => '1.03', - 'IPC::Open3' => '1.05', - 'IPC::Semaphore' => '2.01', - 'IPC::SharedMem' => '2.01', - 'IPC::SysV' => '2.01', - 'List::Util' => '1.22', - 'List::Util::PP' => '1.22', - 'List::Util::XS' => '1.22', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.14', - 'Locale::Maketext::Guts'=> '1.13', - 'Locale::Maketext::GutsLoader'=> '1.13', - 'Locale::Maketext::Simple'=> '0.21', - 'Locale::Script' => '2.07', - 'Log::Message' => '0.02', - 'Log::Message::Config' => '0.01', - 'Log::Message::Handlers'=> undef, - 'Log::Message::Item' => undef, - 'Log::Message::Simple' => '0.06', - 'MIME::Base64' => '3.08', - 'MIME::QuotedPrint' => '3.08', - 'Math::BigFloat' => '1.60', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.89_01', - 'Math::BigInt::Calc' => '0.52', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.19', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.24', - 'Math::Complex' => '1.56', - 'Math::Trig' => '1.2', - 'Memoize' => '1.01_03', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.3603', - 'Module::Build::Base' => '0.3603', - 'Module::Build::Compat' => '0.3603', - 'Module::Build::Config' => '0.3603', - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> '0.3603', - 'Module::Build::Dumper' => '0.3603', - 'Module::Build::ModuleInfo'=> '0.3603', - 'Module::Build::Notes' => '0.3603', - 'Module::Build::PPMMaker'=> '0.3603', - 'Module::Build::Platform::Amiga'=> '0.3603', - 'Module::Build::Platform::Default'=> '0.3603', - 'Module::Build::Platform::EBCDIC'=> '0.3603', - 'Module::Build::Platform::MPEiX'=> '0.3603', - 'Module::Build::Platform::MacOS'=> '0.3603', - 'Module::Build::Platform::RiscOS'=> '0.3603', - 'Module::Build::Platform::Unix'=> '0.3603', - 'Module::Build::Platform::VMS'=> '0.3603', - 'Module::Build::Platform::VOS'=> '0.3603', - 'Module::Build::Platform::Windows'=> '0.3603', - 'Module::Build::Platform::aix'=> '0.3603', - 'Module::Build::Platform::cygwin'=> '0.3603', - 'Module::Build::Platform::darwin'=> '0.3603', - 'Module::Build::Platform::os2'=> '0.3603', - 'Module::Build::PodParser'=> '0.3603', - 'Module::Build::Version'=> '0.77', - 'Module::Build::YAML' => '1.40', - 'Module::CoreList' => '2.25', - 'Module::Load' => '0.16', - 'Module::Load::Conditional'=> '0.34', - 'Module::Loaded' => '0.06', - 'Module::Pluggable' => '3.9', - 'Module::Pluggable::Object'=> '3.9', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.08', - 'NEXT' => '0.64', - '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.36', - '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.07', - 'Object::Accessor' => '0.36', - 'Opcode' => '1.15', - 'POSIX' => '1.19', - 'Package::Constants' => '0.02', - 'Params::Check' => '0.26', - 'Parse::CPAN::Meta' => '1.40', - 'PerlIO' => '1.06', - 'PerlIO::encoding' => '0.12', - 'PerlIO::scalar' => '0.07', - 'PerlIO::via' => '0.09', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.45', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.35', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.09', - 'Pod::InputObjects' => '1.31', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.22', - 'Pod::ParseLink' => '1.09', - 'Pod::ParseUtils' => '1.36', - 'Pod::Parser' => '1.37', - 'Pod::Perldoc' => '3.15_01', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.04', - 'Pod::Plainer' => '1.01', - 'Pod::Select' => '1.36', - 'Pod::Simple' => '3.13', - 'Pod::Simple::BlackBox' => '3.13', - 'Pod::Simple::Checker' => '3.13', - 'Pod::Simple::Debug' => '3.13', - 'Pod::Simple::DumpAsText'=> '3.13', - 'Pod::Simple::DumpAsXML'=> '3.13', - 'Pod::Simple::HTML' => '3.13', - 'Pod::Simple::HTMLBatch'=> '3.13', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> '3.13', - 'Pod::Simple::Methody' => '3.13', - 'Pod::Simple::Progress' => '3.13', - 'Pod::Simple::PullParser'=> '3.13', - 'Pod::Simple::PullParserEndToken'=> '3.13', - 'Pod::Simple::PullParserStartToken'=> '3.13', - 'Pod::Simple::PullParserTextToken'=> '3.13', - 'Pod::Simple::PullParserToken'=> '3.13', - 'Pod::Simple::RTF' => '3.13', - 'Pod::Simple::Search' => '3.13', - 'Pod::Simple::SimpleTree'=> '3.13', - 'Pod::Simple::Text' => '3.13', - 'Pod::Simple::TextContent'=> '3.13', - 'Pod::Simple::TiedOutFH'=> '3.13', - 'Pod::Simple::Transcode'=> '3.13', - 'Pod::Simple::TranscodeDumb'=> '3.13', - 'Pod::Simple::TranscodeSmart'=> '3.13', - 'Pod::Simple::XHTML' => '3.13', - 'Pod::Simple::XMLOutStream'=> '3.13', - 'Pod::Text' => '3.13', - 'Pod::Text::Color' => '2.05', - 'Pod::Text::Overstrike' => '2.03', - 'Pod::Text::Termcap' => '2.05', - 'Pod::Usage' => '1.36', - 'SDBM_File' => '1.06', - 'Safe' => '2.21', - 'Scalar::Util' => '1.22', - 'Scalar::Util::PP' => '1.22', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.02', - 'SelfLoader' => '1.17', - 'Shell' => '0.72_01', - 'Socket' => '1.85', - 'Storable' => '2.22', - 'Switch' => '2.16', - 'Symbol' => '1.07', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.27', - 'Sys::Syslog::win32::Win32'=> undef, - 'TAP::Base' => '3.17', - 'TAP::Formatter::Base' => '3.17', - 'TAP::Formatter::Color' => '3.17', - 'TAP::Formatter::Console'=> '3.17', - 'TAP::Formatter::Console::ParallelSession'=> '3.17', - 'TAP::Formatter::Console::Session'=> '3.17', - 'TAP::Formatter::File' => '3.17', - 'TAP::Formatter::File::Session'=> '3.17', - 'TAP::Formatter::Session'=> '3.17', - 'TAP::Harness' => '3.17', - 'TAP::Object' => '3.17', - 'TAP::Parser' => '3.17', - 'TAP::Parser::Aggregator'=> '3.17', - 'TAP::Parser::Grammar' => '3.17', - 'TAP::Parser::Iterator' => '3.17', - 'TAP::Parser::Iterator::Array'=> '3.17', - 'TAP::Parser::Iterator::Process'=> '3.17', - 'TAP::Parser::Iterator::Stream'=> '3.17', - 'TAP::Parser::IteratorFactory'=> '3.17', - 'TAP::Parser::Multiplexer'=> '3.17', - 'TAP::Parser::Result' => '3.17', - 'TAP::Parser::Result::Bailout'=> '3.17', - 'TAP::Parser::Result::Comment'=> '3.17', - 'TAP::Parser::Result::Plan'=> '3.17', - 'TAP::Parser::Result::Pragma'=> '3.17', - 'TAP::Parser::Result::Test'=> '3.17', - 'TAP::Parser::Result::Unknown'=> '3.17', - 'TAP::Parser::Result::Version'=> '3.17', - 'TAP::Parser::Result::YAML'=> '3.17', - 'TAP::Parser::ResultFactory'=> '3.17', - 'TAP::Parser::Scheduler'=> '3.17', - 'TAP::Parser::Scheduler::Job'=> '3.17', - 'TAP::Parser::Scheduler::Spinner'=> '3.17', - 'TAP::Parser::Source' => '3.17', - 'TAP::Parser::Source::Perl'=> '3.17', - 'TAP::Parser::Utils' => '3.17', - 'TAP::Parser::YAMLish::Reader'=> '3.17', - 'TAP::Parser::YAMLish::Writer'=> '3.17', - 'Term::ANSIColor' => '2.02', - 'Term::Cap' => '1.12', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.05', - 'Term::UI' => '0.20', - 'Term::UI::History' => undef, - 'Test' => '1.25_02', - 'Test::Builder' => '0.94', - 'Test::Builder::Module' => '0.94', - 'Test::Builder::Tester' => '1.18', - 'Test::Builder::Tester::Color'=> '1.18', - 'Test::Harness' => '3.17', - 'Test::More' => '0.94', - 'Test::Simple' => '0.94', - 'Text::Abbrev' => '1.01', - '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.11', - 'Thread::Semaphore' => '2.09', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_02', - 'Tie::Handle' => '4.2', - 'Tie::Hash' => '1.03', - 'Tie::Hash::NamedCapture'=> '0.06', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.38', - 'Tie::Scalar' => '1.01', - 'Tie::StdHandle' => '4.2', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9719', - 'Time::Local' => '1.1901_01', - 'Time::Piece' => '1.15', - 'Time::Piece::Seconds' => undef, - 'Time::Seconds' => undef, - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.06', - 'Unicode' => '5.2.0', - 'Unicode::Collate' => '0.52_01', - 'Unicode::Normalize' => '1.03', - 'Unicode::UCD' => '0.27', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'VMS::DCLsym' => '1.03', - 'VMS::Stdio' => '2.4', - 'Win32' => '0.39', - 'Win32API::File' => '0.1101', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.17', - 'XS::APItest::KeywordRPN'=> '0.003', - 'XS::Typemap' => '0.03', - 'XSLoader' => '0.10', - 'XSLoader::XSLoader' => '0.10', - 'attributes' => '0.12', - 'autodie' => '2.06_01', - 'autodie::exception' => '2.06_01', - 'autodie::exception::system'=> '2.06_01', - 'autodie::hints' => '2.06_01', - 'autouse' => '1.06', - 'base' => '2.15', - 'bigint' => '0.23', - 'bignum' => '0.23', - 'bigrat' => '0.23', - 'blib' => '1.04', - 'bytes' => '1.03', - 'charnames' => '1.07', - 'constant' => '1.20', - 'deprecate' => '0.01', - 'diagnostics' => '1.19', - 'encoding' => '2.6_01', - 'encoding::warnings' => '0.11', - 'feature' => '1.15', - 'fields' => '2.15', - 'filetest' => '1.02', - 'if' => '0.05', - 'inc::latest' => '0.3603', - 'integer' => '1.00', - 'less' => '0.03', - 'lib' => '0.62', - 'locale' => '1.00', - 'mro' => '1.02', - 'open' => '1.07', - 'ops' => '1.02', - 'overload' => '1.10', - 'overload::numbers' => undef, - 'overloading' => '0.01', - 'parent' => '0.223', - 're' => '0.11', - 'sigtrap' => '1.04', - 'sort' => '2.01', - 'strict' => '1.04', - 'subs' => '1.00', - 'threads' => '1.75', - 'threads::shared' => '1.32', - 'utf8' => '1.07', - 'vars' => '1.01', - 'version' => '0.81', - 'vmsish' => '1.02', - 'warnings' => '1.09', - 'warnings::register' => '1.01', + delta_from => 5.011003, + changed => { + 'App::Cpan' => '1.5701', + 'Archive::Extract' => '0.38', + 'B::Deparse' => '0.94', + 'CPAN' => '1.94_54', + 'CPAN::FirstTime' => '5.53', + 'CPAN::Mirrors' => '1.77', + 'Carp' => '1.15', + 'Carp::Heavy' => '1.15', + 'Compress::Raw::Bzip2' => '2.024', + 'Compress::Raw::Zlib' => '2.024', + 'Compress::Zlib' => '2.024', + 'File::Copy' => '2.17', + 'File::Fetch' => '0.24', + 'GDBM_File' => '1.10', + 'IO::Compress::Adapter::Bzip2'=> '2.024', + 'IO::Compress::Adapter::Deflate'=> '2.024', + 'IO::Compress::Adapter::Identity'=> '2.024', + 'IO::Compress::Base' => '2.024', + 'IO::Compress::Base::Common'=> '2.024', + 'IO::Compress::Bzip2' => '2.024', + 'IO::Compress::Deflate' => '2.024', + 'IO::Compress::Gzip' => '2.024', + 'IO::Compress::Gzip::Constants'=> '2.024', + 'IO::Compress::RawDeflate'=> '2.024', + 'IO::Compress::Zip' => '2.024', + 'IO::Compress::Zip::Constants'=> '2.024', + 'IO::Compress::Zlib::Constants'=> '2.024', + 'IO::Compress::Zlib::Extra'=> '2.024', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.024', + 'IO::Uncompress::Adapter::Identity'=> '2.024', + 'IO::Uncompress::Adapter::Inflate'=> '2.024', + 'IO::Uncompress::AnyInflate'=> '2.024', + 'IO::Uncompress::AnyUncompress'=> '2.024', + 'IO::Uncompress::Base' => '2.024', + 'IO::Uncompress::Bunzip2'=> '2.024', + 'IO::Uncompress::Gunzip'=> '2.024', + 'IO::Uncompress::Inflate'=> '2.024', + 'IO::Uncompress::RawInflate'=> '2.024', + 'IO::Uncompress::Unzip' => '2.024', + 'Module::Build' => '0.3603', + 'Module::Build::Base' => '0.3603', + 'Module::Build::Compat' => '0.3603', + 'Module::Build::Config' => '0.3603', + 'Module::Build::Cookbook'=> '0.3603', + 'Module::Build::Dumper' => '0.3603', + 'Module::Build::ModuleInfo'=> '0.3603', + 'Module::Build::Notes' => '0.3603', + 'Module::Build::PPMMaker'=> '0.3603', + 'Module::Build::Platform::Amiga'=> '0.3603', + 'Module::Build::Platform::Default'=> '0.3603', + 'Module::Build::Platform::EBCDIC'=> '0.3603', + 'Module::Build::Platform::MPEiX'=> '0.3603', + 'Module::Build::Platform::MacOS'=> '0.3603', + 'Module::Build::Platform::RiscOS'=> '0.3603', + 'Module::Build::Platform::Unix'=> '0.3603', + 'Module::Build::Platform::VMS'=> '0.3603', + 'Module::Build::Platform::VOS'=> '0.3603', + 'Module::Build::Platform::Windows'=> '0.3603', + 'Module::Build::Platform::aix'=> '0.3603', + 'Module::Build::Platform::cygwin'=> '0.3603', + 'Module::Build::Platform::darwin'=> '0.3603', + 'Module::Build::Platform::os2'=> '0.3603', + 'Module::Build::PodParser'=> '0.3603', + 'Module::CoreList' => '2.25', + 'PerlIO::encoding' => '0.12', + 'Safe' => '2.21', + 'UNIVERSAL' => '1.06', + 'feature' => '1.15', + 'inc::latest' => '0.3603', + 'less' => '0.03', + 're' => '0.11', + 'version' => '0.81', + 'warnings' => '1.09', + }, + removed => { + } }, 5.011005 => { - 'AnyDBM_File' => '1.00', - 'App::Cpan' => '1.5701', - 'App::Prove' => '3.17', - 'App::Prove::State' => '3.17', - 'App::Prove::State::Result'=> '3.17', - 'App::Prove::State::Result::Test'=> '3.17', - 'Archive::Extract' => '0.38', - 'Archive::Tar' => '1.54', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.87', - 'AutoLoader' => '5.70', - 'AutoSplit' => '1.06', - 'B' => '1.23', - 'B::Concise' => '0.78', - 'B::Debug' => '1.12', - 'B::Deparse' => '0.94', - 'B::Lint' => '1.11_01', - 'B::Lint::Debug' => '0.01', - 'B::Showlex' => '1.02', - 'B::Terse' => '1.05', - 'B::Xref' => '1.02', - 'Benchmark' => '1.11', - 'CGI' => '3.48', - 'CGI::Apache' => '1.01', - 'CGI::Carp' => '3.45', - 'CGI::Cookie' => '1.29', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '3.46', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.01', - 'CGI::Util' => '3.48', - 'CPAN' => '1.94_56', - 'CPAN::Author' => '5.5', - 'CPAN::Bundle' => '5.5', - 'CPAN::CacheMgr' => '5.5', - 'CPAN::Complete' => '5.5', - 'CPAN::Debug' => '5.5001', - 'CPAN::DeferredCode' => '5.50', - 'CPAN::Distribution' => '1.9456', - 'CPAN::Distroprefs' => '6', - 'CPAN::Distrostatus' => '5.5', - 'CPAN::Exception::RecursiveDependency'=> '5.5', - 'CPAN::Exception::blocked_urllist'=> '1.0', - 'CPAN::Exception::yaml_not_installed'=> '5.5', - 'CPAN::FTP' => '5.5004', - 'CPAN::FTP::netrc' => '1.00', - 'CPAN::FirstTime' => '5.5301', - 'CPAN::HandleConfig' => '5.5001', - 'CPAN::Index' => '1.94', - 'CPAN::InfoObj' => '5.5', - 'CPAN::Kwalify' => '5.50', - 'CPAN::LWP::UserAgent' => '1.94', - 'CPAN::Mirrors' => '1.77', - 'CPAN::Module' => '5.5', - 'CPAN::Nox' => '5.50', - 'CPAN::Prompt' => '5.5', - 'CPAN::Queue' => '5.5', - 'CPAN::Shell' => '5.5001', - 'CPAN::Tarzip' => '5.5011', - 'CPAN::URL' => '5.5', - 'CPAN::Version' => '5.5', - 'CPANPLUS' => '0.90', - '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.46', - 'CPANPLUS::Dist::Build::Constants'=> '0.46', - 'CPANPLUS::Dist::MM' => undef, - 'CPANPLUS::Dist::Sample'=> undef, - 'CPANPLUS::Error' => undef, - 'CPANPLUS::Internals' => '0.90', - '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.90', - 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'Carp' => '1.15', - 'Carp::Heavy' => '1.15', - 'Class::ISA' => '0.36', - 'Class::Struct' => '0.63', - 'Compress::Raw::Bzip2' => '2.024', - 'Compress::Raw::Zlib' => '2.024', - 'Compress::Zlib' => '2.024', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.31', - 'DB' => '1.02', - 'DBM_Filter' => '0.03', - '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.820', - 'Data::Dumper' => '2.125', - 'Devel::DProf' => '20080331.00', - 'Devel::DProf::V' => undef, - 'Devel::DProf::dprof::V'=> undef, - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.19', - 'Devel::Peek' => '1.04', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.16', - 'Digest::MD5' => '2.39', - 'Digest::SHA' => '5.47', - 'Digest::base' => '1.16', - 'Digest::file' => '1.16', - 'DirHandle' => '1.03', - 'Dumpvalue' => '1.13', - 'DynaLoader' => '1.10', - 'Encode' => '2.39', - 'Encode::Alias' => '2.12', - '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.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.01', - 'Encode::Guess' => '2.03', - '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.11', - '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.04', - 'English' => '1.04', - 'Env' => '1.01', - 'Errno' => '1.11', - 'Exporter' => '5.64_01', - 'Exporter::Heavy' => '5.64_01', - 'ExtUtils::CBuilder' => '0.27', - 'ExtUtils::CBuilder::Base'=> '0.27', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.27', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27', - 'ExtUtils::CBuilder::Platform::aix'=> '0.27', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.27', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27', - 'ExtUtils::CBuilder::Platform::os2'=> '0.27', - 'ExtUtils::Command' => '1.16', - 'ExtUtils::Command::MM' => '6.56', - 'ExtUtils::Constant' => '0.22', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.06', - 'ExtUtils::Constant::Utils'=> '0.02', - 'ExtUtils::Constant::XS'=> '0.03', - 'ExtUtils::Embed' => '1.28', - 'ExtUtils::Install' => '1.55', - 'ExtUtils::Installed' => '1.999_001', - 'ExtUtils::Liblist' => '6.56', - 'ExtUtils::Liblist::Kid'=> '6.56', - 'ExtUtils::MM' => '6.56', - 'ExtUtils::MM_AIX' => '6.56', - 'ExtUtils::MM_Any' => '6.56', - 'ExtUtils::MM_BeOS' => '6.56', - 'ExtUtils::MM_Cygwin' => '6.56', - 'ExtUtils::MM_DOS' => '6.56', - 'ExtUtils::MM_Darwin' => '6.56', - 'ExtUtils::MM_MacOS' => '6.56', - 'ExtUtils::MM_NW5' => '6.56', - 'ExtUtils::MM_OS2' => '6.56', - 'ExtUtils::MM_QNX' => '6.56', - 'ExtUtils::MM_UWIN' => '6.56', - 'ExtUtils::MM_Unix' => '6.56', - 'ExtUtils::MM_VMS' => '6.56', - 'ExtUtils::MM_VOS' => '6.56', - 'ExtUtils::MM_Win32' => '6.56', - 'ExtUtils::MM_Win95' => '6.56', - 'ExtUtils::MY' => '6.56', - 'ExtUtils::MakeMaker' => '6.56', - 'ExtUtils::MakeMaker::Config'=> '6.56', - 'ExtUtils::Manifest' => '1.57', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '6.56', - 'ExtUtils::Mksymlists' => '6.56', - 'ExtUtils::Packlist' => '1.44', - 'ExtUtils::ParseXS' => '2.21', - 'ExtUtils::XSSymSet' => '1.1', - 'ExtUtils::testlib' => '6.56', - 'Fatal' => '2.06_01', - 'Fcntl' => '1.06', - 'File::Basename' => '2.78', - 'File::CheckTree' => '4.4', - 'File::Compare' => '1.1006', - 'File::Copy' => '2.17', - 'File::DosGlob' => '1.01', - 'File::Fetch' => '0.24', - 'File::Find' => '1.15', - 'File::Glob' => '1.07', - 'File::GlobMapper' => '1.000', - 'File::Path' => '2.08_01', - 'File::Spec' => '3.31', - 'File::Spec::Cygwin' => '3.30', - 'File::Spec::Epoc' => '3.30', - 'File::Spec::Functions' => '3.30', - 'File::Spec::Mac' => '3.30', - 'File::Spec::OS2' => '3.30', - 'File::Spec::Unix' => '3.30', - 'File::Spec::VMS' => '3.30', - 'File::Spec::Win32' => '3.30', - 'File::Temp' => '0.22', - 'File::stat' => '1.02', - 'FileCache' => '1.08', - 'FileHandle' => '2.02', - 'Filespec' => '1.12', - 'Filter::Simple' => '0.84', - 'Filter::Util::Call' => '1.08', - 'FindBin' => '1.50', - 'GDBM_File' => '1.10', - 'Getopt::Long' => '2.38', - 'Getopt::Std' => '1.06', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '1.04', - 'I18N::Collate' => '1.01', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.04', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.03', - 'IO' => '1.25_02', - 'IO::Compress::Adapter::Bzip2'=> '2.024', - 'IO::Compress::Adapter::Deflate'=> '2.024', - 'IO::Compress::Adapter::Identity'=> '2.024', - 'IO::Compress::Base' => '2.024', - 'IO::Compress::Base::Common'=> '2.024', - 'IO::Compress::Bzip2' => '2.024', - 'IO::Compress::Deflate' => '2.024', - 'IO::Compress::Gzip' => '2.024', - 'IO::Compress::Gzip::Constants'=> '2.024', - 'IO::Compress::RawDeflate'=> '2.024', - 'IO::Compress::Zip' => '2.024', - 'IO::Compress::Zip::Constants'=> '2.024', - 'IO::Compress::Zlib::Constants'=> '2.024', - 'IO::Compress::Zlib::Extra'=> '2.024', - 'IO::Dir' => '1.07', - 'IO::File' => '1.14', - 'IO::Handle' => '1.28', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.31', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Bunzip2'=> '2.024', - 'IO::Uncompress::Adapter::Identity'=> '2.024', - 'IO::Uncompress::Adapter::Inflate'=> '2.024', - 'IO::Uncompress::AnyInflate'=> '2.024', - 'IO::Uncompress::AnyUncompress'=> '2.024', - 'IO::Uncompress::Base' => '2.024', - 'IO::Uncompress::Bunzip2'=> '2.024', - 'IO::Uncompress::Gunzip'=> '2.024', - 'IO::Uncompress::Inflate'=> '2.024', - 'IO::Uncompress::RawInflate'=> '2.024', - 'IO::Uncompress::Unzip' => '2.024', - 'IO::Zlib' => '1.10', - 'IPC::Cmd' => '0.54', - 'IPC::Msg' => '2.01', - 'IPC::Open2' => '1.03', - 'IPC::Open3' => '1.05', - 'IPC::Semaphore' => '2.01', - 'IPC::SharedMem' => '2.01', - 'IPC::SysV' => '2.01', - 'List::Util' => '1.22', - 'List::Util::PP' => '1.22', - 'List::Util::XS' => '1.22', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.14', - 'Locale::Maketext::Guts'=> '1.13', - 'Locale::Maketext::GutsLoader'=> '1.13', - 'Locale::Maketext::Simple'=> '0.21', - 'Locale::Script' => '2.07', - 'Log::Message' => '0.02', - 'Log::Message::Config' => '0.01', - 'Log::Message::Handlers'=> undef, - 'Log::Message::Item' => undef, - 'Log::Message::Simple' => '0.06', - 'MIME::Base64' => '3.08', - 'MIME::QuotedPrint' => '3.08', - 'Math::BigFloat' => '1.60', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.89_01', - 'Math::BigInt::Calc' => '0.52', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.19', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.24', - 'Math::Complex' => '1.56', - 'Math::Trig' => '1.2', - 'Memoize' => '1.01_03', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.3603', - 'Module::Build::Base' => '0.3603', - 'Module::Build::Compat' => '0.3603', - 'Module::Build::Config' => '0.3603', - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> '0.3603', - 'Module::Build::Dumper' => '0.3603', - 'Module::Build::ModuleInfo'=> '0.3603', - 'Module::Build::Notes' => '0.3603', - 'Module::Build::PPMMaker'=> '0.3603', - 'Module::Build::Platform::Amiga'=> '0.3603', - 'Module::Build::Platform::Default'=> '0.3603', - 'Module::Build::Platform::EBCDIC'=> '0.3603', - 'Module::Build::Platform::MPEiX'=> '0.3603', - 'Module::Build::Platform::MacOS'=> '0.3603', - 'Module::Build::Platform::RiscOS'=> '0.3603', - 'Module::Build::Platform::Unix'=> '0.3603', - 'Module::Build::Platform::VMS'=> '0.3603', - 'Module::Build::Platform::VOS'=> '0.3603', - 'Module::Build::Platform::Windows'=> '0.3603', - 'Module::Build::Platform::aix'=> '0.3603', - 'Module::Build::Platform::cygwin'=> '0.3603', - 'Module::Build::Platform::darwin'=> '0.3603', - 'Module::Build::Platform::os2'=> '0.3603', - 'Module::Build::PodParser'=> '0.3603', - 'Module::Build::Version'=> '0.77', - 'Module::Build::YAML' => '1.40', - 'Module::CoreList' => '2.26', - 'Module::Load' => '0.16', - 'Module::Load::Conditional'=> '0.34', - 'Module::Loaded' => '0.06', - 'Module::Pluggable' => '3.9', - 'Module::Pluggable::Object'=> '3.9', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.08', - 'NEXT' => '0.64', - '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.36', - '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.07', - 'Object::Accessor' => '0.36', - 'Opcode' => '1.15', - 'POSIX' => '1.19', - 'Package::Constants' => '0.02', - 'Params::Check' => '0.26', - 'Parse::CPAN::Meta' => '1.40', - 'PerlIO' => '1.06', - 'PerlIO::encoding' => '0.12', - 'PerlIO::scalar' => '0.07', - 'PerlIO::via' => '0.09', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.45', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.35', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.09', - 'Pod::InputObjects' => '1.31', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.23', - 'Pod::ParseLink' => '1.10', - 'Pod::ParseUtils' => '1.36', - 'Pod::Parser' => '1.37', - 'Pod::Perldoc' => '3.15_02', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.04', - 'Pod::Plainer' => '1.02', - 'Pod::Select' => '1.36', - 'Pod::Simple' => '3.13', - 'Pod::Simple::BlackBox' => '3.13', - 'Pod::Simple::Checker' => '3.13', - 'Pod::Simple::Debug' => '3.13', - 'Pod::Simple::DumpAsText'=> '3.13', - 'Pod::Simple::DumpAsXML'=> '3.13', - 'Pod::Simple::HTML' => '3.13', - 'Pod::Simple::HTMLBatch'=> '3.13', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> '3.13', - 'Pod::Simple::Methody' => '3.13', - 'Pod::Simple::Progress' => '3.13', - 'Pod::Simple::PullParser'=> '3.13', - 'Pod::Simple::PullParserEndToken'=> '3.13', - 'Pod::Simple::PullParserStartToken'=> '3.13', - 'Pod::Simple::PullParserTextToken'=> '3.13', - 'Pod::Simple::PullParserToken'=> '3.13', - 'Pod::Simple::RTF' => '3.13', - 'Pod::Simple::Search' => '3.13', - 'Pod::Simple::SimpleTree'=> '3.13', - 'Pod::Simple::Text' => '3.13', - 'Pod::Simple::TextContent'=> '3.13', - 'Pod::Simple::TiedOutFH'=> '3.13', - 'Pod::Simple::Transcode'=> '3.13', - 'Pod::Simple::TranscodeDumb'=> '3.13', - 'Pod::Simple::TranscodeSmart'=> '3.13', - 'Pod::Simple::XHTML' => '3.13', - 'Pod::Simple::XMLOutStream'=> '3.13', - 'Pod::Text' => '3.14', - 'Pod::Text::Color' => '2.06', - 'Pod::Text::Overstrike' => '2.04', - 'Pod::Text::Termcap' => '2.06', - 'Pod::Usage' => '1.36', - 'SDBM_File' => '1.06', - 'Safe' => '2.22', - 'Scalar::Util' => '1.22', - 'Scalar::Util::PP' => '1.22', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.02', - 'SelfLoader' => '1.17', - 'Shell' => '0.72_01', - 'Socket' => '1.86', - 'Storable' => '2.22', - 'Switch' => '2.16', - 'Symbol' => '1.07', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.27', - 'Sys::Syslog::win32::Win32'=> undef, - 'TAP::Base' => '3.17', - 'TAP::Formatter::Base' => '3.17', - 'TAP::Formatter::Color' => '3.17', - 'TAP::Formatter::Console'=> '3.17', - 'TAP::Formatter::Console::ParallelSession'=> '3.17', - 'TAP::Formatter::Console::Session'=> '3.17', - 'TAP::Formatter::File' => '3.17', - 'TAP::Formatter::File::Session'=> '3.17', - 'TAP::Formatter::Session'=> '3.17', - 'TAP::Harness' => '3.17', - 'TAP::Object' => '3.17', - 'TAP::Parser' => '3.17', - 'TAP::Parser::Aggregator'=> '3.17', - 'TAP::Parser::Grammar' => '3.17', - 'TAP::Parser::Iterator' => '3.17', - 'TAP::Parser::Iterator::Array'=> '3.17', - 'TAP::Parser::Iterator::Process'=> '3.17', - 'TAP::Parser::Iterator::Stream'=> '3.17', - 'TAP::Parser::IteratorFactory'=> '3.17', - 'TAP::Parser::Multiplexer'=> '3.17', - 'TAP::Parser::Result' => '3.17', - 'TAP::Parser::Result::Bailout'=> '3.17', - 'TAP::Parser::Result::Comment'=> '3.17', - 'TAP::Parser::Result::Plan'=> '3.17', - 'TAP::Parser::Result::Pragma'=> '3.17', - 'TAP::Parser::Result::Test'=> '3.17', - 'TAP::Parser::Result::Unknown'=> '3.17', - 'TAP::Parser::Result::Version'=> '3.17', - 'TAP::Parser::Result::YAML'=> '3.17', - 'TAP::Parser::ResultFactory'=> '3.17', - 'TAP::Parser::Scheduler'=> '3.17', - 'TAP::Parser::Scheduler::Job'=> '3.17', - 'TAP::Parser::Scheduler::Spinner'=> '3.17', - 'TAP::Parser::Source' => '3.17', - 'TAP::Parser::Source::Perl'=> '3.17', - 'TAP::Parser::Utils' => '3.17', - 'TAP::Parser::YAMLish::Reader'=> '3.17', - 'TAP::Parser::YAMLish::Writer'=> '3.17', - 'Term::ANSIColor' => '2.02', - 'Term::Cap' => '1.12', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.05', - 'Term::UI' => '0.20', - 'Term::UI::History' => undef, - 'Test' => '1.25_02', - 'Test::Builder' => '0.94', - 'Test::Builder::Module' => '0.94', - 'Test::Builder::Tester' => '1.18', - 'Test::Builder::Tester::Color'=> '1.18', - 'Test::Harness' => '3.17', - 'Test::More' => '0.94', - 'Test::Simple' => '0.94', - 'Text::Abbrev' => '1.01', - '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.11', - 'Thread::Semaphore' => '2.09', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_02', - 'Tie::Handle' => '4.2', - 'Tie::Hash' => '1.03', - 'Tie::Hash::NamedCapture'=> '0.06', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.38', - 'Tie::Scalar' => '1.01', - 'Tie::StdHandle' => '4.2', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9719', - 'Time::Local' => '1.1901_01', - 'Time::Piece' => '1.15', - 'Time::Piece::Seconds' => undef, - 'Time::Seconds' => undef, - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.06', - 'Unicode' => '5.2.0', - 'Unicode::Collate' => '0.52_01', - 'Unicode::Normalize' => '1.03', - 'Unicode::UCD' => '0.27', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'VMS::DCLsym' => '1.03', - 'VMS::Stdio' => '2.4', - 'Win32' => '0.39', - 'Win32API::File' => '0.1101', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.17', - 'XS::APItest::KeywordRPN'=> '0.003', - 'XS::Typemap' => '0.03', - 'XSLoader' => '0.10', - 'XSLoader::XSLoader' => '0.10', - 'attributes' => '0.12', - 'autodie' => '2.06_01', - 'autodie::exception' => '2.06_01', - 'autodie::exception::system'=> '2.06_01', - 'autodie::hints' => '2.06_01', - 'autouse' => '1.06', - 'base' => '2.15', - 'bigint' => '0.23', - 'bignum' => '0.23', - 'bigrat' => '0.23', - 'blib' => '1.04', - 'bytes' => '1.03', - 'charnames' => '1.07', - 'constant' => '1.20', - 'deprecate' => '0.01', - 'diagnostics' => '1.19', - 'encoding' => '2.6_01', - 'encoding::warnings' => '0.11', - 'feature' => '1.15', - 'fields' => '2.15', - 'filetest' => '1.02', - 'if' => '0.05', - 'inc::latest' => '0.3603', - 'integer' => '1.00', - 'less' => '0.03', - 'lib' => '0.62', - 'locale' => '1.00', - 'mro' => '1.02', - 'open' => '1.07', - 'ops' => '1.02', - 'overload' => '1.10', - 'overload::numbers' => undef, - 'overloading' => '0.01', - 'parent' => '0.223', - 're' => '0.11', - 'sigtrap' => '1.04', - 'sort' => '2.01', - 'strict' => '1.04', - 'subs' => '1.00', - 'threads' => '1.75', - 'threads::shared' => '1.32', - 'utf8' => '1.07', - 'vars' => '1.01', - 'version' => '0.82', - 'vmsish' => '1.02', - 'warnings' => '1.09', - 'warnings::register' => '1.01', + delta_from => 5.011004, + changed => { + 'B::Debug' => '1.12', + 'CPAN' => '1.94_56', + 'CPAN::Debug' => '5.5001', + 'CPAN::Distribution' => '1.9456', + 'CPAN::FirstTime' => '5.5301', + 'CPAN::HandleConfig' => '5.5001', + 'CPAN::Shell' => '5.5001', + 'CPAN::Tarzip' => '5.5011', + 'CPANPLUS::Dist::Build' => '0.46', + 'CPANPLUS::Dist::Build::Constants'=> '0.46', + 'Module::CoreList' => '2.26', + 'Pod::Man' => '2.23', + 'Pod::ParseLink' => '1.10', + 'Pod::Perldoc' => '3.15_02', + 'Pod::Plainer' => '1.02', + 'Pod::Text' => '3.14', + 'Pod::Text::Color' => '2.06', + 'Pod::Text::Overstrike' => '2.04', + 'Pod::Text::Termcap' => '2.06', + 'Safe' => '2.22', + 'Socket' => '1.86', + 'version' => '0.82', + }, + removed => { + } }, - 5.012000 => { - 'AnyDBM_File' => '1.00', - 'App::Cpan' => '1.5701', - 'App::Prove' => '3.17', - 'App::Prove::State' => '3.17', - 'App::Prove::State::Result'=> '3.17', - 'App::Prove::State::Result::Test'=> '3.17', - 'Archive::Extract' => '0.38', - 'Archive::Tar' => '1.54', - 'Archive::Tar::Constant'=> '0.02', - 'Archive::Tar::File' => '0.02', - 'Attribute::Handlers' => '0.87', - 'AutoLoader' => '5.70', - 'AutoSplit' => '1.06', - 'B' => '1.23', - 'B::Concise' => '0.78', - 'B::Debug' => '1.12', - 'B::Deparse' => '0.95', - 'B::Lint' => '1.11_01', - 'B::Lint::Debug' => '0.01', - 'B::Showlex' => '1.02', - 'B::Terse' => '1.05', - 'B::Xref' => '1.02', - 'Benchmark' => '1.11', - 'CGI' => '3.48', - 'CGI::Apache' => '1.01', - 'CGI::Carp' => '3.45', - 'CGI::Cookie' => '1.29', - 'CGI::Fast' => '1.07', - 'CGI::Pretty' => '3.46', - 'CGI::Push' => '1.04', - 'CGI::Switch' => '1.01', - 'CGI::Util' => '3.48', - 'CPAN' => '1.94_56', - 'CPAN::Author' => '5.5', - 'CPAN::Bundle' => '5.5', - 'CPAN::CacheMgr' => '5.5', - 'CPAN::Complete' => '5.5', - 'CPAN::Debug' => '5.5001', - 'CPAN::DeferredCode' => '5.50', - 'CPAN::Distribution' => '1.9456', - 'CPAN::Distroprefs' => '6', - 'CPAN::Distrostatus' => '5.5', - 'CPAN::Exception::RecursiveDependency'=> '5.5', - 'CPAN::Exception::blocked_urllist'=> '1.0', - 'CPAN::Exception::yaml_not_installed'=> '5.5', - 'CPAN::FTP' => '5.5004', - 'CPAN::FTP::netrc' => '1.00', - 'CPAN::FirstTime' => '5.5301', - 'CPAN::HandleConfig' => '5.5001', - 'CPAN::Index' => '1.94', - 'CPAN::InfoObj' => '5.5', - 'CPAN::Kwalify' => '5.50', - 'CPAN::LWP::UserAgent' => '1.94', - 'CPAN::Mirrors' => '1.77', - 'CPAN::Module' => '5.5', - 'CPAN::Nox' => '5.50', - 'CPAN::Prompt' => '5.5', - 'CPAN::Queue' => '5.5', - 'CPAN::Shell' => '5.5001', - 'CPAN::Tarzip' => '5.5011', - 'CPAN::URL' => '5.5', - 'CPAN::Version' => '5.5', - 'CPANPLUS' => '0.90', - '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.46', - 'CPANPLUS::Dist::Build::Constants'=> '0.46', - 'CPANPLUS::Dist::MM' => undef, - 'CPANPLUS::Dist::Sample'=> undef, - 'CPANPLUS::Error' => undef, - 'CPANPLUS::Internals' => '0.90', - '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.90', - 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, - 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'Carp' => '1.15', - 'Carp::Heavy' => '1.15', - 'Class::ISA' => '0.36', - 'Class::Struct' => '0.63', - 'Compress::Raw::Bzip2' => '2.024', - 'Compress::Raw::Zlib' => '2.024', - 'Compress::Zlib' => '2.024', - 'Config' => undef, - 'Config::Extensions' => '0.01', - 'Cwd' => '3.31', - 'DB' => '1.02', - 'DBM_Filter' => '0.03', - '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.820', - 'Data::Dumper' => '2.125', - 'Devel::DProf' => '20080331.00', - 'Devel::DProf::dprof::V'=> undef, - 'Devel::InnerPackage' => '0.3', - 'Devel::PPPort' => '3.19', - 'Devel::Peek' => '1.04', - 'Devel::SelfStubber' => '1.03', - 'Digest' => '1.16', - 'Digest::MD5' => '2.39', - 'Digest::SHA' => '5.47', - 'Digest::base' => '1.16', - 'Digest::file' => '1.16', - 'DirHandle' => '1.03', - 'Dumpvalue' => '1.13', - 'DynaLoader' => '1.10', - 'Encode' => '2.39', - 'Encode::Alias' => '2.12', - '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.01', - 'Encode::Encoding' => '2.05', - 'Encode::GSM0338' => '2.01', - 'Encode::Guess' => '2.03', - '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.11', - '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.04', - 'English' => '1.04', - 'Env' => '1.01', - 'Errno' => '1.11', - 'Exporter' => '5.64_01', - 'Exporter::Heavy' => '5.64_01', - 'ExtUtils::CBuilder' => '0.27', - 'ExtUtils::CBuilder::Base'=> '0.27', - 'ExtUtils::CBuilder::Platform::Unix'=> '0.27', - 'ExtUtils::CBuilder::Platform::VMS'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27', - 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27', - 'ExtUtils::CBuilder::Platform::aix'=> '0.27', - 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27', - 'ExtUtils::CBuilder::Platform::darwin'=> '0.27', - 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27', - 'ExtUtils::CBuilder::Platform::os2'=> '0.27', - 'ExtUtils::Command' => '1.16', - 'ExtUtils::Command::MM' => '6.56', - 'ExtUtils::Constant' => '0.22', - 'ExtUtils::Constant::Base'=> '0.04', - 'ExtUtils::Constant::ProxySubs'=> '0.06', - 'ExtUtils::Constant::Utils'=> '0.02', - 'ExtUtils::Constant::XS'=> '0.03', - 'ExtUtils::Embed' => '1.28', - 'ExtUtils::Install' => '1.55', - 'ExtUtils::Installed' => '1.999_001', - 'ExtUtils::Liblist' => '6.56', - 'ExtUtils::Liblist::Kid'=> '6.56', - 'ExtUtils::MM' => '6.56', - 'ExtUtils::MM_AIX' => '6.56', - 'ExtUtils::MM_Any' => '6.56', - 'ExtUtils::MM_BeOS' => '6.56', - 'ExtUtils::MM_Cygwin' => '6.56', - 'ExtUtils::MM_DOS' => '6.56', - 'ExtUtils::MM_Darwin' => '6.56', - 'ExtUtils::MM_MacOS' => '6.56', - 'ExtUtils::MM_NW5' => '6.56', - 'ExtUtils::MM_OS2' => '6.56', - 'ExtUtils::MM_QNX' => '6.56', - 'ExtUtils::MM_UWIN' => '6.56', - 'ExtUtils::MM_Unix' => '6.56', - 'ExtUtils::MM_VMS' => '6.56', - 'ExtUtils::MM_VOS' => '6.56', - 'ExtUtils::MM_Win32' => '6.56', - 'ExtUtils::MM_Win95' => '6.56', - 'ExtUtils::MY' => '6.56', - 'ExtUtils::MakeMaker' => '6.56', - 'ExtUtils::MakeMaker::Config'=> '6.56', - 'ExtUtils::Manifest' => '1.57', - 'ExtUtils::Miniperl' => undef, - 'ExtUtils::Mkbootstrap' => '6.56', - 'ExtUtils::Mksymlists' => '6.56', - 'ExtUtils::Packlist' => '1.44', - 'ExtUtils::ParseXS' => '2.21', - 'ExtUtils::XSSymSet' => '1.1', - 'ExtUtils::testlib' => '6.56', - 'Fatal' => '2.06_01', - 'Fcntl' => '1.06', - 'File::Basename' => '2.78', - 'File::CheckTree' => '4.4', - 'File::Compare' => '1.1006', - 'File::Copy' => '2.17', - 'File::DosGlob' => '1.01', - 'File::Fetch' => '0.24', - 'File::Find' => '1.15', - 'File::Glob' => '1.07', - 'File::GlobMapper' => '1.000', - 'File::Path' => '2.08_01', - 'File::Spec' => '3.31', - 'File::Spec::Cygwin' => '3.30', - 'File::Spec::Epoc' => '3.30', - 'File::Spec::Functions' => '3.30', - 'File::Spec::Mac' => '3.30', - 'File::Spec::OS2' => '3.30', - 'File::Spec::Unix' => '3.30', - 'File::Spec::VMS' => '3.30', - 'File::Spec::Win32' => '3.30', - 'File::Temp' => '0.22', - 'File::stat' => '1.02', - 'FileCache' => '1.08', - 'FileHandle' => '2.02', - 'Filespec' => '1.12', - 'Filter::Simple' => '0.84', - 'Filter::Util::Call' => '1.08', - 'FindBin' => '1.50', - 'GDBM_File' => '1.10', - 'Getopt::Long' => '2.38', - 'Getopt::Std' => '1.06', - 'Hash::Util' => '0.07', - 'Hash::Util::FieldHash' => '1.04', - 'I18N::Collate' => '1.01', - 'I18N::LangTags' => '0.35', - 'I18N::LangTags::Detect'=> '1.04', - 'I18N::LangTags::List' => '0.35', - 'I18N::Langinfo' => '0.03', - 'IO' => '1.25_02', - 'IO::Compress::Adapter::Bzip2'=> '2.024', - 'IO::Compress::Adapter::Deflate'=> '2.024', - 'IO::Compress::Adapter::Identity'=> '2.024', - 'IO::Compress::Base' => '2.024', - 'IO::Compress::Base::Common'=> '2.024', - 'IO::Compress::Bzip2' => '2.024', - 'IO::Compress::Deflate' => '2.024', - 'IO::Compress::Gzip' => '2.024', - 'IO::Compress::Gzip::Constants'=> '2.024', - 'IO::Compress::RawDeflate'=> '2.024', - 'IO::Compress::Zip' => '2.024', - 'IO::Compress::Zip::Constants'=> '2.024', - 'IO::Compress::Zlib::Constants'=> '2.024', - 'IO::Compress::Zlib::Extra'=> '2.024', - 'IO::Dir' => '1.07', - 'IO::File' => '1.14', - 'IO::Handle' => '1.28', - 'IO::Pipe' => '1.13', - 'IO::Poll' => '0.07', - 'IO::Seekable' => '1.10', - 'IO::Select' => '1.17', - 'IO::Socket' => '1.31', - 'IO::Socket::INET' => '1.31', - 'IO::Socket::UNIX' => '1.23', - 'IO::Uncompress::Adapter::Bunzip2'=> '2.024', - 'IO::Uncompress::Adapter::Identity'=> '2.024', - 'IO::Uncompress::Adapter::Inflate'=> '2.024', - 'IO::Uncompress::AnyInflate'=> '2.024', - 'IO::Uncompress::AnyUncompress'=> '2.024', - 'IO::Uncompress::Base' => '2.024', - 'IO::Uncompress::Bunzip2'=> '2.024', - 'IO::Uncompress::Gunzip'=> '2.024', - 'IO::Uncompress::Inflate'=> '2.024', - 'IO::Uncompress::RawInflate'=> '2.024', - 'IO::Uncompress::Unzip' => '2.024', - 'IO::Zlib' => '1.10', - 'IPC::Cmd' => '0.54', - 'IPC::Msg' => '2.01', - 'IPC::Open2' => '1.03', - 'IPC::Open3' => '1.05', - 'IPC::Semaphore' => '2.01', - 'IPC::SharedMem' => '2.01', - 'IPC::SysV' => '2.01', - 'List::Util' => '1.22', - 'List::Util::PP' => '1.22', - 'List::Util::XS' => '1.22', - 'Locale::Constants' => '2.07', - 'Locale::Country' => '2.07', - 'Locale::Currency' => '2.07', - 'Locale::Language' => '2.07', - 'Locale::Maketext' => '1.14', - 'Locale::Maketext::Guts'=> '1.13', - 'Locale::Maketext::GutsLoader'=> '1.13', - 'Locale::Maketext::Simple'=> '0.21', - 'Locale::Script' => '2.07', - 'Log::Message' => '0.02', - 'Log::Message::Config' => '0.01', - 'Log::Message::Handlers'=> undef, - 'Log::Message::Item' => undef, - 'Log::Message::Simple' => '0.06', - 'MIME::Base64' => '3.08', - 'MIME::QuotedPrint' => '3.08', - 'Math::BigFloat' => '1.60', - 'Math::BigFloat::Trace' => '0.01', - 'Math::BigInt' => '1.89_01', - 'Math::BigInt::Calc' => '0.52', - 'Math::BigInt::CalcEmu' => '0.05', - 'Math::BigInt::FastCalc'=> '0.19', - 'Math::BigInt::Trace' => '0.01', - 'Math::BigRat' => '0.24', - 'Math::Complex' => '1.56', - 'Math::Trig' => '1.2', - 'Memoize' => '1.01_03', - 'Memoize::AnyDBM_File' => '0.65', - 'Memoize::Expire' => '1.00', - 'Memoize::ExpireFile' => '1.01', - 'Memoize::ExpireTest' => '0.65', - 'Memoize::NDBM_File' => '0.65', - 'Memoize::SDBM_File' => '0.65', - 'Memoize::Storable' => '0.65', - 'Module::Build' => '0.3603', - 'Module::Build::Base' => '0.3603', - 'Module::Build::Compat' => '0.3603', - 'Module::Build::Config' => '0.3603', - 'Module::Build::ConfigData'=> undef, - 'Module::Build::Cookbook'=> '0.3603', - 'Module::Build::Dumper' => '0.3603', - 'Module::Build::ModuleInfo'=> '0.3603', - 'Module::Build::Notes' => '0.3603', - 'Module::Build::PPMMaker'=> '0.3603', - 'Module::Build::Platform::Amiga'=> '0.3603', - 'Module::Build::Platform::Default'=> '0.3603', - 'Module::Build::Platform::EBCDIC'=> '0.3603', - 'Module::Build::Platform::MPEiX'=> '0.3603', - 'Module::Build::Platform::MacOS'=> '0.3603', - 'Module::Build::Platform::RiscOS'=> '0.3603', - 'Module::Build::Platform::Unix'=> '0.3603', - 'Module::Build::Platform::VMS'=> '0.3603', - 'Module::Build::Platform::VOS'=> '0.3603', - 'Module::Build::Platform::Windows'=> '0.3603', - 'Module::Build::Platform::aix'=> '0.3603', - 'Module::Build::Platform::cygwin'=> '0.3603', - 'Module::Build::Platform::darwin'=> '0.3603', - 'Module::Build::Platform::os2'=> '0.3603', - 'Module::Build::PodParser'=> '0.3603', - 'Module::Build::Version'=> '0.77', - 'Module::Build::YAML' => '1.40', - 'Module::CoreList' => '2.27', - 'Module::Load' => '0.16', - 'Module::Load::Conditional'=> '0.34', - 'Module::Loaded' => '0.06', - 'Module::Pluggable' => '3.9', - 'Module::Pluggable::Object'=> '3.9', - 'Moped::Msg' => '0.01', - 'NDBM_File' => '1.08', - 'NEXT' => '0.64', - '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.36', - '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.07', - 'Object::Accessor' => '0.36', - 'Opcode' => '1.15', - 'POSIX' => '1.19', - 'Package::Constants' => '0.02', - 'Params::Check' => '0.26', - 'Parse::CPAN::Meta' => '1.40', - 'PerlIO' => '1.06', - 'PerlIO::encoding' => '0.12', - 'PerlIO::scalar' => '0.07', - 'PerlIO::via' => '0.09', - 'PerlIO::via::QuotedPrint'=> '0.06', - 'Pod::Checker' => '1.45', - 'Pod::Escapes' => '1.04', - 'Pod::Find' => '1.35', - 'Pod::Functions' => '1.03', - 'Pod::Html' => '1.09', - 'Pod::InputObjects' => '1.31', - 'Pod::LaTeX' => '0.58', - 'Pod::Man' => '2.23', - 'Pod::ParseLink' => '1.10', - 'Pod::ParseUtils' => '1.36', - 'Pod::Parser' => '1.37', - 'Pod::Perldoc' => '3.15_02', - 'Pod::Perldoc::BaseTo' => undef, - 'Pod::Perldoc::GetOptsOO'=> undef, - 'Pod::Perldoc::ToChecker'=> undef, - 'Pod::Perldoc::ToMan' => undef, - 'Pod::Perldoc::ToNroff' => undef, - 'Pod::Perldoc::ToPod' => undef, - 'Pod::Perldoc::ToRtf' => undef, - 'Pod::Perldoc::ToText' => undef, - 'Pod::Perldoc::ToTk' => undef, - 'Pod::Perldoc::ToXml' => undef, - 'Pod::PlainText' => '2.04', - 'Pod::Plainer' => '1.02', - 'Pod::Select' => '1.36', - 'Pod::Simple' => '3.13', - 'Pod::Simple::BlackBox' => '3.13', - 'Pod::Simple::Checker' => '3.13', - 'Pod::Simple::Debug' => '3.13', - 'Pod::Simple::DumpAsText'=> '3.13', - 'Pod::Simple::DumpAsXML'=> '3.13', - 'Pod::Simple::HTML' => '3.13', - 'Pod::Simple::HTMLBatch'=> '3.13', - 'Pod::Simple::HTMLLegacy'=> '5.01', - 'Pod::Simple::LinkSection'=> '3.13', - 'Pod::Simple::Methody' => '3.13', - 'Pod::Simple::Progress' => '3.13', - 'Pod::Simple::PullParser'=> '3.13', - 'Pod::Simple::PullParserEndToken'=> '3.13', - 'Pod::Simple::PullParserStartToken'=> '3.13', - 'Pod::Simple::PullParserTextToken'=> '3.13', - 'Pod::Simple::PullParserToken'=> '3.13', - 'Pod::Simple::RTF' => '3.13', - 'Pod::Simple::Search' => '3.13', - 'Pod::Simple::SimpleTree'=> '3.13', - 'Pod::Simple::Text' => '3.13', - 'Pod::Simple::TextContent'=> '3.13', - 'Pod::Simple::TiedOutFH'=> '3.13', - 'Pod::Simple::Transcode'=> '3.13', - 'Pod::Simple::TranscodeDumb'=> '3.13', - 'Pod::Simple::TranscodeSmart'=> '3.13', - 'Pod::Simple::XHTML' => '3.13', - 'Pod::Simple::XMLOutStream'=> '3.13', - 'Pod::Text' => '3.14', - 'Pod::Text::Color' => '2.06', - 'Pod::Text::Overstrike' => '2.04', - 'Pod::Text::Termcap' => '2.06', - 'Pod::Usage' => '1.36', - 'SDBM_File' => '1.06', - 'Safe' => '2.25', - 'Scalar::Util' => '1.22', - 'Scalar::Util::PP' => '1.22', - 'Search::Dict' => '1.02', - 'SelectSaver' => '1.02', - 'SelfLoader' => '1.17', - 'Shell' => '0.72_01', - 'Socket' => '1.86', - 'Storable' => '2.22', - 'Switch' => '2.16', - 'Symbol' => '1.07', - 'Sys::Hostname' => '1.11', - 'Sys::Syslog' => '0.27', - 'Sys::Syslog::win32::Win32'=> undef, - 'TAP::Base' => '3.17', - 'TAP::Formatter::Base' => '3.17', - 'TAP::Formatter::Color' => '3.17', - 'TAP::Formatter::Console'=> '3.17', - 'TAP::Formatter::Console::ParallelSession'=> '3.17', - 'TAP::Formatter::Console::Session'=> '3.17', - 'TAP::Formatter::File' => '3.17', - 'TAP::Formatter::File::Session'=> '3.17', - 'TAP::Formatter::Session'=> '3.17', - 'TAP::Harness' => '3.17', - 'TAP::Object' => '3.17', - 'TAP::Parser' => '3.17', - 'TAP::Parser::Aggregator'=> '3.17', - 'TAP::Parser::Grammar' => '3.17', - 'TAP::Parser::Iterator' => '3.17', - 'TAP::Parser::Iterator::Array'=> '3.17', - 'TAP::Parser::Iterator::Process'=> '3.17', - 'TAP::Parser::Iterator::Stream'=> '3.17', - 'TAP::Parser::IteratorFactory'=> '3.17', - 'TAP::Parser::Multiplexer'=> '3.17', - 'TAP::Parser::Result' => '3.17', - 'TAP::Parser::Result::Bailout'=> '3.17', - 'TAP::Parser::Result::Comment'=> '3.17', - 'TAP::Parser::Result::Plan'=> '3.17', - 'TAP::Parser::Result::Pragma'=> '3.17', - 'TAP::Parser::Result::Test'=> '3.17', - 'TAP::Parser::Result::Unknown'=> '3.17', - 'TAP::Parser::Result::Version'=> '3.17', - 'TAP::Parser::Result::YAML'=> '3.17', - 'TAP::Parser::ResultFactory'=> '3.17', - 'TAP::Parser::Scheduler'=> '3.17', - 'TAP::Parser::Scheduler::Job'=> '3.17', - 'TAP::Parser::Scheduler::Spinner'=> '3.17', - 'TAP::Parser::Source' => '3.17', - 'TAP::Parser::Source::Perl'=> '3.17', - 'TAP::Parser::Utils' => '3.17', - 'TAP::Parser::YAMLish::Reader'=> '3.17', - 'TAP::Parser::YAMLish::Writer'=> '3.17', - 'Term::ANSIColor' => '2.02', - 'Term::Cap' => '1.12', - 'Term::Complete' => '1.402', - 'Term::ReadLine' => '1.05', - 'Term::UI' => '0.20', - 'Term::UI::History' => undef, - 'Test' => '1.25_02', - 'Test::Builder' => '0.94', - 'Test::Builder::Module' => '0.94', - 'Test::Builder::Tester' => '1.18', - 'Test::Builder::Tester::Color'=> '1.18', - 'Test::Harness' => '3.17', - 'Test::More' => '0.94', - 'Test::Simple' => '0.94', - 'Text::Abbrev' => '1.01', - '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.11', - 'Thread::Semaphore' => '2.09', - 'Tie::Array' => '1.03', - 'Tie::File' => '0.97_02', - 'Tie::Handle' => '4.2', - 'Tie::Hash' => '1.03', - 'Tie::Hash::NamedCapture'=> '0.06', - 'Tie::Memoize' => '1.1', - 'Tie::RefHash' => '1.38', - 'Tie::Scalar' => '1.02', - 'Tie::StdHandle' => '4.2', - 'Tie::SubstrHash' => '1.00', - 'Time::HiRes' => '1.9719', - 'Time::Local' => '1.1901_01', - 'Time::Piece' => '1.15_01', - 'Time::Piece::Seconds' => undef, - 'Time::Seconds' => undef, - 'Time::gmtime' => '1.03', - 'Time::localtime' => '1.02', - 'Time::tm' => '1.00', - 'UNIVERSAL' => '1.06', - 'Unicode' => '5.2.0', - 'Unicode::Collate' => '0.52_01', - 'Unicode::Normalize' => '1.03', - 'Unicode::UCD' => '0.27', - 'User::grent' => '1.01', - 'User::pwent' => '1.00', - 'VMS::DCLsym' => '1.03', - 'VMS::Stdio' => '2.4', - 'Win32' => '0.39', - 'Win32API::File' => '0.1101', - 'Win32API::File::ExtUtils::Myconst2perl'=> '1', - 'Win32CORE' => '0.02', - 'XS::APItest' => '0.17', - 'XS::APItest::KeywordRPN'=> '0.003', - 'XS::Typemap' => '0.03', - 'XSLoader' => '0.10', - 'XSLoader::XSLoader' => '0.10', - 'attributes' => '0.12', - 'autodie' => '2.06_01', - 'autodie::exception' => '2.06_01', - 'autodie::exception::system'=> '2.06_01', - 'autodie::hints' => '2.06_01', - 'autouse' => '1.06', - 'base' => '2.15', - 'bigint' => '0.23', - 'bignum' => '0.23', - 'bigrat' => '0.23', - 'blib' => '1.04', - 'bytes' => '1.04', - 'charnames' => '1.07', - 'constant' => '1.20', - 'deprecate' => '0.01', - 'diagnostics' => '1.19', - 'encoding' => '2.6_01', - 'encoding::warnings' => '0.11', - 'feature' => '1.16', - 'fields' => '2.15', - 'filetest' => '1.02', - 'if' => '0.05', - 'inc::latest' => '0.3603', - 'integer' => '1.00', - 'less' => '0.03', - 'lib' => '0.62', - 'locale' => '1.00', - 'mro' => '1.02', - 'open' => '1.07', - 'ops' => '1.02', - 'overload' => '1.10', - 'overload::numbers' => undef, - 'overloading' => '0.01', - 'parent' => '0.223', - 're' => '0.11', - 'sigtrap' => '1.04', - 'sort' => '2.01', - 'strict' => '1.04', - 'subs' => '1.00', - 'threads' => '1.75', - 'threads::shared' => '1.32', - 'utf8' => '1.08', - 'vars' => '1.01', - 'version' => '0.82', - 'vmsish' => '1.02', - 'warnings' => '1.09', - 'warnings::register' => '1.01', + 5.012 => { + delta_from => 5.011005, + changed => { + 'B::Deparse' => '0.96', + 'CPAN::Distribution' => '1.9456_01', + 'Module::CoreList' => '2.29', + 'Safe' => '2.25', + 'Socket' => '1.87', + 'Tie::Scalar' => '1.02', + 'Time::Piece' => '1.15_01', + 'bytes' => '1.04', + 'feature' => '1.16', + 'utf8' => '1.08', + }, + removed => { + } + }, + 5.012001 => { + delta_from => 5.012, + changed => { + 'B::Deparse' => '0.97', + 'CGI' => '3.49', + 'CGI::Fast' => '1.08', + 'Carp' => '1.16', + 'Carp::Heavy' => '1.16', + 'File::Copy' => '2.18', + 'Module::CoreList' => '2.32', + 'Pod::Functions' => '1.04', + 'Pod::Simple' => '3.14', + 'Pod::Simple::BlackBox' => '3.14', + 'Pod::Simple::Checker' => '3.14', + 'Pod::Simple::Debug' => '3.14', + 'Pod::Simple::DumpAsText'=> '3.14', + 'Pod::Simple::DumpAsXML'=> '3.14', + 'Pod::Simple::HTML' => '3.14', + 'Pod::Simple::HTMLBatch'=> '3.14', + 'Pod::Simple::LinkSection'=> '3.14', + 'Pod::Simple::Methody' => '3.14', + 'Pod::Simple::Progress' => '3.14', + 'Pod::Simple::PullParser'=> '3.14', + 'Pod::Simple::PullParserEndToken'=> '3.14', + 'Pod::Simple::PullParserStartToken'=> '3.14', + 'Pod::Simple::PullParserTextToken'=> '3.14', + 'Pod::Simple::PullParserToken'=> '3.14', + 'Pod::Simple::RTF' => '3.14', + 'Pod::Simple::Search' => '3.14', + 'Pod::Simple::SimpleTree'=> '3.14', + 'Pod::Simple::Text' => '3.14', + 'Pod::Simple::TextContent'=> '3.14', + 'Pod::Simple::TiedOutFH'=> '3.14', + 'Pod::Simple::Transcode'=> '3.14', + 'Pod::Simple::TranscodeDumb'=> '3.14', + 'Pod::Simple::TranscodeSmart'=> '3.14', + 'Pod::Simple::XHTML' => '3.14', + 'Pod::Simple::XMLOutStream'=> '3.14', + 'Safe' => '2.27', + }, + removed => { + } + }, + 5.012002 => { + delta_from => 5.012001, + changed => { + 'Carp' => '1.17', + 'Carp::Heavy' => '1.17', + 'File::Spec' => '3.31_01', + 'Module::CoreList' => '2.38', + 'Module::Load::Conditional'=> '0.38', + 'PerlIO::scalar' => '0.08', + }, + removed => { + } + }, + 5.012003 => { + delta_from => 5.012002, + changed => { + 'B::Deparse' => '0.9701', + 'Module::Build::Platform::cygwin'=> '0.360301', + 'Module::CoreList' => '2.43', + 'Socket' => '1.87_01', + }, + removed => { + } + }, + 5.012004 => { + delta_from => 5.012003, + changed => { + 'Module::CoreList' => '2.50', + }, + removed => { + 'ExtUtils::Miniperl' => 1, + } + }, + 5.013 => { + delta_from => 5.012, + changed => { + 'CGI' => '3.49', + 'CGI::Fast' => '1.08', + 'Data::Dumper' => '2.126', + 'ExtUtils::MM_Unix' => '6.5601', + 'ExtUtils::MakeMaker' => '6.5601', + 'File::Copy' => '2.18', + 'IPC::Open3' => '1.06', + 'MIME::Base64' => '3.09', + 'MIME::QuotedPrint' => '3.09', + 'Module::CoreList' => '2.31', + 'Pod::Functions' => '1.04', + 'XS::APItest' => '0.18', + 'XS::APItest::KeywordRPN'=> '0.004', + 'feature' => '1.17', + 'threads' => '1.77_01', + 'threads::shared' => '1.33', + }, + removed => { + } + }, + 5.013001 => { + delta_from => 5.012001, + changed => { + 'Data::Dumper' => '2.126', + 'Dumpvalue' => '1.14', + 'Errno' => '1.12', + 'ExtUtils::MM_Unix' => '6.5601', + 'ExtUtils::MakeMaker' => '6.5601', + 'ExtUtils::ParseXS' => '2.2205', + 'File::Find' => '1.16', + 'IPC::Cmd' => '0.58', + 'IPC::Open3' => '1.06', + 'List::Util' => '1.23', + 'List::Util::PP' => '1.23', + 'List::Util::XS' => '1.23', + 'Locale::Codes' => '3.12', + 'Locale::Codes::Country'=> '3.12', + 'Locale::Codes::Currency'=> '3.12', + 'Locale::Codes::Language'=> '3.12', + 'Locale::Codes::Script' => '3.12', + 'Locale::Constants' => '3.12', + 'Locale::Country' => '3.12', + 'Locale::Currency' => '3.12', + 'Locale::Language' => '3.12', + 'Locale::Script' => '3.12', + 'MIME::Base64' => '3.09', + 'MIME::QuotedPrint' => '3.09', + 'Module::Build::Platform::cygwin'=> '0.360301', + 'Module::CoreList' => '2.34', + 'Module::Load::Conditional'=> '0.38', + 'PerlIO::scalar' => '0.08', + 'Scalar::Util' => '1.23', + 'Scalar::Util::PP' => '1.23', + 'Socket' => '1.88', + 'Term::ReadLine' => '1.06', + 'Unicode::UCD' => '0.28', + 'XS::APItest' => '0.19', + 'XS::APItest::KeywordRPN'=> '0.004', + 'charnames' => '1.08', + 'feature' => '1.17', + 'threads' => '1.77_01', + 'threads::shared' => '1.33', + }, + removed => { + 'Class::ISA' => 1, + 'Pod::Plainer' => 1, + 'Switch' => 1, + } + }, + 5.013002 => { + delta_from => 5.013001, + changed => { + 'B::Concise' => '0.79', + 'B::Deparse' => '0.98', + 'CPAN' => '1.94_57', + 'CPAN::Distribution' => '1.9600', + 'Exporter' => '5.64_02', + 'Exporter::Heavy' => '5.64_02', + 'File::Copy' => '2.19', + 'Hash::Util' => '0.08', + 'IO::Socket' => '1.32', + 'Locale::Codes' => '3.13', + 'Locale::Codes::Country'=> '3.13', + 'Locale::Codes::Currency'=> '3.13', + 'Locale::Codes::Language'=> '3.13', + 'Locale::Codes::Script' => '3.13', + 'Locale::Constants' => '3.13', + 'Locale::Country' => '3.13', + 'Locale::Currency' => '3.13', + 'Locale::Language' => '3.13', + 'Locale::Script' => '3.13', + 'Search::Dict' => '1.03', + 'Socket' => '1.89', + 'Thread::Semaphore' => '2.11', + 'UNIVERSAL' => '1.07', + 'VMS::DCLsym' => '1.04', + 'mro' => '1.03', + 'threads' => '1.77_02', + 'threads::shared' => '1.33_01', + }, + removed => { + } + }, + 5.013003 => { + delta_from => 5.013002, + changed => { + 'App::Prove' => '3.21', + 'App::Prove::State' => '3.21', + 'App::Prove::State::Result'=> '3.21', + 'App::Prove::State::Result::Test'=> '3.21', + 'Archive::Extract' => '0.42', + 'Archive::Tar' => '1.64', + 'Archive::Tar::Constant'=> '1.64', + 'Archive::Tar::File' => '1.64', + 'Attribute::Handlers' => '0.88', + 'CPANPLUS' => '0.9007', + 'CPANPLUS::Internals' => '0.9007', + 'CPANPLUS::Shell::Default'=> '0.9007', + 'Compress::Raw::Bzip2' => '2.027', + 'Compress::Raw::Zlib' => '2.027_01', + 'Compress::Zlib' => '2.027', + 'DB' => '1.03', + 'Digest::MD5' => '2.40', + 'Digest::SHA' => '5.48', + 'Exporter' => '5.64_03', + 'Exporter::Heavy' => '5.64_03', + 'ExtUtils::CBuilder' => '0.2703', + 'ExtUtils::CBuilder::Base'=> '0.2703_01', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.2703', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.2703', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.2703', + 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703', + 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703', + 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703', + 'ExtUtils::CBuilder::Platform::aix'=> '0.2703', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.2703', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703', + 'ExtUtils::CBuilder::Platform::os2'=> '0.2703', + 'ExtUtils::Manifest' => '1.58', + 'ExtUtils::ParseXS' => '2.2206', + 'Fatal' => '2.10', + 'File::Basename' => '2.79', + 'File::Copy' => '2.20', + 'File::DosGlob' => '1.02', + 'File::Find' => '1.17', + 'File::Glob' => '1.08', + 'File::stat' => '1.03', + 'I18N::LangTags' => '0.35_01', + 'I18N::LangTags::List' => '0.35_01', + 'IO::Compress::Adapter::Bzip2'=> '2.027', + 'IO::Compress::Adapter::Deflate'=> '2.027', + 'IO::Compress::Adapter::Identity'=> '2.027', + 'IO::Compress::Base' => '2.027', + 'IO::Compress::Base::Common'=> '2.027', + 'IO::Compress::Bzip2' => '2.027', + 'IO::Compress::Deflate' => '2.027', + 'IO::Compress::Gzip' => '2.027', + 'IO::Compress::Gzip::Constants'=> '2.027', + 'IO::Compress::RawDeflate'=> '2.027', + 'IO::Compress::Zip' => '2.027', + 'IO::Compress::Zip::Constants'=> '2.027', + 'IO::Compress::Zlib::Constants'=> '2.027', + 'IO::Compress::Zlib::Extra'=> '2.027', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.027', + 'IO::Uncompress::Adapter::Identity'=> '2.027', + 'IO::Uncompress::Adapter::Inflate'=> '2.027', + 'IO::Uncompress::AnyInflate'=> '2.027', + 'IO::Uncompress::AnyUncompress'=> '2.027', + 'IO::Uncompress::Base' => '2.027', + 'IO::Uncompress::Bunzip2'=> '2.027', + 'IO::Uncompress::Gunzip'=> '2.027', + 'IO::Uncompress::Inflate'=> '2.027', + 'IO::Uncompress::RawInflate'=> '2.027', + 'IO::Uncompress::Unzip' => '2.027', + 'IPC::Cmd' => '0.60', + 'IPC::Msg' => '2.03', + 'IPC::Semaphore' => '2.03', + 'IPC::SharedMem' => '2.03', + 'IPC::SysV' => '2.03', + 'Locale::Maketext' => '1.15', + 'Locale::Maketext::Guts'=> undef, + 'Locale::Maketext::GutsLoader'=> undef, + 'Module::Build' => '0.3607', + 'Module::Build::Base' => '0.3607', + 'Module::Build::Compat' => '0.3607', + 'Module::Build::Config' => '0.3607', + 'Module::Build::Cookbook'=> '0.3607', + 'Module::Build::Dumper' => '0.3607', + 'Module::Build::ModuleInfo'=> '0.3607', + 'Module::Build::Notes' => '0.3607', + 'Module::Build::PPMMaker'=> '0.3607', + 'Module::Build::Platform::Amiga'=> '0.3607', + 'Module::Build::Platform::Default'=> '0.3607', + 'Module::Build::Platform::EBCDIC'=> '0.3607', + 'Module::Build::Platform::MPEiX'=> '0.3607', + 'Module::Build::Platform::MacOS'=> '0.3607', + 'Module::Build::Platform::RiscOS'=> '0.3607', + 'Module::Build::Platform::Unix'=> '0.3607', + 'Module::Build::Platform::VMS'=> '0.3607', + 'Module::Build::Platform::VOS'=> '0.3607', + 'Module::Build::Platform::Windows'=> '0.3607', + 'Module::Build::Platform::aix'=> '0.3607', + 'Module::Build::Platform::cygwin'=> '0.3607', + 'Module::Build::Platform::darwin'=> '0.3607', + 'Module::Build::Platform::os2'=> '0.3607', + 'Module::Build::PodParser'=> '0.3607', + 'Module::CoreList' => '2.36', + 'Module::Load' => '0.18', + 'TAP::Base' => '3.21', + 'TAP::Formatter::Base' => '3.21', + 'TAP::Formatter::Color' => '3.21', + 'TAP::Formatter::Console'=> '3.21', + 'TAP::Formatter::Console::ParallelSession'=> '3.21', + 'TAP::Formatter::Console::Session'=> '3.21', + 'TAP::Formatter::File' => '3.21', + 'TAP::Formatter::File::Session'=> '3.21', + 'TAP::Formatter::Session'=> '3.21', + 'TAP::Harness' => '3.21', + 'TAP::Object' => '3.21', + 'TAP::Parser' => '3.21', + 'TAP::Parser::Aggregator'=> '3.21', + 'TAP::Parser::Grammar' => '3.21', + 'TAP::Parser::Iterator' => '3.21', + 'TAP::Parser::Iterator::Array'=> '3.21', + 'TAP::Parser::Iterator::Process'=> '3.21', + 'TAP::Parser::Iterator::Stream'=> '3.21', + 'TAP::Parser::IteratorFactory'=> '3.21', + 'TAP::Parser::Multiplexer'=> '3.21', + 'TAP::Parser::Result' => '3.21', + 'TAP::Parser::Result::Bailout'=> '3.21', + 'TAP::Parser::Result::Comment'=> '3.21', + 'TAP::Parser::Result::Plan'=> '3.21', + 'TAP::Parser::Result::Pragma'=> '3.21', + 'TAP::Parser::Result::Test'=> '3.21', + 'TAP::Parser::Result::Unknown'=> '3.21', + 'TAP::Parser::Result::Version'=> '3.21', + 'TAP::Parser::Result::YAML'=> '3.21', + 'TAP::Parser::ResultFactory'=> '3.21', + 'TAP::Parser::Scheduler'=> '3.21', + 'TAP::Parser::Scheduler::Job'=> '3.21', + 'TAP::Parser::Scheduler::Spinner'=> '3.21', + 'TAP::Parser::Source' => '3.21', + 'TAP::Parser::SourceHandler'=> '3.21', + 'TAP::Parser::SourceHandler::Executable'=> '3.21', + 'TAP::Parser::SourceHandler::File'=> '3.21', + 'TAP::Parser::SourceHandler::Handle'=> '3.21', + 'TAP::Parser::SourceHandler::Perl'=> '3.21', + 'TAP::Parser::SourceHandler::RawTAP'=> '3.21', + 'TAP::Parser::SourceHandler::pgTAP'=> '3.21', + 'TAP::Parser::Utils' => '3.21', + 'TAP::Parser::YAMLish::Reader'=> '3.21', + 'TAP::Parser::YAMLish::Writer'=> '3.21', + 'Term::ANSIColor' => '3.00', + 'Term::ReadLine' => '1.07', + 'Test::Harness' => '3.21', + 'Tie::Array' => '1.04', + 'Time::HiRes' => '1.9721', + 'Time::Piece' => '1.20_01', + 'Unicode::Collate' => '0.53', + 'Unicode::Normalize' => '1.06', + 'Unicode::UCD' => '0.29', + 'autodie' => '2.10', + 'autodie::exception' => '2.10', + 'autodie::exception::system'=> '2.10', + 'autodie::hints' => '2.10', + 'blib' => '1.05', + 'charnames' => '1.11', + 'diagnostics' => '1.20', + 'inc::latest' => '0.3607', + 'lib' => '0.63', + 're' => '0.12', + 'threads' => '1.77_03', + 'threads::shared' => '1.33_02', + 'vars' => '1.02', + 'warnings' => '1.10', + }, + removed => { + 'ExtUtils::Miniperl' => 1, + 'TAP::Parser::Source::Perl'=> 1, + } + }, + 5.013004 => { + delta_from => 5.013003, + changed => { + 'App::Prove' => '3.22', + 'App::Prove::State' => '3.22', + 'App::Prove::State::Result'=> '3.22', + 'App::Prove::State::Result::Test'=> '3.22', + 'Archive::Tar' => '1.68', + 'Archive::Tar::Constant'=> '1.68', + 'Archive::Tar::File' => '1.68', + 'B::Lint' => '1.12', + 'B::Lint::Debug' => '1.12', + 'Carp' => '1.18', + 'Carp::Heavy' => '1.18', + 'Compress::Raw::Bzip2' => '2.030', + 'Compress::Raw::Zlib' => '2.030', + 'Compress::Zlib' => '2.030', + 'ExtUtils::Miniperl' => undef, + 'ExtUtils::ParseXS' => '2.2207', + 'File::Spec' => '3.31_01', + 'I18N::Langinfo' => '0.04', + 'IO::Compress::Adapter::Bzip2'=> '2.030', + 'IO::Compress::Adapter::Deflate'=> '2.030', + 'IO::Compress::Adapter::Identity'=> '2.030', + 'IO::Compress::Base' => '2.030', + 'IO::Compress::Base::Common'=> '2.030', + 'IO::Compress::Bzip2' => '2.030', + 'IO::Compress::Deflate' => '2.030', + 'IO::Compress::Gzip' => '2.030', + 'IO::Compress::Gzip::Constants'=> '2.030', + 'IO::Compress::RawDeflate'=> '2.030', + 'IO::Compress::Zip' => '2.030', + 'IO::Compress::Zip::Constants'=> '2.030', + 'IO::Compress::Zlib::Constants'=> '2.030', + 'IO::Compress::Zlib::Extra'=> '2.030', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.030', + 'IO::Uncompress::Adapter::Identity'=> '2.030', + 'IO::Uncompress::Adapter::Inflate'=> '2.030', + 'IO::Uncompress::AnyInflate'=> '2.030', + 'IO::Uncompress::AnyUncompress'=> '2.030', + 'IO::Uncompress::Base' => '2.030', + 'IO::Uncompress::Bunzip2'=> '2.030', + 'IO::Uncompress::Gunzip'=> '2.030', + 'IO::Uncompress::Inflate'=> '2.030', + 'IO::Uncompress::RawInflate'=> '2.030', + 'IO::Uncompress::Unzip' => '2.030', + 'Module::CoreList' => '2.37', + 'TAP::Base' => '3.22', + 'TAP::Formatter::Base' => '3.22', + 'TAP::Formatter::Color' => '3.22', + 'TAP::Formatter::Console'=> '3.22', + 'TAP::Formatter::Console::ParallelSession'=> '3.22', + 'TAP::Formatter::Console::Session'=> '3.22', + 'TAP::Formatter::File' => '3.22', + 'TAP::Formatter::File::Session'=> '3.22', + 'TAP::Formatter::Session'=> '3.22', + 'TAP::Harness' => '3.22', + 'TAP::Object' => '3.22', + 'TAP::Parser' => '3.22', + 'TAP::Parser::Aggregator'=> '3.22', + 'TAP::Parser::Grammar' => '3.22', + 'TAP::Parser::Iterator' => '3.22', + 'TAP::Parser::Iterator::Array'=> '3.22', + 'TAP::Parser::Iterator::Process'=> '3.22', + 'TAP::Parser::Iterator::Stream'=> '3.22', + 'TAP::Parser::IteratorFactory'=> '3.22', + 'TAP::Parser::Multiplexer'=> '3.22', + 'TAP::Parser::Result' => '3.22', + 'TAP::Parser::Result::Bailout'=> '3.22', + 'TAP::Parser::Result::Comment'=> '3.22', + 'TAP::Parser::Result::Plan'=> '3.22', + 'TAP::Parser::Result::Pragma'=> '3.22', + 'TAP::Parser::Result::Test'=> '3.22', + 'TAP::Parser::Result::Unknown'=> '3.22', + 'TAP::Parser::Result::Version'=> '3.22', + 'TAP::Parser::Result::YAML'=> '3.22', + 'TAP::Parser::ResultFactory'=> '3.22', + 'TAP::Parser::Scheduler'=> '3.22', + 'TAP::Parser::Scheduler::Job'=> '3.22', + 'TAP::Parser::Scheduler::Spinner'=> '3.22', + 'TAP::Parser::Source' => '3.22', + 'TAP::Parser::SourceHandler'=> '3.22', + 'TAP::Parser::SourceHandler::Executable'=> '3.22', + 'TAP::Parser::SourceHandler::File'=> '3.22', + 'TAP::Parser::SourceHandler::Handle'=> '3.22', + 'TAP::Parser::SourceHandler::Perl'=> '3.22', + 'TAP::Parser::SourceHandler::RawTAP'=> '3.22', + 'TAP::Parser::Utils' => '3.22', + 'TAP::Parser::YAMLish::Reader'=> '3.22', + 'TAP::Parser::YAMLish::Writer'=> '3.22', + 'Test::Builder' => '0.96', + 'Test::Builder::Module' => '0.96', + 'Test::Builder::Tester' => '1.20', + 'Test::Builder::Tester::Color'=> '1.20', + 'Test::Harness' => '3.22', + 'Test::More' => '0.96', + 'Test::Simple' => '0.96', + 'Unicode::Collate' => '0.56', + 'Unicode::Collate::Locale'=> '0.56', + 'XS::APItest' => '0.20', + 'charnames' => '1.15', + 'feature' => '1.18', + }, + removed => { + 'TAP::Parser::SourceHandler::pgTAP'=> 1, + } + }, + 5.013005 => { + delta_from => 5.013004, + changed => { + 'B::Debug' => '1.16', + 'CPANPLUS::Dist::Build' => '0.48', + 'CPANPLUS::Dist::Build::Constants'=> '0.48', + 'Data::Dumper' => '2.128', + 'Encode' => '2.40', + 'Encode::Guess' => '2.04', + 'Encode::MIME::Header' => '2.12', + 'Encode::Unicode::UTF7' => '2.05', + 'Errno' => '1.13', + 'ExtUtils::Command::MM' => '6.57_05', + 'ExtUtils::Liblist' => '6.57_05', + 'ExtUtils::Liblist::Kid'=> '6.5705', + 'ExtUtils::MM' => '6.57_05', + 'ExtUtils::MM_AIX' => '6.57_05', + 'ExtUtils::MM_Any' => '6.57_05', + 'ExtUtils::MM_BeOS' => '6.57_05', + 'ExtUtils::MM_Cygwin' => '6.57_05', + 'ExtUtils::MM_DOS' => '6.5705', + 'ExtUtils::MM_Darwin' => '6.57_05', + 'ExtUtils::MM_MacOS' => '6.5705', + 'ExtUtils::MM_NW5' => '6.57_05', + 'ExtUtils::MM_OS2' => '6.57_05', + 'ExtUtils::MM_QNX' => '6.57_05', + 'ExtUtils::MM_UWIN' => '6.5705', + 'ExtUtils::MM_Unix' => '6.57_05', + 'ExtUtils::MM_VMS' => '6.57_05', + 'ExtUtils::MM_VOS' => '6.57_05', + 'ExtUtils::MM_Win32' => '6.57_05', + 'ExtUtils::MM_Win95' => '6.57_05', + 'ExtUtils::MY' => '6.5705', + 'ExtUtils::MakeMaker' => '6.57_05', + 'ExtUtils::MakeMaker::Config'=> '6.57_05', + 'ExtUtils::MakeMaker::YAML'=> '1.44', + 'ExtUtils::Mkbootstrap' => '6.57_05', + 'ExtUtils::Mksymlists' => '6.57_05', + 'ExtUtils::testlib' => '6.5705', + 'Filter::Simple' => '0.85', + 'Hash::Util' => '0.09', + 'Math::BigFloat' => '1.62', + 'Math::BigInt' => '1.95', + 'Math::BigInt::Calc' => '0.54', + 'Math::BigInt::CalcEmu' => '0.06', + 'Math::BigInt::FastCalc'=> '0.22', + 'Math::BigRat' => '0.26', + 'Module::CoreList' => '2.39', + 'POSIX' => '1.20', + 'PerlIO::scalar' => '0.09', + 'Safe' => '2.28', + 'Test::Builder' => '0.97_01', + 'Test::Builder::Module' => '0.97_01', + 'Test::Builder::Tester' => '1.21_01', + 'Test::Builder::Tester::Color'=> '1.21_01', + 'Test::More' => '0.97_01', + 'Test::Simple' => '0.97_01', + 'Tie::Hash' => '1.04', + 'Unicode::Collate' => '0.59', + 'Unicode::Collate::Locale'=> '0.59', + 'XS::APItest' => '0.21', + 'XS::APItest::KeywordRPN'=> '0.005', + 'XSLoader' => '0.11', + 'bigint' => '0.25', + 'bignum' => '0.25', + 'bigrat' => '0.25', + 'blib' => '1.06', + 'open' => '1.08', + 'threads::shared' => '1.33_03', + 'warnings' => '1.11', + 'warnings::register' => '1.02', + }, + removed => { + } + }, + 5.013006 => { + delta_from => 5.013005, + changed => { + 'Archive::Extract' => '0.44', + 'B' => '1.24', + 'B::Deparse' => '0.99', + 'CPAN' => '1.94_61', + 'CPAN::FTP' => '5.5005', + 'CPAN::Queue' => '5.5001', + 'CPAN::Version' => '5.5001', + 'Carp' => '1.19', + 'Carp::Heavy' => '1.19', + 'Compress::Raw::Bzip2' => '2.031', + 'Cwd' => '3.34', + 'Data::Dumper' => '2.129', + 'Devel::Peek' => '1.05', + 'Digest::MD5' => '2.51', + 'ExtUtils::Constant::Base'=> '0.05', + 'ExtUtils::Constant::ProxySubs'=> '0.07', + 'ExtUtils::Embed' => '1.29', + 'ExtUtils::XSSymSet' => '1.2', + 'Fcntl' => '1.09', + 'File::DosGlob' => '1.03', + 'File::Find' => '1.18', + 'File::Glob' => '1.09', + 'File::Spec' => '3.33', + 'File::Spec::Cygwin' => '3.33', + 'File::Spec::Epoc' => '3.33', + 'File::Spec::Functions' => '3.33', + 'File::Spec::Mac' => '3.33', + 'File::Spec::OS2' => '3.33', + 'File::Spec::Unix' => '3.33', + 'File::Spec::VMS' => '3.33', + 'File::Spec::Win32' => '3.33', + 'GDBM_File' => '1.11', + 'Hash::Util::FieldHash' => '1.05', + 'I18N::Langinfo' => '0.06', + 'IPC::Cmd' => '0.64', + 'IPC::Open3' => '1.07', + 'Locale::Codes' => '3.14', + 'Locale::Codes::Country'=> '3.14', + 'Locale::Codes::Currency'=> '3.14', + 'Locale::Codes::Language'=> '3.14', + 'Locale::Codes::Script' => '3.14', + 'Locale::Constants' => '3.14', + 'Locale::Country' => '3.14', + 'Locale::Currency' => '3.14', + 'Locale::Language' => '3.14', + 'Locale::Maketext' => '1.16', + 'Locale::Script' => '3.14', + 'Math::BigFloat' => '1.63', + 'Math::BigInt' => '1.97', + 'Math::BigInt::Calc' => '0.55', + 'Math::BigInt::CalcEmu' => '0.07', + 'Module::CoreList' => '2.40', + 'NDBM_File' => '1.09', + 'NEXT' => '0.65', + 'ODBM_File' => '1.08', + 'Opcode' => '1.16', + 'POSIX' => '1.21', + 'PerlIO::encoding' => '0.13', + 'PerlIO::scalar' => '0.10', + 'PerlIO::via' => '0.10', + 'Pod::Man' => '2.25', + 'Pod::Text' => '3.15', + 'SDBM_File' => '1.07', + 'Socket' => '1.90', + 'Sys::Hostname' => '1.13', + 'Tie::Hash::NamedCapture'=> '0.07', + 'Unicode::Collate' => '0.63', + 'Unicode::Collate::Locale'=> '0.63', + 'Unicode::Normalize' => '1.07', + 'XS::APItest' => '0.23', + 'XSLoader' => '0.13', + 'attributes' => '0.13', + 'charnames' => '1.16', + 'if' => '0.06', + 'mro' => '1.04', + 'overload' => '1.11', + 're' => '0.13', + 'sigtrap' => '1.05', + 'threads' => '1.81_01', + 'threads::shared' => '1.34', + }, + removed => { + 'XS::APItest::KeywordRPN'=> 1, + } + }, + 5.013007 => { + delta_from => 5.013006, + changed => { + 'Archive::Extract' => '0.46', + 'Archive::Tar' => '1.72', + 'Archive::Tar::Constant'=> '1.72', + 'Archive::Tar::File' => '1.72', + 'AutoLoader' => '5.71', + 'B' => '1.26', + 'B::Concise' => '0.81', + 'B::Deparse' => '1.01', + 'CGI' => '3.50', + 'CPAN' => '1.94_62', + 'CPANPLUS' => '0.9010', + 'CPANPLUS::Dist::Build' => '0.50', + 'CPANPLUS::Dist::Build::Constants'=> '0.50', + 'CPANPLUS::Internals' => '0.9010', + 'CPANPLUS::Shell::Default'=> '0.9010', + 'Data::Dumper' => '2.130_01', + 'DynaLoader' => '1.11', + 'ExtUtils::Constant' => '0.23', + 'ExtUtils::Constant::ProxySubs'=> '0.08', + 'Fcntl' => '1.10', + 'File::Fetch' => '0.28', + 'File::Glob' => '1.10', + 'File::stat' => '1.04', + 'GDBM_File' => '1.12', + 'Hash::Util' => '0.10', + 'Hash::Util::FieldHash' => '1.06', + 'I18N::Langinfo' => '0.07', + 'Locale::Maketext' => '1.17', + 'Locale::Maketext::Guts'=> '1.17', + 'Locale::Maketext::GutsLoader'=> '1.17', + 'MIME::Base64' => '3.10', + 'MIME::QuotedPrint' => '3.10', + 'Math::BigFloat' => '1.99_01', + 'Math::BigInt' => '1.99_01', + 'Math::BigInt::Calc' => '1.99_01', + 'Math::BigInt::CalcEmu' => '1.99_01', + 'Math::BigInt::FastCalc'=> '0.24_01', + 'Math::BigRat' => '0.26_01', + 'Module::CoreList' => '2.41', + 'NDBM_File' => '1.10', + 'ODBM_File' => '1.09', + 'Opcode' => '1.17', + 'POSIX' => '1.22', + 'Pod::Simple' => '3.15', + 'Pod::Simple::BlackBox' => '3.15', + 'Pod::Simple::Checker' => '3.15', + 'Pod::Simple::Debug' => '3.15', + 'Pod::Simple::DumpAsText'=> '3.15', + 'Pod::Simple::DumpAsXML'=> '3.15', + 'Pod::Simple::HTML' => '3.15', + 'Pod::Simple::HTMLBatch'=> '3.15', + 'Pod::Simple::LinkSection'=> '3.15', + 'Pod::Simple::Methody' => '3.15', + 'Pod::Simple::Progress' => '3.15', + 'Pod::Simple::PullParser'=> '3.15', + 'Pod::Simple::PullParserEndToken'=> '3.15', + 'Pod::Simple::PullParserStartToken'=> '3.15', + 'Pod::Simple::PullParserTextToken'=> '3.15', + 'Pod::Simple::PullParserToken'=> '3.15', + 'Pod::Simple::RTF' => '3.15', + 'Pod::Simple::Search' => '3.15', + 'Pod::Simple::SimpleTree'=> '3.15', + 'Pod::Simple::Text' => '3.15', + 'Pod::Simple::TextContent'=> '3.15', + 'Pod::Simple::TiedOutFH'=> '3.15', + 'Pod::Simple::Transcode'=> '3.15', + 'Pod::Simple::TranscodeDumb'=> '3.15', + 'Pod::Simple::TranscodeSmart'=> '3.15', + 'Pod::Simple::XHTML' => '3.15', + 'Pod::Simple::XMLOutStream'=> '3.15', + 'SDBM_File' => '1.08', + 'Safe' => '2.29', + 'SelfLoader' => '1.18', + 'Socket' => '1.91', + 'Storable' => '2.24', + 'Sys::Hostname' => '1.14', + 'Unicode' => '6.0.0', + 'Unicode::Collate' => '0.67', + '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.65', + 'Unicode::Collate::CJK::Stroke'=> '0.65', + 'Unicode::Collate::Locale'=> '0.67', + 'XS::APItest' => '0.26', + 'XS::Typemap' => '0.04', + 'charnames' => '1.17', + 'mro' => '1.05', + 'parent' => '0.224', + 're' => '0.14', + 'threads' => '1.81_02', + }, + removed => { + } + }, + 5.013008 => { + delta_from => 5.013007, + changed => { + 'Archive::Tar' => '1.74', + 'Archive::Tar::Constant'=> '1.74', + 'Archive::Tar::File' => '1.74', + 'B' => '1.27', + 'B::Concise' => '0.82', + 'B::Deparse' => '1.02', + 'Carp::Heavy' => '1.17', + 'Cwd' => '3.35', + 'Data::Dumper' => '2.130_02', + 'Devel::Peek' => '1.06', + 'Devel::SelfStubber' => '1.05', + 'Digest::SHA' => '5.50', + 'Dumpvalue' => '1.15', + 'DynaLoader' => '1.12', + 'Env' => '1.02', + 'Exporter::Heavy' => '5.64_01', + 'ExtUtils::CBuilder' => '0.280201', + 'ExtUtils::CBuilder::Base'=> '0.280201', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.280201', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.280201', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.280201', + 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201', + 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201', + 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201', + 'ExtUtils::CBuilder::Platform::aix'=> '0.280201', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.280201', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201', + 'ExtUtils::CBuilder::Platform::os2'=> '0.280201', + 'ExtUtils::Constant::Utils'=> '0.03', + 'ExtUtils::Embed' => '1.30', + 'ExtUtils::ParseXS' => '2.2208', + 'Fatal' => '2.1001', + 'Fcntl' => '1.11', + 'File::CheckTree' => '4.41', + 'File::Glob' => '1.11', + 'GDBM_File' => '1.13', + 'Hash::Util::FieldHash' => '1.07', + 'I18N::Collate' => '1.02', + 'IO' => '1.25_03', + 'IPC::Cmd' => '0.66', + 'IPC::Open3' => '1.08', + 'Locale::Codes' => '3.15', + 'Locale::Codes::Country'=> '3.15', + 'Locale::Codes::Currency'=> '3.15', + 'Locale::Codes::Language'=> '3.15', + 'Locale::Codes::Script' => '3.15', + 'Locale::Constants' => '3.15', + 'Locale::Country' => '3.15', + 'Locale::Currency' => '3.15', + 'Locale::Language' => '3.15', + 'Locale::Script' => '3.15', + 'MIME::Base64' => '3.13', + 'MIME::QuotedPrint' => '3.13', + 'Math::BigFloat' => '1.99_02', + 'Math::BigInt' => '1.99_02', + 'Math::BigInt::Calc' => '1.99_02', + 'Math::BigInt::CalcEmu' => '1.99_02', + '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::CoreList' => '2.43', + 'NDBM_File' => '1.11', + 'Net::Ping' => '2.37', + 'ODBM_File' => '1.10', + 'Opcode' => '1.18', + 'POSIX' => '1.23', + 'PerlIO::encoding' => '0.14', + 'PerlIO::scalar' => '0.11', + 'PerlIO::via' => '0.11', + 'SDBM_File' => '1.09', + 'Socket' => '1.92', + 'Storable' => '2.25', + 'Time::HiRes' => '1.9721_01', + 'Unicode::Collate' => '0.6801', + 'Unicode::Collate::Locale'=> '0.68', + 'Unicode::Normalize' => '1.08', + 'Unicode::UCD' => '0.30', + 'Win32' => '0.41', + 'XS::APItest' => '0.27', + 'autodie' => '2.1001', + 'autodie::exception' => '2.1001', + 'autodie::exception::system'=> '2.1001', + 'autodie::hints' => '2.1001', + 'feature' => '1.19', + 'if' => '0.0601', + 'mro' => '1.06', + 'overload' => '1.12', + 're' => '0.15', + 'threads' => '1.81_03', + 'threads::shared' => '1.35', + 'version' => '0.86', + }, + removed => { + } + }, + 5.013009 => { + delta_from => 5.013008, + changed => { + 'Archive::Extract' => '0.48', + 'Archive::Tar' => '1.76', + 'Archive::Tar::Constant'=> '1.76', + 'Archive::Tar::File' => '1.76', + 'B::Concise' => '0.83', + 'B::Deparse' => '1.03', + 'B::Lint' => '1.13', + 'Benchmark' => '1.12', + 'CGI' => '3.51', + 'CGI::Carp' => '3.51', + 'CGI::Cookie' => '1.30', + 'CGI::Push' => '1.05', + 'CGI::Util' => '3.51', + 'CPAN' => '1.94_63', + 'CPAN::HTTP::Client' => '1.94', + 'CPAN::HTTP::Credentials'=> '1.94', + 'CPAN::Meta::YAML' => '0.003', + 'CPANPLUS' => '0.9011', + 'CPANPLUS::Dist::Build' => '0.52', + 'CPANPLUS::Dist::Build::Constants'=> '0.52', + 'CPANPLUS::Internals' => '0.9011', + 'CPANPLUS::Shell::Default'=> '0.9011', + 'Carp::Heavy' => '1.19', + 'Compress::Raw::Bzip2' => '2.033', + 'Compress::Raw::Zlib' => '2.033', + 'Compress::Zlib' => '2.033', + 'Cwd' => '3.36', + 'DBM_Filter' => '0.04', + 'DB_File' => '1.821', + 'Devel::Peek' => '1.07', + 'DirHandle' => '1.04', + 'Dumpvalue' => '1.16', + 'Encode' => '2.42', + 'Encode::Alias' => '2.13', + 'Encode::MIME::Header' => '2.13', + 'Exporter::Heavy' => '5.64_03', + 'ExtUtils::Install' => '1.56', + 'ExtUtils::ParseXS' => '2.2209', + 'File::Basename' => '2.80', + 'File::Copy' => '2.21', + 'File::DosGlob' => '1.04', + 'File::Fetch' => '0.32', + 'File::Find' => '1.19', + 'File::Spec::Mac' => '3.34', + 'File::Spec::VMS' => '3.34', + 'File::stat' => '1.05', + 'HTTP::Tiny' => '0.009', + 'Hash::Util::FieldHash' => '1.08', + 'IO::Compress::Adapter::Bzip2'=> '2.033', + 'IO::Compress::Adapter::Deflate'=> '2.033', + 'IO::Compress::Adapter::Identity'=> '2.033', + 'IO::Compress::Base' => '2.033', + 'IO::Compress::Base::Common'=> '2.033', + 'IO::Compress::Bzip2' => '2.033', + 'IO::Compress::Deflate' => '2.033', + 'IO::Compress::Gzip' => '2.033', + 'IO::Compress::Gzip::Constants'=> '2.033', + 'IO::Compress::RawDeflate'=> '2.033', + 'IO::Compress::Zip' => '2.033', + 'IO::Compress::Zip::Constants'=> '2.033', + 'IO::Compress::Zlib::Constants'=> '2.033', + 'IO::Compress::Zlib::Extra'=> '2.033', + 'IO::Handle' => '1.29', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.033', + 'IO::Uncompress::Adapter::Identity'=> '2.033', + 'IO::Uncompress::Adapter::Inflate'=> '2.033', + 'IO::Uncompress::AnyInflate'=> '2.033', + 'IO::Uncompress::AnyUncompress'=> '2.033', + 'IO::Uncompress::Base' => '2.033', + 'IO::Uncompress::Bunzip2'=> '2.033', + 'IO::Uncompress::Gunzip'=> '2.033', + 'IO::Uncompress::Inflate'=> '2.033', + 'IO::Uncompress::RawInflate'=> '2.033', + 'IO::Uncompress::Unzip' => '2.033', + 'IPC::Cmd' => '0.68', + 'IPC::Open3' => '1.09', + 'JSON::PP' => '2.27103', + 'JSON::PP::Boolean' => undef, + 'Locale::Maketext' => '1.18', + 'Log::Message' => '0.04', + 'Log::Message::Config' => '0.04', + 'Log::Message::Handlers'=> '0.04', + 'Log::Message::Item' => '0.04', + 'Log::Message::Simple' => '0.08', + 'Math::BigFloat' => '1.99_03', + 'Math::BigInt' => '1.99_03', + 'Math::BigInt::Calc' => '1.99_03', + 'Math::BigInt::FastCalc'=> '0.24_02', + 'Math::BigRat' => '0.26_02', + 'Module::CoreList' => '2.42_01', + 'Module::Load::Conditional'=> '0.40', + 'Module::Metadata' => '1.000003', + 'Net::Ping' => '2.38', + 'Object::Accessor' => '0.38', + 'POSIX' => '1.24', + 'Params::Check' => '0.28', + 'Perl::OSType' => '1.002', + 'Pod::LaTeX' => '0.59', + 'Pod::Perldoc' => '3.15_03', + 'Socket' => '1.93', + 'Storable' => '2.26', + 'Sys::Hostname' => '1.15', + 'Term::UI' => '0.24', + 'Thread::Queue' => '2.12', + 'Thread::Semaphore' => '2.12', + 'Time::Local' => '1.2000', + 'UNIVERSAL' => '1.08', + 'Unicode::Normalize' => '1.10', + 'Win32' => '0.44', + 'bigint' => '0.26', + 'bignum' => '0.26', + 'bigrat' => '0.26', + 'charnames' => '1.18', + 'diagnostics' => '1.21', + 're' => '0.16', + 'threads' => '1.83', + 'threads::shared' => '1.36', + 'version' => '0.88', + }, + removed => { + } + }, + 5.01301 => { + delta_from => 5.013009, + changed => { + 'Attribute::Handlers' => '0.89', + 'B' => '1.28', + 'B::Showlex' => '1.03', + 'CGI' => '3.52', + 'CPAN' => '1.94_65', + 'CPAN::Distribution' => '1.9601', + 'CPAN::FTP::netrc' => '1.01', + 'CPAN::FirstTime' => '5.5303', + 'CPAN::HandleConfig' => '5.5003', + 'CPAN::Meta' => '2.110440', + 'CPAN::Meta::Converter' => '2.110440', + 'CPAN::Meta::Feature' => '2.110440', + 'CPAN::Meta::History' => '2.110440', + 'CPAN::Meta::Prereqs' => '2.110440', + 'CPAN::Meta::Spec' => '2.110440', + 'CPAN::Meta::Validator' => '2.110440', + 'CPAN::Shell' => '5.5002', + 'CPANPLUS' => '0.9101', + 'CPANPLUS::Internals' => '0.9101', + 'CPANPLUS::Shell::Default'=> '0.9101', + 'Carp' => '1.20', + 'Carp::Heavy' => '1.20', + 'Cwd' => '3.37', + 'Devel::DProf' => '20110217.00', + 'DynaLoader' => '1.13', + 'ExtUtils::CBuilder' => '0.280202', + 'ExtUtils::CBuilder::Base'=> '0.280202', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.280202', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.280202', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.280202', + 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202', + 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202', + 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202', + 'ExtUtils::CBuilder::Platform::aix'=> '0.280202', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.280202', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202', + 'ExtUtils::CBuilder::Platform::os2'=> '0.280202', + 'File::Copy' => '2.22', + 'Filter::Simple' => '0.86', + 'HTTP::Tiny' => '0.010', + 'I18N::LangTags::Detect'=> '1.05', + 'IO::Select' => '1.18', + 'IPC::Cmd' => '0.70', + 'Locale::Maketext' => '1.19', + 'Math::BigFloat' => '1.992', + 'Math::BigInt' => '1.992', + 'Math::BigInt::Calc' => '1.992', + 'Math::BigInt::CalcEmu' => '1.992', + 'Module::Build' => '0.37_05', + 'Module::Build::Base' => '0.37_05', + 'Module::Build::Compat' => '0.37_05', + 'Module::Build::Config' => '0.37_05', + 'Module::Build::Cookbook'=> '0.37_05', + 'Module::Build::Dumper' => '0.37_05', + 'Module::Build::ModuleInfo'=> '0.37_05', + 'Module::Build::Notes' => '0.37_05', + 'Module::Build::PPMMaker'=> '0.37_05', + 'Module::Build::Platform::Amiga'=> '0.37_05', + 'Module::Build::Platform::Default'=> '0.37_05', + 'Module::Build::Platform::EBCDIC'=> '0.37_05', + 'Module::Build::Platform::MPEiX'=> '0.37_05', + 'Module::Build::Platform::MacOS'=> '0.37_05', + 'Module::Build::Platform::RiscOS'=> '0.37_05', + 'Module::Build::Platform::Unix'=> '0.37_05', + 'Module::Build::Platform::VMS'=> '0.37_05', + 'Module::Build::Platform::VOS'=> '0.37_05', + 'Module::Build::Platform::Windows'=> '0.37_05', + 'Module::Build::Platform::aix'=> '0.37_05', + 'Module::Build::Platform::cygwin'=> '0.37_05', + 'Module::Build::Platform::darwin'=> '0.37_05', + 'Module::Build::Platform::os2'=> '0.37_05', + 'Module::Build::PodParser'=> '0.37_05', + 'Module::Build::Version'=> '0.87', + 'Module::Build::YAML' => '1.41', + 'Module::CoreList' => '2.45', + 'Module::Load::Conditional'=> '0.44', + 'Module::Metadata' => '1.000004', + 'Parse::CPAN::Meta' => '1.4401', + 'Pod::Html' => '1.1', + 'Socket' => '1.94', + 'Term::UI' => '0.26', + 'Unicode::Collate' => '0.72', + 'Unicode::Collate::Locale'=> '0.71', + 'Unicode::UCD' => '0.31', + 'VMS::DCLsym' => '1.05', + 'Version::Requirements' => '0.101020', + 'bigrat' => '0.27', + 'deprecate' => '0.02', + 'diagnostics' => '1.22', + 'inc::latest' => '0.37_05', + 'overload' => '1.13', + 're' => '0.17', + 'utf8' => '1.09', + 'warnings' => '1.12', + }, + removed => { + } + }, + 5.013011 => { + delta_from => 5.01301, + changed => { + 'App::Prove' => '3.23', + 'App::Prove::State' => '3.23', + 'App::Prove::State::Result'=> '3.23', + 'App::Prove::State::Result::Test'=> '3.23', + 'B' => '1.29', + 'CPAN' => '1.9600', + 'CPAN::Author' => '5.5001', + 'CPAN::CacheMgr' => '5.5001', + 'CPAN::Distribution' => '1.9602', + 'CPAN::Exception::blocked_urllist'=> '1.001', + 'CPAN::HTTP::Client' => '1.9600', + 'CPAN::HTTP::Credentials'=> '1.9600', + 'CPAN::Index' => '1.9600', + 'CPAN::LWP::UserAgent' => '1.9600', + 'CPAN::Mirrors' => '1.9600', + 'CPAN::Module' => '5.5001', + 'CPANPLUS' => '0.9103', + 'CPANPLUS::Dist::Build' => '0.54', + 'CPANPLUS::Dist::Build::Constants'=> '0.54', + 'CPANPLUS::Internals' => '0.9103', + 'CPANPLUS::Shell::Default'=> '0.9103', + 'Cwd' => '3.36', + 'Devel::DProf' => '20110228.00', + 'Digest::SHA' => '5.61', + 'ExtUtils::Command' => '1.17', + 'File::Basename' => '2.81', + 'File::Copy' => '2.21', + 'File::Glob' => '1.12', + 'GDBM_File' => '1.14', + 'HTTP::Tiny' => '0.011', + 'Hash::Util' => '0.11', + 'Hash::Util::FieldHash' => '1.09', + 'I18N::Langinfo' => '0.08', + 'IO' => '1.25_04', + 'IO::Dir' => '1.08', + 'IO::File' => '1.15', + 'IO::Handle' => '1.30', + 'IO::Pipe' => '1.14', + 'IO::Poll' => '0.08', + 'IO::Select' => '1.20', + 'JSON::PP' => '2.27105', + 'Locale::Codes' => '3.16', + 'Locale::Codes::Country'=> '3.16', + 'Locale::Codes::Currency'=> '3.16', + 'Locale::Codes::Language'=> '3.16', + 'Locale::Codes::Script' => '3.16', + 'Locale::Constants' => '3.16', + 'Locale::Country' => '3.16', + 'Locale::Currency' => '3.16', + 'Locale::Language' => '3.16', + 'Locale::Script' => '3.16', + 'Math::BigFloat' => '1.993', + 'Math::BigInt' => '1.994', + 'Math::BigInt::Calc' => '1.993', + 'Math::BigInt::CalcEmu' => '1.993', + 'Math::BigInt::FastCalc'=> '0.28', + 'Module::Build' => '0.3800', + 'Module::Build::Base' => '0.3800', + 'Module::Build::Compat' => '0.3800', + 'Module::Build::Config' => '0.3800', + 'Module::Build::Cookbook'=> '0.3800', + 'Module::Build::Dumper' => '0.3800', + 'Module::Build::ModuleInfo'=> '0.3800', + 'Module::Build::Notes' => '0.3800', + 'Module::Build::PPMMaker'=> '0.3800', + 'Module::Build::Platform::Amiga'=> '0.3800', + 'Module::Build::Platform::Default'=> '0.3800', + 'Module::Build::Platform::EBCDIC'=> '0.3800', + 'Module::Build::Platform::MPEiX'=> '0.3800', + 'Module::Build::Platform::MacOS'=> '0.3800', + 'Module::Build::Platform::RiscOS'=> '0.3800', + 'Module::Build::Platform::Unix'=> '0.3800', + 'Module::Build::Platform::VMS'=> '0.3800', + 'Module::Build::Platform::VOS'=> '0.3800', + 'Module::Build::Platform::Windows'=> '0.3800', + 'Module::Build::Platform::aix'=> '0.3800', + 'Module::Build::Platform::cygwin'=> '0.3800', + 'Module::Build::Platform::darwin'=> '0.3800', + 'Module::Build::Platform::os2'=> '0.3800', + 'Module::Build::PodParser'=> '0.3800', + 'Module::CoreList' => '2.46', + 'NDBM_File' => '1.12', + 'Pod::Simple' => '3.16', + 'Pod::Simple::BlackBox' => '3.16', + 'Pod::Simple::Checker' => '3.16', + 'Pod::Simple::Debug' => '3.16', + 'Pod::Simple::DumpAsText'=> '3.16', + 'Pod::Simple::DumpAsXML'=> '3.16', + 'Pod::Simple::HTML' => '3.16', + 'Pod::Simple::HTMLBatch'=> '3.16', + 'Pod::Simple::LinkSection'=> '3.16', + 'Pod::Simple::Methody' => '3.16', + 'Pod::Simple::Progress' => '3.16', + 'Pod::Simple::PullParser'=> '3.16', + 'Pod::Simple::PullParserEndToken'=> '3.16', + 'Pod::Simple::PullParserStartToken'=> '3.16', + 'Pod::Simple::PullParserTextToken'=> '3.16', + 'Pod::Simple::PullParserToken'=> '3.16', + 'Pod::Simple::RTF' => '3.16', + 'Pod::Simple::Search' => '3.16', + 'Pod::Simple::SimpleTree'=> '3.16', + 'Pod::Simple::Text' => '3.16', + 'Pod::Simple::TextContent'=> '3.16', + 'Pod::Simple::TiedOutFH'=> '3.16', + 'Pod::Simple::Transcode'=> '3.16', + 'Pod::Simple::TranscodeDumb'=> '3.16', + 'Pod::Simple::TranscodeSmart'=> '3.16', + 'Pod::Simple::XHTML' => '3.16', + 'Pod::Simple::XMLOutStream'=> '3.16', + 'Storable' => '2.27', + 'Sys::Hostname' => '1.16', + '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', + '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', + 'Tie::Hash::NamedCapture'=> '0.08', + 'Tie::RefHash' => '1.39', + 'Unicode::Collate' => '0.73', + 'Unicode::Collate::Locale'=> '0.73', + 'Unicode::UCD' => '0.32', + 'XS::Typemap' => '0.05', + 'attributes' => '0.14', + 'base' => '2.16', + 'inc::latest' => '0.3800', + 'mro' => '1.07', + 'parent' => '0.225', + }, + removed => { + } + }, + 5.014 => { + delta_from => 5.013011, + changed => { + 'ExtUtils::CBuilder' => '0.280203', + 'ExtUtils::CBuilder::Base'=> '0.280203', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.280203', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.280203', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.280203', + 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203', + 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203', + 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203', + 'ExtUtils::CBuilder::Platform::aix'=> '0.280203', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.280203', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203', + 'ExtUtils::CBuilder::Platform::os2'=> '0.280203', + 'ExtUtils::ParseXS' => '2.2210', + 'File::Basename' => '2.82', + 'HTTP::Tiny' => '0.012', + 'IO::Handle' => '1.31', + 'Module::CoreList' => '2.49', + 'PerlIO' => '1.07', + 'Pod::Html' => '1.11', + 'XS::APItest' => '0.28', + 'bigint' => '0.27', + 'bignum' => '0.27', + 'bigrat' => '0.28', + 'constant' => '1.21', + 'feature' => '1.20', + 're' => '0.18', + 'threads::shared' => '1.37', + }, + removed => { + } + }, + 5.014001 => { + delta_from => 5.014, + changed => { + 'B::Deparse' => '1.04', + 'Module::CoreList' => '2.49_01', + 'Pod::Perldoc' => '3.15_04', + }, + removed => { + } + }, + 5.014002 => { + delta_from => 5.014001, + changed => { + 'CPAN' => '1.9600_01', + 'CPAN::Distribution' => '1.9602_01', + 'Devel::DProf::dprof::V'=> undef, + 'Encode' => '2.42_01', + 'File::Glob' => '1.13', + 'Module::CoreList' => '2.49_02', + 'PerlIO::scalar' => '0.11_01', + 'Time::Piece::Seconds' => undef, + 'XSLoader::XSLoader' => '0.13', + }, + removed => { + } + }, + 5.015 => { + delta_from => 5.014001, + changed => { + 'Archive::Extract' => '0.52', + 'Attribute::Handlers' => '0.91', + 'B' => '1.30', + 'B::Concise' => '0.84', + 'B::Deparse' => '1.05', + 'Benchmark' => '1.13', + 'CGI' => '3.54', + 'CGI::Util' => '3.53', + 'CPAN::Meta' => '2.110930', + 'CPAN::Meta::Converter' => '2.110930', + 'CPAN::Meta::Feature' => '2.110930', + 'CPAN::Meta::History' => '2.110930', + 'CPAN::Meta::Prereqs' => '2.110930', + 'CPAN::Meta::Spec' => '2.110930', + 'CPAN::Meta::Validator' => '2.110930', + 'CPANPLUS' => '0.9105', + 'CPANPLUS::Dist::Build' => '0.56', + 'CPANPLUS::Dist::Build::Constants'=> '0.56', + 'CPANPLUS::Internals' => '0.9105', + 'CPANPLUS::Shell::Default'=> '0.9105', + 'Compress::Raw::Bzip2' => '2.035', + 'Compress::Raw::Zlib' => '2.035', + 'Compress::Zlib' => '2.035', + 'DB_File' => '1.822', + 'Data::Dumper' => '2.131', + 'Devel::Peek' => '1.08', + 'Digest::SHA' => '5.62', + 'Encode' => '2.43', + 'Encode::Alias' => '2.14', + 'ExtUtils::CBuilder' => '0.280204', + 'ExtUtils::CBuilder::Base'=> '0.280204', + 'Fatal' => '2.10', + 'File::Spec::Win32' => '3.34', + 'Filter::Simple' => '0.87', + 'Filter::Util::Call' => '1.39', + 'FindBin' => '1.51', + 'Hash::Util::FieldHash' => '1.10', + 'I18N::LangTags' => '0.36', + 'IO::Compress::Adapter::Bzip2'=> '2.035', + 'IO::Compress::Adapter::Deflate'=> '2.035', + 'IO::Compress::Adapter::Identity'=> '2.035', + 'IO::Compress::Base' => '2.035', + 'IO::Compress::Base::Common'=> '2.035', + 'IO::Compress::Bzip2' => '2.035', + 'IO::Compress::Deflate' => '2.035', + 'IO::Compress::Gzip' => '2.035', + 'IO::Compress::Gzip::Constants'=> '2.035', + 'IO::Compress::RawDeflate'=> '2.035', + 'IO::Compress::Zip' => '2.035', + 'IO::Compress::Zip::Constants'=> '2.035', + 'IO::Compress::Zlib::Constants'=> '2.035', + 'IO::Compress::Zlib::Extra'=> '2.035', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.035', + 'IO::Uncompress::Adapter::Identity'=> '2.035', + 'IO::Uncompress::Adapter::Inflate'=> '2.035', + 'IO::Uncompress::AnyInflate'=> '2.035', + 'IO::Uncompress::AnyUncompress'=> '2.035', + 'IO::Uncompress::Base' => '2.035', + 'IO::Uncompress::Bunzip2'=> '2.035', + 'IO::Uncompress::Gunzip'=> '2.035', + 'IO::Uncompress::Inflate'=> '2.035', + 'IO::Uncompress::RawInflate'=> '2.035', + 'IO::Uncompress::Unzip' => '2.035', + 'IPC::Open2' => '1.04', + 'IPC::Open3' => '1.11', + 'JSON::PP' => '2.27200', + 'Math::BigFloat' => '1.994', + 'Math::BigInt' => '1.995', + 'Math::Complex' => '1.57', + 'Math::Trig' => '1.21', + 'Module::CoreList' => '2.51', + 'ODBM_File' => '1.11', + 'Object::Accessor' => '0.42', + 'Opcode' => '1.19', + 'PerlIO::encoding' => '0.15', + 'PerlIO::scalar' => '0.12', + 'Pod::Perldoc' => '3.15_05', + 'Storable' => '2.28', + 'Sys::Syslog' => '0.29', + 'Time::HiRes' => '1.9722', + 'Unicode::Collate' => '0.76', + 'Unicode::Collate::CJK::Pinyin'=> '0.76', + 'Unicode::Collate::CJK::Stroke'=> '0.76', + 'Unicode::Collate::Locale'=> '0.76', + 'Unicode::Normalize' => '1.12', + 'XS::APItest' => '0.29', + 'XSLoader' => '0.15', + 'autodie' => '2.10', + 'autodie::exception' => '2.10', + 'autodie::exception::system'=> '2.10', + 'autodie::hints' => '2.10', + 'base' => '2.17', + 'charnames' => '1.22', + 'constant' => '1.22', + 'feature' => '1.21', + 'mro' => '1.08', + 'overload' => '1.14', + 'threads::shared' => '1.38', + 'vmsish' => '1.03', + }, + removed => { + 'Devel::DProf' => 1, + 'Shell' => 1, + } + }, + 5.015001 => { + delta_from => 5.015, + changed => { + 'B::Deparse' => '1.06', + 'CGI' => '3.55', + 'CPAN::Meta' => '2.110930001', + 'CPAN::Meta::Converter' => '2.110930001', + 'CPANPLUS' => '0.9108', + 'CPANPLUS::Internals' => '0.9108', + 'CPANPLUS::Shell::Default'=> '0.9108', + 'Carp' => '1.21', + 'Carp::Heavy' => '1.21', + 'Compress::Raw::Bzip2' => '2.037', + 'Compress::Raw::Zlib' => '2.037', + 'Compress::Zlib' => '2.037', + 'Cwd' => '3.37', + 'Env' => '1.03', + 'ExtUtils::Command::MM' => '6.58', + 'ExtUtils::Liblist' => '6.58', + 'ExtUtils::Liblist::Kid'=> '6.58', + 'ExtUtils::MM' => '6.58', + 'ExtUtils::MM_AIX' => '6.58', + 'ExtUtils::MM_Any' => '6.58', + 'ExtUtils::MM_BeOS' => '6.58', + 'ExtUtils::MM_Cygwin' => '6.58', + 'ExtUtils::MM_DOS' => '6.58', + 'ExtUtils::MM_Darwin' => '6.58', + 'ExtUtils::MM_MacOS' => '6.58', + 'ExtUtils::MM_NW5' => '6.58', + 'ExtUtils::MM_OS2' => '6.58', + 'ExtUtils::MM_QNX' => '6.58', + 'ExtUtils::MM_UWIN' => '6.58', + 'ExtUtils::MM_Unix' => '6.58', + 'ExtUtils::MM_VMS' => '6.58', + 'ExtUtils::MM_VOS' => '6.58', + 'ExtUtils::MM_Win32' => '6.58', + 'ExtUtils::MM_Win95' => '6.58', + 'ExtUtils::MY' => '6.58', + 'ExtUtils::MakeMaker' => '6.58', + 'ExtUtils::MakeMaker::Config'=> '6.58', + 'ExtUtils::Mkbootstrap' => '6.58', + 'ExtUtils::Mksymlists' => '6.58', + 'ExtUtils::ParseXS' => '3.00_01', + 'ExtUtils::ParseXS::Constants'=> undef, + 'ExtUtils::ParseXS::CountLines'=> undef, + 'ExtUtils::ParseXS::Utilities'=> undef, + 'ExtUtils::Typemaps' => '1.00', + 'ExtUtils::Typemaps::InputMap'=> undef, + 'ExtUtils::Typemaps::OutputMap'=> undef, + 'ExtUtils::Typemaps::Type'=> '0.05', + 'ExtUtils::testlib' => '6.58', + 'File::Basename' => '2.83', + 'File::Find' => '1.20', + 'HTTP::Tiny' => '0.013', + 'I18N::Langinfo' => '0.08_02', + 'IO::Compress::Adapter::Bzip2'=> '2.037', + 'IO::Compress::Adapter::Deflate'=> '2.037', + 'IO::Compress::Adapter::Identity'=> '2.037', + 'IO::Compress::Base' => '2.037', + 'IO::Compress::Base::Common'=> '2.037', + 'IO::Compress::Bzip2' => '2.037', + 'IO::Compress::Deflate' => '2.037', + 'IO::Compress::Gzip' => '2.037', + 'IO::Compress::Gzip::Constants'=> '2.037', + 'IO::Compress::RawDeflate'=> '2.037', + 'IO::Compress::Zip' => '2.037', + 'IO::Compress::Zip::Constants'=> '2.037', + 'IO::Compress::Zlib::Constants'=> '2.037', + 'IO::Compress::Zlib::Extra'=> '2.037', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.037', + 'IO::Uncompress::Adapter::Identity'=> '2.037', + 'IO::Uncompress::Adapter::Inflate'=> '2.037', + 'IO::Uncompress::AnyInflate'=> '2.037', + 'IO::Uncompress::AnyUncompress'=> '2.037', + 'IO::Uncompress::Base' => '2.037', + 'IO::Uncompress::Bunzip2'=> '2.037', + 'IO::Uncompress::Gunzip'=> '2.037', + 'IO::Uncompress::Inflate'=> '2.037', + 'IO::Uncompress::RawInflate'=> '2.037', + 'IO::Uncompress::Unzip' => '2.037', + 'IPC::Cmd' => '0.72', + 'Locale::Codes' => '3.17', + 'Locale::Codes::Constants'=> '3.17', + 'Locale::Codes::Country'=> '3.17', + 'Locale::Codes::Country_Codes'=> '3.17', + 'Locale::Codes::Currency'=> '3.17', + 'Locale::Codes::Currency_Codes'=> '3.17', + 'Locale::Codes::LangExt'=> '3.17', + 'Locale::Codes::LangExt_Codes'=> '3.17', + 'Locale::Codes::LangVar'=> '3.17', + 'Locale::Codes::LangVar_Codes'=> '3.17', + 'Locale::Codes::Language'=> '3.17', + 'Locale::Codes::Language_Codes'=> '3.17', + 'Locale::Codes::Script' => '3.17', + 'Locale::Codes::Script_Codes'=> '3.17', + 'Locale::Country' => '3.17', + 'Locale::Currency' => '3.17', + 'Locale::Language' => '3.17', + 'Locale::Script' => '3.17', + 'Math::BigFloat::Trace' => '0.28', + 'Math::BigInt::FastCalc'=> '0.29', + 'Math::BigInt::Trace' => '0.28', + 'Math::BigRat' => '0.2602', + 'Math::Complex' => '1.58', + 'Math::Trig' => '1.22', + 'Module::CoreList' => '2.54', + 'Pod::Perldoc' => '3.15_06', + 'Pod::Simple' => '3.18', + 'Pod::Simple::BlackBox' => '3.18', + 'Pod::Simple::Checker' => '3.18', + 'Pod::Simple::Debug' => '3.18', + 'Pod::Simple::DumpAsText'=> '3.18', + 'Pod::Simple::DumpAsXML'=> '3.18', + 'Pod::Simple::HTML' => '3.18', + 'Pod::Simple::HTMLBatch'=> '3.18', + 'Pod::Simple::LinkSection'=> '3.18', + 'Pod::Simple::Methody' => '3.18', + 'Pod::Simple::Progress' => '3.18', + 'Pod::Simple::PullParser'=> '3.18', + 'Pod::Simple::PullParserEndToken'=> '3.18', + 'Pod::Simple::PullParserStartToken'=> '3.18', + 'Pod::Simple::PullParserTextToken'=> '3.18', + 'Pod::Simple::PullParserToken'=> '3.18', + 'Pod::Simple::RTF' => '3.18', + 'Pod::Simple::Search' => '3.18', + 'Pod::Simple::SimpleTree'=> '3.18', + 'Pod::Simple::Text' => '3.18', + 'Pod::Simple::TextContent'=> '3.18', + 'Pod::Simple::TiedOutFH'=> '3.18', + 'Pod::Simple::Transcode'=> '3.18', + 'Pod::Simple::TranscodeDumb'=> '3.18', + 'Pod::Simple::TranscodeSmart'=> '3.18', + 'Pod::Simple::XHTML' => '3.18', + 'Pod::Simple::XMLOutStream'=> '3.18', + 'Storable' => '2.31', + 'Sys::Syslog::Win32' => undef, + 'Time::HiRes' => '1.9724', + 'Unicode::Collate' => '0.77', + 'Unicode::UCD' => '0.33', + 'Win32API::File' => '0.1200', + 'XS::APItest' => '0.30', + 'attributes' => '0.15', + 'bigint' => '0.28', + 'bignum' => '0.28', + 'charnames' => '1.23', + 'diagnostics' => '1.23', + 'feature' => '1.22', + 'overload' => '1.15', + 'perlfaq' => '5.015000', + 'threads' => '1.84', + 'version' => '0.93', + }, + removed => { + 'ExtUtils::MakeMaker::YAML'=> 1, + 'Locale::Constants' => 1, + 'Sys::Syslog::win32::Win32'=> 1, + } + }, + 5.015002 => { + delta_from => 5.015001, + changed => { + 'Attribute::Handlers' => '0.92', + 'B' => '1.31', + 'B::Concise' => '0.85', + 'B::Deparse' => '1.07', + 'B::Terse' => '1.06', + 'B::Xref' => '1.03', + 'CPAN' => '1.9800', + 'CPAN::Exception::yaml_process_error'=> '5.5', + 'CPAN::Meta' => '2.112150', + 'CPAN::Meta::Converter' => '2.112150', + 'CPAN::Meta::Feature' => '2.112150', + 'CPAN::Meta::History' => '2.112150', + 'CPAN::Meta::Prereqs' => '2.112150', + 'CPAN::Meta::Spec' => '2.112150', + 'CPAN::Meta::Validator' => '2.112150', + 'CPANPLUS' => '0.9109', + 'CPANPLUS::Internals' => '0.9109', + 'CPANPLUS::Shell::Default'=> '0.9109', + 'DB_File' => '1.824', + 'Data::Dumper' => '2.132', + 'Encode' => '2.44', + 'Encode::Alias' => '2.15', + 'Encode::Encoder' => '2.02', + 'Encode::Guess' => '2.05', + 'ExtUtils::Command::MM' => '6.59', + 'ExtUtils::Install' => '1.57', + 'ExtUtils::Installed' => '1.999002', + 'ExtUtils::Liblist' => '6.59', + 'ExtUtils::Liblist::Kid'=> '6.59', + 'ExtUtils::MM' => '6.59', + 'ExtUtils::MM_AIX' => '6.59', + 'ExtUtils::MM_Any' => '6.59', + 'ExtUtils::MM_BeOS' => '6.59', + 'ExtUtils::MM_Cygwin' => '6.59', + 'ExtUtils::MM_DOS' => '6.59', + 'ExtUtils::MM_Darwin' => '6.59', + 'ExtUtils::MM_MacOS' => '6.59', + 'ExtUtils::MM_NW5' => '6.59', + 'ExtUtils::MM_OS2' => '6.59', + 'ExtUtils::MM_QNX' => '6.59', + 'ExtUtils::MM_UWIN' => '6.59', + 'ExtUtils::MM_Unix' => '6.59', + 'ExtUtils::MM_VMS' => '6.59', + 'ExtUtils::MM_VOS' => '6.59', + 'ExtUtils::MM_Win32' => '6.59', + 'ExtUtils::MM_Win95' => '6.59', + 'ExtUtils::MY' => '6.59', + 'ExtUtils::MakeMaker' => '6.59', + 'ExtUtils::MakeMaker::Config'=> '6.59', + 'ExtUtils::Manifest' => '1.60', + 'ExtUtils::Mkbootstrap' => '6.59', + 'ExtUtils::Mksymlists' => '6.59', + 'ExtUtils::ParseXS' => '3.03_01', + 'ExtUtils::Typemaps' => '1.01', + 'ExtUtils::testlib' => '6.59', + 'File::Spec' => '3.34', + 'File::Spec::Mac' => '3.35', + 'File::Spec::Unix' => '3.34', + 'File::Spec::VMS' => '3.35', + 'File::Spec::Win32' => '3.35', + 'I18N::LangTags' => '0.37', + 'IO' => '1.25_05', + 'IO::Handle' => '1.32', + 'IO::Socket' => '1.33', + 'IO::Socket::INET' => '1.32', + 'IPC::Open3' => '1.12', + 'Math::BigFloat' => '1.995', + 'Math::BigFloat::Trace' => '0.29', + 'Math::BigInt' => '1.996', + 'Math::BigInt::Trace' => '0.29', + '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::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::CoreList' => '2.55', + 'Module::Load' => '0.20', + 'Module::Metadata' => '1.000005_01', + 'Opcode' => '1.20', + 'Params::Check' => '0.32', + 'PerlIO::via' => '0.12', + 'Term::ANSIColor' => '3.01', + 'Unicode::Collate' => '0.78', + 'Unicode::Normalize' => '1.13', + 'Unicode::UCD' => '0.34', + 'bigint' => '0.29', + 'bignum' => '0.29', + 'bigrat' => '0.29', + 'diagnostics' => '1.24', + 'fields' => '2.16', + 'inc::latest' => '0.39_01', + }, + removed => { + } + }, + 5.015003 => { + delta_from => 5.015002, + changed => { + 'AnyDBM_File' => '1.01', + 'Archive::Extract' => '0.56', + 'Archive::Tar' => '1.78', + 'Archive::Tar::Constant'=> '1.78', + 'Archive::Tar::File' => '1.78', + 'Attribute::Handlers' => '0.93', + 'B' => '1.32', + 'B::Concise' => '0.86', + 'B::Deparse' => '1.08', + 'CPAN::Meta' => '2.112621', + 'CPAN::Meta::Converter' => '2.112621', + 'CPAN::Meta::Feature' => '2.112621', + 'CPAN::Meta::History' => '2.112621', + 'CPAN::Meta::Prereqs' => '2.112621', + 'CPAN::Meta::Spec' => '2.112621', + 'CPAN::Meta::Validator' => '2.112621', + 'CPAN::Meta::YAML' => '0.004', + 'CPANPLUS' => '0.9111', + 'CPANPLUS::Dist::Build' => '0.58', + 'CPANPLUS::Dist::Build::Constants'=> '0.58', + 'CPANPLUS::Internals' => '0.9111', + 'CPANPLUS::Shell::Default'=> '0.9111', + 'Carp' => '1.23', + 'Carp::Heavy' => '1.23', + 'Data::Dumper' => '2.134', + 'Devel::PPPort' => '3.20', + 'Errno' => '1.14', + 'Exporter' => '5.65', + 'Exporter::Heavy' => '5.65', + 'ExtUtils::ParseXS' => '3.04_04', + 'ExtUtils::ParseXS::Constants'=> '3.04_04', + 'ExtUtils::ParseXS::CountLines'=> '3.04_04', + 'ExtUtils::ParseXS::Utilities'=> '3.04_04', + 'ExtUtils::Typemaps' => '1.02', + 'File::Glob' => '1.13', + 'Filter::Simple' => '0.88', + 'IO' => '1.25_06', + 'IO::Handle' => '1.33', + 'Locale::Codes' => '3.18', + 'Locale::Codes::Constants'=> '3.18', + 'Locale::Codes::Country'=> '3.18', + 'Locale::Codes::Country_Codes'=> '3.18', + 'Locale::Codes::Currency'=> '3.18', + 'Locale::Codes::Currency_Codes'=> '3.18', + 'Locale::Codes::LangExt'=> '3.18', + 'Locale::Codes::LangExt_Codes'=> '3.18', + 'Locale::Codes::LangVar'=> '3.18', + 'Locale::Codes::LangVar_Codes'=> '3.18', + 'Locale::Codes::Language'=> '3.18', + 'Locale::Codes::Language_Codes'=> '3.18', + 'Locale::Codes::Script' => '3.18', + 'Locale::Codes::Script_Codes'=> '3.18', + 'Locale::Country' => '3.18', + 'Locale::Currency' => '3.18', + 'Locale::Language' => '3.18', + 'Locale::Script' => '3.18', + 'Math::BigFloat' => '1.997', + 'Math::BigInt' => '1.997', + 'Math::BigInt::Calc' => '1.997', + 'Math::BigInt::CalcEmu' => '1.997', + 'Math::BigInt::FastCalc'=> '0.30', + 'Math::BigRat' => '0.2603', + 'Module::CoreList' => '2.56', + 'Module::Load::Conditional'=> '0.46', + 'Module::Metadata' => '1.000007', + 'ODBM_File' => '1.12', + 'POSIX' => '1.26', + 'Pod::Perldoc' => '3.15_07', + '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::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', + 'Search::Dict' => '1.04', + 'Socket' => '1.94_01', + 'Storable' => '2.32', + 'Text::Abbrev' => '1.02', + 'Tie::Array' => '1.05', + 'UNIVERSAL' => '1.09', + 'Unicode::UCD' => '0.35', + 'XS::APItest' => '0.31', + 'XSLoader' => '0.16', + 'attributes' => '0.16', + 'diagnostics' => '1.25', + 'open' => '1.09', + 'perlfaq' => '5.0150034', + 'threads' => '1.85', + 'threads::shared' => '1.40', + }, + removed => { + } + }, + 5.015004 => { + delta_from => 5.015003, + changed => { + 'Archive::Tar' => '1.80', + 'Archive::Tar::Constant'=> '1.80', + 'Archive::Tar::File' => '1.80', + 'Digest' => '1.17', + 'DynaLoader' => '1.14', + 'ExtUtils::Command::MM' => '6.61_01', + 'ExtUtils::Liblist' => '6.61_01', + 'ExtUtils::Liblist::Kid'=> '6.61_01', + 'ExtUtils::MM' => '6.61_01', + 'ExtUtils::MM_AIX' => '6.61_01', + 'ExtUtils::MM_Any' => '6.61_01', + 'ExtUtils::MM_BeOS' => '6.61_01', + 'ExtUtils::MM_Cygwin' => '6.61_01', + 'ExtUtils::MM_DOS' => '6.61_01', + 'ExtUtils::MM_Darwin' => '6.61_01', + 'ExtUtils::MM_MacOS' => '6.61_01', + 'ExtUtils::MM_NW5' => '6.61_01', + 'ExtUtils::MM_OS2' => '6.61_01', + 'ExtUtils::MM_QNX' => '6.61_01', + 'ExtUtils::MM_UWIN' => '6.61_01', + 'ExtUtils::MM_Unix' => '6.61_01', + 'ExtUtils::MM_VMS' => '6.61_01', + 'ExtUtils::MM_VOS' => '6.61_01', + 'ExtUtils::MM_Win32' => '6.61_01', + 'ExtUtils::MM_Win95' => '6.61_01', + 'ExtUtils::MY' => '6.61_01', + 'ExtUtils::MakeMaker' => '6.61_01', + 'ExtUtils::MakeMaker::Config'=> '6.61_01', + 'ExtUtils::Mkbootstrap' => '6.61_01', + 'ExtUtils::Mksymlists' => '6.61_01', + 'ExtUtils::ParseXS' => '3.05', + 'ExtUtils::ParseXS::Constants'=> '3.05', + 'ExtUtils::ParseXS::CountLines'=> '3.05', + 'ExtUtils::ParseXS::Utilities'=> '3.05', + 'ExtUtils::testlib' => '6.61_01', + 'File::DosGlob' => '1.05', + 'Module::CoreList' => '2.57', + 'Module::Load' => '0.22', + 'Unicode::Collate' => '0.80', + 'Unicode::Collate::Locale'=> '0.80', + 'Unicode::UCD' => '0.36', + 'XS::APItest' => '0.32', + 'XS::Typemap' => '0.07', + 'attributes' => '0.17', + 'base' => '2.18', + 'constant' => '1.23', + 'mro' => '1.09', + 'open' => '1.10', + 'perlfaq' => '5.0150035', + }, + removed => { + } + }, + 5.015005 => { + delta_from => 5.015004, + changed => { + 'Archive::Extract' => '0.58', + 'B::Concise' => '0.87', + 'B::Deparse' => '1.09', + 'CGI' => '3.58', + 'CGI::Fast' => '1.09', + 'CPANPLUS' => '0.9112', + 'CPANPLUS::Dist::Build' => '0.60', + 'CPANPLUS::Dist::Build::Constants'=> '0.60', + 'CPANPLUS::Internals' => '0.9112', + 'CPANPLUS::Shell::Default'=> '0.9112', + 'Compress::Raw::Bzip2' => '2.042', + 'Compress::Raw::Zlib' => '2.042', + 'Compress::Zlib' => '2.042', + 'Digest::SHA' => '5.63', + 'Errno' => '1.15', + 'ExtUtils::Command::MM' => '6.63_02', + '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::Mkbootstrap' => '6.63_02', + 'ExtUtils::Mksymlists' => '6.63_02', + 'ExtUtils::testlib' => '6.63_02', + 'File::DosGlob' => '1.06', + 'File::Glob' => '1.14', + 'HTTP::Tiny' => '0.016', + 'IO::Compress::Adapter::Bzip2'=> '2.042', + 'IO::Compress::Adapter::Deflate'=> '2.042', + 'IO::Compress::Adapter::Identity'=> '2.042', + 'IO::Compress::Base' => '2.042', + 'IO::Compress::Base::Common'=> '2.042', + 'IO::Compress::Bzip2' => '2.042', + 'IO::Compress::Deflate' => '2.042', + 'IO::Compress::Gzip' => '2.042', + 'IO::Compress::Gzip::Constants'=> '2.042', + 'IO::Compress::RawDeflate'=> '2.042', + 'IO::Compress::Zip' => '2.042', + 'IO::Compress::Zip::Constants'=> '2.042', + 'IO::Compress::Zlib::Constants'=> '2.042', + 'IO::Compress::Zlib::Extra'=> '2.042', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.042', + 'IO::Uncompress::Adapter::Identity'=> '2.042', + 'IO::Uncompress::Adapter::Inflate'=> '2.042', + 'IO::Uncompress::AnyInflate'=> '2.042', + 'IO::Uncompress::AnyUncompress'=> '2.042', + 'IO::Uncompress::Base' => '2.042', + 'IO::Uncompress::Bunzip2'=> '2.042', + 'IO::Uncompress::Gunzip'=> '2.042', + 'IO::Uncompress::Inflate'=> '2.042', + 'IO::Uncompress::RawInflate'=> '2.042', + 'IO::Uncompress::Unzip' => '2.042', + 'Locale::Maketext' => '1.20', + 'Locale::Maketext::Guts'=> '1.20', + 'Locale::Maketext::GutsLoader'=> '1.20', + 'Module::CoreList' => '2.58', + 'Opcode' => '1.21', + 'Socket' => '1.94_02', + 'Storable' => '2.33', + 'UNIVERSAL' => '1.10', + 'Unicode::Collate' => '0.85', + 'Unicode::Collate::CJK::Pinyin'=> '0.85', + 'Unicode::Collate::CJK::Stroke'=> '0.85', + 'Unicode::Collate::Locale'=> '0.85', + 'Unicode::UCD' => '0.37', + 'XS::APItest' => '0.33', + 'arybase' => '0.01', + 'charnames' => '1.24', + 'feature' => '1.23', + 'perlfaq' => '5.0150036', + 'strict' => '1.05', + 'unicore::Name' => undef, + }, + removed => { + } + }, + 5.015006 => { + delta_from => 5.015005, + changed => { + 'Archive::Tar' => '1.82', + 'Archive::Tar::Constant'=> '1.82', + 'Archive::Tar::File' => '1.82', + 'AutoLoader' => '5.72', + 'B::Concise' => '0.88', + 'B::Debug' => '1.17', + 'B::Deparse' => '1.10', + 'CPAN::Meta::YAML' => '0.005', + 'CPANPLUS' => '0.9113', + 'CPANPLUS::Internals' => '0.9113', + 'CPANPLUS::Shell::Default'=> '0.9113', + 'Carp' => '1.24', + 'Compress::Raw::Bzip2' => '2.045', + 'Compress::Raw::Zlib' => '2.045', + 'Compress::Zlib' => '2.045', + 'Cwd' => '3.38', + 'DB' => '1.04', + 'Data::Dumper' => '2.135_01', + 'Digest::SHA' => '5.70', + 'Dumpvalue' => '1.17', + 'Exporter' => '5.66', + 'Exporter::Heavy' => '5.66', + 'ExtUtils::CBuilder' => '0.280205', + 'ExtUtils::CBuilder::Platform::os2'=> '0.280204', + 'ExtUtils::Packlist' => '1.45', + 'ExtUtils::ParseXS' => '3.08', + 'ExtUtils::ParseXS::Constants'=> '3.08', + 'ExtUtils::ParseXS::CountLines'=> '3.08', + 'ExtUtils::ParseXS::Utilities'=> '3.08', + 'File::Basename' => '2.84', + 'File::Glob' => '1.15', + 'File::Spec::Unix' => '3.35', + 'Getopt::Std' => '1.07', + 'I18N::LangTags' => '0.38', + 'IO::Compress::Adapter::Bzip2'=> '2.045', + 'IO::Compress::Adapter::Deflate'=> '2.045', + 'IO::Compress::Adapter::Identity'=> '2.045', + 'IO::Compress::Base' => '2.046', + 'IO::Compress::Base::Common'=> '2.045', + 'IO::Compress::Bzip2' => '2.045', + 'IO::Compress::Deflate' => '2.045', + 'IO::Compress::Gzip' => '2.045', + 'IO::Compress::Gzip::Constants'=> '2.045', + 'IO::Compress::RawDeflate'=> '2.045', + 'IO::Compress::Zip' => '2.046', + 'IO::Compress::Zip::Constants'=> '2.045', + 'IO::Compress::Zlib::Constants'=> '2.045', + 'IO::Compress::Zlib::Extra'=> '2.045', + 'IO::Dir' => '1.09', + 'IO::File' => '1.16', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.045', + 'IO::Uncompress::Adapter::Identity'=> '2.045', + 'IO::Uncompress::Adapter::Inflate'=> '2.045', + 'IO::Uncompress::AnyInflate'=> '2.045', + 'IO::Uncompress::AnyUncompress'=> '2.045', + 'IO::Uncompress::Base' => '2.046', + 'IO::Uncompress::Bunzip2'=> '2.045', + 'IO::Uncompress::Gunzip'=> '2.045', + 'IO::Uncompress::Inflate'=> '2.045', + 'IO::Uncompress::RawInflate'=> '2.045', + 'IO::Uncompress::Unzip' => '2.046', + '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.21', + 'Locale::Script' => '3.20', + 'Module::CoreList' => '2.59', + 'Module::Loaded' => '0.08', + 'Opcode' => '1.22', + 'POSIX' => '1.27', + 'Pod::Html' => '1.12', + 'Pod::LaTeX' => '0.60', + 'Pod::Perldoc' => '3.15_08', + 'Safe' => '2.30', + 'SelfLoader' => '1.20', + 'Socket' => '1.97', + 'Storable' => '2.34', + 'UNIVERSAL' => '1.11', + 'Unicode::Collate' => '0.87', + 'Unicode::Collate::Locale'=> '0.87', + 'XS::APItest' => '0.34', + 'arybase' => '0.02', + 'charnames' => '1.27', + 'diagnostics' => '1.26', + 'feature' => '1.24', + 'if' => '0.0602', + 'overload' => '1.16', + 'sigtrap' => '1.06', + 'strict' => '1.06', + 'threads' => '1.86', + 'version' => '0.96', + }, + removed => { + } + }, + 5.015007 => { + delta_from => 5.015006, + changed => { + 'B' => '1.33', + 'B::Deparse' => '1.11', + 'CGI' => '3.59', + 'CPAN::Meta' => '2.113640', + 'CPAN::Meta::Converter' => '2.113640', + 'CPAN::Meta::Feature' => '2.113640', + 'CPAN::Meta::History' => '2.113640', + 'CPAN::Meta::Prereqs' => '2.113640', + 'CPAN::Meta::Requirements'=> '2.113640', + 'CPAN::Meta::Spec' => '2.113640', + 'CPAN::Meta::Validator' => '2.113640', + 'CPANPLUS' => '0.9116', + 'CPANPLUS::Internals' => '0.9116', + 'CPANPLUS::Shell::Default'=> '0.9116', + 'Cwd' => '3.39_01', + 'Data::Dumper' => '2.135_03', + 'Devel::InnerPackage' => '0.4', + '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::Manifest' => '1.61', + 'ExtUtils::Packlist' => '1.46', + 'ExtUtils::ParseXS' => '3.12', + 'ExtUtils::ParseXS::Constants'=> '3.12', + 'ExtUtils::ParseXS::CountLines'=> '3.12', + 'ExtUtils::ParseXS::Utilities'=> '3.12', + 'ExtUtils::Typemaps' => '1.03', + 'ExtUtils::Typemaps::Cmd'=> undef, + 'ExtUtils::Typemaps::Type'=> '0.06', + 'File::Glob' => '1.16', + 'File::Spec' => '3.39_01', + 'File::Spec::Cygwin' => '3.39_01', + 'File::Spec::Epoc' => '3.39_01', + 'File::Spec::Functions' => '3.39_01', + 'File::Spec::Mac' => '3.39_01', + 'File::Spec::OS2' => '3.39_01', + 'File::Spec::Unix' => '3.39_01', + 'File::Spec::VMS' => '3.39_01', + 'File::Spec::Win32' => '3.39_01', + 'IO::Dir' => '1.10', + 'IO::Pipe' => '1.15', + 'IO::Poll' => '0.09', + 'IO::Select' => '1.21', + 'IO::Socket' => '1.34', + 'IO::Socket::INET' => '1.33', + 'IO::Socket::UNIX' => '1.24', + 'Locale::Maketext' => '1.22', + 'Math::BigInt' => '1.998', + 'Module::CoreList' => '2.60', + 'Module::Pluggable' => '4.0', + 'POSIX' => '1.28', + 'PerlIO::scalar' => '0.13', + 'Pod::Html' => '1.13', + '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', + 'Term::UI' => '0.30', + 'Tie::File' => '0.98', + 'Unicode::UCD' => '0.39', + 'Version::Requirements' => '0.101021', + 'XS::APItest' => '0.35', + '_charnames' => '1.28', + 'arybase' => '0.03', + 'autouse' => '1.07', + 'charnames' => '1.28', + 'diagnostics' => '1.27', + 'feature' => '1.25', + 'overload' => '1.17', + 'overloading' => '0.02', + 'perlfaq' => '5.0150038', + }, + removed => { + } + }, + 5.015008 => { + delta_from => 5.015007, + changed => { + 'B' => '1.34', + 'B::Deparse' => '1.12', + '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', + 'CPANPLUS' => '0.9118', + 'CPANPLUS::Dist::Build' => '0.62', + 'CPANPLUS::Dist::Build::Constants'=> '0.62', + 'CPANPLUS::Internals' => '0.9118', + 'CPANPLUS::Shell::Default'=> '0.9118', + 'Carp' => '1.25', + 'Carp::Heavy' => '1.25', + 'Compress::Raw::Bzip2' => '2.048', + 'Compress::Raw::Zlib' => '2.048', + 'Compress::Zlib' => '2.048', + 'Cwd' => '3.39_02', + 'DB_File' => '1.826', + 'Data::Dumper' => '2.135_05', + 'English' => '1.05', + 'ExtUtils::Install' => '1.58', + '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', + 'File::Copy' => '2.23', + 'File::Glob' => '1.17', + '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', + 'Filter::Util::Call' => '1.40', + '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::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', + 'IPC::Cmd' => '0.76', + 'Math::Complex' => '1.59', + 'Math::Trig' => '1.23', + 'Module::Metadata' => '1.000009', + 'Opcode' => '1.23', + 'POSIX' => '1.30', + 'Parse::CPAN::Meta' => '1.4402', + 'PerlIO::mmap' => '0.010', + 'Pod::Checker' => '1.51', + 'Pod::Find' => '1.51', + 'Pod::Functions' => '1.05', + 'Pod::Functions::Functions'=> '1.05', + 'Pod::Html' => '1.14', + 'Pod::InputObjects' => '1.51', + 'Pod::ParseUtils' => '1.51', + 'Pod::Parser' => '1.51', + 'Pod::PlainText' => '2.05', + 'Pod::Select' => '1.51', + 'Pod::Usage' => '1.51', + 'Safe' => '2.31', + 'Socket' => '1.98', + 'Term::Cap' => '1.13', + 'Term::ReadLine' => '1.08', + 'Time::HiRes' => '1.9725', + 'Unicode' => '6.1.0', + 'Unicode::UCD' => '0.41', + 'Version::Requirements' => '0.101022', + 'XS::APItest' => '0.36', + 'XS::Typemap' => '0.08', + '_charnames' => '1.29', + 'arybase' => '0.04', + 'charnames' => '1.29', + 'diagnostics' => '1.28', + 'feature' => '1.26', + 'locale' => '1.01', + 'overload' => '1.18', + 'perlfaq' => '5.0150039', + 're' => '0.19', + 'subs' => '1.01', + 'warnings' => '1.13', + }, + removed => { + } + }, + 5.015009 => { + delta_from => 5.015008, + changed => { + 'B::Deparse' => '1.13', + 'B::Lint' => '1.14', + 'B::Lint::Debug' => '1.14', + 'CPAN::Meta' => '2.120630', + 'CPAN::Meta::Converter' => '2.120630', + 'CPAN::Meta::Feature' => '2.120630', + 'CPAN::Meta::History' => '2.120630', + 'CPAN::Meta::Prereqs' => '2.120630', + 'CPAN::Meta::Requirements'=> '2.120630', + 'CPAN::Meta::Spec' => '2.120630', + 'CPAN::Meta::Validator' => '2.120630', + 'CPANPLUS' => '0.9121', + 'CPANPLUS::Internals' => '0.9121', + 'CPANPLUS::Shell::Default'=> '0.9121', + 'Data::Dumper' => '2.135_06', + 'Digest::SHA' => '5.71', + 'ExtUtils::CBuilder' => '0.280206', + 'ExtUtils::CBuilder::Base'=> '0.280206', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.280206', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.280206', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.280206', + 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206', + 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206', + 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206', + 'ExtUtils::CBuilder::Platform::aix'=> '0.280206', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.280206', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206', + 'ExtUtils::CBuilder::Platform::os2'=> '0.280206', + 'HTTP::Tiny' => '0.017', + 'Locale::Codes' => '3.21', + 'Locale::Codes::Constants'=> '3.21', + 'Locale::Codes::Country'=> '3.21', + 'Locale::Codes::Country_Codes'=> '3.21', + 'Locale::Codes::Country_Retired'=> '3.21', + 'Locale::Codes::Currency'=> '3.21', + 'Locale::Codes::Currency_Codes'=> '3.21', + 'Locale::Codes::Currency_Retired'=> '3.21', + 'Locale::Codes::LangExt'=> '3.21', + 'Locale::Codes::LangExt_Codes'=> '3.21', + 'Locale::Codes::LangExt_Retired'=> '3.21', + 'Locale::Codes::LangFam'=> '3.21', + 'Locale::Codes::LangFam_Codes'=> '3.21', + 'Locale::Codes::LangFam_Retired'=> '3.21', + 'Locale::Codes::LangVar'=> '3.21', + 'Locale::Codes::LangVar_Codes'=> '3.21', + 'Locale::Codes::LangVar_Retired'=> '3.21', + 'Locale::Codes::Language'=> '3.21', + 'Locale::Codes::Language_Codes'=> '3.21', + 'Locale::Codes::Language_Retired'=> '3.21', + 'Locale::Codes::Script' => '3.21', + 'Locale::Codes::Script_Codes'=> '3.21', + 'Locale::Codes::Script_Retired'=> '3.21', + 'Locale::Country' => '3.21', + 'Locale::Currency' => '3.21', + 'Locale::Language' => '3.21', + 'Locale::Script' => '3.21', + 'Module::CoreList' => '2.65', + 'Pod::Html' => '1.1501', + 'Pod::Perldoc' => '3.17', + 'Pod::Perldoc::BaseTo' => '3.17', + 'Pod::Perldoc::GetOptsOO'=> '3.17', + 'Pod::Perldoc::ToANSI' => '3.17', + 'Pod::Perldoc::ToChecker'=> '3.17', + 'Pod::Perldoc::ToMan' => '3.17', + 'Pod::Perldoc::ToNroff' => '3.17', + 'Pod::Perldoc::ToPod' => '3.17', + 'Pod::Perldoc::ToRtf' => '3.17', + 'Pod::Perldoc::ToTerm' => '3.17', + 'Pod::Perldoc::ToText' => '3.17', + 'Pod::Perldoc::ToTk' => '3.17', + 'Pod::Perldoc::ToXml' => '3.17', + 'Pod::Simple' => '3.20', + 'Pod::Simple::BlackBox' => '3.20', + 'Pod::Simple::Checker' => '3.20', + 'Pod::Simple::Debug' => '3.20', + 'Pod::Simple::DumpAsText'=> '3.20', + 'Pod::Simple::DumpAsXML'=> '3.20', + 'Pod::Simple::HTML' => '3.20', + 'Pod::Simple::HTMLBatch'=> '3.20', + 'Pod::Simple::LinkSection'=> '3.20', + 'Pod::Simple::Methody' => '3.20', + 'Pod::Simple::Progress' => '3.20', + 'Pod::Simple::PullParser'=> '3.20', + 'Pod::Simple::PullParserEndToken'=> '3.20', + 'Pod::Simple::PullParserStartToken'=> '3.20', + 'Pod::Simple::PullParserTextToken'=> '3.20', + 'Pod::Simple::PullParserToken'=> '3.20', + 'Pod::Simple::RTF' => '3.20', + 'Pod::Simple::Search' => '3.20', + 'Pod::Simple::SimpleTree'=> '3.20', + 'Pod::Simple::Text' => '3.20', + 'Pod::Simple::TextContent'=> '3.20', + 'Pod::Simple::TiedOutFH'=> '3.20', + 'Pod::Simple::Transcode'=> '3.20', + 'Pod::Simple::TranscodeDumb'=> '3.20', + 'Pod::Simple::TranscodeSmart'=> '3.20', + 'Pod::Simple::XHTML' => '3.20', + 'Pod::Simple::XMLOutStream'=> '3.20', + 'Socket' => '2.000', + 'Term::ReadLine' => '1.09', + 'Unicode::Collate' => '0.89', + 'Unicode::Collate::CJK::Korean'=> '0.88', + 'Unicode::Collate::Locale'=> '0.89', + 'Unicode::Normalize' => '1.14', + 'Unicode::UCD' => '0.42', + 'XS::APItest' => '0.37', + 'arybase' => '0.05', + 'attributes' => '0.18', + 'charnames' => '1.30', + 'feature' => '1.27', + }, + removed => { + } + }, + 5.016 => { + delta_from => 5.015009, + changed => { + 'B::Concise' => '0.89', + 'B::Deparse' => '1.14', + 'Carp' => '1.26', + 'Carp::Heavy' => '1.26', + 'IO::Socket' => '1.35', + 'Module::CoreList' => '2.66', + 'PerlIO::scalar' => '0.14', + 'Pod::Html' => '1.1502', + 'Safe' => '2.31_01', + 'Socket' => '2.001', + 'Unicode::UCD' => '0.43', + 'XS::APItest' => '0.38', + '_charnames' => '1.31', + 'attributes' => '0.19', + 'strict' => '1.07', + 'version' => '0.99', + }, + removed => { + } + }, + 5.017 => { + delta_from => 5.016, + changed => { + 'B' => '1.35', + 'B::Concise' => '0.90', + 'ExtUtils::ParseXS' => '3.17', + 'ExtUtils::ParseXS::Utilities'=> '3.17', + 'File::DosGlob' => '1.07', + 'File::Find' => '1.21', + 'File::stat' => '1.06', + 'Hash::Util' => '0.12', + 'IO::Socket' => '1.34', + 'Module::CoreList' => '2.67', + 'Pod::Functions' => '1.06', + 'Pod::Functions::Functions'=> '1.06', + 'Storable' => '2.35', + 'XS::APItest' => '0.39', + 'diagnostics' => '1.29', + 'feature' => '1.28', + 'overload' => '1.19', + 'utf8' => '1.10', + }, + removed => { + 'Version::Requirements' => 1, + } + }, + 5.017001 => { + delta_from => 5.017, + changed => { + 'App::Prove' => '3.25', + 'App::Prove::State' => '3.25', + 'App::Prove::State::Result'=> '3.25', + 'App::Prove::State::Result::Test'=> '3.25', + 'Archive::Extract' => '0.60', + 'Archive::Tar' => '1.88', + 'Archive::Tar::Constant'=> '1.88', + 'Archive::Tar::File' => '1.88', + 'B' => '1.36', + 'B::Deparse' => '1.15', + 'CPAN::Meta' => '2.120921', + 'CPAN::Meta::Converter' => '2.120921', + 'CPAN::Meta::Feature' => '2.120921', + 'CPAN::Meta::History' => '2.120921', + 'CPAN::Meta::Prereqs' => '2.120921', + 'CPAN::Meta::Requirements'=> '2.122', + 'CPAN::Meta::Spec' => '2.120921', + 'CPAN::Meta::Validator' => '2.120921', + 'CPAN::Meta::YAML' => '0.008', + 'CPANPLUS' => '0.9130', + 'CPANPLUS::Config::HomeEnv'=> '0.04', + 'CPANPLUS::Internals' => '0.9130', + 'CPANPLUS::Shell::Default'=> '0.9130', + 'Class::Struct' => '0.64', + 'Compress::Raw::Bzip2' => '2.052', + 'Compress::Raw::Zlib' => '2.054', + 'Compress::Zlib' => '2.052', + 'Digest::MD5' => '2.52', + 'DynaLoader' => '1.15', + 'ExtUtils::CBuilder' => '0.280208', + 'ExtUtils::CBuilder::Base'=> '0.280208', + 'ExtUtils::CBuilder::Platform::Unix'=> '0.280208', + 'ExtUtils::CBuilder::Platform::VMS'=> '0.280208', + 'ExtUtils::CBuilder::Platform::Windows'=> '0.280208', + 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208', + 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208', + 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208', + 'ExtUtils::CBuilder::Platform::aix'=> '0.280208', + 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208', + 'ExtUtils::CBuilder::Platform::darwin'=> '0.280208', + 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208', + 'ExtUtils::CBuilder::Platform::os2'=> '0.280208', + 'Fatal' => '2.11', + 'File::DosGlob' => '1.08', + 'File::Fetch' => '0.34', + 'File::Spec::Unix' => '3.39_03', + 'Filter::Util::Call' => '1.45', + 'HTTP::Tiny' => '0.022', + 'IO' => '1.25_07', + 'IO::Compress::Adapter::Bzip2'=> '2.052', + 'IO::Compress::Adapter::Deflate'=> '2.052', + 'IO::Compress::Adapter::Identity'=> '2.052', + 'IO::Compress::Base' => '2.052', + 'IO::Compress::Base::Common'=> '2.052', + 'IO::Compress::Bzip2' => '2.052', + 'IO::Compress::Deflate' => '2.052', + 'IO::Compress::Gzip' => '2.052', + 'IO::Compress::Gzip::Constants'=> '2.052', + 'IO::Compress::RawDeflate'=> '2.052', + 'IO::Compress::Zip' => '2.052', + 'IO::Compress::Zip::Constants'=> '2.052', + 'IO::Compress::Zlib::Constants'=> '2.052', + 'IO::Compress::Zlib::Extra'=> '2.052', + 'IO::Uncompress::Adapter::Bunzip2'=> '2.052', + 'IO::Uncompress::Adapter::Identity'=> '2.052', + 'IO::Uncompress::Adapter::Inflate'=> '2.052', + 'IO::Uncompress::AnyInflate'=> '2.052', + 'IO::Uncompress::AnyUncompress'=> '2.052', + 'IO::Uncompress::Base' => '2.052', + 'IO::Uncompress::Bunzip2'=> '2.052', + 'IO::Uncompress::Gunzip'=> '2.052', + 'IO::Uncompress::Inflate'=> '2.052', + 'IO::Uncompress::RawInflate'=> '2.052', + 'IO::Uncompress::Unzip' => '2.052', + 'IPC::Cmd' => '0.78', + 'List::Util' => '1.25', + 'List::Util::XS' => '1.25', + 'Locale::Codes' => '3.22', + 'Locale::Codes::Constants'=> '3.22', + 'Locale::Codes::Country'=> '3.22', + 'Locale::Codes::Country_Codes'=> '3.22', + 'Locale::Codes::Country_Retired'=> '3.22', + 'Locale::Codes::Currency'=> '3.22', + 'Locale::Codes::Currency_Codes'=> '3.22', + 'Locale::Codes::Currency_Retired'=> '3.22', + 'Locale::Codes::LangExt'=> '3.22', + 'Locale::Codes::LangExt_Codes'=> '3.22', + 'Locale::Codes::LangExt_Retired'=> '3.22', + 'Locale::Codes::LangFam'=> '3.22', + 'Locale::Codes::LangFam_Codes'=> '3.22', + 'Locale::Codes::LangFam_Retired'=> '3.22', + 'Locale::Codes::LangVar'=> '3.22', + 'Locale::Codes::LangVar_Codes'=> '3.22', + 'Locale::Codes::LangVar_Retired'=> '3.22', + 'Locale::Codes::Language'=> '3.22', + 'Locale::Codes::Language_Codes'=> '3.22', + 'Locale::Codes::Language_Retired'=> '3.22', + 'Locale::Codes::Script' => '3.22', + 'Locale::Codes::Script_Codes'=> '3.22', + 'Locale::Codes::Script_Retired'=> '3.22', + 'Locale::Country' => '3.22', + 'Locale::Currency' => '3.22', + 'Locale::Language' => '3.22', + 'Locale::Script' => '3.22', + 'Memoize' => '1.03', + 'Memoize::AnyDBM_File' => '1.03', + 'Memoize::Expire' => '1.03', + 'Memoize::ExpireFile' => '1.03', + 'Memoize::ExpireTest' => '1.03', + 'Memoize::NDBM_File' => '1.03', + 'Memoize::SDBM_File' => '1.03', + 'Memoize::Storable' => '1.03', + 'Module::Build' => '0.40', + 'Module::Build::Base' => '0.40', + 'Module::Build::Compat' => '0.40', + 'Module::Build::Config' => '0.40', + 'Module::Build::Cookbook'=> '0.40', + 'Module::Build::Dumper' => '0.40', + 'Module::Build::ModuleInfo'=> '0.40', + 'Module::Build::Notes' => '0.40', + 'Module::Build::PPMMaker'=> '0.40', + 'Module::Build::Platform::Amiga'=> '0.40', + 'Module::Build::Platform::Default'=> '0.40', + 'Module::Build::Platform::EBCDIC'=> '0.40', + 'Module::Build::Platform::MPEiX'=> '0.40', + 'Module::Build::Platform::MacOS'=> '0.40', + 'Module::Build::Platform::RiscOS'=> '0.40', + 'Module::Build::Platform::Unix'=> '0.40', + 'Module::Build::Platform::VMS'=> '0.40', + 'Module::Build::Platform::VOS'=> '0.40', + 'Module::Build::Platform::Windows'=> '0.40', + 'Module::Build::Platform::aix'=> '0.40', + 'Module::Build::Platform::cygwin'=> '0.40', + 'Module::Build::Platform::darwin'=> '0.40', + 'Module::Build::Platform::os2'=> '0.40', + 'Module::Build::PodParser'=> '0.40', + 'Module::CoreList' => '2.68', + 'Module::Load::Conditional'=> '0.50', + 'Object::Accessor' => '0.44', + 'POSIX' => '1.31', + 'Params::Check' => '0.36', + 'Parse::CPAN::Meta' => '1.4404', + 'PerlIO::mmap' => '0.011', + 'PerlIO::via::QuotedPrint'=> '0.07', + 'Pod::Html' => '1.16', + 'Pod::Man' => '2.26', + 'Pod::Text' => '3.16', + 'Safe' => '2.33_01', + 'Scalar::Util' => '1.25', + 'Search::Dict' => '1.07', + 'Storable' => '2.36', + 'TAP::Base' => '3.25', + 'TAP::Formatter::Base' => '3.25', + 'TAP::Formatter::Color' => '3.25', + 'TAP::Formatter::Console'=> '3.25', + 'TAP::Formatter::Console::ParallelSession'=> '3.25', + 'TAP::Formatter::Console::Session'=> '3.25', + 'TAP::Formatter::File' => '3.25', + 'TAP::Formatter::File::Session'=> '3.25', + 'TAP::Formatter::Session'=> '3.25', + 'TAP::Harness' => '3.25', + 'TAP::Object' => '3.25', + 'TAP::Parser' => '3.25', + 'TAP::Parser::Aggregator'=> '3.25', + 'TAP::Parser::Grammar' => '3.25', + 'TAP::Parser::Iterator' => '3.25', + 'TAP::Parser::Iterator::Array'=> '3.25', + 'TAP::Parser::Iterator::Process'=> '3.25', + 'TAP::Parser::Iterator::Stream'=> '3.25', + 'TAP::Parser::IteratorFactory'=> '3.25', + 'TAP::Parser::Multiplexer'=> '3.25', + 'TAP::Parser::Result' => '3.25', + 'TAP::Parser::Result::Bailout'=> '3.25', + 'TAP::Parser::Result::Comment'=> '3.25', + 'TAP::Parser::Result::Plan'=> '3.25', + 'TAP::Parser::Result::Pragma'=> '3.25', + 'TAP::Parser::Result::Test'=> '3.25', + 'TAP::Parser::Result::Unknown'=> '3.25', + 'TAP::Parser::Result::Version'=> '3.25', + 'TAP::Parser::Result::YAML'=> '3.25', + 'TAP::Parser::ResultFactory'=> '3.25', + 'TAP::Parser::Scheduler'=> '3.25', + 'TAP::Parser::Scheduler::Job'=> '3.25', + 'TAP::Parser::Scheduler::Spinner'=> '3.25', + 'TAP::Parser::Source' => '3.25', + 'TAP::Parser::SourceHandler'=> '3.25', + 'TAP::Parser::SourceHandler::Executable'=> '3.25', + 'TAP::Parser::SourceHandler::File'=> '3.25', + 'TAP::Parser::SourceHandler::Handle'=> '3.25', + 'TAP::Parser::SourceHandler::Perl'=> '3.25', + 'TAP::Parser::SourceHandler::RawTAP'=> '3.25', + 'TAP::Parser::Utils' => '3.25', + 'TAP::Parser::YAMLish::Reader'=> '3.25', + 'TAP::Parser::YAMLish::Writer'=> '3.25', + 'Term::ANSIColor' => '3.02', + 'Test::Harness' => '3.25', + 'Unicode' => '6.2.0', + 'Unicode::UCD' => '0.44', + 'XS::APItest' => '0.40', + '_charnames' => '1.32', + 'attributes' => '0.2', + 'autodie' => '2.11', + 'autodie::exception' => '2.11', + 'autodie::exception::system'=> '2.11', + 'autodie::hints' => '2.11', + 'bigint' => '0.30', + 'charnames' => '1.32', + 'feature' => '1.29', + 'inc::latest' => '0.40', + 'perlfaq' => '5.0150040', + 're' => '0.20', + }, + removed => { + 'List::Util::PP' => 1, + 'Scalar::Util::PP' => 1, + } + }, + 5.017002 => { + delta_from => 5.017001, + changed => { + 'App::Prove' => '3.25_01', + 'App::Prove::State' => '3.25_01', + 'App::Prove::State::Result'=> '3.25_01', + 'App::Prove::State::Result::Test'=> '3.25_01', + 'B::Concise' => '0.91', + 'Compress::Raw::Bzip2' => '2.05201', + 'Compress::Raw::Zlib' => '2.05401', + 'Exporter' => '5.67', + 'Exporter::Heavy' => '5.67', + 'Fatal' => '2.12', + 'File::Fetch' => '0.36', + 'File::stat' => '1.07', + 'IO' => '1.25_08', + 'IO::Socket' => '1.35', + 'Module::CoreList' => '2.69', + 'PerlIO::scalar' => '0.15', + 'Socket' => '2.002', + 'Storable' => '2.37', + 'TAP::Base' => '3.25_01', + 'TAP::Formatter::Base' => '3.25_01', + 'TAP::Formatter::Color' => '3.25_01', + 'TAP::Formatter::Console'=> '3.25_01', + 'TAP::Formatter::Console::ParallelSession'=> '3.25_01', + 'TAP::Formatter::Console::Session'=> '3.25_01', + 'TAP::Formatter::File' => '3.25_01', + 'TAP::Formatter::File::Session'=> '3.25_01', + 'TAP::Formatter::Session'=> '3.25_01', + 'TAP::Harness' => '3.25_01', + 'TAP::Object' => '3.25_01', + 'TAP::Parser' => '3.25_01', + 'TAP::Parser::Aggregator'=> '3.25_01', + 'TAP::Parser::Grammar' => '3.25_01', + 'TAP::Parser::Iterator' => '3.25_01', + 'TAP::Parser::Iterator::Array'=> '3.25_01', + 'TAP::Parser::Iterator::Process'=> '3.25_01', + 'TAP::Parser::Iterator::Stream'=> '3.25_01', + 'TAP::Parser::IteratorFactory'=> '3.25_01', + 'TAP::Parser::Multiplexer'=> '3.25_01', + 'TAP::Parser::Result' => '3.25_01', + 'TAP::Parser::Result::Bailout'=> '3.25_01', + 'TAP::Parser::Result::Comment'=> '3.25_01', + 'TAP::Parser::Result::Plan'=> '3.25_01', + 'TAP::Parser::Result::Pragma'=> '3.25_01', + 'TAP::Parser::Result::Test'=> '3.25_01', + 'TAP::Parser::Result::Unknown'=> '3.25_01', + 'TAP::Parser::Result::Version'=> '3.25_01', + 'TAP::Parser::Result::YAML'=> '3.25_01', + 'TAP::Parser::ResultFactory'=> '3.25_01', + 'TAP::Parser::Scheduler'=> '3.25_01', + 'TAP::Parser::Scheduler::Job'=> '3.25_01', + 'TAP::Parser::Scheduler::Spinner'=> '3.25_01', + 'TAP::Parser::Source' => '3.25_01', + 'TAP::Parser::SourceHandler'=> '3.25_01', + 'TAP::Parser::SourceHandler::Executable'=> '3.25_01', + 'TAP::Parser::SourceHandler::File'=> '3.25_01', + 'TAP::Parser::SourceHandler::Handle'=> '3.25_01', + 'TAP::Parser::SourceHandler::Perl'=> '3.25_01', + 'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01', + 'TAP::Parser::Utils' => '3.25_01', + 'TAP::Parser::YAMLish::Reader'=> '3.25_01', + 'TAP::Parser::YAMLish::Writer'=> '3.25_01', + 'Test::Harness' => '3.25_01', + 'Tie::StdHandle' => '4.3', + 'XS::APItest' => '0.41', + 'autodie' => '2.12', + 'autodie::exception' => '2.12', + 'autodie::exception::system'=> '2.12', + 'autodie::hints' => '2.12', + 'diagnostics' => '1.30', + 'overload' => '1.20', + 're' => '0.21', + 'vars' => '1.03', + }, + removed => { + } }, ); +for my $version (sort { $a <=> $b } keys %delta) { + my $data = $delta{$version}; + + tie %{$version{$version}}, 'Module::CoreList::TieHashDelta', + $data->{changed}, $data->{removed}, + $data->{delta_from} ? $version{$data->{delta_from}} : undef; +} + %deprecated = ( 5.011 => { 'Class::ISA' => '1', @@ -14078,14 +7077,117 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Shell' => '1', 'Switch' => '1', }, + 5.013000 => { + 'Class::ISA' => '1', + 'Pod::Plainer' => '1', + 'Shell' => '1', + 'Switch' => '1', + }, + 5.012001 => { + 'Class::ISA' => '1', + 'Pod::Plainer' => '1', + 'Shell' => '1', + 'Switch' => '1', + }, + 5.013001 => { + 'Shell' => '1', + }, + 5.013002 => { + 'Shell' => '1', + }, + 5.013003 => { + 'Shell' => '1', + }, + 5.013004 => { + 'Shell' => '1', + }, + 5.012002 => { + 'Class::ISA' => '1', + 'Pod::Plainer' => '1', + 'Shell' => '1', + 'Switch' => '1', + }, + 5.013005 => { + 'Shell' => '1', + }, + 5.013006 => { + 'Shell' => '1', + }, + 5.013007 => { + 'Shell' => '1', + }, + 5.013008 => { + 'Shell' => '1', + }, + 5.012003 => { + 'Class::ISA' => '1', + 'Pod::Plainer' => '1', + 'Shell' => '1', + 'Switch' => '1', + }, + 5.013009 => { + 'Shell' => '1', + }, + 5.013010 => { + 'Shell' => '1', + }, + 5.013011 => { + 'Shell' => '1', + }, + 5.014000 => { + 'Shell' => '1', + }, + 5.012004 => { + 'Class::ISA' => '1', + 'Pod::Plainer' => '1', + 'Shell' => '1', + 'Switch' => '1', + }, + 5.014001 => { + 'Shell' => '1', + }, + 5.015000 => { + 'Devel::DProf' => '1', + }, + 5.015000 => { + }, + 5.015001 => { + }, + 5.015002 => { + }, + 5.014002 => { + 'Shell' => '1', + }, + 5.015003 => { + }, + 5.015004 => { + }, + 5.015005 => { + }, + 5.015006 => { + }, + 5.015007 => { + }, + 5.015008 => { + }, + 5.015009 => { + }, + 5.016000 => { + }, + 5.017000 => { + }, + 5.017001 => { + }, + 5.017002 => { + }, ); %upstream = ( 'App::Cpan' => 'cpan', - 'App::Prove' => undef, - 'App::Prove::State' => undef, - 'App::Prove::State::Result'=> undef, - 'App::Prove::State::Result::Test'=> undef, + 'App::Prove' => 'cpan', + 'App::Prove::State' => 'cpan', + 'App::Prove::State::Result'=> 'cpan', + 'App::Prove::State::Result::Test'=> 'cpan', 'Archive::Extract' => 'cpan', 'Archive::Tar' => 'cpan', 'Archive::Tar::Constant'=> 'cpan', @@ -14093,11 +7195,11 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Attribute::Handlers' => 'blead', 'AutoLoader' => 'cpan', 'AutoSplit' => 'cpan', - 'B::Concise' => undef, - 'B::Debug' => undef, + 'B::Concise' => 'blead', + 'B::Debug' => 'cpan', 'B::Deparse' => 'blead', - 'B::Lint' => undef, - 'B::Lint::Debug' => undef, + 'B::Lint' => 'blead', + 'B::Lint::Debug' => 'blead', 'CGI' => 'cpan', 'CGI::Apache' => 'cpan', 'CGI::Carp' => 'cpan', @@ -14120,14 +7222,26 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'CPAN::Exception::RecursiveDependency'=> 'cpan', 'CPAN::Exception::blocked_urllist'=> 'cpan', 'CPAN::Exception::yaml_not_installed'=> 'cpan', + 'CPAN::Exception::yaml_process_error'=> 'cpan', 'CPAN::FTP' => 'cpan', 'CPAN::FTP::netrc' => 'cpan', 'CPAN::FirstTime' => 'cpan', + 'CPAN::HTTP::Client' => 'cpan', + 'CPAN::HTTP::Credentials'=> 'cpan', 'CPAN::HandleConfig' => 'cpan', 'CPAN::Index' => 'cpan', 'CPAN::InfoObj' => 'cpan', 'CPAN::Kwalify' => 'cpan', 'CPAN::LWP::UserAgent' => 'cpan', + 'CPAN::Meta' => 'cpan', + 'CPAN::Meta::Converter' => 'cpan', + 'CPAN::Meta::Feature' => 'cpan', + 'CPAN::Meta::History' => 'cpan', + 'CPAN::Meta::Prereqs' => 'cpan', + 'CPAN::Meta::Requirements'=> 'cpan', + 'CPAN::Meta::Spec' => 'cpan', + 'CPAN::Meta::Validator' => 'cpan', + 'CPAN::Meta::YAML' => 'cpan', 'CPAN::Mirrors' => 'cpan', 'CPAN::Module' => 'cpan', 'CPAN::Nox' => 'cpan', @@ -14141,6 +7255,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'CPANPLUS::Backend' => 'cpan', 'CPANPLUS::Backend::RV' => 'cpan', 'CPANPLUS::Config' => 'cpan', + 'CPANPLUS::Config::HomeEnv'=> 'cpan', 'CPANPLUS::Configure' => 'cpan', 'CPANPLUS::Configure::Setup'=> 'cpan', 'CPANPLUS::Dist' => 'cpan', @@ -14177,59 +7292,59 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 'cpan', 'CPANPLUS::Shell::Default::Plugins::Remote'=> 'cpan', 'CPANPLUS::Shell::Default::Plugins::Source'=> 'cpan', - 'Class::ISA' => 'cpan', - 'Compress::Raw::Bzip2' => undef, - 'Compress::Raw::Zlib' => undef, + 'Carp' => 'blead', + 'Carp::Heavy' => 'blead', + 'Compress::Raw::Bzip2' => 'cpan', + 'Compress::Raw::Zlib' => 'cpan', 'Compress::Zlib' => 'cpan', - 'Cwd' => 'cpan', - 'DB_File' => undef, - 'Devel::InnerPackage' => undef, + 'Cwd' => 'blead', + 'DB_File' => 'cpan', + 'Devel::InnerPackage' => 'cpan', 'Devel::PPPort' => 'cpan', - 'Digest' => undef, - 'Digest::MD5' => undef, - 'Digest::SHA' => undef, - 'Digest::base' => undef, - 'Digest::file' => undef, - 'Encode' => undef, - 'Encode::Alias' => undef, - 'Encode::Byte' => undef, - 'Encode::CJKConstants' => undef, - 'Encode::CN' => undef, - 'Encode::CN::HZ' => undef, - 'Encode::Config' => undef, - 'Encode::EBCDIC' => undef, - 'Encode::Encoder' => undef, - 'Encode::Encoding' => undef, - 'Encode::GSM0338' => undef, - 'Encode::Guess' => undef, - 'Encode::JP' => undef, - 'Encode::JP::H2Z' => undef, - 'Encode::JP::JIS7' => undef, - 'Encode::KR' => undef, - 'Encode::KR::2022_KR' => undef, - 'Encode::MIME::Header' => undef, - 'Encode::MIME::Header::ISO_2022_JP'=> undef, - 'Encode::MIME::Name' => undef, - 'Encode::Symbol' => undef, - 'Encode::TW' => undef, - 'Encode::Unicode' => undef, - 'Encode::Unicode::UTF7' => undef, + 'Digest' => 'cpan', + 'Digest::MD5' => 'cpan', + 'Digest::SHA' => 'cpan', + 'Digest::base' => 'cpan', + 'Digest::file' => 'cpan', + 'Encode' => 'cpan', + 'Encode::Alias' => 'cpan', + 'Encode::Byte' => 'cpan', + 'Encode::CJKConstants' => 'cpan', + 'Encode::CN' => 'cpan', + 'Encode::CN::HZ' => 'cpan', + 'Encode::Config' => 'cpan', + 'Encode::EBCDIC' => 'cpan', + 'Encode::Encoder' => 'cpan', + 'Encode::Encoding' => 'cpan', + 'Encode::GSM0338' => 'cpan', + 'Encode::Guess' => 'cpan', + 'Encode::JP' => 'cpan', + 'Encode::JP::H2Z' => 'cpan', + 'Encode::JP::JIS7' => 'cpan', + 'Encode::KR' => 'cpan', + 'Encode::KR::2022_KR' => 'cpan', + 'Encode::MIME::Header' => 'cpan', + 'Encode::MIME::Header::ISO_2022_JP'=> 'cpan', + 'Encode::MIME::Name' => 'cpan', + 'Encode::Symbol' => 'cpan', + 'Encode::TW' => 'cpan', + 'Encode::Unicode' => 'cpan', + 'Encode::Unicode::UTF7' => 'cpan', 'Exporter' => 'blead', 'Exporter::Heavy' => 'blead', - 'ExtUtils::CBuilder' => 'cpan', - 'ExtUtils::CBuilder::Base'=> 'cpan', - 'ExtUtils::CBuilder::Platform::Unix'=> 'cpan', - 'ExtUtils::CBuilder::Platform::VMS'=> 'cpan', - 'ExtUtils::CBuilder::Platform::Windows'=> 'cpan', - 'ExtUtils::CBuilder::Platform::Windows::BCC'=> 'cpan', - 'ExtUtils::CBuilder::Platform::Windows::GCC'=> 'cpan', - 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> 'cpan', - 'ExtUtils::CBuilder::Platform::aix'=> 'cpan', - 'ExtUtils::CBuilder::Platform::cygwin'=> 'cpan', - 'ExtUtils::CBuilder::Platform::darwin'=> 'cpan', - 'ExtUtils::CBuilder::Platform::dec_osf'=> 'cpan', - 'ExtUtils::CBuilder::Platform::os2'=> 'cpan', - 'ExtUtils::Command' => undef, + 'ExtUtils::CBuilder' => 'blead', + 'ExtUtils::CBuilder::Base'=> 'blead', + 'ExtUtils::CBuilder::Platform::Unix'=> 'blead', + 'ExtUtils::CBuilder::Platform::VMS'=> 'blead', + 'ExtUtils::CBuilder::Platform::Windows'=> 'blead', + 'ExtUtils::CBuilder::Platform::Windows::BCC'=> 'blead', + 'ExtUtils::CBuilder::Platform::Windows::GCC'=> 'blead', + 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> 'blead', + 'ExtUtils::CBuilder::Platform::aix'=> 'blead', + 'ExtUtils::CBuilder::Platform::cygwin'=> 'blead', + 'ExtUtils::CBuilder::Platform::darwin'=> 'blead', + 'ExtUtils::CBuilder::Platform::dec_osf'=> 'blead', + 'ExtUtils::CBuilder::Platform::os2'=> 'blead', 'ExtUtils::Command::MM' => 'first-come', 'ExtUtils::Constant' => undef, 'ExtUtils::Constant::Base'=> undef, @@ -14260,30 +7375,37 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'ExtUtils::MY' => 'first-come', 'ExtUtils::MakeMaker' => 'first-come', 'ExtUtils::MakeMaker::Config'=> 'first-come', - 'ExtUtils::Manifest' => 'cpan', 'ExtUtils::Mkbootstrap' => 'first-come', 'ExtUtils::Mksymlists' => 'first-come', 'ExtUtils::Packlist' => 'blead', - 'ExtUtils::ParseXS' => 'cpan', + 'ExtUtils::ParseXS' => 'blead', + 'ExtUtils::ParseXS::Constants'=> 'blead', + 'ExtUtils::ParseXS::CountLines'=> 'blead', + 'ExtUtils::ParseXS::Utilities'=> 'blead', + 'ExtUtils::Typemaps' => 'blead', + 'ExtUtils::Typemaps::Cmd'=> 'blead', + 'ExtUtils::Typemaps::InputMap'=> 'blead', + 'ExtUtils::Typemaps::OutputMap'=> 'blead', + 'ExtUtils::Typemaps::Type'=> 'blead', 'ExtUtils::testlib' => 'first-come', 'Fatal' => 'cpan', 'File::Fetch' => 'cpan', 'File::GlobMapper' => 'cpan', 'File::Path' => undef, - 'File::Spec' => 'cpan', - 'File::Spec::Cygwin' => 'cpan', - 'File::Spec::Epoc' => 'cpan', - 'File::Spec::Functions' => 'cpan', - 'File::Spec::Mac' => 'cpan', - 'File::Spec::OS2' => 'cpan', - 'File::Spec::Unix' => 'cpan', - 'File::Spec::VMS' => 'cpan', - 'File::Spec::Win32' => 'cpan', - 'File::Temp' => undef, - 'Filespec' => undef, + 'File::Spec' => 'blead', + 'File::Spec::Cygwin' => 'blead', + 'File::Spec::Epoc' => 'blead', + 'File::Spec::Functions' => 'blead', + 'File::Spec::Mac' => 'blead', + 'File::Spec::OS2' => 'blead', + 'File::Spec::Unix' => 'blead', + 'File::Spec::VMS' => 'blead', + 'File::Spec::Win32' => 'blead', + 'File::Temp' => 'cpan', 'Filter::Simple' => 'blead', - 'Filter::Util::Call' => undef, + 'Filter::Util::Call' => 'cpan', 'Getopt::Long' => 'cpan', + 'HTTP::Tiny' => 'cpan', 'IO::Compress::Adapter::Bzip2'=> 'cpan', 'IO::Compress::Adapter::Deflate'=> 'cpan', 'IO::Compress::Adapter::Identity'=> 'cpan', @@ -14315,43 +7437,66 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'IPC::Semaphore' => 'cpan', 'IPC::SharedMem' => 'cpan', 'IPC::SysV' => 'cpan', - 'List::Util' => undef, - 'List::Util::PP' => undef, - 'List::Util::XS' => undef, - 'Locale::Constants' => undef, - 'Locale::Country' => undef, - 'Locale::Currency' => undef, - 'Locale::Language' => undef, + 'JSON::PP' => 'cpan', + 'JSON::PP::Boolean' => 'cpan', + 'List::Util' => 'cpan', + 'List::Util::XS' => 'cpan', + 'Locale::Codes' => 'cpan', + 'Locale::Codes::Constants'=> 'cpan', + 'Locale::Codes::Country'=> 'cpan', + 'Locale::Codes::Country_Codes'=> 'cpan', + 'Locale::Codes::Country_Retired'=> 'cpan', + 'Locale::Codes::Currency'=> 'cpan', + 'Locale::Codes::Currency_Codes'=> 'cpan', + 'Locale::Codes::Currency_Retired'=> 'cpan', + 'Locale::Codes::LangExt'=> 'cpan', + 'Locale::Codes::LangExt_Codes'=> 'cpan', + 'Locale::Codes::LangExt_Retired'=> 'cpan', + 'Locale::Codes::LangFam'=> 'cpan', + 'Locale::Codes::LangFam_Codes'=> 'cpan', + 'Locale::Codes::LangFam_Retired'=> 'cpan', + 'Locale::Codes::LangVar'=> 'cpan', + 'Locale::Codes::LangVar_Codes'=> 'cpan', + 'Locale::Codes::LangVar_Retired'=> 'cpan', + 'Locale::Codes::Language'=> 'cpan', + 'Locale::Codes::Language_Codes'=> 'cpan', + 'Locale::Codes::Language_Retired'=> 'cpan', + 'Locale::Codes::Script' => 'cpan', + 'Locale::Codes::Script_Codes'=> 'cpan', + 'Locale::Codes::Script_Retired'=> 'cpan', + 'Locale::Country' => 'cpan', + 'Locale::Currency' => 'cpan', + 'Locale::Language' => 'cpan', 'Locale::Maketext' => 'blead', 'Locale::Maketext::Guts'=> 'blead', 'Locale::Maketext::GutsLoader'=> 'blead', 'Locale::Maketext::Simple'=> 'cpan', - 'Locale::Script' => undef, + 'Locale::Script' => 'cpan', 'Log::Message' => 'cpan', 'Log::Message::Config' => 'cpan', 'Log::Message::Handlers'=> 'cpan', 'Log::Message::Item' => 'cpan', 'Log::Message::Simple' => 'cpan', - 'MIME::Base64' => undef, - 'MIME::QuotedPrint' => undef, - 'Math::BigFloat' => undef, - 'Math::BigFloat::Trace' => undef, - 'Math::BigInt' => undef, - 'Math::BigInt::Calc' => undef, - 'Math::BigInt::CalcEmu' => undef, - 'Math::BigInt::FastCalc'=> undef, - 'Math::BigInt::Trace' => undef, - 'Math::BigRat' => undef, + 'MIME::Base64' => 'cpan', + 'MIME::QuotedPrint' => 'cpan', + 'Math::BigFloat' => 'blead', + 'Math::BigFloat::Trace' => 'blead', + 'Math::BigInt' => 'blead', + 'Math::BigInt::Calc' => 'blead', + 'Math::BigInt::CalcEmu' => 'blead', + 'Math::BigInt::FastCalc'=> 'blead', + 'Math::BigInt::Trace' => 'blead', + 'Math::BigRat' => 'blead', 'Math::Complex' => 'cpan', 'Math::Trig' => 'cpan', - 'Memoize' => undef, - 'Memoize::AnyDBM_File' => undef, - 'Memoize::Expire' => undef, - 'Memoize::ExpireFile' => undef, - 'Memoize::ExpireTest' => undef, - 'Memoize::NDBM_File' => undef, - 'Memoize::SDBM_File' => undef, - 'Memoize::Storable' => undef, + 'Memoize' => 'cpan', + 'Memoize::AnyDBM_File' => 'cpan', + 'Memoize::Expire' => 'cpan', + 'Memoize::ExpireFile' => 'cpan', + 'Memoize::ExpireTest' => 'cpan', + 'Memoize::NDBM_File' => 'cpan', + 'Memoize::SDBM_File' => 'cpan', + 'Memoize::Storable' => 'cpan', 'Module::Build' => 'cpan', 'Module::Build::Base' => 'cpan', 'Module::Build::Compat' => 'cpan', @@ -14383,8 +7528,9 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Module::Load' => 'cpan', 'Module::Load::Conditional'=> 'cpan', 'Module::Loaded' => 'cpan', - 'Module::Pluggable' => undef, - 'Module::Pluggable::Object'=> undef, + 'Module::Metadata' => 'cpan', + 'Module::Pluggable' => 'cpan', + 'Module::Pluggable::Object'=> 'cpan', 'NEXT' => 'cpan', 'Net::Cmd' => undef, 'Net::Config' => undef, @@ -14405,30 +7551,32 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Package::Constants' => 'cpan', 'Params::Check' => 'cpan', '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::ToChecker'=> 'blead', - 'Pod::Perldoc::ToMan' => 'blead', - 'Pod::Perldoc::ToNroff' => 'blead', - 'Pod::Perldoc::ToPod' => 'blead', - 'Pod::Perldoc::ToRtf' => 'blead', - 'Pod::Perldoc::ToText' => 'blead', - 'Pod::Perldoc::ToTk' => 'blead', - 'Pod::Perldoc::ToXml' => 'blead', - 'Pod::PlainText' => undef, - 'Pod::Plainer' => 'blead', - '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', @@ -14461,54 +7609,57 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Pod::Text::Color' => 'cpan', 'Pod::Text::Overstrike' => 'cpan', 'Pod::Text::Termcap' => 'cpan', - 'Pod::Usage' => undef, + 'Pod::Usage' => 'cpan', 'Safe' => 'blead', - 'Scalar::Util' => undef, - 'Scalar::Util::PP' => undef, + 'Scalar::Util' => 'cpan', 'SelfLoader' => 'blead', - 'Shell' => undef, + 'Socket' => 'cpan', 'Storable' => 'blead', - 'Switch' => 'blead', 'Sys::Syslog' => 'cpan', - 'Sys::Syslog::win32::Win32'=> 'cpan', - 'TAP::Base' => undef, - 'TAP::Formatter::Base' => undef, - 'TAP::Formatter::Color' => undef, - 'TAP::Formatter::Console'=> undef, - 'TAP::Formatter::Console::ParallelSession'=> undef, - 'TAP::Formatter::Console::Session'=> undef, - 'TAP::Formatter::File' => undef, - 'TAP::Formatter::File::Session'=> undef, - 'TAP::Formatter::Session'=> undef, - 'TAP::Harness' => undef, - 'TAP::Object' => undef, - 'TAP::Parser' => undef, - 'TAP::Parser::Aggregator'=> undef, - 'TAP::Parser::Grammar' => undef, - 'TAP::Parser::Iterator' => undef, - 'TAP::Parser::Iterator::Array'=> undef, - 'TAP::Parser::Iterator::Process'=> undef, - 'TAP::Parser::Iterator::Stream'=> undef, - 'TAP::Parser::IteratorFactory'=> undef, - 'TAP::Parser::Multiplexer'=> undef, - 'TAP::Parser::Result' => undef, - 'TAP::Parser::Result::Bailout'=> undef, - 'TAP::Parser::Result::Comment'=> undef, - 'TAP::Parser::Result::Plan'=> undef, - 'TAP::Parser::Result::Pragma'=> undef, - 'TAP::Parser::Result::Test'=> undef, - 'TAP::Parser::Result::Unknown'=> undef, - 'TAP::Parser::Result::Version'=> undef, - 'TAP::Parser::Result::YAML'=> undef, - 'TAP::Parser::ResultFactory'=> undef, - 'TAP::Parser::Scheduler'=> undef, - 'TAP::Parser::Scheduler::Job'=> undef, - 'TAP::Parser::Scheduler::Spinner'=> undef, - 'TAP::Parser::Source' => undef, - 'TAP::Parser::Source::Perl'=> undef, - 'TAP::Parser::Utils' => undef, - 'TAP::Parser::YAMLish::Reader'=> undef, - 'TAP::Parser::YAMLish::Writer'=> undef, + 'Sys::Syslog::Win32' => 'cpan', + 'TAP::Base' => 'cpan', + 'TAP::Formatter::Base' => 'cpan', + 'TAP::Formatter::Color' => 'cpan', + 'TAP::Formatter::Console'=> 'cpan', + 'TAP::Formatter::Console::ParallelSession'=> 'cpan', + 'TAP::Formatter::Console::Session'=> 'cpan', + 'TAP::Formatter::File' => 'cpan', + 'TAP::Formatter::File::Session'=> 'cpan', + 'TAP::Formatter::Session'=> 'cpan', + 'TAP::Harness' => 'cpan', + 'TAP::Object' => 'cpan', + 'TAP::Parser' => 'cpan', + 'TAP::Parser::Aggregator'=> 'cpan', + 'TAP::Parser::Grammar' => 'cpan', + 'TAP::Parser::Iterator' => 'cpan', + 'TAP::Parser::Iterator::Array'=> 'cpan', + 'TAP::Parser::Iterator::Process'=> 'cpan', + 'TAP::Parser::Iterator::Stream'=> 'cpan', + 'TAP::Parser::IteratorFactory'=> 'cpan', + 'TAP::Parser::Multiplexer'=> 'cpan', + 'TAP::Parser::Result' => 'cpan', + 'TAP::Parser::Result::Bailout'=> 'cpan', + 'TAP::Parser::Result::Comment'=> 'cpan', + 'TAP::Parser::Result::Plan'=> 'cpan', + 'TAP::Parser::Result::Pragma'=> 'cpan', + 'TAP::Parser::Result::Test'=> 'cpan', + 'TAP::Parser::Result::Unknown'=> 'cpan', + 'TAP::Parser::Result::Version'=> 'cpan', + 'TAP::Parser::Result::YAML'=> 'cpan', + 'TAP::Parser::ResultFactory'=> 'cpan', + 'TAP::Parser::Scheduler'=> 'cpan', + 'TAP::Parser::Scheduler::Job'=> 'cpan', + 'TAP::Parser::Scheduler::Spinner'=> 'cpan', + 'TAP::Parser::Source' => 'cpan', + 'TAP::Parser::SourceHandler'=> 'cpan', + 'TAP::Parser::SourceHandler::Executable'=> 'cpan', + 'TAP::Parser::SourceHandler::File'=> 'cpan', + 'TAP::Parser::SourceHandler::Handle'=> 'cpan', + 'TAP::Parser::SourceHandler::Perl'=> 'cpan', + 'TAP::Parser::SourceHandler::RawTAP'=> 'cpan', + 'TAP::Parser::Utils' => 'cpan', + 'TAP::Parser::YAMLish::Reader'=> 'cpan', + 'TAP::Parser::YAMLish::Writer'=> 'cpan', 'Term::ANSIColor' => 'cpan', 'Term::Cap' => undef, 'Term::UI' => 'cpan', @@ -14518,54 +7669,62 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Test::Builder::Module' => 'cpan', 'Test::Builder::Tester' => 'cpan', 'Test::Builder::Tester::Color'=> 'cpan', - 'Test::Harness' => undef, + 'Test::Harness' => 'cpan', 'Test::More' => 'cpan', 'Test::Simple' => 'cpan', - 'Text::Balanced' => undef, + 'Text::Balanced' => 'cpan', 'Text::ParseWords' => undef, 'Text::Soundex' => undef, 'Text::Tabs' => 'cpan', 'Text::Wrap' => 'cpan', 'Thread::Queue' => 'blead', 'Thread::Semaphore' => 'blead', - 'Tie::File' => undef, + 'Tie::File' => 'blead', 'Tie::RefHash' => 'cpan', - 'Time::HiRes' => undef, - 'Time::Local' => 'blead', + 'Time::HiRes' => 'cpan', + 'Time::Local' => 'cpan', 'Time::Piece' => undef, - 'Time::Piece::Seconds' => undef, + 'Time::Seconds' => undef, 'Unicode::Collate' => 'first-come', + 'Unicode::Collate::CJK::Big5'=> 'first-come', + 'Unicode::Collate::CJK::GB2312'=> 'first-come', + 'Unicode::Collate::CJK::JISX0208'=> 'first-come', + 'Unicode::Collate::CJK::Korean'=> 'first-come', + 'Unicode::Collate::CJK::Pinyin'=> 'first-come', + 'Unicode::Collate::CJK::Stroke'=> 'first-come', + 'Unicode::Collate::Locale'=> 'first-come', 'Unicode::Normalize' => 'first-come', + 'Unicode::UCD' => 'blead', 'VMS::DCLsym' => undef, + 'VMS::Filespec' => undef, 'VMS::Stdio' => undef, 'Win32' => 'cpan', 'Win32API::File' => 'cpan', 'Win32API::File::ExtUtils::Myconst2perl'=> 'cpan', 'Win32CORE' => undef, - 'XS::APItest::KeywordRPN'=> 'blead', 'XSLoader' => 'blead', - 'XSLoader::XSLoader' => 'blead', 'autodie' => 'cpan', 'autodie::exception' => 'cpan', 'autodie::exception::system'=> 'cpan', 'autodie::hints' => 'cpan', 'base' => 'blead', - 'bigint' => undef, - 'bignum' => undef, - 'bigrat' => undef, + 'bigint' => 'blead', + 'bignum' => 'blead', + 'bigrat' => 'blead', 'constant' => 'blead', - 'encoding' => undef, + 'encoding' => 'cpan', 'encoding::warnings' => undef, 'fields' => 'blead', - 'if' => undef, + 'if' => 'blead', 'inc::latest' => 'cpan', 'lib' => 'blead', 'parent' => undef, + 'perlfaq' => 'cpan', 'threads' => 'blead', 'threads::shared' => 'blead', 'version' => undef, - 'warnings' => undef, - 'warnings::register' => undef, + 'warnings' => 'blead', + 'warnings::register' => 'blead', ); %bug_tracker = ( @@ -14579,6 +7738,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Archive::Tar::Constant'=> undef, 'Archive::Tar::File' => undef, 'Attribute::Handlers' => undef, + 'B::Concise' => undef, 'B::Debug' => undef, 'B::Deparse' => undef, 'B::Lint' => undef, @@ -14605,14 +7765,26 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'CPAN::Exception::RecursiveDependency'=> undef, 'CPAN::Exception::blocked_urllist'=> undef, 'CPAN::Exception::yaml_not_installed'=> undef, + 'CPAN::Exception::yaml_process_error'=> undef, 'CPAN::FTP' => undef, 'CPAN::FTP::netrc' => undef, 'CPAN::FirstTime' => undef, + 'CPAN::HTTP::Client' => undef, + 'CPAN::HTTP::Credentials'=> undef, 'CPAN::HandleConfig' => undef, 'CPAN::Index' => undef, 'CPAN::InfoObj' => undef, 'CPAN::Kwalify' => undef, 'CPAN::LWP::UserAgent' => undef, + 'CPAN::Meta' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Meta', + 'CPAN::Meta::Converter' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Meta', + 'CPAN::Meta::Feature' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Meta', + 'CPAN::Meta::History' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Meta', + 'CPAN::Meta::Prereqs' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Meta', + 'CPAN::Meta::Requirements'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Meta-Requirements', + 'CPAN::Meta::Spec' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Meta', + 'CPAN::Meta::Validator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Meta', + 'CPAN::Meta::YAML' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=CPAN-Meta-YAML', 'CPAN::Mirrors' => undef, 'CPAN::Module' => undef, 'CPAN::Nox' => undef, @@ -14626,6 +7798,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'CPANPLUS::Backend' => undef, 'CPANPLUS::Backend::RV' => undef, 'CPANPLUS::Config' => undef, + 'CPANPLUS::Config::HomeEnv'=> undef, 'CPANPLUS::Configure' => undef, 'CPANPLUS::Configure::Setup'=> undef, 'CPANPLUS::Dist' => undef, @@ -14662,7 +7835,8 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, - 'Class::ISA' => undef, + 'Carp' => undef, + 'Carp::Heavy' => undef, 'Compress::Raw::Bzip2' => undef, 'Compress::Raw::Zlib' => undef, 'Compress::Zlib' => undef, @@ -14714,7 +7888,6 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'ExtUtils::CBuilder::Platform::darwin'=> undef, 'ExtUtils::CBuilder::Platform::dec_osf'=> undef, 'ExtUtils::CBuilder::Platform::os2'=> undef, - 'ExtUtils::Command' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Command', 'ExtUtils::Command::MM' => undef, 'ExtUtils::Constant' => undef, 'ExtUtils::Constant::Base'=> undef, @@ -14745,11 +7918,18 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'ExtUtils::MY' => undef, 'ExtUtils::MakeMaker' => undef, 'ExtUtils::MakeMaker::Config'=> undef, - 'ExtUtils::Manifest' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Manifest', 'ExtUtils::Mkbootstrap' => undef, 'ExtUtils::Mksymlists' => undef, 'ExtUtils::Packlist' => undef, - 'ExtUtils::ParseXS' => 'http://rt.cpan.org/Dist/Display.html?Queue=ExtUtils-ParseXS', + 'ExtUtils::ParseXS' => undef, + 'ExtUtils::ParseXS::Constants'=> undef, + 'ExtUtils::ParseXS::CountLines'=> undef, + 'ExtUtils::ParseXS::Utilities'=> undef, + 'ExtUtils::Typemaps' => undef, + 'ExtUtils::Typemaps::Cmd'=> undef, + 'ExtUtils::Typemaps::InputMap'=> undef, + 'ExtUtils::Typemaps::OutputMap'=> undef, + 'ExtUtils::Typemaps::Type'=> undef, 'ExtUtils::testlib' => undef, 'Fatal' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie', 'File::Fetch' => undef, @@ -14765,10 +7945,10 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'File::Spec::VMS' => undef, 'File::Spec::Win32' => undef, 'File::Temp' => undef, - 'Filespec' => undef, 'Filter::Simple' => undef, 'Filter::Util::Call' => undef, 'Getopt::Long' => undef, + 'HTTP::Tiny' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=HTTP-Tiny', 'IO::Compress::Adapter::Bzip2'=> undef, 'IO::Compress::Adapter::Deflate'=> undef, 'IO::Compress::Adapter::Identity'=> undef, @@ -14800,10 +7980,33 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'IPC::Semaphore' => undef, 'IPC::SharedMem' => undef, 'IPC::SysV' => undef, + 'JSON::PP' => undef, + 'JSON::PP::Boolean' => undef, 'List::Util' => undef, - 'List::Util::PP' => undef, 'List::Util::XS' => undef, - 'Locale::Constants' => undef, + 'Locale::Codes' => undef, + 'Locale::Codes::Constants'=> undef, + 'Locale::Codes::Country'=> undef, + 'Locale::Codes::Country_Codes'=> undef, + 'Locale::Codes::Country_Retired'=> undef, + 'Locale::Codes::Currency'=> undef, + 'Locale::Codes::Currency_Codes'=> undef, + 'Locale::Codes::Currency_Retired'=> undef, + 'Locale::Codes::LangExt'=> undef, + 'Locale::Codes::LangExt_Codes'=> undef, + 'Locale::Codes::LangExt_Retired'=> undef, + 'Locale::Codes::LangFam'=> undef, + 'Locale::Codes::LangFam_Codes'=> undef, + 'Locale::Codes::LangFam_Retired'=> undef, + 'Locale::Codes::LangVar'=> undef, + 'Locale::Codes::LangVar_Codes'=> undef, + 'Locale::Codes::LangVar_Retired'=> undef, + 'Locale::Codes::Language'=> undef, + 'Locale::Codes::Language_Codes'=> undef, + 'Locale::Codes::Language_Retired'=> undef, + 'Locale::Codes::Script' => undef, + 'Locale::Codes::Script_Codes'=> undef, + 'Locale::Codes::Script_Retired'=> undef, 'Locale::Country' => undef, 'Locale::Currency' => undef, 'Locale::Language' => undef, @@ -14837,36 +8040,37 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Memoize::NDBM_File' => undef, 'Memoize::SDBM_File' => undef, 'Memoize::Storable' => undef, - 'Module::Build' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Base' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Compat' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Config' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Cookbook'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Dumper' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::ModuleInfo'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Notes' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::PPMMaker'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::Amiga'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::Default'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::EBCDIC'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::MPEiX'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::MacOS'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::RiscOS'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::Unix'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::VMS'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::VOS'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::Windows'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::aix'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::cygwin'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::darwin'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Platform::os2'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::PodParser'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::Version'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', - 'Module::Build::YAML' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', + 'Module::Build' => undef, + 'Module::Build::Base' => undef, + 'Module::Build::Compat' => undef, + 'Module::Build::Config' => undef, + 'Module::Build::Cookbook'=> undef, + 'Module::Build::Dumper' => undef, + 'Module::Build::ModuleInfo'=> undef, + 'Module::Build::Notes' => undef, + 'Module::Build::PPMMaker'=> undef, + 'Module::Build::Platform::Amiga'=> undef, + 'Module::Build::Platform::Default'=> undef, + 'Module::Build::Platform::EBCDIC'=> undef, + 'Module::Build::Platform::MPEiX'=> undef, + 'Module::Build::Platform::MacOS'=> undef, + 'Module::Build::Platform::RiscOS'=> undef, + 'Module::Build::Platform::Unix'=> undef, + 'Module::Build::Platform::VMS'=> undef, + 'Module::Build::Platform::VOS'=> undef, + 'Module::Build::Platform::Windows'=> undef, + 'Module::Build::Platform::aix'=> undef, + 'Module::Build::Platform::cygwin'=> undef, + 'Module::Build::Platform::darwin'=> undef, + 'Module::Build::Platform::os2'=> undef, + 'Module::Build::PodParser'=> undef, + 'Module::Build::Version'=> undef, + 'Module::Build::YAML' => undef, 'Module::CoreList' => undef, 'Module::Load' => undef, 'Module::Load::Conditional'=> undef, 'Module::Loaded' => undef, + 'Module::Metadata' => undef, 'Module::Pluggable' => undef, 'Module::Pluggable::Object'=> undef, 'NEXT' => undef, @@ -14889,6 +8093,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Package::Constants' => undef, 'Params::Check' => undef, 'Parse::CPAN::Meta' => undef, + 'Perl::OSType' => undef, 'PerlIO::via::QuotedPrint'=> undef, 'Pod::Checker' => undef, 'Pod::Escapes' => undef, @@ -14902,45 +8107,46 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Pod::Perldoc' => undef, 'Pod::Perldoc::BaseTo' => undef, 'Pod::Perldoc::GetOptsOO'=> undef, + 'Pod::Perldoc::ToANSI' => undef, 'Pod::Perldoc::ToChecker'=> undef, 'Pod::Perldoc::ToMan' => undef, 'Pod::Perldoc::ToNroff' => undef, 'Pod::Perldoc::ToPod' => undef, 'Pod::Perldoc::ToRtf' => undef, + 'Pod::Perldoc::ToTerm' => undef, 'Pod::Perldoc::ToText' => undef, 'Pod::Perldoc::ToTk' => undef, 'Pod::Perldoc::ToXml' => undef, 'Pod::PlainText' => undef, - 'Pod::Plainer' => undef, 'Pod::Select' => undef, - 'Pod::Simple' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::BlackBox' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::Checker' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::Debug' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::DumpAsText'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::DumpAsXML'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::HTML' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::HTMLBatch'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::HTMLLegacy'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::LinkSection'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::Methody' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::Progress' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::PullParser'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::PullParserEndToken'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::PullParserStartToken'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::PullParserTextToken'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::PullParserToken'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::RTF' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::Search' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::SimpleTree'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::Text' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::TextContent'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::TiedOutFH'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::Transcode'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::TranscodeDumb'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::TranscodeSmart'=> 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::XHTML' => 'mailto:bug-pod-simple@rt.cpan.org', - 'Pod::Simple::XMLOutStream'=> 'mailto:bug-pod-simple@rt.cpan.org', + 'Pod::Simple' => undef, + 'Pod::Simple::BlackBox' => undef, + 'Pod::Simple::Checker' => undef, + 'Pod::Simple::Debug' => undef, + 'Pod::Simple::DumpAsText'=> undef, + 'Pod::Simple::DumpAsXML'=> undef, + 'Pod::Simple::HTML' => undef, + 'Pod::Simple::HTMLBatch'=> undef, + 'Pod::Simple::HTMLLegacy'=> undef, + 'Pod::Simple::LinkSection'=> undef, + 'Pod::Simple::Methody' => undef, + 'Pod::Simple::Progress' => undef, + 'Pod::Simple::PullParser'=> undef, + 'Pod::Simple::PullParserEndToken'=> undef, + 'Pod::Simple::PullParserStartToken'=> undef, + 'Pod::Simple::PullParserTextToken'=> undef, + 'Pod::Simple::PullParserToken'=> undef, + 'Pod::Simple::RTF' => undef, + 'Pod::Simple::Search' => undef, + 'Pod::Simple::SimpleTree'=> undef, + 'Pod::Simple::Text' => undef, + 'Pod::Simple::TextContent'=> undef, + 'Pod::Simple::TiedOutFH'=> undef, + 'Pod::Simple::Transcode'=> undef, + 'Pod::Simple::TranscodeDumb'=> undef, + 'Pod::Simple::TranscodeSmart'=> undef, + 'Pod::Simple::XHTML' => undef, + 'Pod::Simple::XMLOutStream'=> undef, 'Pod::Text' => undef, 'Pod::Text::Color' => undef, 'Pod::Text::Overstrike' => undef, @@ -14948,13 +8154,11 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Pod::Usage' => undef, 'Safe' => undef, 'Scalar::Util' => undef, - 'Scalar::Util::PP' => undef, 'SelfLoader' => undef, - 'Shell' => undef, + 'Socket' => undef, 'Storable' => undef, - 'Switch' => undef, 'Sys::Syslog' => undef, - 'Sys::Syslog::win32::Win32'=> undef, + 'Sys::Syslog::Win32' => undef, 'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', @@ -14989,7 +8193,12 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', - 'TAP::Parser::Source::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', + 'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', + 'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', + 'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', + 'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', + 'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', + 'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 'TAP::Parser::Utils' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', @@ -14998,13 +8207,13 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Term::UI' => undef, 'Term::UI::History' => undef, 'Test' => undef, - 'Test::Builder' => 'http://code.google.com/p/test-more/issues', - 'Test::Builder::Module' => 'http://code.google.com/p/test-more/issues', - 'Test::Builder::Tester' => 'http://code.google.com/p/test-more/issues', - 'Test::Builder::Tester::Color'=> 'http://code.google.com/p/test-more/issues', + 'Test::Builder' => 'http://github.com/schwern/test-more/issues', + 'Test::Builder::Module' => 'http://github.com/schwern/test-more/issues', + 'Test::Builder::Tester' => 'http://github.com/schwern/test-more/issues', + 'Test::Builder::Tester::Color'=> 'http://github.com/schwern/test-more/issues', 'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', - 'Test::More' => 'http://code.google.com/p/test-more/issues', - 'Test::Simple' => 'http://code.google.com/p/test-more/issues', + 'Test::More' => 'http://github.com/schwern/test-more/issues', + 'Test::Simple' => 'http://github.com/schwern/test-more/issues', 'Text::Balanced' => undef, 'Text::ParseWords' => undef, 'Text::Soundex' => undef, @@ -15015,17 +8224,23 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Tie::File' => undef, 'Tie::RefHash' => undef, 'Time::HiRes' => undef, - 'Time::Local' => undef, + 'Time::Local' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Markdent', 'Time::Piece' => undef, - 'Time::Piece::Seconds' => undef, + 'Time::Seconds' => undef, 'Unicode::Collate' => undef, + 'Unicode::Collate::CJK::Big5'=> undef, + 'Unicode::Collate::CJK::GB2312'=> undef, + 'Unicode::Collate::CJK::JISX0208'=> undef, + 'Unicode::Collate::CJK::Korean'=> undef, + 'Unicode::Collate::CJK::Pinyin'=> undef, + 'Unicode::Collate::CJK::Stroke'=> undef, + 'Unicode::Collate::Locale'=> undef, 'Unicode::Normalize' => undef, + 'Unicode::UCD' => undef, 'Win32' => undef, 'Win32API::File' => undef, 'Win32API::File::ExtUtils::Myconst2perl'=> undef, - 'XS::APItest::KeywordRPN'=> undef, 'XSLoader' => undef, - 'XSLoader::XSLoader' => undef, 'autodie' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie', 'autodie::exception' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie', 'autodie::exception::system'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie', @@ -15039,12 +8254,15 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'encoding::warnings' => undef, 'fields' => undef, 'if' => undef, - 'inc::latest' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build', + 'inc::latest' => undef, 'lib' => undef, 'parent' => undef, + 'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues', 'threads' => undef, 'threads::shared' => undef, 'version' => undef, + 'warnings' => undef, + 'warnings::register' => undef, ); # Create aliases with trailing zeros for $] use @@ -15053,13 +8271,29 @@ $released{'5.000'} = $released{5}; $released{'5.010000'} = $released{5.01}; $released{'5.011000'} = $released{5.011}; $released{'5.012000'} = $released{5.012}; +$released{'5.013000'} = $released{5.013}; +$released{'5.014000'} = $released{5.014}; +$released{'5.015000'} = $released{5.015}; +$released{'5.016000'} = $released{5.016}; +$released{'5.017000'} = $released{5.017}; $version{'5.000'} = $version{5}; $version{'5.010000'} = $version{5.01}; $version{'5.011000'} = $version{5.011}; $version{'5.012000'} = $version{5.012}; +$version{'5.013000'} = $version{5.013}; +$version{'5.014000'} = $version{5.014}; +$version{'5.015000'} = $version{5.015}; +$version{'5.016000'} = $version{5.016}; +$version{'5.017000'} = $version{5.017}; +$deprecated{'5.011000'} = $deprecated{5.011}; $deprecated{'5.012000'} = $deprecated{5.012}; +$deprecated{'5.013000'} = $deprecated{5.013}; +$deprecated{'5.014000'} = $deprecated{5.014}; +$deprecated{'5.015000'} = $deprecated{5.015}; +$deprecated{'5.016000'} = $deprecated{5.016}; +$deprecated{'5.017000'} = $deprecated{5.017}; 1; __END__