X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FModule%2FCoreList.pm;h=a2e68047e3c646b9fe10dcfc91d863cd43c5d829;hb=196ac2fcd2dad2d042479c51fe09289545232c66;hp=3a65f9d31ccb5adeb44e8a4623a68e8883480592;hpb=17ef079d479b0add6fb451179e042661b68a411c;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/Module/CoreList.pm b/lib/Module/CoreList.pm index 3a65f9d..a2e6804 100644 --- a/lib/Module/CoreList.pm +++ b/lib/Module/CoreList.pm @@ -1,7 +1,7 @@ package Module::CoreList; use strict; use vars qw/$VERSION %released %patchlevel %version %families/; -$VERSION = '2.03'; +$VERSION = '2.12'; =head1 NAME @@ -13,8 +13,14 @@ Module::CoreList - what modules shipped with versions of perl print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48 - print Module::CoreList->first_release('File::Spec'); # prints 5.00503 - print Module::CoreList->first_release('File::Spec', 0.82); # prints 5.006001 + 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" @@ -25,7 +31,7 @@ Module::CoreList - what modules shipped with versions of perl =head1 DESCRIPTION Module::CoreList contains the hash of hashes -%Module::CoreList::version, this is keyed on perl version as indicated +%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, @@ -42,12 +48,19 @@ In 2.01 %Module::CoreList::patchlevel contains the branch and patchlevel corresponding to the specified perl version in the Perforce repository where the perl sources are kept. +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(). + =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.9.0, 5.9.1, 5.9.2 and 5.9.3 -releases of perl. +5.8.2, 5.8.3, 5.8.4, 5.8.5, 5.8.6, 5.8.7, 5.8.8, 5.9.0, 5.9.1, 5.9.2, 5.9.3 +and 5.9.4 releases of perl. =head1 HISTORY @@ -61,14 +74,14 @@ Currently maintained by the perl 5 porters Eperl5-porters@perl.orgE. =head1 COPYRIGHT -Copyright (C) 2002-2006 Richard Clamp. All Rights Reserved. +Copyright (C) 2002-2007 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, L, L =cut @@ -87,18 +100,44 @@ END { } -sub first_release { +sub first_release_raw { my ($discard, $module, $version) = @_; my @perls = $version ? grep { exists $version{$_}{ $module } && - $version{$_}{ $module } >= $version } keys %version + $version{$_}{ $module } ge $version } keys %version : grep { exists $version{$_}{ $module } } keys %version; + return @perls; +} + +sub first_release_by_date { + my @perls = &first_release_raw; return unless @perls; return (sort { $released{$a} cmp $released{$b} } @perls)[0]; } +sub first_release { + my @perls = &first_release_raw; + return unless @perls; + return (sort { $a cmp $b } @perls)[0]; +} + +sub find_modules { + my $discard = shift; + my $regex = shift; + my @perls = @_; + @perls = keys %version unless @perls; + + my %mods; + foreach (@perls) { + while (my ($k, $v) = each %{$version{$_}}) { + $mods{$k}++ if $k =~ $regex; + } + } + return sort keys %mods +} + # when things escaped %released = ( @@ -112,12 +151,12 @@ sub first_release { 5.00405 => '1999-04-29', 5.006 => '2000-03-22', 5.006001 => '2001-04-08', - 5.006002 => '2003-11-15', 5.007003 => '2002-03-05', 5.008 => '2002-07-19', 5.008001 => '2003-09-25', - 5.008002 => '2003-11-05', 5.009 => '2003-10-27', + 5.008002 => '2003-11-05', + 5.006002 => '2003-11-15', 5.008003 => '2004-01-14', 5.00504 => '2004-02-23', 5.009001 => '2004-03-16', @@ -128,6 +167,8 @@ sub first_release { 5.008007 => '2005-05-30', 5.009003 => '2006-01-28', 5.008008 => '2006-01-31', + 5.009004 => '2006-08-15', + 5.009005 => '2007-07-07', ); # perforce branches and patch levels @@ -152,7 +193,9 @@ sub first_release { 5.009002 => [perl => 24131], 5.008007 => ['maint-5.8' => 24641], 5.009003 => [perl => 26975], - 5.008008 => ['maint-5.8' => 27029], + 5.008008 => ['maint-5.8' => 27040], + 5.009004 => [perl => 28727], + 5.009005 => [perl => 31562], ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -214,6 +257,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'strict' => undef, # lib/strict.pm 'subs' => undef, # lib/subs.pm }, + 5.001 => { 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm 'AutoLoader' => undef, # lib/AutoLoader.pm @@ -272,6 +316,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'strict' => undef, # lib/strict.pm 'subs' => undef, # lib/subs.pm }, + 5.002 => { 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm 'AutoLoader' => undef, # lib/AutoLoader.pm @@ -351,6 +396,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'subs' => undef, # lib/subs.pm 'vars' => undef, # lib/vars.pm }, + 5.00307 => { 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm 'AutoLoader' => undef, #./lib/AutoLoader.pm @@ -451,6 +497,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm 'VMS::Stdio' => '2.0', #./vms/ext/Stdio/Stdio.pm }, + 5.004 => { 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm 'AutoLoader' => undef, #./lib/AutoLoader.pm @@ -584,6 +631,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm 'vmsish' => undef, #./vms/ext/vmsish.pm }, + 5.005 => { 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm 'attrs' => '1.0', #./ext/attrs/attrs.pm @@ -759,6 +807,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'VMS::Stdio' => '2.1', #./vms/ext/Stdio/Stdio.pm 'vmsish' => undef, #./vms/ext/vmsish.pm }, + 5.00503 => { 'AnyDBM_File' => undef, 'attrs' => '1.0', @@ -935,6 +984,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'VMS::Stdio' => 2.1, 'vmsish' => undef, }, + 5.00405 => { 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm 'attrs' => '0.1', #./lib/attrs.pm @@ -1082,7 +1132,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'vmsish' => undef, #./vms/ext/vmsish.pm }, - 5.00504 => { + 5.00504 => { 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm 'attrs' => '1.0', #lib/attrs.pm 'AutoLoader' => undef, #lib/AutoLoader.pm @@ -1260,7 +1310,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'VMS::Filespec' => undef, #vms/ext/Filespec.pm 'VMS::Stdio' => '2.1', #vms/ext/Stdio/Stdio.pm 'vmsish' => undef, #vms/ext/vmsish.pm - }, + }, 5.006 => { 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm @@ -1479,6 +1529,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'warnings' => undef, #./lib/warnings.pm 'warnings::register' => undef, #./lib/warnings/register.pm }, + 5.006001 => { 'AnyDBM_File' => undef, 'attributes' => 0.03, @@ -1702,6 +1753,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'warnings::register' => undef, 'XSLoader' => '0.01', }, + 5.006002 => { 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm 'attributes' => '0.03', #lib/attributes.pm @@ -1935,6 +1987,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -2585,6 +2638,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -2941,6 +2995,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -3296,6 +3351,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -3315,7 +3371,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'XSLoader' => 0.02, #XSLoader.pm }, - 5.008003 => { + 5.008003 => { 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm 'Attribute::Handlers' => '0.78', #lib/Attribute/Handlers.pm 'attributes' => '0.06', #lib/attributes.pm @@ -3653,6 +3709,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -3670,7 +3727,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -4011,6 +4068,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -4029,7 +4087,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -4377,6 +4435,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -4450,6 +4509,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -4758,8 +4818,8 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm }, - 5.008005 => { + 5.008005 => { 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm 'attributes' => '0.06', #lib/attributes.pm 'AutoLoader' => '5.60', #lib/AutoLoader.pm @@ -5043,6 +5103,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -5122,6 +5183,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'VMS::Filespec' => '1.11', #vms/ext/Filespec.pm 'VMS::Stdio' => '2.3', #vms/ext/Stdio/Stdio.pm }, + 5.008006 => { 'AnyDBM_File' => '1.00', #lib/AnyDBM_File.pm 'Attribute::Handlers' => '0.78_01', #lib/Attribute/Handlers.pm @@ -5471,6 +5533,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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 @@ -5502,7 +5565,6 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'B::Deparse' => '0.69', 'B::Disassembler' => '1.03', 'B::Lint' => '1.03', - 'B::O' => '1.00', 'B::Showlex' => '1.02', 'B::Stackobj' => '1.00', 'B::Stash' => '1.00', @@ -5536,6 +5598,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -5630,6 +5693,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -5653,11 +5717,11 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', - 'IPC::SysV::Msg' => '1.02', - 'IPC::SysV::Semaphore' => '1.02', 'List::Util' => '1.14', 'Locale::Constants' => '2.07', 'Locale::Country' => '2.07', @@ -5708,10 +5772,9 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Net::netent' => '1.00', 'Net::protoent' => '1.00', 'Net::servent' => '1.01', + 'O' => '1.00', 'ODBM_File' => '1.05', 'Opcode' => '1.06', - 'Opcode::Safe' => '2.11', - 'Opcode::ops' => '1.00', 'POSIX' => '1.08', 'PerlIO' => '1.03', 'PerlIO::encoding' => '0.07', @@ -5748,12 +5811,14 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -5796,14 +5861,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -5828,6 +5896,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'lib' => '0.5565', 'locale' => '1.00', 'open' => '1.04', + 'ops' => '1.00', 'overload' => '1.03', 're' => '0.05', 'sigtrap' => '1.02', @@ -5860,7 +5929,6 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'B::Deparse' => '0.7', 'B::Disassembler' => '1.04', 'B::Lint' => '1.03', - 'B::O' => '1.00', 'B::Showlex' => '1.02', 'B::Stackobj' => '1.00', 'B::Stash' => '1.00', @@ -5893,6 +5961,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -5930,7 +5999,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Env' => '1.00', 'Errno' => '1.09_01', 'Exporter' => '5.58', - 'Exporter::Heavy' => '5.59', + 'Exporter::Heavy' => '5.58', 'ExtUtils::Command' => '1.05', 'ExtUtils::Command::MM' => '0.03', 'ExtUtils::Constant' => '0.16', @@ -5987,6 +6056,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6010,11 +6080,11 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', - 'IPC::SysV::Msg' => '1.02', - 'IPC::SysV::Semaphore' => '1.02', 'List::Util' => '1.14', 'Locale::Constants' => '2.07', 'Locale::Country' => '2.07', @@ -6064,10 +6134,9 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Net::netent' => '1.00', 'Net::protoent' => '1.00', 'Net::servent' => '1.01', + 'O' => '1.00', 'ODBM_File' => '1.05', 'Opcode' => '1.05', - 'Opcode::Safe' => '2.11', - 'Opcode::ops' => '1.00', 'POSIX' => '1.08', 'PerlIO' => '1.03', 'PerlIO::encoding' => '0.07', @@ -6104,12 +6173,14 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6153,14 +6224,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6182,6 +6256,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'lib' => '0.5565', 'locale' => '1.00', 'open' => '1.04', + 'ops' => '1.00', 'overload' => '1.03', 're' => '0.04', 'sigtrap' => '1.02', @@ -6216,7 +6291,6 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'B::Deparse' => '0.73', 'B::Disassembler' => '1.05', 'B::Lint' => '1.04', - 'B::O' => '1.00', 'B::Showlex' => '1.02', 'B::Stackobj' => '1.00', 'B::Stash' => '1.00', @@ -6277,6 +6351,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6389,6 +6464,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6413,11 +6489,11 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', - 'IPC::SysV::Msg' => '1.02', - 'IPC::SysV::Semaphore' => '1.02', 'List::Util' => '1.18', 'Locale::Constants' => '2.07', 'Locale::Country' => '2.07', @@ -6448,6 +6524,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6469,10 +6546,9 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Net::netent' => '1.00', 'Net::protoent' => '1.00', 'Net::servent' => '1.01', + 'O' => '1.00', 'ODBM_File' => '1.06', 'Opcode' => '1.08', - 'Opcode::Safe' => '2.12', - 'Opcode::ops' => '1.01', 'POSIX' => '1.10', 'PerlIO' => '1.04', 'PerlIO::encoding' => '0.09', @@ -6537,12 +6613,14 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6589,14 +6667,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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, @@ -6623,6 +6704,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'lib' => '0.5565', 'locale' => '1.00', 'open' => '1.05', + 'ops' => '1.01', 'overload' => '1.04', 're' => '0.06', 'sigtrap' => '1.02', @@ -6655,7 +6737,6 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'B::Deparse' => '0.71', 'B::Disassembler' => '1.05', 'B::Lint' => '1.03', - 'B::O' => '1.00', 'B::Showlex' => '1.02', 'B::Stackobj' => '1.00', 'B::Stash' => '1.00', @@ -6676,7 +6757,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'CPAN::FirstTime' => '1.60 ', 'CPAN::Nox' => '1.03', 'Carp' => '1.04', - 'Carp::Heavy' => '1.05', + 'Carp::Heavy' => '1.04', 'Class::ISA' => '0.33', 'Class::Struct' => '0.63', 'Cwd' => '3.12', @@ -6688,6 +6769,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6726,7 +6808,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Env' => '1.00', 'Errno' => '1.09_01', 'Exporter' => '5.58', - 'Exporter::Heavy' => '5.59', + 'Exporter::Heavy' => '5.58', 'ExtUtils::Command' => '1.09', 'ExtUtils::Command::MM' => '0.05', 'ExtUtils::Constant' => '0.17', @@ -6787,6 +6869,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6810,11 +6893,11 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', - 'IPC::SysV::Msg' => '1.02', - 'IPC::SysV::Semaphore' => '1.02', 'List::Util' => '1.18', 'Locale::Constants' => '2.07', 'Locale::Country' => '2.07', @@ -6864,10 +6947,9 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Net::netent' => '1.00', 'Net::protoent' => '1.00', 'Net::servent' => '1.01', + 'O' => '1.00', 'ODBM_File' => '1.06', 'Opcode' => '1.06', - 'Opcode::Safe' => '2.12', - 'Opcode::ops' => '1.01', 'POSIX' => '1.09', 'PerlIO' => '1.04', 'PerlIO::encoding' => '0.09', @@ -6904,12 +6986,14 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6956,14 +7040,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { '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', @@ -6985,6 +7072,7 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'lib' => '0.5565', 'locale' => '1.00', 'open' => '1.05', + 'ops' => '1.01', 'overload' => '1.04', 're' => '0.05', 'sigtrap' => '1.02', @@ -6999,6 +7087,1022 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'warnings' => '1.05', 'warnings::register' => '1.01', }, + 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::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::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', + }, + 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', + }, ); 1;