1 package Module::CoreList;
3 use vars qw/$VERSION %released %version %families %upstream
4 %bug_tracker %deprecated %delta/;
5 use Module::CoreList::TieHashDelta;
7 $VERSION = '5.20150320';
12 my $what = shift || '';
13 if ($what eq 'dumpinc') {
19 print "---INC---\n", join "\n" => keys %INC
24 sub first_release_raw {
26 $module = shift if eval { $module->isa(__PACKAGE__) }
27 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
31 ? grep { defined $version{$_}{ $module } &&
32 $version{$_}{ $module } ge $version } keys %version
33 : grep { exists $version{$_}{ $module } } keys %version;
38 sub first_release_by_date {
39 my @perls = &first_release_raw;
41 return (sort { $released{$a} cmp $released{$b} } @perls)[0];
45 my @perls = &first_release_raw;
47 return (sort { $a cmp $b } @perls)[0];
52 $regex = shift if eval { $regex->isa(__PACKAGE__) };
54 @perls = keys %version unless @perls;
58 while (my ($k, $v) = each %{$version{$_}}) {
59 $mods{$k}++ if $k =~ $regex;
62 return sort keys %mods
67 $v = shift if eval { $v->isa(__PACKAGE__) };
68 return $version{$v} if defined $version{$v};
74 $module = shift if eval { $module->isa(__PACKAGE__) }
75 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
76 my $perl_version = shift;
78 return unless $module && exists $deprecated{$perl_version}{$module};
79 return $deprecated{$perl_version}{$module};
84 $module = shift if eval { $module->isa(__PACKAGE__) }
85 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
86 return unless $module;
87 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
90 return List::Util::minstr(@perls);
94 my @perls = &removed_raw;
98 sub removed_from_by_date {
99 my @perls = sort { $released{$a} cmp $released{$b} } &removed_raw;
105 $mod = shift if eval { $mod->isa(__PACKAGE__) }
106 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
107 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
108 my $last = pop @perls;
109 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
113 sub changes_between {
114 my $left_ver = shift;
115 $left_ver = shift if eval { $left_ver->isa(__PACKAGE__) };
116 my $right_ver = shift;
118 my $left = $version{ $left_ver };
119 my $right = $version{ $right_ver };
121 my %uniq = (%$left, %$right);
124 for my $lib (keys %uniq) {
125 my $lhs = exists $left->{ $lib }
126 ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
128 my $rhs = exists $right->{ $lib }
129 ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
132 next if $lhs eq $rhs;
135 (exists $left->{$lib} ? (left => $left->{$lib}) : ()),
136 (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
139 $changes{$lib} = $change;
145 # When things escaped.
146 # NB. If you put version numbers with trailing zeroes here, you
147 # should also add an alias for the numerical ($]) version; see
148 # just before the __END__ of this module.
150 5.000 => '1994-10-17',
151 5.001 => '1995-03-14',
152 5.002 => '1996-02-29',
153 5.00307 => '1996-10-10',
154 5.004 => '1997-05-15',
155 5.005 => '1998-07-22',
156 5.00503 => '1999-03-28',
157 5.00405 => '1999-04-29',
158 5.006 => '2000-03-22',
159 5.006001 => '2001-04-08',
160 5.007003 => '2002-03-05',
161 5.008 => '2002-07-19',
162 5.008001 => '2003-09-25',
163 5.009 => '2003-10-27',
164 5.008002 => '2003-11-05',
165 5.006002 => '2003-11-15',
166 5.008003 => '2004-01-14',
167 5.00504 => '2004-02-23',
168 5.009001 => '2004-03-16',
169 5.008004 => '2004-04-21',
170 5.008005 => '2004-07-19',
171 5.008006 => '2004-11-27',
172 5.009002 => '2005-04-01',
173 5.008007 => '2005-05-30',
174 5.009003 => '2006-01-28',
175 5.008008 => '2006-01-31',
176 5.009004 => '2006-08-15',
177 5.009005 => '2007-07-07',
178 5.010000 => '2007-12-18',
179 5.008009 => '2008-12-14',
180 5.010001 => '2009-08-22',
181 5.011000 => '2009-10-02',
182 5.011001 => '2009-10-20',
183 5.011002 => '2009-11-20',
184 5.011003 => '2009-12-20',
185 5.011004 => '2010-01-20',
186 5.011005 => '2010-02-20',
187 5.012000 => '2010-04-12',
188 5.013000 => '2010-04-20',
189 5.012001 => '2010-05-16',
190 5.013001 => '2010-05-20',
191 5.013002 => '2010-06-22',
192 5.013003 => '2010-07-20',
193 5.013004 => '2010-08-20',
194 5.012002 => '2010-09-06',
195 5.013005 => '2010-09-19',
196 5.013006 => '2010-10-20',
197 5.013007 => '2010-11-20',
198 5.013008 => '2010-12-20',
199 5.012003 => '2011-01-21',
200 5.013009 => '2011-01-20',
201 5.013010 => '2011-02-20',
202 5.013011 => '2011-03-20',
203 5.014000 => '2011-05-14',
204 5.012004 => '2011-06-20',
205 5.012005 => '2012-11-10',
206 5.014001 => '2011-06-16',
207 5.015000 => '2011-06-20',
208 5.015001 => '2011-07-20',
209 5.015002 => '2011-08-20',
210 5.014002 => '2011-09-26',
211 5.015003 => '2011-09-20',
212 5.015004 => '2011-10-20',
213 5.015005 => '2011-11-20',
214 5.015006 => '2011-12-20',
215 5.015007 => '2012-01-20',
216 5.015008 => '2012-02-20',
217 5.015009 => '2012-03-20',
218 5.016000 => '2012-05-20',
219 5.016001 => '2012-08-08',
220 5.016002 => '2012-11-01',
221 5.017000 => '2012-05-26',
222 5.017001 => '2012-06-20',
223 5.017002 => '2012-07-20',
224 5.017003 => '2012-08-20',
225 5.017004 => '2012-09-20',
226 5.014003 => '2012-10-12',
227 5.017005 => '2012-10-20',
228 5.017006 => '2012-11-20',
229 5.017007 => '2012-12-18',
230 5.017008 => '2013-01-20',
231 5.017009 => '2013-02-20',
232 5.014004 => '2013-03-10',
233 5.016003 => '2013-03-11',
234 5.017010 => '2013-03-21',
235 5.017011 => '2013-04-20',
236 5.018000 => '2013-05-18',
237 5.019000 => '2013-05-20',
238 5.019001 => '2013-06-21',
239 5.019002 => '2013-07-22',
240 5.018001 => '2013-08-12',
241 5.019003 => '2013-08-20',
242 5.019004 => '2013-09-20',
243 5.019005 => '2013-10-20',
244 5.019006 => '2013-11-20',
245 5.019007 => '2013-12-20',
246 5.018002 => '2014-01-06',
247 5.018003 => '2014-10-01',
248 5.018004 => '2014-10-01',
249 5.019008 => '2014-01-20',
250 5.019009 => '2014-02-20',
251 5.01901 => '2014-03-20',
252 5.019011 => '2014-04-20',
253 5.020000 => '2014-05-27',
254 5.021000 => '2014-05-27',
255 5.021001 => '2014-06-20',
256 5.021002 => '2014-07-20',
257 5.021003 => '2014-08-20',
258 5.020001 => '2014-09-14',
259 5.021004 => '2014-09-20',
260 5.021005 => '2014-10-20',
261 5.021006 => '2014-11-20',
262 5.021007 => '2014-12-20',
263 5.021008 => '2015-01-20',
264 5.020002 => '2015-02-14',
265 5.021009 => '2015-02-21',
266 5.021010 => '????-??-??',
269 for my $version ( sort { $a <=> $b } keys %released ) {
270 my $family = int ($version * 1000) / 1000;
271 push @{ $families{ $family }} , $version;
277 'AnyDBM_File' => undef,
278 'AutoLoader' => undef,
279 'AutoSplit' => undef,
280 'Benchmark' => undef,
284 'DynaLoader' => undef,
288 'ExtUtils::MakeMaker' => undef,
290 'File::Basename' => undef,
291 'File::CheckTree' => undef,
292 'File::Find' => undef,
293 'FileHandle' => undef,
294 'GDBM_File' => undef,
295 'Getopt::Long' => undef,
296 'Getopt::Std' => undef,
297 'I18N::Collate' => undef,
298 'IPC::Open2' => undef,
299 'IPC::Open3' => undef,
300 'Math::BigFloat' => undef,
301 'Math::BigInt' => undef,
302 'Math::Complex' => undef,
303 'NDBM_File' => undef,
304 'Net::Ping' => undef,
305 'ODBM_File' => undef,
307 'SDBM_File' => undef,
308 'Search::Dict' => undef,
311 'Sys::Hostname' => undef,
312 'Sys::Syslog' => undef,
313 'Term::Cap' => undef,
314 'Term::Complete' => undef,
315 'Test::Harness' => undef,
316 'Text::Abbrev' => undef,
317 'Text::ParseWords' => undef,
318 'Text::Soundex' => undef,
319 'Text::Tabs' => undef,
321 'Time::Local' => undef,
334 'ExtUtils::Liblist' => undef,
335 'ExtUtils::Manifest' => undef,
336 'ExtUtils::Mkbootstrap' => undef,
337 'File::Path' => undef,
338 'SubstrHash' => undef,
348 'Devel::SelfStubber' => '1.01',
349 'DirHandle' => undef,
350 'DynaLoader' => '1.00',
351 'ExtUtils::Install' => undef,
352 'ExtUtils::MM_OS2' => undef,
353 'ExtUtils::MM_Unix' => undef,
354 'ExtUtils::MM_VMS' => undef,
355 'ExtUtils::MakeMaker' => '5.21',
356 'ExtUtils::Manifest' => '1.22',
357 'ExtUtils::Mksymlists' => '1.00',
359 'File::Copy' => '1.5',
360 'File::Path' => '1.01',
361 'FileCache' => undef,
362 'FileHandle' => '1.00',
363 'GDBM_File' => '1.00',
364 'Getopt::Long' => '2.01',
365 'NDBM_File' => '1.00',
367 'ODBM_File' => '1.00',
369 'Pod::Functions' => undef,
370 'Pod::Text' => undef,
371 'SDBM_File' => '1.00',
373 'SelectSaver' => undef,
374 'SelfLoader' => '1.06',
377 'Term::ReadLine' => undef,
378 'Test::Harness' => '1.07',
379 'Text::Wrap' => undef,
380 'Tie::Hash' => undef,
381 'Tie::Scalar' => undef,
382 'Tie::SubstrHash' => undef,
383 'diagnostics' => undef,
397 'ExtUtils::Embed' => '1.18',
398 'ExtUtils::Install' => '1.15 ',
399 'ExtUtils::Liblist' => '1.20 ',
400 'ExtUtils::MM_Unix' => '1.107 ',
401 'ExtUtils::MakeMaker' => '5.38',
402 'ExtUtils::Manifest' => '1.27',
403 'ExtUtils::Mkbootstrap' => '1.13 ',
404 'ExtUtils::Mksymlists' => '1.12 ',
405 'ExtUtils::testlib' => '1.11 ',
407 'File::Basename' => '2.4',
409 'Getopt::Long' => '2.04',
411 'IO::File' => '1.05',
412 'IO::Handle' => '1.12',
413 'IO::Pipe' => '1.07',
414 'IO::Seekable' => '1.05',
415 'IO::Select' => '1.09',
416 'IO::Socket' => '1.13',
417 'Net::Ping' => '1.01',
418 'OS2::ExtAttr' => '0.01',
419 'OS2::PrfDB' => '0.02',
420 'OS2::Process' => undef,
421 'OS2::REXX' => undef,
424 'Test::Harness' => '1.13',
425 'Text::Tabs' => '96.051501',
426 'Text::Wrap' => '96.041801',
427 'UNIVERSAL' => undef,
428 'VMS::Filespec' => undef,
429 'VMS::Stdio' => '2.0',
437 delta_from => 5.00307,
439 'Bundle::CPAN' => '0.02',
441 'CGI::Apache' => '1.01',
442 'CGI::Carp' => '1.06',
443 'CGI::Fast' => '1.00a',
444 'CGI::Push' => '1.00',
445 'CGI::Switch' => '0.05',
447 'CPAN::FirstTime' => '1.18 ',
448 'CPAN::Nox' => undef,
449 'Class::Struct' => undef,
452 'DynaLoader' => '1.02',
453 'ExtUtils::Command' => '1.00',
454 'ExtUtils::Embed' => '1.2501',
455 'ExtUtils::Install' => '1.16 ',
456 'ExtUtils::Liblist' => '1.2201 ',
457 'ExtUtils::MM_Unix' => '1.114 ',
458 'ExtUtils::MM_Win32' => undef,
459 'ExtUtils::MakeMaker' => '5.4002',
460 'ExtUtils::Manifest' => '1.33 ',
461 'ExtUtils::Mksymlists' => '1.13 ',
462 'ExtUtils::XSSymSet' => '1.0',
464 'File::Basename' => '2.5',
465 'File::Compare' => '1.1001',
466 'File::Copy' => '2.02',
467 'File::Path' => '1.04',
468 'File::stat' => undef,
469 'FileHandle' => '2.00',
470 'Getopt::Long' => '2.10',
471 'IO::File' => '1.0602',
472 'IO::Handle' => '1.1504',
473 'IO::Pipe' => '1.0901',
474 'IO::Seekable' => '1.06',
475 'IO::Select' => '1.10',
476 'IO::Socket' => '1.1602',
477 'IPC::Open2' => '1.01',
478 'IPC::Open3' => '1.0101',
479 'Math::Complex' => '1.01',
481 'Net::Ping' => '2.02',
482 'Net::hostent' => undef,
483 'Net::netent' => undef,
484 'Net::protoent' => undef,
485 'Net::servent' => undef,
488 'Pod::Html' => undef,
489 'Pod::Text' => '1.0203',
490 'SelfLoader' => '1.07',
493 'Test::Harness' => '1.1502',
494 'Text::Tabs' => '96.121201',
495 'Text::Wrap' => '97.011701',
496 'Tie::RefHash' => undef,
497 'Time::gmtime' => '1.01',
498 'Time::localtime' => '1.01',
500 'User::grent' => undef,
501 'User::pwent' => undef,
502 'VMS::DCLsym' => '1.01',
503 'VMS::Stdio' => '2.02',
506 'constant' => '1.00',
518 'AutoLoader' => '5.56',
519 'AutoSplit' => '1.0303',
520 'Bundle::CPAN' => '0.03',
522 'CGI::Apache' => '1.1',
523 'CGI::Carp' => '1.10',
524 'CGI::Cookie' => '1.06',
525 'CGI::Push' => '1.01',
526 'CGI::Switch' => '0.06',
528 'CPAN::FirstTime' => '1.30 ',
531 'DynaLoader' => '1.03',
532 'ExtUtils::Command' => '1.01',
533 'ExtUtils::Embed' => '1.2505',
534 'ExtUtils::Install' => '1.28 ',
535 'ExtUtils::Liblist' => '1.25 ',
536 'ExtUtils::MM_Unix' => '1.118 ',
537 'ExtUtils::MakeMaker' => '5.42',
538 'ExtUtils::Mkbootstrap' => '1.14 ',
539 'ExtUtils::Mksymlists' => '1.16 ',
540 'File::Basename' => '2.6',
541 'File::DosGlob' => undef,
542 'File::Path' => '1.0402',
543 'File::Spec' => '0.6',
544 'File::Spec::Mac' => '1.0',
545 'File::Spec::OS2' => undef,
546 'File::Spec::Unix' => undef,
547 'File::Spec::VMS' => undef,
548 'File::Spec::Win32' => undef,
550 'Getopt::Long' => '2.19',
551 'IO::File' => '1.06021',
552 'IO::Socket' => '1.1603',
553 'IPC::Open3' => '1.0103',
554 'Math::Complex' => '1.25',
555 'NDBM_File' => '1.01',
556 'Pod::Html' => '1.0101',
557 'Pod::Text' => '1.0204',
558 'SelfLoader' => '1.08',
561 'Test::Harness' => '1.1602',
562 'Text::ParseWords' => '3.1001',
563 'Text::Wrap' => '98.112902',
564 'Tie::Handle' => undef,
575 delta_from => 5.00405,
577 'AutoLoader' => undef,
578 'AutoSplit' => '1.0302',
580 'B::Asmdata' => undef,
581 'B::Assembler' => undef,
582 'B::Bblock' => undef,
583 'B::Bytecode' => undef,
587 'B::Deparse' => '0.56',
588 'B::Disassembler' => undef,
590 'B::Showlex' => undef,
591 'B::Stackobj' => undef,
594 'CGI::Carp' => '1.101',
596 'CPAN::FirstTime' => '1.29 ',
598 'Data::Dumper' => '2.09',
600 'ExtUtils::Installed' => '0.02',
601 'ExtUtils::MM_Unix' => '1.12601 ',
602 'ExtUtils::MakeMaker' => '5.4301',
603 'ExtUtils::Mkbootstrap' => '1.13 ',
604 'ExtUtils::Mksymlists' => '1.17 ',
605 'ExtUtils::Packlist' => '0.03',
607 'File::Path' => '1.0401',
608 'Getopt::Long' => '2.17',
609 'IO::Handle' => '1.1505',
610 'IPC::Msg' => '1.00',
611 'IPC::Open3' => '1.0102',
612 'IPC::Semaphore' => '1.00',
613 'IPC::SysV' => '1.03',
615 'OS2::Process' => '0.2',
616 'Pod::Html' => '1.01',
617 'Pod::Text' => '1.0203',
618 'Text::ParseWords' => '3.1',
619 'Text::Wrap' => '97.02',
621 'Thread::Queue' => undef,
622 'Thread::Semaphore' => undef,
623 'Thread::Signal' => undef,
624 'Thread::Specific' => undef,
625 'Tie::Array' => '1.00',
626 'VMS::Stdio' => '2.1',
638 'AutoSplit' => '1.0303',
640 'CGI::Carp' => '1.13',
641 'CGI::Fast' => '1.01',
643 'CPAN::FirstTime' => '1.36',
644 'CPAN::Nox' => '1.00',
646 'Data::Dumper' => '2.101',
647 'Dumpvalue' => undef,
649 'ExtUtils::Install' => '1.28',
650 'ExtUtils::Liblist' => '1.25',
651 'ExtUtils::MM_Unix' => '1.12602',
652 'ExtUtils::MakeMaker' => '5.4302',
653 'ExtUtils::Manifest' => '1.33',
654 'ExtUtils::Mkbootstrap' => '1.14',
655 'ExtUtils::Mksymlists' => '1.17',
656 'ExtUtils::testlib' => '1.11',
658 'Getopt::Long' => '2.19',
659 'Getopt::Std' => '1.01',
660 'IO::Pipe' => '1.0902',
661 'IPC::Open3' => '1.0103',
662 'Math::Complex' => '1.26',
664 'Text::Wrap' => '98.112902',
670 delta_from => 5.00503,
672 'CPAN::FirstTime' => '1.36 ',
673 'DB_File' => '1.807',
674 'ExtUtils::Install' => '1.28 ',
675 'ExtUtils::Liblist' => '1.25 ',
676 'ExtUtils::MM_Unix' => '1.12602 ',
677 'ExtUtils::Manifest' => '1.33 ',
678 'ExtUtils::Miniperl' => undef,
679 'ExtUtils::Mkbootstrap' => '1.14 ',
680 'ExtUtils::Mksymlists' => '1.17 ',
681 'ExtUtils::testlib' => '1.11 ',
682 'File::Compare' => '1.1002',
683 'File::Spec' => '0.8',
684 'File::Spec::Functions' => undef,
685 'File::Spec::Mac' => undef,
686 'Getopt::Long' => '2.20',
687 'Pod::Html' => '1.02',
693 delta_from => 5.00504,
695 'AutoLoader' => '5.57',
696 'AutoSplit' => '1.0305',
697 'B::Deparse' => '0.59',
700 'ByteLoader' => '0.03',
702 'CGI::Apache' => undef,
703 'CGI::Carp' => '1.14',
704 'CGI::Cookie' => '1.12',
705 'CGI::Fast' => '1.02',
706 'CGI::Pretty' => '1.03',
707 'CGI::Switch' => undef,
709 'CPAN::FirstTime' => '1.38 ',
710 'Carp::Heavy' => undef,
711 'Class::Struct' => '0.58',
715 'Devel::DProf' => '20000000.00_00',
716 'Devel::Peek' => '1.00_01',
717 'DynaLoader' => '1.04',
718 'Exporter' => '5.562',
719 'Exporter::Heavy' => undef,
720 'ExtUtils::MM_Cygwin' => undef,
721 'ExtUtils::MM_Unix' => '1.12603 ',
722 'ExtUtils::MakeMaker' => '5.45',
723 'File::Copy' => '2.03',
724 'File::Glob' => '0.991',
725 'File::Path' => '1.0403',
726 'GDBM_File' => '1.03',
727 'Getopt::Long' => '2.23',
728 'Getopt::Std' => '1.02',
731 'IO::File' => '1.08',
732 'IO::Handle' => '1.21',
733 'IO::Pipe' => '1.121',
734 'IO::Poll' => '0.01',
735 'IO::Seekable' => '1.08',
736 'IO::Select' => '1.14',
737 'IO::Socket' => '1.26',
738 'IO::Socket::INET' => '1.25',
739 'IO::Socket::UNIX' => '1.20',
741 'JPL::AutoLoader' => undef,
742 'JPL::Class' => undef,
743 'JPL::Compile' => undef,
744 'NDBM_File' => '1.03',
745 'ODBM_File' => '1.02',
748 'Pod::Checker' => '1.098',
749 'Pod::Find' => '0.12',
750 'Pod::Html' => '1.03',
751 'Pod::InputObjects' => '1.12',
752 'Pod::Man' => '1.02',
753 'Pod::ParseUtils' => '0.2',
754 'Pod::Parser' => '1.12',
755 'Pod::Plainer' => '0.01',
756 'Pod::Select' => '1.12',
757 'Pod::Text' => '2.03',
758 'Pod::Text::Color' => '0.05',
759 'Pod::Text::Termcap' => '0.04',
760 'Pod::Usage' => '1.12',
761 'SDBM_File' => '1.02',
762 'SelfLoader' => '1.0901',
765 'Sys::Hostname' => '1.1',
766 'Sys::Syslog' => '0.01',
767 'Term::ANSIColor' => '1.01',
769 'Test::Harness' => '1.1604',
770 'Text::ParseWords' => '3.2',
771 'Text::Soundex' => '1.0',
772 'Text::Tabs' => '98.112801',
773 'Tie::Array' => '1.01',
774 'Tie::Handle' => '1.0',
775 'VMS::Stdio' => '2.2',
776 'XSLoader' => '0.01',
777 'attributes' => '0.03',
781 'charnames' => undef,
782 'constant' => '1.02',
783 'diagnostics' => '1.0',
790 'warnings::register' => undef,
798 'AutoLoader' => '5.58',
799 'B::Assembler' => '0.02',
800 'B::Concise' => '0.51',
801 'B::Deparse' => '0.6',
802 'ByteLoader' => '0.04',
804 'CGI::Carp' => '1.20',
805 'CGI::Cookie' => '1.18',
806 'CGI::Pretty' => '1.05',
807 'CGI::Push' => '1.04',
808 'CGI::Util' => '1.1',
810 'CPAN::FirstTime' => '1.53',
811 'Class::Struct' => '0.59',
814 'Data::Dumper' => '2.102',
815 'ExtUtils::Install' => '1.28',
816 'ExtUtils::Liblist' => '1.26',
817 'ExtUtils::MM_Unix' => '1.12603',
818 'ExtUtils::Manifest' => '1.33',
819 'ExtUtils::Mkbootstrap' => '1.14',
820 'ExtUtils::Mksymlists' => '1.17',
821 'ExtUtils::testlib' => '1.11',
822 'File::Path' => '1.0404',
823 'File::Spec' => '0.82',
824 'File::Spec::Epoc' => undef,
825 'File::Spec::Functions' => '1.1',
826 'File::Spec::Mac' => '1.2',
827 'File::Spec::OS2' => '1.1',
828 'File::Spec::Unix' => '1.2',
829 'File::Spec::VMS' => '1.1',
830 'File::Spec::Win32' => '1.2',
831 'File::Temp' => '0.12',
832 'GDBM_File' => '1.05',
833 'Getopt::Long' => '2.25',
834 'IO::Poll' => '0.05',
836 'Math::BigFloat' => '0.02',
837 'Math::BigInt' => '0.01',
838 'Math::Complex' => '1.31',
839 'NDBM_File' => '1.04',
840 'ODBM_File' => '1.03',
841 'OS2::REXX' => '1.00',
842 'Pod::Checker' => '1.2',
843 'Pod::Find' => '0.21',
844 'Pod::InputObjects' => '1.13',
845 'Pod::LaTeX' => '0.53',
846 'Pod::Man' => '1.15',
847 'Pod::ParseUtils' => '0.22',
848 'Pod::Parser' => '1.13',
849 'Pod::Select' => '1.13',
850 'Pod::Text' => '2.08',
851 'Pod::Text::Color' => '0.06',
852 'Pod::Text::Overstrike' => '1.01',
853 'Pod::Text::Termcap' => '1',
854 'Pod::Usage' => '1.14',
855 'SDBM_File' => '1.03',
856 'SelfLoader' => '1.0902',
858 'Term::ANSIColor' => '1.03',
860 'Text::Wrap' => '2001.0131',
861 'Tie::Handle' => '4.0',
862 'Tie::RefHash' => '1.3',
868 delta_from => 5.006001,
870 'CPAN::FirstTime' => '1.53 ',
871 'DB_File' => '1.806',
872 'Data::Dumper' => '2.121',
873 'ExtUtils::Command' => '1.05',
874 'ExtUtils::Command::MM' => '0.03',
875 'ExtUtils::Install' => '1.32',
876 'ExtUtils::Installed' => '0.08',
877 'ExtUtils::Liblist' => '1.01',
878 'ExtUtils::Liblist::Kid'=> '1.3',
879 'ExtUtils::MM' => '0.04',
880 'ExtUtils::MM_Any' => '0.07',
881 'ExtUtils::MM_BeOS' => '1.04',
882 'ExtUtils::MM_Cygwin' => '1.06',
883 'ExtUtils::MM_DOS' => '0.02',
884 'ExtUtils::MM_MacOS' => '1.07',
885 'ExtUtils::MM_NW5' => '2.06',
886 'ExtUtils::MM_OS2' => '1.04',
887 'ExtUtils::MM_UWIN' => '0.02',
888 'ExtUtils::MM_Unix' => '1.42',
889 'ExtUtils::MM_VMS' => '5.70',
890 'ExtUtils::MM_Win32' => '1.09',
891 'ExtUtils::MM_Win95' => '0.03',
892 'ExtUtils::MY' => '0.01',
893 'ExtUtils::MakeMaker' => '6.17',
894 'ExtUtils::MakeMaker::bytes'=> '0.01',
895 'ExtUtils::MakeMaker::vmsish'=> '0.01',
896 'ExtUtils::Manifest' => '1.42',
897 'ExtUtils::Mkbootstrap' => '1.15',
898 'ExtUtils::Mksymlists' => '1.19',
899 'ExtUtils::Packlist' => '0.04',
900 'ExtUtils::testlib' => '1.15',
901 'File::Spec' => '0.86',
902 'File::Spec::Cygwin' => '1.1',
903 'File::Spec::Epoc' => '1.1',
904 'File::Spec::Functions' => '1.3',
905 'File::Spec::Mac' => '1.4',
906 'File::Spec::OS2' => '1.2',
907 'File::Spec::Unix' => '1.5',
908 'File::Spec::VMS' => '1.4',
909 'File::Spec::Win32' => '1.4',
910 'File::Temp' => '0.14',
913 'Test::Builder' => '0.17',
914 'Test::Harness' => '2.30',
915 'Test::Harness::Assert' => '0.01',
916 'Test::Harness::Iterator'=> '0.01',
917 'Test::Harness::Straps' => '0.15',
918 'Test::More' => '0.47',
919 'Test::Simple' => '0.47',
920 'Unicode' => '3.0.1',
928 delta_from => 5.006001,
930 'AnyDBM_File' => '1.00',
931 'Attribute::Handlers' => '0.76',
932 'AutoLoader' => '5.59',
933 'AutoSplit' => '1.0307',
935 'B::Asmdata' => '1.00',
936 'B::Assembler' => '0.04',
937 'B::Bblock' => '1.00',
938 'B::Bytecode' => '1.00',
941 'B::Concise' => '0.52',
942 'B::Debug' => '1.00',
943 'B::Deparse' => '0.63',
944 'B::Disassembler' => '1.01',
946 'B::Showlex' => '1.00',
947 'B::Stackobj' => '1.00',
948 'B::Stash' => '1.00',
949 'B::Terse' => '1.00',
951 'Benchmark' => '1.04',
953 'CGI::Apache' => '1.00',
954 'CGI::Carp' => '1.22',
955 'CGI::Cookie' => '1.20',
956 'CGI::Fast' => '1.04',
957 'CGI::Pretty' => '1.05_00',
958 'CGI::Switch' => '1.00',
959 'CGI::Util' => '1.3',
961 'CPAN::FirstTime' => '1.54 ',
962 'CPAN::Nox' => '1.00_01',
964 'Carp::Heavy' => '1.01',
965 'Class::ISA' => '0.32',
966 'Class::Struct' => '0.61',
968 'DB_File' => '1.804',
969 'Data::Dumper' => '2.12',
970 'Devel::DProf' => '20000000.00_01',
971 'Devel::PPPort' => '2.0002',
972 'Devel::Peek' => '1.00_03',
973 'Devel::SelfStubber' => '1.03',
975 'Digest::MD5' => '2.16',
976 'DirHandle' => '1.00',
977 'Dumpvalue' => '1.10',
979 'Encode::CN' => '0.02',
980 'Encode::CN::HZ' => undef,
981 'Encode::Encoding' => '0.02',
982 'Encode::Internal' => '0.30',
983 'Encode::JP' => '0.02',
984 'Encode::JP::Constants' => '1.02',
985 'Encode::JP::H2Z' => '0.77',
986 'Encode::JP::ISO_2022_JP'=> undef,
987 'Encode::JP::JIS' => undef,
988 'Encode::JP::Tr' => '0.77',
989 'Encode::KR' => '0.02',
990 'Encode::TW' => '0.02',
991 'Encode::Tcl' => '1.01',
992 'Encode::Tcl::Escape' => '1.01',
993 'Encode::Tcl::Extended' => '1.01',
994 'Encode::Tcl::HanZi' => '1.01',
995 'Encode::Tcl::Table' => '1.01',
996 'Encode::Unicode' => '0.30',
997 'Encode::XS' => '0.40',
998 'Encode::iso10646_1' => '0.30',
999 'Encode::usc2_le' => '0.30',
1000 'Encode::utf8' => '0.30',
1001 'English' => '1.00',
1003 'Exporter' => '5.566',
1004 'Exporter::Heavy' => '5.562',
1005 'ExtUtils::Command' => '1.02',
1006 'ExtUtils::Constant' => '0.11',
1007 'ExtUtils::Embed' => '1.250601',
1008 'ExtUtils::Install' => '1.29',
1009 'ExtUtils::Installed' => '0.04',
1010 'ExtUtils::Liblist' => '1.2701',
1011 'ExtUtils::MM_BeOS' => '1.00',
1012 'ExtUtils::MM_Cygwin' => '1.00',
1013 'ExtUtils::MM_OS2' => '1.00',
1014 'ExtUtils::MM_Unix' => '1.12607',
1015 'ExtUtils::MM_VMS' => '5.56',
1016 'ExtUtils::MM_Win32' => '1.00_02',
1017 'ExtUtils::MakeMaker' => '5.48_03',
1018 'ExtUtils::Manifest' => '1.35',
1019 'ExtUtils::Mkbootstrap' => '1.1401',
1020 'ExtUtils::Mksymlists' => '1.18',
1021 'ExtUtils::Packlist' => '0.04',
1022 'ExtUtils::testlib' => '1.1201',
1025 'File::Basename' => '2.71',
1026 'File::CheckTree' => '4.1',
1027 'File::Compare' => '1.1003',
1028 'File::Copy' => '2.05',
1029 'File::DosGlob' => '1.00',
1030 'File::Find' => '1.04',
1031 'File::Glob' => '1.01',
1032 'File::Path' => '1.05',
1033 'File::Spec' => '0.83',
1034 'File::Spec::Cygwin' => '1.0',
1035 'File::Spec::Epoc' => '1.00',
1036 'File::Spec::Functions' => '1.2',
1037 'File::Spec::Mac' => '1.3',
1038 'File::Spec::Unix' => '1.4',
1039 'File::Spec::VMS' => '1.2',
1040 'File::Spec::Win32' => '1.3',
1041 'File::Temp' => '0.13',
1042 'File::stat' => '1.00',
1043 'FileCache' => '1.00',
1044 'FileHandle' => '2.01',
1045 'Filter::Simple' => '0.77',
1046 'Filter::Util::Call' => '1.06',
1047 'FindBin' => '1.43',
1048 'GDBM_File' => '1.06',
1049 'Getopt::Long' => '2.28',
1050 'Getopt::Std' => '1.03',
1051 'I18N::Collate' => '1.00',
1052 'I18N::LangTags' => '0.27',
1053 'I18N::LangTags::List' => '0.25',
1054 'I18N::Langinfo' => '0.01',
1055 'IO::Dir' => '1.03_00',
1056 'IO::File' => '1.09',
1057 'IO::Handle' => '1.21_00',
1058 'IO::Pipe' => '1.122',
1059 'IO::Poll' => '0.06',
1060 'IO::Seekable' => '1.08_00',
1061 'IO::Select' => '1.15',
1062 'IO::Socket' => '1.27',
1063 'IO::Socket::INET' => '1.26',
1064 'IO::Socket::UNIX' => '1.20_00',
1065 'IPC::Msg' => '1.00_00',
1066 'IPC::Open3' => '1.0104',
1067 'IPC::Semaphore' => '1.00_00',
1068 'IPC::SysV' => '1.03_00',
1069 'List::Util' => '1.06_00',
1070 'Locale::Constants' => '2.01',
1071 'Locale::Country' => '2.01',
1072 'Locale::Currency' => '2.01',
1073 'Locale::Language' => '2.01',
1074 'Locale::Maketext' => '1.03',
1075 'Locale::Script' => '2.01',
1076 'MIME::Base64' => '2.12',
1077 'MIME::QuotedPrint' => '2.03',
1078 'Math::BigFloat' => '1.30',
1079 'Math::BigInt' => '1.54',
1080 'Math::BigInt::Calc' => '0.25',
1081 'Math::Complex' => '1.34',
1082 'Math::Trig' => '1.01',
1083 'Memoize' => '0.66',
1084 'Memoize::AnyDBM_File' => '0.65',
1085 'Memoize::Expire' => '0.66',
1086 'Memoize::ExpireFile' => '0.65',
1087 'Memoize::ExpireTest' => '0.65',
1088 'Memoize::NDBM_File' => '0.65',
1089 'Memoize::SDBM_File' => '0.65',
1090 'Memoize::Storable' => '0.65',
1092 'Net::Cmd' => '2.21',
1093 'Net::Config' => '1.10',
1094 'Net::Domain' => '2.17',
1095 'Net::FTP' => '2.64',
1096 'Net::FTP::A' => '1.15',
1097 'Net::FTP::E' => '0.01',
1098 'Net::FTP::I' => '1.12',
1099 'Net::FTP::L' => '0.01',
1100 'Net::FTP::dataconn' => '0.10',
1101 'Net::NNTP' => '2.21',
1102 'Net::Netrc' => '2.12',
1103 'Net::POP3' => '2.23',
1104 'Net::Ping' => '2.12',
1105 'Net::SMTP' => '2.21',
1106 'Net::Time' => '2.09',
1107 'Net::hostent' => '1.00',
1108 'Net::netent' => '1.00',
1109 'Net::protoent' => '1.00',
1110 'Net::servent' => '1.00',
1112 'OS2::DLL' => '1.00',
1113 'OS2::Process' => '1.0',
1114 'OS2::REXX' => '1.01',
1118 'PerlIO::Scalar' => '0.01',
1119 'PerlIO::Via' => '0.01',
1120 'Pod::Checker' => '1.3',
1121 'Pod::Find' => '0.22',
1122 'Pod::Functions' => '1.01',
1123 'Pod::Html' => '1.04',
1124 'Pod::LaTeX' => '0.54',
1125 'Pod::Man' => '1.32',
1126 'Pod::ParseLink' => '1.05',
1127 'Pod::Text' => '2.18',
1128 'Pod::Text::Color' => '1.03',
1129 'Pod::Text::Overstrike' => '1.08',
1130 'Pod::Text::Termcap' => '1.09',
1132 'Scalar::Util' => '1.06_00',
1133 'Search::Dict' => '1.02',
1134 'SelectSaver' => '1.00',
1135 'SelfLoader' => '1.0903',
1138 'Storable' => '1.015',
1141 'Sys::Syslog' => '0.02',
1142 'Term::ANSIColor' => '1.04',
1143 'Term::Cap' => '1.07',
1144 'Term::Complete' => '1.4',
1145 'Term::ReadLine' => '1.00',
1147 'Test::Builder' => '0.11',
1148 'Test::Harness' => '2.01',
1149 'Test::Harness::Assert' => '0.01',
1150 'Test::Harness::Iterator'=> '0.01',
1151 'Test::Harness::Straps' => '0.08',
1152 'Test::More' => '0.41',
1153 'Test::Simple' => '0.41',
1154 'Text::Abbrev' => '1.00',
1155 'Text::Balanced' => '1.89',
1156 'Text::ParseWords' => '3.21',
1157 'Text::Soundex' => '1.01',
1158 'Text::Wrap' => '2001.0929',
1160 'Thread::Queue' => '1.00',
1161 'Thread::Semaphore' => '1.00',
1162 'Thread::Signal' => '1.00',
1163 'Thread::Specific' => '1.00',
1164 'Tie::Array' => '1.02',
1165 'Tie::File' => '0.17',
1166 'Tie::Handle' => '4.1',
1167 'Tie::Hash' => '1.00',
1168 'Tie::Memoize' => '1.0',
1169 'Tie::RefHash' => '1.3_00',
1170 'Tie::Scalar' => '1.00',
1171 'Tie::SubstrHash' => '1.00',
1172 'Time::HiRes' => '1.20_00',
1173 'Time::Local' => '1.04',
1174 'Time::gmtime' => '1.02',
1175 'Time::localtime' => '1.02',
1176 'Time::tm' => '1.00',
1177 'UNIVERSAL' => '1.00',
1178 'Unicode::Collate' => '0.10',
1179 'Unicode::Normalize' => '0.14',
1180 'Unicode::UCD' => '0.2',
1181 'User::grent' => '1.00',
1182 'User::pwent' => '1.00',
1183 'VMS::DCLsym' => '1.02',
1184 'VMS::Filespec' => '1.1',
1185 'VMS::Stdio' => '2.3',
1186 'XS::Typemap' => '0.01',
1187 'attributes' => '0.04_01',
1189 'autouse' => '1.03',
1193 'charnames' => '1.01',
1194 'constant' => '1.04',
1195 'diagnostics' => '1.1',
1196 'encoding' => '1.00',
1198 'filetest' => '1.00',
1200 'integer' => '1.00',
1205 'overload' => '1.00',
1210 'threads' => '0.05',
1211 'threads::shared' => '0.90',
1215 'warnings' => '1.00',
1216 'warnings::register' => '1.00',
1222 delta_from => 5.007003,
1224 'Attribute::Handlers' => '0.77',
1226 'B::Lint' => '1.01',
1227 'B::Xref' => '1.01',
1229 'CGI::Carp' => '1.23',
1231 'CPAN::FirstTime' => '1.56 ',
1232 'CPAN::Nox' => '1.02',
1233 'Digest::MD5' => '2.20',
1234 'Dumpvalue' => '1.11',
1236 'Encode::Alias' => '1.32',
1237 'Encode::Byte' => '1.22',
1238 'Encode::CJKConstants' => '1.00',
1239 'Encode::CN' => '1.24',
1240 'Encode::CN::HZ' => '1.04',
1241 'Encode::Config' => '1.06',
1242 'Encode::EBCDIC' => '1.21',
1243 'Encode::Encoder' => '0.05',
1244 'Encode::Encoding' => '1.30',
1245 'Encode::Guess' => '1.06',
1246 'Encode::JP' => '1.25',
1247 'Encode::JP::H2Z' => '1.02',
1248 'Encode::JP::JIS7' => '1.08',
1249 'Encode::KR' => '1.22',
1250 'Encode::KR::2022_KR' => '1.05',
1251 'Encode::MIME::Header' => '1.05',
1252 'Encode::Symbol' => '1.22',
1253 'Encode::TW' => '1.26',
1254 'Encode::Unicode' => '1.37',
1255 'Exporter::Heavy' => '5.566',
1256 'ExtUtils::Command' => '1.04',
1257 'ExtUtils::Command::MM' => '0.01',
1258 'ExtUtils::Constant' => '0.12',
1259 'ExtUtils::Installed' => '0.06',
1260 'ExtUtils::Liblist' => '1.00',
1261 'ExtUtils::Liblist::Kid'=> '1.29',
1262 'ExtUtils::MM' => '0.04',
1263 'ExtUtils::MM_Any' => '0.04',
1264 'ExtUtils::MM_BeOS' => '1.03',
1265 'ExtUtils::MM_Cygwin' => '1.04',
1266 'ExtUtils::MM_DOS' => '0.01',
1267 'ExtUtils::MM_MacOS' => '1.03',
1268 'ExtUtils::MM_NW5' => '2.05',
1269 'ExtUtils::MM_OS2' => '1.03',
1270 'ExtUtils::MM_UWIN' => '0.01',
1271 'ExtUtils::MM_Unix' => '1.33',
1272 'ExtUtils::MM_VMS' => '5.65',
1273 'ExtUtils::MM_Win32' => '1.05',
1274 'ExtUtils::MM_Win95' => '0.02',
1275 'ExtUtils::MY' => '0.01',
1276 'ExtUtils::MakeMaker' => '6.03',
1277 'ExtUtils::Manifest' => '1.38',
1278 'ExtUtils::Mkbootstrap' => '1.15',
1279 'ExtUtils::Mksymlists' => '1.19',
1280 'ExtUtils::testlib' => '1.15',
1281 'File::CheckTree' => '4.2',
1282 'FileCache' => '1.021',
1283 'Filter::Simple' => '0.78',
1284 'Getopt::Long' => '2.32',
1285 'Hash::Util' => '0.04',
1286 'List::Util' => '1.07_00',
1287 'Locale::Country' => '2.04',
1288 'Math::BigFloat' => '1.35',
1289 'Math::BigFloat::Trace' => '0.01',
1290 'Math::BigInt' => '1.60',
1291 'Math::BigInt::Calc' => '0.30',
1292 'Math::BigInt::Trace' => '0.01',
1293 'Math::BigRat' => '0.07',
1294 'Memoize' => '1.01',
1295 'Memoize::Expire' => '1.00',
1296 'Memoize::ExpireFile' => '1.01',
1297 'Net::FTP' => '2.65',
1298 'Net::FTP::dataconn' => '0.11',
1299 'Net::Ping' => '2.19',
1300 'Net::SMTP' => '2.24',
1302 'PerlIO::encoding' => '0.06',
1303 'PerlIO::scalar' => '0.01',
1304 'PerlIO::via' => '0.01',
1305 'PerlIO::via::QuotedPrint'=> '0.04',
1306 'Pod::Man' => '1.33',
1307 'Pod::Text' => '2.19',
1308 'Scalar::Util' => '1.07_00',
1309 'Storable' => '2.04',
1311 'Sys::Syslog' => '0.03',
1313 'Test::Builder' => '0.15',
1314 'Test::Harness' => '2.26',
1315 'Test::Harness::Straps' => '0.14',
1316 'Test::More' => '0.45',
1317 'Test::Simple' => '0.45',
1318 'Thread::Queue' => '2.00',
1319 'Thread::Semaphore' => '2.00',
1320 'Tie::File' => '0.93',
1321 'Tie::RefHash' => '1.30',
1322 'Unicode' => '3.2.0',
1323 'Unicode::Collate' => '0.12',
1324 'Unicode::Normalize' => '0.17',
1325 'XS::APItest' => '0.01',
1326 'attributes' => '0.05',
1332 'encoding' => '1.35',
1334 'threads' => '0.99',
1337 'Encode::Internal' => 1,
1338 'Encode::JP::Constants' => 1,
1339 'Encode::JP::ISO_2022_JP'=> 1,
1340 'Encode::JP::JIS' => 1,
1341 'Encode::JP::Tr' => 1,
1343 'Encode::Tcl::Escape' => 1,
1344 'Encode::Tcl::Extended' => 1,
1345 'Encode::Tcl::HanZi' => 1,
1346 'Encode::Tcl::Table' => 1,
1348 'Encode::iso10646_1' => 1,
1349 'Encode::usc2_le' => 1,
1350 'Encode::utf8' => 1,
1351 'PerlIO::Scalar' => 1,
1356 delta_from => 5.008,
1358 'Attribute::Handlers' => '0.78',
1359 'AutoLoader' => '5.60',
1360 'AutoSplit' => '1.04',
1362 'B::Asmdata' => '1.01',
1363 'B::Assembler' => '0.06',
1364 'B::Bblock' => '1.02',
1365 'B::Bytecode' => '1.01',
1367 'B::Concise' => '0.56',
1368 'B::Debug' => '1.01',
1369 'B::Deparse' => '0.64',
1370 'B::Disassembler' => '1.03',
1371 'B::Lint' => '1.02',
1372 'B::Terse' => '1.02',
1373 'Benchmark' => '1.051',
1374 'ByteLoader' => '0.05',
1376 'CGI::Carp' => '1.26',
1377 'CGI::Cookie' => '1.24',
1378 'CGI::Fast' => '1.041',
1379 'CGI::Pretty' => '1.07_00',
1380 'CGI::Util' => '1.31',
1381 'CPAN' => '1.76_01',
1382 'CPAN::FirstTime' => '1.60 ',
1383 'CPAN::Nox' => '1.03',
1384 'Class::Struct' => '0.63',
1386 'DB_File' => '1.806',
1387 'Data::Dumper' => '2.121',
1388 'Devel::DProf' => '20030813.00',
1389 'Devel::PPPort' => '2.007',
1390 'Devel::Peek' => '1.01',
1392 'Digest::MD5' => '2.27',
1393 'Encode' => '1.9801',
1394 'Encode::Alias' => '1.38',
1395 'Encode::Byte' => '1.23',
1396 'Encode::CJKConstants' => '1.02',
1397 'Encode::CN::HZ' => '1.05',
1398 'Encode::Config' => '1.07',
1399 'Encode::Encoder' => '0.07',
1400 'Encode::Encoding' => '1.33',
1401 'Encode::Guess' => '1.09',
1402 'Encode::JP::JIS7' => '1.12',
1403 'Encode::KR' => '1.23',
1404 'Encode::KR::2022_KR' => '1.06',
1405 'Encode::MIME::Header' => '1.09',
1406 'Encode::Unicode' => '1.40',
1407 'Encode::Unicode::UTF7' => '0.02',
1408 'English' => '1.01',
1409 'Errno' => '1.09_00',
1410 'Exporter' => '5.567',
1411 'Exporter::Heavy' => '5.567',
1412 'ExtUtils::Command' => '1.05',
1413 'ExtUtils::Command::MM' => '0.03',
1414 'ExtUtils::Constant' => '0.14',
1415 'ExtUtils::Install' => '1.32',
1416 'ExtUtils::Installed' => '0.08',
1417 'ExtUtils::Liblist' => '1.01',
1418 'ExtUtils::Liblist::Kid'=> '1.3',
1419 'ExtUtils::MM_Any' => '0.07',
1420 'ExtUtils::MM_BeOS' => '1.04',
1421 'ExtUtils::MM_Cygwin' => '1.06',
1422 'ExtUtils::MM_DOS' => '0.02',
1423 'ExtUtils::MM_MacOS' => '1.07',
1424 'ExtUtils::MM_NW5' => '2.06',
1425 'ExtUtils::MM_OS2' => '1.04',
1426 'ExtUtils::MM_UWIN' => '0.02',
1427 'ExtUtils::MM_Unix' => '1.42',
1428 'ExtUtils::MM_VMS' => '5.70',
1429 'ExtUtils::MM_Win32' => '1.09',
1430 'ExtUtils::MM_Win95' => '0.03',
1431 'ExtUtils::MakeMaker' => '6.17',
1432 'ExtUtils::MakeMaker::bytes'=> '0.01',
1433 'ExtUtils::MakeMaker::vmsish'=> '0.01',
1434 'ExtUtils::Manifest' => '1.42',
1436 'File::Basename' => '2.72',
1437 'File::Copy' => '2.06',
1438 'File::Find' => '1.05',
1439 'File::Glob' => '1.02',
1440 'File::Path' => '1.06',
1441 'File::Spec' => '0.86',
1442 'File::Spec::Cygwin' => '1.1',
1443 'File::Spec::Epoc' => '1.1',
1444 'File::Spec::Functions' => '1.3',
1445 'File::Spec::Mac' => '1.4',
1446 'File::Spec::OS2' => '1.2',
1447 'File::Spec::Unix' => '1.5',
1448 'File::Spec::VMS' => '1.4',
1449 'File::Spec::Win32' => '1.4',
1450 'File::Temp' => '0.14',
1451 'FileCache' => '1.03',
1452 'Filter::Util::Call' => '1.0601',
1453 'GDBM_File' => '1.07',
1454 'Getopt::Long' => '2.34',
1455 'Getopt::Std' => '1.04',
1456 'Hash::Util' => '0.05',
1457 'I18N::LangTags' => '0.28',
1458 'I18N::LangTags::List' => '0.26',
1459 'I18N::Langinfo' => '0.02',
1461 'IO::Dir' => '1.04',
1462 'IO::File' => '1.10',
1463 'IO::Handle' => '1.23',
1464 'IO::Seekable' => '1.09',
1465 'IO::Select' => '1.16',
1466 'IO::Socket' => '1.28',
1467 'IO::Socket::INET' => '1.27',
1468 'IO::Socket::UNIX' => '1.21',
1469 'IPC::Msg' => '1.02',
1470 'IPC::Open3' => '1.0105',
1471 'IPC::Semaphore' => '1.02',
1472 'IPC::SysV' => '1.04',
1474 'List::Util' => '1.13',
1475 'Locale::Country' => '2.61',
1476 'Locale::Currency' => '2.21',
1477 'Locale::Language' => '2.21',
1478 'Locale::Maketext' => '1.06',
1479 'Locale::Maketext::Guts'=> undef,
1480 'Locale::Maketext::GutsLoader'=> undef,
1481 'Locale::Script' => '2.21',
1482 'MIME::Base64' => '2.20',
1483 'MIME::QuotedPrint' => '2.20',
1484 'Math::BigFloat' => '1.40',
1485 'Math::BigInt' => '1.66',
1486 'Math::BigInt::Calc' => '0.36',
1487 'Math::BigInt::Scalar' => '0.11',
1488 'Math::BigRat' => '0.10',
1489 'Math::Trig' => '1.02',
1490 'NDBM_File' => '1.05',
1492 'Net::Cmd' => '2.24',
1493 'Net::Domain' => '2.18',
1494 'Net::FTP' => '2.71',
1495 'Net::FTP::A' => '1.16',
1496 'Net::NNTP' => '2.22',
1497 'Net::POP3' => '2.24',
1498 'Net::Ping' => '2.31',
1499 'Net::SMTP' => '2.26',
1500 'Net::hostent' => '1.01',
1501 'Net::servent' => '1.01',
1502 'ODBM_File' => '1.04',
1503 'OS2::DLL' => '1.01',
1504 'OS2::ExtAttr' => '0.02',
1505 'OS2::PrfDB' => '0.03',
1506 'OS2::Process' => '1.01',
1507 'OS2::REXX' => '1.02',
1510 'PerlIO::encoding' => '0.07',
1511 'PerlIO::scalar' => '0.02',
1512 'PerlIO::via' => '0.02',
1513 'PerlIO::via::QuotedPrint'=> '0.05',
1514 'Pod::Checker' => '1.41',
1515 'Pod::Find' => '0.24',
1516 'Pod::Functions' => '1.02',
1517 'Pod::Html' => '1.0501',
1518 'Pod::InputObjects' => '1.14',
1519 'Pod::LaTeX' => '0.55',
1520 'Pod::Man' => '1.37',
1521 'Pod::ParseLink' => '1.06',
1522 'Pod::ParseUtils' => '0.3',
1523 'Pod::Perldoc' => '3.10',
1524 'Pod::Perldoc::BaseTo' => undef,
1525 'Pod::Perldoc::GetOptsOO'=> undef,
1526 'Pod::Perldoc::ToChecker'=> undef,
1527 'Pod::Perldoc::ToMan' => undef,
1528 'Pod::Perldoc::ToNroff' => undef,
1529 'Pod::Perldoc::ToPod' => undef,
1530 'Pod::Perldoc::ToRtf' => undef,
1531 'Pod::Perldoc::ToText' => undef,
1532 'Pod::Perldoc::ToTk' => undef,
1533 'Pod::Perldoc::ToXml' => undef,
1534 'Pod::PlainText' => '2.01',
1535 'Pod::Text' => '2.21',
1536 'Pod::Text::Color' => '1.04',
1537 'Pod::Text::Overstrike' => '1.1',
1538 'Pod::Text::Termcap' => '1.11',
1539 'Pod::Usage' => '1.16',
1540 'SDBM_File' => '1.04',
1542 'Scalar::Util' => '1.13',
1543 'SelfLoader' => '1.0904',
1546 'Storable' => '2.08',
1549 'Sys::Hostname' => '1.11',
1550 'Sys::Syslog' => '0.04',
1551 'Term::ANSIColor' => '1.07',
1552 'Term::Cap' => '1.08',
1553 'Term::Complete' => '1.401',
1554 'Term::ReadLine' => '1.01',
1556 'Test::Builder' => '0.17',
1557 'Test::Harness' => '2.30',
1558 'Test::Harness::Straps' => '0.15',
1559 'Test::More' => '0.47',
1560 'Test::Simple' => '0.47',
1561 'Text::Abbrev' => '1.01',
1562 'Text::Balanced' => '1.95',
1563 'Text::Wrap' => '2001.09291',
1564 'Thread::Semaphore' => '2.01',
1565 'Tie::Array' => '1.03',
1566 'Tie::File' => '0.97',
1567 'Tie::RefHash' => '1.31',
1568 'Time::HiRes' => '1.51',
1569 'Time::Local' => '1.07',
1570 'UNIVERSAL' => '1.01',
1571 'Unicode' => '4.0.0',
1572 'Unicode::Collate' => '0.28',
1573 'Unicode::Normalize' => '0.23',
1574 'Unicode::UCD' => '0.21',
1575 'VMS::Filespec' => '1.11',
1576 'XS::APItest' => '0.02',
1577 'XSLoader' => '0.02',
1578 'attributes' => '0.06',
1584 'charnames' => '1.02',
1585 'diagnostics' => '1.11',
1586 'encoding' => '1.47',
1588 'filetest' => '1.01',
1592 'overload' => '1.01',
1596 'threads' => '1.00',
1597 'threads::shared' => '0.91',
1600 'warnings' => '1.03',
1606 delta_from => 5.008001,
1608 'DB_File' => '1.807',
1609 'Devel::PPPort' => '2.009',
1610 'Digest::MD5' => '2.30',
1611 'I18N::LangTags' => '0.29',
1612 'I18N::LangTags::List' => '0.29',
1613 'MIME::Base64' => '2.21',
1614 'MIME::QuotedPrint' => '2.21',
1615 'Net::Domain' => '2.19',
1616 'Net::FTP' => '2.72',
1617 'Pod::Perldoc' => '3.11',
1618 'Time::HiRes' => '1.52',
1619 'Unicode::Collate' => '0.30',
1620 'Unicode::Normalize' => '0.25',
1626 delta_from => 5.008002,
1628 'Benchmark' => '1.052',
1630 'CGI::Carp' => '1.27',
1631 'CGI::Fast' => '1.05',
1632 'CGI::Pretty' => '1.08',
1633 'CGI::Util' => '1.4',
1635 'DB_File' => '1.808',
1636 'Devel::PPPort' => '2.011',
1638 'Digest::MD5' => '2.33',
1639 'Digest::base' => '1.00',
1641 'Exporter' => '5.57',
1642 'File::CheckTree' => '4.3',
1643 'File::Copy' => '2.07',
1644 'File::Find' => '1.06',
1645 'File::Spec' => '0.87',
1646 'FindBin' => '1.44',
1647 'Getopt::Std' => '1.05',
1648 'Math::BigFloat' => '1.42',
1649 'Math::BigInt' => '1.68',
1650 'Math::BigInt::Calc' => '0.38',
1651 'Math::BigInt::CalcEmu' => '0.02',
1652 'OS2::DLL' => '1.02',
1655 'PerlIO::via::QuotedPrint'=> '0.06',
1656 'Pod::Html' => '1.0502',
1657 'Pod::Parser' => '1.14',
1658 'Pod::Perldoc' => '3.12',
1659 'Pod::PlainText' => '2.02',
1660 'Storable' => '2.09',
1661 'Test::Harness' => '2.40',
1662 'Test::Harness::Assert' => '0.02',
1663 'Test::Harness::Iterator'=> '0.02',
1664 'Test::Harness::Straps' => '0.19',
1665 'Tie::Hash' => '1.01',
1666 'Unicode::Collate' => '0.33',
1667 'Unicode::Normalize' => '0.28',
1668 'XS::APItest' => '0.03',
1670 'diagnostics' => '1.12',
1671 'encoding' => '1.48',
1672 'threads' => '1.01',
1673 'threads::shared' => '0.92',
1676 'Math::BigInt::Scalar' => 1,
1680 delta_from => 5.008003,
1682 'Attribute::Handlers' => '0.78_01',
1683 'B::Assembler' => '0.07',
1684 'B::Concise' => '0.60',
1685 'B::Deparse' => '0.66',
1686 'Benchmark' => '1.06',
1690 'DBM_Filter' => '0.01',
1691 'DBM_Filter::compress' => '0.01',
1692 'DBM_Filter::encode' => '0.01',
1693 'DBM_Filter::int32' => '0.01',
1694 'DBM_Filter::null' => '0.01',
1695 'DBM_Filter::utf8' => '0.01',
1697 'DynaLoader' => '1.05',
1698 'Encode' => '1.99_01',
1699 'Encode::CN::HZ' => '1.0501',
1700 'Exporter' => '5.58',
1701 'Exporter::Heavy' => '5.57',
1702 'ExtUtils::Liblist::Kid'=> '1.3001',
1703 'ExtUtils::MM_NW5' => '2.07_02',
1704 'ExtUtils::MM_Win95' => '0.0301',
1705 'File::Find' => '1.07',
1706 'IO::Handle' => '1.24',
1707 'IO::Pipe' => '1.123',
1708 'IPC::Open3' => '1.0106',
1709 'Locale::Maketext' => '1.08',
1710 'MIME::Base64' => '3.01',
1711 'MIME::QuotedPrint' => '3.01',
1712 'Math::BigFloat' => '1.44',
1713 'Math::BigInt' => '1.70',
1714 'Math::BigInt::Calc' => '0.40',
1715 'Math::BigInt::CalcEmu' => '0.04',
1716 'Math::BigRat' => '0.12',
1717 'ODBM_File' => '1.05',
1721 'Storable' => '2.12',
1722 'Sys::Syslog' => '0.05',
1723 'Term::ANSIColor' => '1.08',
1724 'Time::HiRes' => '1.59',
1725 'Unicode' => '4.0.1',
1726 'Unicode::UCD' => '0.22',
1731 'charnames' => '1.03',
1733 'threads' => '1.03',
1740 delta_from => 5.008004,
1742 'B::Concise' => '0.61',
1743 'B::Deparse' => '0.67',
1745 'CGI::Carp' => '1.28',
1746 'CGI::Util' => '1.5',
1748 'Carp::Heavy' => '1.03',
1750 'DB_File' => '1.809',
1753 'Encode::Alias' => '2.00',
1754 'Encode::Byte' => '2.00',
1755 'Encode::CJKConstants' => '2.00',
1756 'Encode::CN' => '2.00',
1757 'Encode::CN::HZ' => '2.01',
1758 'Encode::Config' => '2.00',
1759 'Encode::EBCDIC' => '2.00',
1760 'Encode::Encoder' => '2.00',
1761 'Encode::Encoding' => '2.00',
1762 'Encode::Guess' => '2.00',
1763 'Encode::JP' => '2.00',
1764 'Encode::JP::H2Z' => '2.00',
1765 'Encode::JP::JIS7' => '2.00',
1766 'Encode::KR' => '2.00',
1767 'Encode::KR::2022_KR' => '2.00',
1768 'Encode::MIME::Header' => '2.00',
1769 'Encode::Symbol' => '2.00',
1770 'Encode::TW' => '2.00',
1771 'Encode::Unicode' => '2.00',
1772 'Encode::Unicode::UTF7' => '2.01',
1773 'File::Basename' => '2.73',
1774 'File::Copy' => '2.08',
1775 'File::Glob' => '1.03',
1776 'FileCache' => '1.04_01',
1777 'I18N::LangTags' => '0.33',
1778 'I18N::LangTags::Detect'=> '1.03',
1779 'List::Util' => '1.14',
1780 'Locale::Constants' => '2.07',
1781 'Locale::Country' => '2.07',
1782 'Locale::Currency' => '2.07',
1783 'Locale::Language' => '2.07',
1784 'Locale::Maketext' => '1.09',
1785 'Locale::Script' => '2.07',
1786 'Net::Cmd' => '2.26',
1787 'Net::FTP' => '2.75',
1788 'Net::NNTP' => '2.23',
1789 'Net::POP3' => '2.28',
1790 'Net::SMTP' => '2.29',
1791 'Net::Time' => '2.10',
1792 'Pod::Checker' => '1.42',
1793 'Pod::Find' => '0.2401',
1794 'Pod::LaTeX' => '0.56',
1795 'Pod::ParseUtils' => '1.2',
1796 'Pod::Perldoc' => '3.13',
1798 'Scalar::Util' => '1.14',
1800 'Storable' => '2.13',
1801 'Term::Cap' => '1.09',
1803 'Test::Harness' => '2.42',
1804 'Text::ParseWords' => '3.22',
1805 'Text::Wrap' => '2001.09292',
1806 'Time::Local' => '1.10',
1807 'Unicode::Collate' => '0.40',
1808 'Unicode::Normalize' => '0.30',
1809 'XS::APItest' => '0.04',
1810 'autouse' => '1.04',
1812 'charnames' => '1.04',
1813 'diagnostics' => '1.13',
1814 'encoding' => '2.00',
1815 'threads' => '1.05',
1822 delta_from => 5.008005,
1826 'B::Concise' => '0.64',
1827 'B::Debug' => '1.02',
1828 'B::Deparse' => '0.69',
1829 'B::Lint' => '1.03',
1830 'B::Showlex' => '1.02',
1832 'DB_File' => '1.810',
1833 'Data::Dumper' => '2.121_02',
1834 'Devel::PPPort' => '3.03',
1835 'Devel::Peek' => '1.02',
1837 'Encode::Alias' => '2.02',
1838 'Encode::Encoding' => '2.02',
1839 'Encode::JP' => '2.01',
1840 'Encode::Unicode' => '2.02',
1841 'Exporter::Heavy' => '5.58',
1842 'ExtUtils::Constant' => '0.1401',
1843 'File::Spec' => '3.01',
1844 'File::Spec::Win32' => '1.5',
1845 'I18N::LangTags' => '0.35',
1846 'I18N::LangTags::List' => '0.35',
1847 'MIME::Base64' => '3.05',
1848 'MIME::QuotedPrint' => '3.03',
1849 'Math::BigFloat' => '1.47',
1850 'Math::BigInt' => '1.73',
1851 'Math::BigInt::Calc' => '0.43',
1852 'Math::BigRat' => '0.13',
1853 'Text::ParseWords' => '3.23',
1854 'Time::HiRes' => '1.65',
1855 'XS::APItest' => '0.05',
1856 'diagnostics' => '1.14',
1857 'encoding' => '2.01',
1859 'overload' => '1.02',
1865 delta_from => 5.008006,
1868 'B::Concise' => '0.65',
1869 'B::Deparse' => '0.7',
1870 'B::Disassembler' => '1.04',
1871 'B::Terse' => '1.03',
1872 'Benchmark' => '1.07',
1874 'CGI::Carp' => '1.29',
1875 'CGI::Cookie' => '1.25',
1877 'Carp::Heavy' => '1.04',
1878 'Class::ISA' => '0.33',
1880 'DB_File' => '1.811',
1881 'Data::Dumper' => '2.121_04',
1882 'Devel::DProf' => '20050310.00',
1883 'Devel::PPPort' => '3.06',
1885 'Digest::file' => '0.01',
1887 'Encode::Alias' => '2.03',
1888 'Errno' => '1.09_01',
1889 'ExtUtils::Constant' => '0.16',
1890 'ExtUtils::Constant::Base'=> '0.01',
1891 'ExtUtils::Constant::Utils'=> '0.01',
1892 'ExtUtils::Constant::XS'=> '0.01',
1893 'File::Find' => '1.09',
1894 'File::Glob' => '1.04',
1895 'File::Path' => '1.07',
1896 'File::Spec' => '3.05',
1897 'File::Temp' => '0.16',
1898 'FileCache' => '1.05',
1899 'IO::File' => '1.11',
1900 'IO::Socket::INET' => '1.28',
1901 'Math::BigFloat' => '1.51',
1902 'Math::BigInt' => '1.77',
1903 'Math::BigInt::Calc' => '0.47',
1904 'Math::BigInt::CalcEmu' => '0.05',
1905 'Math::BigRat' => '0.15',
1906 'Pod::Find' => '1.3',
1907 'Pod::Html' => '1.0503',
1908 'Pod::InputObjects' => '1.3',
1909 'Pod::LaTeX' => '0.58',
1910 'Pod::ParseUtils' => '1.3',
1911 'Pod::Parser' => '1.3',
1912 'Pod::Perldoc' => '3.14',
1913 'Pod::Select' => '1.3',
1914 'Pod::Usage' => '1.3',
1915 'SelectSaver' => '1.01',
1917 'Sys::Syslog' => '0.06',
1918 'Term::ANSIColor' => '1.09',
1919 'Term::Complete' => '1.402',
1920 'Test::Builder' => '0.22',
1921 'Test::Harness' => '2.48',
1922 'Test::Harness::Point' => '0.01',
1923 'Test::Harness::Straps' => '0.23',
1924 'Test::More' => '0.54',
1925 'Test::Simple' => '0.54',
1926 'Text::ParseWords' => '3.24',
1927 'Text::Wrap' => '2001.09293',
1928 'Tie::RefHash' => '1.32',
1929 'Time::HiRes' => '1.66',
1930 'Time::Local' => '1.11',
1931 'Unicode' => '4.1.0',
1932 'Unicode::Normalize' => '0.32',
1933 'Unicode::UCD' => '0.23',
1935 'XS::APItest' => '0.06',
1941 'constant' => '1.05',
1942 'overload' => '1.03',
1943 'threads::shared' => '0.93',
1948 'JPL::AutoLoader' => 1,
1950 'JPL::Compile' => 1,
1954 delta_from => 5.008007,
1956 'Attribute::Handlers' => '0.78_02',
1958 'B::Bblock' => '1.02_01',
1959 'B::Bytecode' => '1.01_01',
1960 'B::C' => '1.04_01',
1961 'B::CC' => '1.00_01',
1962 'B::Concise' => '0.66',
1963 'B::Debug' => '1.02_01',
1964 'B::Deparse' => '0.71',
1965 'B::Disassembler' => '1.05',
1966 'B::Terse' => '1.03_01',
1967 'ByteLoader' => '0.06',
1969 'CGI::Cookie' => '1.26',
1970 'CPAN' => '1.76_02',
1973 'DB_File' => '1.814',
1974 'Data::Dumper' => '2.121_08',
1975 'Devel::DProf' => '20050603.00',
1976 'Devel::PPPort' => '3.06_01',
1977 'Devel::Peek' => '1.03',
1979 'Digest::MD5' => '2.36',
1980 'Digest::file' => '1.00',
1981 'Dumpvalue' => '1.12',
1983 'Encode::Alias' => '2.04',
1984 'Encode::Config' => '2.01',
1985 'Encode::MIME::Header' => '2.01',
1986 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
1987 'English' => '1.02',
1988 'ExtUtils::Command' => '1.09',
1989 'ExtUtils::Command::MM' => '0.05',
1990 'ExtUtils::Constant' => '0.17',
1991 'ExtUtils::Embed' => '1.26',
1992 'ExtUtils::Install' => '1.33',
1993 'ExtUtils::Liblist::Kid'=> '1.3',
1994 'ExtUtils::MM' => '0.05',
1995 'ExtUtils::MM_AIX' => '0.03',
1996 'ExtUtils::MM_Any' => '0.13',
1997 'ExtUtils::MM_BeOS' => '1.05',
1998 'ExtUtils::MM_Cygwin' => '1.08',
1999 'ExtUtils::MM_MacOS' => '1.08',
2000 'ExtUtils::MM_NW5' => '2.08',
2001 'ExtUtils::MM_OS2' => '1.05',
2002 'ExtUtils::MM_QNX' => '0.02',
2003 'ExtUtils::MM_Unix' => '1.50',
2004 'ExtUtils::MM_VMS' => '5.73',
2005 'ExtUtils::MM_VOS' => '0.02',
2006 'ExtUtils::MM_Win32' => '1.12',
2007 'ExtUtils::MM_Win95' => '0.04',
2008 'ExtUtils::MakeMaker' => '6.30',
2009 'ExtUtils::MakeMaker::Config'=> '0.02',
2010 'ExtUtils::Manifest' => '1.46',
2011 'File::Basename' => '2.74',
2012 'File::Copy' => '2.09',
2013 'File::Find' => '1.10',
2014 'File::Glob' => '1.05',
2015 'File::Path' => '1.08',
2016 'File::Spec' => '3.12',
2017 'File::Spec::Win32' => '1.6',
2018 'FileCache' => '1.06',
2019 'Filter::Simple' => '0.82',
2020 'FindBin' => '1.47',
2021 'GDBM_File' => '1.08',
2022 'Getopt::Long' => '2.35',
2024 'IO::Dir' => '1.05',
2025 'IO::File' => '1.13',
2026 'IO::Handle' => '1.25',
2027 'IO::Pipe' => '1.13',
2028 'IO::Poll' => '0.07',
2029 'IO::Seekable' => '1.10',
2030 'IO::Select' => '1.17',
2031 'IO::Socket' => '1.29',
2032 'IO::Socket::INET' => '1.29',
2033 'IO::Socket::UNIX' => '1.22',
2034 'IPC::Open2' => '1.02',
2035 'IPC::Open3' => '1.02',
2036 'List::Util' => '1.18',
2037 'MIME::Base64' => '3.07',
2038 'MIME::QuotedPrint' => '3.07',
2039 'Math::Complex' => '1.35',
2040 'Math::Trig' => '1.03',
2041 'NDBM_File' => '1.06',
2042 'ODBM_File' => '1.06',
2043 'OS2::PrfDB' => '0.04',
2044 'OS2::Process' => '1.02',
2045 'OS2::REXX' => '1.03',
2049 'PerlIO::encoding' => '0.09',
2050 'PerlIO::scalar' => '0.04',
2051 'PerlIO::via' => '0.03',
2052 'Pod::Checker' => '1.43',
2053 'Pod::Find' => '1.34',
2054 'Pod::Functions' => '1.03',
2055 'Pod::Html' => '1.0504',
2056 'Pod::ParseUtils' => '1.33',
2057 'Pod::Parser' => '1.32',
2058 'Pod::Usage' => '1.33',
2059 'SDBM_File' => '1.05',
2061 'Scalar::Util' => '1.18',
2063 'Storable' => '2.15',
2064 'Switch' => '2.10_01',
2065 'Sys::Syslog' => '0.13',
2066 'Term::ANSIColor' => '1.10',
2067 'Term::ReadLine' => '1.02',
2068 'Test::Builder' => '0.32',
2069 'Test::Builder::Module' => '0.02',
2070 'Test::Builder::Tester' => '1.02',
2071 'Test::Builder::Tester::Color'=> undef,
2072 'Test::Harness' => '2.56',
2073 'Test::Harness::Straps' => '0.26',
2074 'Test::More' => '0.62',
2075 'Test::Simple' => '0.62',
2076 'Text::Tabs' => '2005.0824',
2077 'Text::Wrap' => '2005.082401',
2078 'Tie::Hash' => '1.02',
2079 'Time::HiRes' => '1.86',
2080 'Unicode::Collate' => '0.52',
2081 'Unicode::UCD' => '0.24',
2082 'User::grent' => '1.01',
2083 'Win32' => '0.2601',
2084 'XS::APItest' => '0.08',
2085 'XS::Typemap' => '0.02',
2086 'XSLoader' => '0.06',
2088 'autouse' => '1.05',
2090 'charnames' => '1.05',
2091 'diagnostics' => '1.15',
2092 'encoding' => '2.02',
2096 'overload' => '1.04',
2098 'threads' => '1.07',
2099 'threads::shared' => '0.94',
2102 'warnings' => '1.05',
2103 'warnings::register' => '1.01',
2109 delta_from => 5.008008,
2111 'Attribute::Handlers' => '0.78_03',
2112 'AutoLoader' => '5.67',
2113 'AutoSplit' => '1.06',
2115 'B::Asmdata' => '1.02',
2116 'B::Assembler' => '0.08',
2118 'B::Concise' => '0.76',
2119 'B::Debug' => '1.05',
2120 'B::Deparse' => '0.87',
2121 'B::Lint' => '1.11',
2122 'B::Lint::Debug' => undef,
2123 'B::Terse' => '1.05',
2124 'Benchmark' => '1.1',
2126 'CGI::Carp' => '1.30_01',
2127 'CGI::Cookie' => '1.29',
2128 'CGI::Fast' => '1.07',
2129 'CGI::Util' => '1.5_01',
2131 'CPAN::Debug' => '5.5',
2132 'CPAN::DeferedCode' => '5.50',
2133 'CPAN::Distroprefs' => '6',
2134 'CPAN::FirstTime' => '5.5_01',
2135 'CPAN::HandleConfig' => '5.5',
2136 'CPAN::Kwalify' => '5.50',
2137 'CPAN::Nox' => '5.50',
2138 'CPAN::Queue' => '5.5',
2139 'CPAN::Tarzip' => '5.5',
2140 'CPAN::Version' => '5.5',
2142 'Carp::Heavy' => '1.10',
2144 'DBM_Filter' => '0.02',
2145 'DBM_Filter::compress' => '0.02',
2146 'DBM_Filter::encode' => '0.02',
2147 'DBM_Filter::int32' => '0.02',
2148 'DBM_Filter::null' => '0.02',
2149 'DBM_Filter::utf8' => '0.02',
2150 'DB_File' => '1.817',
2151 'Data::Dumper' => '2.121_17',
2152 'Devel::DProf' => '20080331.00',
2153 'Devel::InnerPackage' => '0.3',
2154 'Devel::PPPort' => '3.14',
2155 'Devel::Peek' => '1.04',
2157 'Digest::MD5' => '2.37',
2158 'DirHandle' => '1.02',
2159 'DynaLoader' => '1.09',
2161 'Encode::Alias' => '2.10',
2162 'Encode::Byte' => '2.03',
2163 'Encode::CJKConstants' => '2.02',
2164 'Encode::CN' => '2.02',
2165 'Encode::CN::HZ' => '2.05',
2166 'Encode::Config' => '2.05',
2167 'Encode::EBCDIC' => '2.02',
2168 'Encode::Encoder' => '2.01',
2169 'Encode::Encoding' => '2.05',
2170 'Encode::GSM0338' => '2.01',
2171 'Encode::Guess' => '2.02',
2172 'Encode::JP' => '2.03',
2173 'Encode::JP::H2Z' => '2.02',
2174 'Encode::JP::JIS7' => '2.04',
2175 'Encode::KR' => '2.02',
2176 'Encode::KR::2022_KR' => '2.02',
2177 'Encode::MIME::Header' => '2.05',
2178 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2179 'Encode::MIME::Name' => '1.01',
2180 'Encode::Symbol' => '2.02',
2181 'Encode::TW' => '2.02',
2182 'Encode::Unicode' => '2.05',
2183 'Encode::Unicode::UTF7' => '2.04',
2184 'English' => '1.03',
2186 'Exporter' => '5.63',
2187 'Exporter::Heavy' => '5.63',
2188 'ExtUtils::Command' => '1.15',
2189 'ExtUtils::Command::MM' => '6.48',
2190 'ExtUtils::Constant' => '0.21',
2191 'ExtUtils::Constant::Base'=> '0.04',
2192 'ExtUtils::Constant::ProxySubs'=> '0.06',
2193 'ExtUtils::Constant::Utils'=> '0.02',
2194 'ExtUtils::Constant::XS'=> '0.02',
2195 'ExtUtils::Embed' => '1.28',
2196 'ExtUtils::Install' => '1.50_01',
2197 'ExtUtils::Installed' => '1.43',
2198 'ExtUtils::Liblist' => '6.48',
2199 'ExtUtils::Liblist::Kid'=> '6.48',
2200 'ExtUtils::MM' => '6.48',
2201 'ExtUtils::MM_AIX' => '6.48',
2202 'ExtUtils::MM_Any' => '6.48',
2203 'ExtUtils::MM_BeOS' => '6.48',
2204 'ExtUtils::MM_Cygwin' => '6.48',
2205 'ExtUtils::MM_DOS' => '6.48',
2206 'ExtUtils::MM_Darwin' => '6.48',
2207 'ExtUtils::MM_MacOS' => '6.48',
2208 'ExtUtils::MM_NW5' => '6.48',
2209 'ExtUtils::MM_OS2' => '6.48',
2210 'ExtUtils::MM_QNX' => '6.48',
2211 'ExtUtils::MM_UWIN' => '6.48',
2212 'ExtUtils::MM_Unix' => '6.48',
2213 'ExtUtils::MM_VMS' => '6.48',
2214 'ExtUtils::MM_VOS' => '6.48',
2215 'ExtUtils::MM_Win32' => '6.48',
2216 'ExtUtils::MM_Win95' => '6.48',
2217 'ExtUtils::MY' => '6.48',
2218 'ExtUtils::MakeMaker' => '6.48',
2219 'ExtUtils::MakeMaker::Config'=> '6.48',
2220 'ExtUtils::MakeMaker::bytes'=> '6.48',
2221 'ExtUtils::MakeMaker::vmsish'=> '6.48',
2222 'ExtUtils::Manifest' => '1.55',
2223 'ExtUtils::Mkbootstrap' => '6.48',
2224 'ExtUtils::Mksymlists' => '6.48',
2225 'ExtUtils::Packlist' => '1.43',
2226 'ExtUtils::ParseXS' => '2.19',
2227 'ExtUtils::XSSymSet' => '1.1',
2228 'ExtUtils::testlib' => '6.48',
2231 'File::Basename' => '2.77',
2232 'File::CheckTree' => '4.4',
2233 'File::Compare' => '1.1005',
2234 'File::Copy' => '2.13',
2235 'File::DosGlob' => '1.01',
2236 'File::Find' => '1.13',
2237 'File::Glob' => '1.06',
2238 'File::Path' => '2.07_02',
2239 'File::Spec' => '3.29',
2240 'File::Spec::Cygwin' => '3.29',
2241 'File::Spec::Epoc' => '3.29',
2242 'File::Spec::Functions' => '3.29',
2243 'File::Spec::Mac' => '3.29',
2244 'File::Spec::OS2' => '3.29',
2245 'File::Spec::Unix' => '3.29',
2246 'File::Spec::VMS' => '3.29',
2247 'File::Spec::Win32' => '3.29',
2248 'File::Temp' => '0.20',
2249 'File::stat' => '1.01',
2250 'FileCache' => '1.07',
2251 'Filter::Simple' => '0.83',
2252 'Filter::Util::Call' => '1.07',
2253 'FindBin' => '1.49',
2254 'GDBM_File' => '1.09',
2255 'Getopt::Long' => '2.37',
2256 'Getopt::Std' => '1.06',
2257 'Hash::Util' => '0.06',
2259 'IO::Dir' => '1.06',
2260 'IO::File' => '1.14',
2261 'IO::Handle' => '1.27',
2262 'IO::Socket' => '1.30',
2263 'IO::Socket::INET' => '1.31',
2264 'IO::Socket::UNIX' => '1.23',
2265 'IPC::Msg' => '2.00',
2266 'IPC::Open2' => '1.03',
2267 'IPC::Open3' => '1.03',
2268 'IPC::Semaphore' => '2.00',
2269 'IPC::SharedMem' => '2.00',
2270 'IPC::SysV' => '2.00',
2271 'List::Util' => '1.19',
2272 'Locale::Maketext' => '1.13',
2273 'Locale::Maketext::Guts'=> '1.13',
2274 'Locale::Maketext::GutsLoader'=> '1.13',
2275 'Math::BigFloat' => '1.60',
2276 'Math::BigInt' => '1.89',
2277 'Math::BigInt::Calc' => '0.52',
2278 'Math::BigRat' => '0.22',
2279 'Math::Complex' => '1.54',
2280 'Math::Trig' => '1.18',
2281 'Module::CoreList' => '2.17',
2282 'Module::Pluggable' => '3.8',
2283 'Module::Pluggable::Object'=> '3.6',
2284 'NDBM_File' => '1.07',
2286 'Net::Cmd' => '2.29',
2287 'Net::Config' => '1.11',
2288 'Net::Domain' => '2.20',
2289 'Net::FTP' => '2.77',
2290 'Net::FTP::A' => '1.18',
2291 'Net::NNTP' => '2.24',
2292 'Net::POP3' => '2.29',
2293 'Net::Ping' => '2.35',
2294 'Net::SMTP' => '2.31',
2296 'ODBM_File' => '1.07',
2297 'OS2::DLL' => '1.03',
2298 'OS2::Process' => '1.03',
2299 'Opcode' => '1.0601',
2302 'PerlIO::encoding' => '0.11',
2303 'PerlIO::scalar' => '0.06',
2304 'PerlIO::via' => '0.05',
2305 'Pod::Html' => '1.09',
2306 'Pod::ParseUtils' => '1.35',
2307 'Pod::Parser' => '1.35',
2308 'Pod::Select' => '1.35',
2309 'Pod::Usage' => '1.35',
2310 'SDBM_File' => '1.06',
2312 'Scalar::Util' => '1.19',
2313 'SelfLoader' => '1.17',
2316 'Storable' => '2.19',
2318 'Sys::Syslog' => '0.27',
2319 'Sys::Syslog::win32::Win32'=> undef,
2320 'Term::ANSIColor' => '1.12',
2321 'Term::Cap' => '1.12',
2322 'Term::ReadLine' => '1.03',
2323 'Test::Builder' => '0.80',
2324 'Test::Builder::Module' => '0.80',
2325 'Test::Builder::Tester' => '1.13',
2326 'Test::Harness' => '2.64',
2327 'Test::Harness::Results'=> '0.01_01',
2328 'Test::Harness::Straps' => '0.26_01',
2329 'Test::Harness::Util' => '0.01',
2330 'Test::More' => '0.80',
2331 'Test::Simple' => '0.80',
2332 'Text::Balanced' => '1.98',
2333 'Text::ParseWords' => '3.27',
2334 'Text::Soundex' => '3.03',
2335 'Text::Tabs' => '2007.1117',
2336 'Text::Wrap' => '2006.1117',
2338 'Thread::Queue' => '2.11',
2339 'Thread::Semaphore' => '2.09',
2340 'Tie::Handle' => '4.2',
2341 'Tie::Hash' => '1.03',
2342 'Tie::Memoize' => '1.1',
2343 'Tie::RefHash' => '1.38',
2344 'Tie::Scalar' => '1.01',
2345 'Tie::StdHandle' => '4.2',
2346 'Time::HiRes' => '1.9715',
2347 'Time::Local' => '1.1901',
2348 'Time::gmtime' => '1.03',
2349 'Unicode' => '5.1.0',
2350 'Unicode::Normalize' => '1.02',
2351 'Unicode::UCD' => '0.25',
2352 'VMS::DCLsym' => '1.03',
2353 'VMS::Stdio' => '2.4',
2355 'Win32API::File' => '0.1001_01',
2356 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2357 'Win32CORE' => '0.02',
2358 'XS::APItest' => '0.15',
2359 'XS::Typemap' => '0.03',
2360 'XSLoader' => '0.10',
2361 'attributes' => '0.09',
2362 'autouse' => '1.06',
2368 'charnames' => '1.06',
2369 'constant' => '1.17',
2370 'diagnostics' => '1.16',
2371 'encoding' => '2.6_01',
2373 'filetest' => '1.02',
2377 'overload' => '1.06',
2379 'sigtrap' => '1.04',
2380 'threads' => '1.71',
2381 'threads::shared' => '1.27',
2383 'warnings' => '1.05_01',
2389 delta_from => 5.008002,
2393 'B::Concise' => '0.57',
2394 'B::Deparse' => '0.65',
2395 'DB_File' => '1.806',
2396 'Devel::PPPort' => '2.008',
2397 'English' => '1.02',
2399 'OS2::DLL' => '1.02',
2401 'Time::HiRes' => '1.51',
2402 'Unicode::Collate' => '0.28',
2403 'Unicode::Normalize' => '0.23',
2404 'XSLoader' => '0.03',
2405 'assertions' => '0.01',
2406 'assertions::activate' => '0.01',
2407 'overload' => '1.02',
2408 'version' => '0.29',
2414 delta_from => 5.008004,
2417 'B::Assembler' => '0.06',
2419 'B::Concise' => '0.59',
2420 'B::Debug' => '1.02',
2421 'B::Deparse' => '0.65',
2422 'DB_File' => '1.808_01',
2423 'Devel::PPPort' => '2.011_01',
2425 'DynaLoader' => '1.04',
2426 'English' => '1.02',
2427 'Exporter::Heavy' => '5.567',
2428 'ExtUtils::Command' => '1.07',
2429 'ExtUtils::Liblist::Kid'=> '1.3',
2430 'ExtUtils::MM_Any' => '0.0901',
2431 'ExtUtils::MM_Cygwin' => '1.07',
2432 'ExtUtils::MM_NW5' => '2.07_01',
2433 'ExtUtils::MM_Unix' => '1.45_01',
2434 'ExtUtils::MM_VMS' => '5.71_01',
2435 'ExtUtils::MM_Win32' => '1.10_01',
2436 'ExtUtils::MM_Win95' => '0.03',
2437 'ExtUtils::MakeMaker' => '6.21_02',
2438 'ExtUtils::Manifest' => '1.43',
2440 'Getopt::Long' => '2.3401',
2441 'IO::Handle' => '1.23',
2442 'IO::Pipe' => '1.122',
2443 'IPC::Open3' => '1.0105',
2444 'MIME::Base64' => '3.00_01',
2445 'MIME::QuotedPrint' => '3.00',
2446 'Memoize' => '1.01_01',
2447 'ODBM_File' => '1.04',
2450 'Storable' => '2.11',
2451 'Time::HiRes' => '1.56',
2452 'Time::Local' => '1.07_94',
2453 'UNIVERSAL' => '1.02',
2454 'Unicode' => '4.0.0',
2455 'Unicode::UCD' => '0.21',
2456 'XSLoader' => '0.03',
2457 'assertions' => '0.01',
2458 'assertions::activate' => '0.01',
2462 'overload' => '1.02',
2463 'threads' => '1.02',
2465 'version' => '0.36',
2471 delta_from => 5.008007,
2474 'B::Concise' => '0.64',
2475 'B::Deparse' => '0.69',
2476 'B::Disassembler' => '1.03',
2477 'B::Terse' => '1.02',
2479 'Config::Extensions' => '0.01',
2480 'Devel::DProf' => '20030813.00',
2481 'DynaLoader' => '1.07',
2483 'Encode::Alias' => '2.02',
2484 'English' => '1.03',
2485 'Exporter' => '5.59',
2486 'Exporter::Heavy' => '5.59',
2487 'ExtUtils::Command' => '1.07',
2488 'ExtUtils::Command::MM' => '0.03_01',
2489 'ExtUtils::Embed' => '1.26',
2490 'ExtUtils::Liblist::Kid'=> '1.3',
2491 'ExtUtils::MM_Any' => '0.10',
2492 'ExtUtils::MM_Cygwin' => '1.07',
2493 'ExtUtils::MM_MacOS' => '1.08',
2494 'ExtUtils::MM_NW5' => '2.07',
2495 'ExtUtils::MM_Unix' => '1.46_01',
2496 'ExtUtils::MM_VMS' => '5.71',
2497 'ExtUtils::MM_Win32' => '1.10',
2498 'ExtUtils::MM_Win95' => '0.03',
2499 'ExtUtils::MakeMaker' => '6.25',
2500 'ExtUtils::Manifest' => '1.44',
2502 'File::Path' => '1.06',
2503 'FileCache' => '1.04_01',
2504 'Getopt::Long' => '2.3401',
2505 'IO::File' => '1.10',
2506 'IO::Socket::INET' => '1.27',
2507 'Math::BigFloat' => '1.49',
2508 'Math::BigInt' => '1.75',
2509 'Math::BigInt::Calc' => '0.45',
2510 'Math::BigRat' => '0.14',
2511 'Memoize' => '1.01_01',
2512 'Module::CoreList' => '1.99',
2513 'NEXT' => '0.60_01',
2515 'Pod::Html' => '1.0502',
2516 'Scalar::Util' => '1.14_1',
2517 'Storable' => '2.14',
2519 'Test::Harness' => '2.46',
2520 'Test::Harness::Straps' => '0.20_01',
2521 'Text::Balanced' => '1.95_01',
2522 'Text::Wrap' => '2001.09292',
2523 'UNIVERSAL' => '1.02',
2524 'Unicode' => '4.0.1',
2525 'Unicode::Normalize' => '0.30',
2526 'Unicode::UCD' => '0.22',
2528 'XS::APItest' => '0.05',
2529 'XSLoader' => '0.03',
2530 'assertions' => '0.01',
2531 'assertions::activate' => '0.01',
2537 'encoding::warnings' => '0.05',
2540 'threads::shared' => '0.92',
2542 'version' => '0.42',
2543 'warnings' => '1.04',
2546 'Test::Harness::Point' => 1,
2550 delta_from => 5.008008,
2552 'Archive::Tar' => '1.26_01',
2553 'Archive::Tar::Constant'=> '0.02',
2554 'Archive::Tar::File' => '0.02',
2555 'AutoSplit' => '1.04_01',
2557 'B::Bblock' => '1.02',
2558 'B::Bytecode' => '1.01',
2561 'B::Concise' => '0.67',
2562 'B::Debug' => '1.02',
2563 'B::Deparse' => '0.73',
2564 'B::Lint' => '1.04',
2565 'B::Terse' => '1.03',
2567 'CPAN' => '1.83_58',
2568 'CPAN::Debug' => '4.44',
2569 'CPAN::FirstTime' => '4.50',
2570 'CPAN::HandleConfig' => '4.31',
2571 'CPAN::Nox' => '2.31',
2572 'CPAN::Tarzip' => '3.36',
2573 'CPAN::Version' => '2.55',
2575 'Carp::Heavy' => '1.05',
2576 'Compress::Zlib' => '2.000_07',
2577 'Compress::Zlib::Common'=> '2.000_07',
2578 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2579 'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2580 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2581 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2582 'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2583 'Compress::Zlib::FileConstants'=> '2.000_07',
2584 'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2585 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2586 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2587 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2588 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2589 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2590 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2591 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2592 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2593 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2594 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2595 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2596 'Compress::Zlib::ParseParameters'=> '2.000_07',
2597 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2598 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2599 'Config::Extensions' => '0.01',
2601 'Devel::PPPort' => '3.08',
2602 'Digest::SHA' => '5.32',
2603 'DirHandle' => '1.01',
2604 'DynaLoader' => '1.07',
2606 'Encode::CN::HZ' => '2.02',
2607 'Encode::MIME::Header' => '2.02',
2608 'English' => '1.04',
2609 'Exporter' => '5.59',
2610 'Exporter::Heavy' => '5.59',
2611 'ExtUtils::CBuilder' => '0.15',
2612 'ExtUtils::CBuilder::Base'=> '0.12',
2613 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2614 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2615 'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2616 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2617 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2618 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2619 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2620 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2621 'ExtUtils::Command::MM' => '0.05_01',
2622 'ExtUtils::Constant' => '0.2',
2623 'ExtUtils::Constant::Base'=> '0.02',
2624 'ExtUtils::Constant::ProxySubs'=> '0.01',
2625 'ExtUtils::Constant::XS'=> '0.02',
2626 'ExtUtils::MM_Any' => '0.13_01',
2627 'ExtUtils::MM_Unix' => '1.50_01',
2628 'ExtUtils::MakeMaker' => '6.30_01',
2629 'ExtUtils::ParseXS' => '2.15_02',
2631 'File::Compare' => '1.1005',
2632 'File::Spec' => '3.15',
2633 'File::Temp' => '0.16_01',
2634 'IO::File' => '1.13_01',
2635 'IO::Handle' => '1.26',
2636 'IO::Socket' => '1.29_01',
2637 'IO::Socket::INET' => '1.29_02',
2638 'IO::Socket::UNIX' => '1.22_01',
2639 'IO::Zlib' => '1.04_02',
2640 'Locale::Maketext' => '1.10_01',
2641 'Math::BigInt::FastCalc'=> '0.10',
2642 'Memoize' => '1.01_01',
2643 'Module::CoreList' => '2.02',
2644 'Moped::Msg' => '0.01',
2645 'NEXT' => '0.60_01',
2646 'Net::Cmd' => '2.26_01',
2647 'Net::Domain' => '2.19_01',
2648 'Net::Ping' => '2.31_04',
2651 'Pod::Escapes' => '1.04',
2652 'Pod::Man' => '2.04',
2653 'Pod::Perldoc' => '3.14_01',
2654 'Pod::Simple' => '3.04',
2655 'Pod::Simple::BlackBox' => undef,
2656 'Pod::Simple::Checker' => '2.02',
2657 'Pod::Simple::Debug' => undef,
2658 'Pod::Simple::DumpAsText'=> '2.02',
2659 'Pod::Simple::DumpAsXML'=> '2.02',
2660 'Pod::Simple::HTML' => '3.03',
2661 'Pod::Simple::HTMLBatch'=> '3.02',
2662 'Pod::Simple::HTMLLegacy'=> '5.01',
2663 'Pod::Simple::LinkSection'=> undef,
2664 'Pod::Simple::Methody' => '2.02',
2665 'Pod::Simple::Progress' => '1.01',
2666 'Pod::Simple::PullParser'=> '2.02',
2667 'Pod::Simple::PullParserEndToken'=> undef,
2668 'Pod::Simple::PullParserStartToken'=> undef,
2669 'Pod::Simple::PullParserTextToken'=> undef,
2670 'Pod::Simple::PullParserToken'=> '2.02',
2671 'Pod::Simple::RTF' => '2.02',
2672 'Pod::Simple::Search' => '3.04',
2673 'Pod::Simple::SimpleTree'=> '2.02',
2674 'Pod::Simple::Text' => '2.02',
2675 'Pod::Simple::TextContent'=> '2.02',
2676 'Pod::Simple::TiedOutFH'=> undef,
2677 'Pod::Simple::Transcode'=> undef,
2678 'Pod::Simple::TranscodeDumb'=> '2.02',
2679 'Pod::Simple::TranscodeSmart'=> undef,
2680 'Pod::Simple::XMLOutStream'=> '2.02',
2681 'Pod::Text' => '3.01',
2682 'Pod::Text::Color' => '2.01',
2683 'Pod::Text::Overstrike' => '2',
2684 'Pod::Text::Termcap' => '2.01',
2685 'Pod::Usage' => '1.33_01',
2686 'SelfLoader' => '1.0905',
2687 'Storable' => '2.15_02',
2688 'Test::Builder::Module' => '0.03',
2689 'Text::Balanced' => '1.95_01',
2690 'Tie::File' => '0.97_01',
2691 'UNIVERSAL' => '1.03',
2692 'XS::APItest' => '0.09',
2693 'assertions' => '0.02',
2694 'assertions::activate' => '0.02',
2695 'assertions::compat' => undef,
2696 'constant' => '1.07',
2697 'encoding::warnings' => '0.05',
2698 'feature' => '1.00',
2701 'version' => '0.53',
2707 delta_from => 5.009003,
2709 'Archive::Tar' => '1.30_01',
2710 'AutoLoader' => '5.61',
2712 'B::Bytecode' => '1.02',
2714 'B::Concise' => '0.69',
2715 'B::Deparse' => '0.76',
2716 'B::Lint' => '1.08',
2717 'Benchmark' => '1.08',
2719 'CGI::Cookie' => '1.27',
2720 'CGI::Fast' => '1.07',
2721 'CPAN' => '1.87_55',
2722 'CPAN::Debug' => '5.400561',
2723 'CPAN::FirstTime' => '5.400742',
2724 'CPAN::HandleConfig' => '5.400740',
2725 'CPAN::Nox' => '5.400561',
2726 'CPAN::Tarzip' => '5.400714',
2727 'CPAN::Version' => '5.400561',
2728 'Compress::Raw::Zlib' => '2.000_13',
2729 'Compress::Zlib' => '2.000_13',
2731 'Devel::PPPort' => '3.10',
2733 'Digest::SHA' => '5.43',
2734 'Encode' => '2.18_01',
2735 'Encode::Alias' => '2.06',
2736 'Encode::Byte' => '2.02',
2737 'Encode::CJKConstants' => '2.02',
2738 'Encode::CN' => '2.02',
2739 'Encode::CN::HZ' => '2.04',
2740 'Encode::Config' => '2.03',
2741 'Encode::EBCDIC' => '2.02',
2742 'Encode::Encoder' => '2.01',
2743 'Encode::Encoding' => '2.04',
2744 'Encode::Guess' => '2.02',
2745 'Encode::JP' => '2.03',
2746 'Encode::JP::H2Z' => '2.02',
2747 'Encode::JP::JIS7' => '2.02',
2748 'Encode::KR' => '2.02',
2749 'Encode::KR::2022_KR' => '2.02',
2750 'Encode::MIME::Header' => '2.04',
2751 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2752 'Encode::Symbol' => '2.02',
2753 'Encode::TW' => '2.02',
2754 'Encode::Unicode' => '2.03',
2755 'Encode::Unicode::UTF7' => '2.04',
2756 'ExtUtils::CBuilder' => '0.18',
2757 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2758 'ExtUtils::Constant::Base'=> '0.03',
2759 'ExtUtils::Constant::ProxySubs'=> '0.03',
2760 'ExtUtils::Install' => '1.41',
2761 'ExtUtils::Installed' => '1.41',
2762 'ExtUtils::MM_Any' => '0.13_02',
2763 'ExtUtils::MM_NW5' => '2.08_01',
2764 'ExtUtils::MM_Unix' => '1.5003',
2765 'ExtUtils::MM_VMS' => '5.73_03',
2766 'ExtUtils::MM_Win32' => '1.12_02',
2767 'ExtUtils::MM_Win95' => '0.04_01',
2768 'ExtUtils::MakeMaker' => '6.30_02',
2769 'ExtUtils::Manifest' => '1.46_01',
2770 'ExtUtils::Mkbootstrap' => '1.15_01',
2771 'ExtUtils::Mksymlists' => '1.19_01',
2772 'ExtUtils::Packlist' => '1.41',
2773 'File::Basename' => '2.75',
2774 'File::Find' => '1.11',
2775 'File::GlobMapper' => '0.000_02',
2776 'File::Spec' => '3.19',
2777 'FileCache' => '1.07',
2778 'Getopt::Long' => '2.3501',
2779 'Hash::Util' => '0.07',
2780 'Hash::Util::FieldHash' => '0.01',
2782 'IO::Compress::Adapter::Deflate'=> '2.000_13',
2783 'IO::Compress::Adapter::Identity'=> '2.000_13',
2784 'IO::Compress::Base' => '2.000_13',
2785 'IO::Compress::Base::Common'=> '2.000_13',
2786 'IO::Compress::Deflate' => '2.000_13',
2787 'IO::Compress::Gzip' => '2.000_13',
2788 'IO::Compress::Gzip::Constants'=> '2.000_13',
2789 'IO::Compress::RawDeflate'=> '2.000_13',
2790 'IO::Compress::Zip' => '2.000_13',
2791 'IO::Compress::Zip::Constants'=> '2.000_13',
2792 'IO::Compress::Zlib::Constants'=> '2.000_13',
2793 'IO::Compress::Zlib::Extra'=> '2.000_13',
2794 'IO::Dir' => '1.06',
2795 'IO::File' => '1.14',
2796 'IO::Handle' => '1.27',
2797 'IO::Socket' => '1.30_01',
2798 'IO::Socket::INET' => '1.31',
2799 'IO::Socket::UNIX' => '1.23',
2800 'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2801 'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2802 'IO::Uncompress::AnyInflate'=> '2.000_13',
2803 'IO::Uncompress::AnyUncompress'=> '2.000_13',
2804 'IO::Uncompress::Base' => '2.000_13',
2805 'IO::Uncompress::Gunzip'=> '2.000_13',
2806 'IO::Uncompress::Inflate'=> '2.000_13',
2807 'IO::Uncompress::RawInflate'=> '2.000_13',
2808 'IO::Uncompress::Unzip' => '2.000_13',
2809 'MIME::Base64' => '3.07_01',
2810 'Math::Complex' => '1.36',
2811 'Math::Trig' => '1.04',
2812 'Module::Build' => '0.2805',
2813 'Module::Build::Base' => undef,
2814 'Module::Build::Compat' => '0.03',
2815 'Module::Build::ConfigData'=> undef,
2816 'Module::Build::Cookbook'=> undef,
2817 'Module::Build::ModuleInfo'=> undef,
2818 'Module::Build::Notes' => undef,
2819 'Module::Build::PPMMaker'=> undef,
2820 'Module::Build::Platform::Amiga'=> undef,
2821 'Module::Build::Platform::Default'=> undef,
2822 'Module::Build::Platform::EBCDIC'=> undef,
2823 'Module::Build::Platform::MPEiX'=> undef,
2824 'Module::Build::Platform::MacOS'=> undef,
2825 'Module::Build::Platform::RiscOS'=> undef,
2826 'Module::Build::Platform::Unix'=> undef,
2827 'Module::Build::Platform::VMS'=> undef,
2828 'Module::Build::Platform::VOS'=> undef,
2829 'Module::Build::Platform::Windows'=> undef,
2830 'Module::Build::Platform::aix'=> undef,
2831 'Module::Build::Platform::cygwin'=> undef,
2832 'Module::Build::Platform::darwin'=> undef,
2833 'Module::Build::Platform::os2'=> undef,
2834 'Module::Build::PodParser'=> undef,
2835 'Module::Build::Version'=> '0',
2836 'Module::Build::YAML' => '0.50',
2837 'Module::CoreList' => '2.08',
2838 'Module::Load' => '0.10',
2839 'Module::Loaded' => '0.01',
2840 'Package::Constants' => '0.01',
2841 'Pod::Html' => '1.07',
2842 'Pod::Man' => '2.09',
2843 'Pod::Text' => '3.07',
2844 'Pod::Text::Color' => '2.03',
2845 'Pod::Text::Termcap' => '2.03',
2846 'SDBM_File' => '1.06',
2848 'Sys::Syslog' => '0.17',
2849 'Term::ANSIColor' => '1.11',
2850 'Test::Builder' => '0.33',
2851 'Test::Builder::Tester' => '1.04',
2852 'Test::Harness' => '2.62',
2853 'Test::Harness::Util' => '0.01',
2854 'Test::More' => '0.64',
2855 'Test::Simple' => '0.64',
2856 'Text::Balanced' => '1.98_01',
2857 'Text::ParseWords' => '3.25',
2858 'Text::Tabs' => '2007.071101',
2859 'Text::Wrap' => '2006.0711',
2860 'Tie::RefHash' => '1.34_01',
2861 'Time::HiRes' => '1.87',
2862 'Time::Local' => '1.13',
2863 'Time::gmtime' => '1.03',
2864 'UNIVERSAL' => '1.04',
2865 'Unicode::Normalize' => '1.01',
2866 'Win32API::File' => '0.1001',
2867 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2868 'assertions' => '0.03',
2869 'assertions::compat' => '0.02',
2870 'autouse' => '1.06',
2871 'diagnostics' => '1.16',
2872 'encoding' => '2.04',
2873 'encoding::warnings' => '0.10',
2874 'feature' => '1.01',
2876 'threads' => '1.38',
2877 'threads::shared' => '0.94_01',
2878 'version' => '0.67',
2881 'Compress::Zlib::Common'=> 1,
2882 'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2883 'Compress::Zlib::Compress::Zip::Constants'=> 1,
2884 'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2885 'Compress::Zlib::CompressPlugin::Identity'=> 1,
2886 'Compress::Zlib::File::GlobMapper'=> 1,
2887 'Compress::Zlib::FileConstants'=> 1,
2888 'Compress::Zlib::IO::Compress::Base'=> 1,
2889 'Compress::Zlib::IO::Compress::Deflate'=> 1,
2890 'Compress::Zlib::IO::Compress::Gzip'=> 1,
2891 'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2892 'Compress::Zlib::IO::Compress::Zip'=> 1,
2893 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2894 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2895 'Compress::Zlib::IO::Uncompress::Base'=> 1,
2896 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2897 'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2898 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2899 'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2900 'Compress::Zlib::ParseParameters'=> 1,
2901 'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2902 'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2906 delta_from => 5.009004,
2908 'Archive::Extract' => '0.22_01',
2909 'Archive::Tar' => '1.32',
2910 'Attribute::Handlers' => '0.78_06',
2911 'AutoLoader' => '5.63',
2912 'AutoSplit' => '1.05',
2914 'B::Concise' => '0.72',
2915 'B::Debug' => '1.05',
2916 'B::Deparse' => '0.82',
2917 'B::Lint' => '1.09',
2918 'B::Terse' => '1.05',
2919 'Benchmark' => '1.1',
2921 'CGI::Cookie' => '1.28',
2922 'CGI::Util' => '1.5_01',
2924 'CPAN::Debug' => '5.400955',
2925 'CPAN::FirstTime' => '5.401669',
2926 'CPAN::HandleConfig' => '5.401744',
2927 'CPAN::Kwalify' => '5.401418',
2928 'CPAN::Nox' => '5.400844',
2929 'CPAN::Queue' => '5.401704',
2930 'CPAN::Tarzip' => '5.401717',
2931 'CPAN::Version' => '5.401387',
2932 'CPANPLUS' => '0.81_01',
2933 'CPANPLUS::Backend' => undef,
2934 'CPANPLUS::Backend::RV' => undef,
2935 'CPANPLUS::Config' => undef,
2936 'CPANPLUS::Configure' => undef,
2937 'CPANPLUS::Configure::Setup'=> undef,
2938 'CPANPLUS::Dist' => undef,
2939 'CPANPLUS::Dist::Base' => '0.01',
2940 'CPANPLUS::Dist::Build' => '0.06_01',
2941 'CPANPLUS::Dist::Build::Constants'=> '0.01',
2942 'CPANPLUS::Dist::MM' => undef,
2943 'CPANPLUS::Dist::Sample'=> undef,
2944 'CPANPLUS::Error' => undef,
2945 'CPANPLUS::Internals' => '0.81_01',
2946 'CPANPLUS::Internals::Constants'=> '0.01',
2947 'CPANPLUS::Internals::Constants::Report'=> '0.01',
2948 'CPANPLUS::Internals::Extract'=> undef,
2949 'CPANPLUS::Internals::Fetch'=> undef,
2950 'CPANPLUS::Internals::Report'=> undef,
2951 'CPANPLUS::Internals::Search'=> undef,
2952 'CPANPLUS::Internals::Source'=> undef,
2953 'CPANPLUS::Internals::Utils'=> undef,
2954 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
2955 'CPANPLUS::Module' => undef,
2956 'CPANPLUS::Module::Author'=> undef,
2957 'CPANPLUS::Module::Author::Fake'=> undef,
2958 'CPANPLUS::Module::Checksums'=> undef,
2959 'CPANPLUS::Module::Fake'=> undef,
2960 'CPANPLUS::Module::Signature'=> undef,
2961 'CPANPLUS::Selfupdate' => undef,
2962 'CPANPLUS::Shell' => undef,
2963 'CPANPLUS::Shell::Classic'=> '0.0562',
2964 'CPANPLUS::Shell::Default'=> '0.81_01',
2965 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
2966 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
2967 'CPANPLUS::inc' => undef,
2969 'Carp::Heavy' => '1.07',
2970 'Compress::Raw::Zlib' => '2.005',
2971 'Compress::Zlib' => '2.005',
2973 'DBM_Filter' => '0.02',
2974 'DB_File' => '1.815',
2975 'Data::Dumper' => '2.121_13',
2976 'Devel::InnerPackage' => '0.3',
2977 'Devel::PPPort' => '3.11_01',
2978 'Digest::MD5' => '2.36_01',
2979 'Digest::SHA' => '5.44',
2980 'DynaLoader' => '1.08',
2982 'Encode::Alias' => '2.07',
2983 'Encode::Byte' => '2.03',
2984 'Encode::Config' => '2.04',
2985 'Encode::Encoding' => '2.05',
2986 'Encode::GSM0338' => '2.00',
2987 'Encode::JP::JIS7' => '2.03',
2988 'Encode::MIME::Header' => '2.05',
2989 'Encode::MIME::Name' => '1.01',
2990 'Encode::Unicode' => '2.05',
2992 'Exporter' => '5.60',
2993 'Exporter::Heavy' => '5.60',
2994 'ExtUtils::CBuilder' => '0.19',
2995 'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
2996 'ExtUtils::Command' => '1.13',
2997 'ExtUtils::Command::MM' => '0.07',
2998 'ExtUtils::Constant::Base'=> '0.04',
2999 'ExtUtils::Install' => '1.41_01',
3000 'ExtUtils::Liblist' => '1.03',
3001 'ExtUtils::Liblist::Kid'=> '1.33',
3002 'ExtUtils::MM' => '0.07',
3003 'ExtUtils::MM_AIX' => '0.05',
3004 'ExtUtils::MM_Any' => '0.15',
3005 'ExtUtils::MM_BeOS' => '1.07',
3006 'ExtUtils::MM_Cygwin' => '1.1',
3007 'ExtUtils::MM_DOS' => '0.04',
3008 'ExtUtils::MM_MacOS' => '1.1',
3009 'ExtUtils::MM_NW5' => '2.1',
3010 'ExtUtils::MM_OS2' => '1.07',
3011 'ExtUtils::MM_QNX' => '0.04',
3012 'ExtUtils::MM_UWIN' => '0.04',
3013 'ExtUtils::MM_Unix' => '1.54_01',
3014 'ExtUtils::MM_VMS' => '5.76',
3015 'ExtUtils::MM_VOS' => '0.04',
3016 'ExtUtils::MM_Win32' => '1.15',
3017 'ExtUtils::MM_Win95' => '0.06',
3018 'ExtUtils::MY' => '0.03',
3019 'ExtUtils::MakeMaker' => '6.36',
3020 'ExtUtils::MakeMaker::Config'=> '0.04',
3021 'ExtUtils::MakeMaker::bytes'=> '0.03',
3022 'ExtUtils::MakeMaker::vmsish'=> '0.03',
3023 'ExtUtils::Manifest' => '1.51_01',
3024 'ExtUtils::Mkbootstrap' => '1.17',
3025 'ExtUtils::Mksymlists' => '1.21',
3026 'ExtUtils::ParseXS' => '2.18',
3027 'ExtUtils::XSSymSet' => '1.1',
3028 'ExtUtils::testlib' => '1.17',
3031 'File::Basename' => '2.76',
3032 'File::Copy' => '2.10',
3033 'File::Fetch' => '0.10',
3034 'File::Glob' => '1.06',
3035 'File::Path' => '2.01',
3036 'File::Spec' => '3.25',
3037 'File::Spec::Cygwin' => '1.1_01',
3038 'File::Spec::VMS' => '1.4_01',
3039 'File::Temp' => '0.18',
3040 'Filter::Util::Call' => '1.0602',
3041 'FindBin' => '1.49',
3042 'Getopt::Long' => '2.36',
3043 'Hash::Util::FieldHash' => '1.01',
3044 'IO::Compress::Adapter::Deflate'=> '2.005',
3045 'IO::Compress::Adapter::Identity'=> '2.005',
3046 'IO::Compress::Base' => '2.005',
3047 'IO::Compress::Base::Common'=> '2.005',
3048 'IO::Compress::Deflate' => '2.005',
3049 'IO::Compress::Gzip' => '2.005',
3050 'IO::Compress::Gzip::Constants'=> '2.005',
3051 'IO::Compress::RawDeflate'=> '2.005',
3052 'IO::Compress::Zip' => '2.005',
3053 'IO::Compress::Zip::Constants'=> '2.005',
3054 'IO::Compress::Zlib::Constants'=> '2.005',
3055 'IO::Compress::Zlib::Extra'=> '2.005',
3056 'IO::Uncompress::Adapter::Identity'=> '2.005',
3057 'IO::Uncompress::Adapter::Inflate'=> '2.005',
3058 'IO::Uncompress::AnyInflate'=> '2.005',
3059 'IO::Uncompress::AnyUncompress'=> '2.005',
3060 'IO::Uncompress::Base' => '2.005',
3061 'IO::Uncompress::Gunzip'=> '2.005',
3062 'IO::Uncompress::Inflate'=> '2.005',
3063 'IO::Uncompress::RawInflate'=> '2.005',
3064 'IO::Uncompress::Unzip' => '2.005',
3065 'IO::Zlib' => '1.05_01',
3066 'IPC::Cmd' => '0.36_01',
3067 'List::Util' => '1.19',
3068 'Locale::Maketext::Simple'=> '0.18',
3069 'Log::Message' => '0.01',
3070 'Log::Message::Config' => '0.01',
3071 'Log::Message::Handlers'=> undef,
3072 'Log::Message::Item' => undef,
3073 'Log::Message::Simple' => '0.0201',
3074 'Math::BigFloat' => '1.58',
3075 'Math::BigInt' => '1.87',
3076 'Math::BigInt::Calc' => '0.51',
3077 'Math::BigInt::FastCalc'=> '0.15_01',
3078 'Math::BigRat' => '0.19',
3079 'Math::Complex' => '1.37',
3080 'Memoize' => '1.01_02',
3081 'Module::Build' => '0.2808',
3082 'Module::Build::Config' => undef,
3083 'Module::Build::Version'=> '0.7203',
3084 'Module::CoreList' => '2.12',
3085 'Module::Load::Conditional'=> '0.16',
3086 'Module::Pluggable' => '3.6',
3087 'Module::Pluggable::Object'=> '3.6',
3088 'NDBM_File' => '1.07',
3089 'Net::Cmd' => '2.28',
3090 'Net::Config' => '1.11',
3091 'Net::Domain' => '2.20',
3092 'Net::FTP' => '2.77',
3093 'Net::FTP::A' => '1.18',
3094 'Net::NNTP' => '2.24',
3095 'Net::POP3' => '2.29',
3096 'Net::SMTP' => '2.31',
3097 'ODBM_File' => '1.07',
3098 'OS2::DLL' => '1.03',
3099 'Object::Accessor' => '0.32',
3102 'Params::Check' => '0.26',
3103 'PerlIO::encoding' => '0.10',
3104 'PerlIO::scalar' => '0.05',
3105 'PerlIO::via' => '0.04',
3106 'Pod::Html' => '1.08',
3107 'Pod::Man' => '2.12',
3108 'Pod::ParseUtils' => '1.35',
3109 'Pod::Parser' => '1.35',
3110 'Pod::Select' => '1.35',
3111 'Pod::Simple' => '3.05',
3112 'Pod::Text' => '3.08',
3113 'Pod::Usage' => '1.35',
3114 'Scalar::Util' => '1.19',
3115 'SelfLoader' => '1.11',
3116 'Shell' => '0.72_01',
3118 'Storable' => '2.16',
3120 'Sys::Syslog' => '0.18_01',
3121 'Term::ANSIColor' => '1.12',
3122 'Term::UI' => '0.14_01',
3123 'Term::UI::History' => undef,
3124 'Test::Builder' => '0.70',
3125 'Test::Builder::Module' => '0.68',
3126 'Test::Builder::Tester' => '1.07',
3127 'Test::Harness' => '2.64',
3128 'Test::Harness::Results'=> '0.01',
3129 'Test::More' => '0.70',
3130 'Test::Simple' => '0.70',
3131 'Text::Balanced' => '2.0.0',
3132 'Text::Soundex' => '3.02',
3133 'Text::Tabs' => '2007.1117',
3134 'Text::Wrap' => '2006.1117',
3136 'Tie::File' => '0.97_02',
3137 'Tie::Hash::NamedCapture'=> '0.06',
3138 'Tie::Memoize' => '1.1',
3139 'Tie::RefHash' => '1.37',
3140 'Time::HiRes' => '1.9707',
3141 'Time::Local' => '1.17',
3142 'Time::Piece' => '1.11_02',
3143 'Time::Seconds' => undef,
3144 'Unicode' => '5.0.0',
3145 'Unicode::Normalize' => '1.02',
3146 'Unicode::UCD' => '0.25',
3147 'VMS::DCLsym' => '1.03',
3149 'Win32API::File' => '0.1001_01',
3150 'Win32CORE' => '0.02',
3151 'XS::APItest' => '0.12',
3152 'XSLoader' => '0.08',
3153 'attributes' => '0.08',
3159 'charnames' => '1.06',
3160 'constant' => '1.10',
3161 'diagnostics' => '1.17',
3162 'encoding' => '2.06',
3163 'encoding::warnings' => '0.11',
3164 'feature' => '1.10',
3168 'overload' => '1.06',
3170 'sigtrap' => '1.04',
3173 'threads' => '1.63',
3174 'threads::shared' => '1.12',
3176 'version' => '0.7203',
3177 'warnings' => '1.06',
3181 'B::Assembler' => 1,
3186 'B::Disassembler' => 1,
3190 'Thread::Signal' => 1,
3191 'Thread::Specific' => 1,
3193 'assertions::activate' => 1,
3194 'assertions::compat' => 1,
3198 delta_from => 5.009005,
3200 'Archive::Extract' => '0.24',
3201 'Archive::Tar' => '1.38',
3202 'Attribute::Handlers' => '0.79',
3204 'B::Concise' => '0.74',
3205 'B::Deparse' => '0.83',
3207 'CPAN::API::HOWTO' => undef,
3208 'CPAN::Debug' => '5.402212',
3209 'CPAN::DeferedCode' => '5.50',
3210 'CPAN::FirstTime' => '5.402229',
3211 'CPAN::HandleConfig' => '5.402212',
3212 'CPAN::Nox' => '5.402411',
3213 'CPAN::Queue' => '5.402212',
3214 'CPAN::Tarzip' => '5.402213',
3215 'CPAN::Version' => '5.5',
3216 'CPANPLUS' => '0.84',
3217 'CPANPLUS::Dist::Build' => '0.06_02',
3218 'CPANPLUS::Internals' => '0.84',
3219 'CPANPLUS::Shell::Default'=> '0.84',
3220 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3222 'Carp::Heavy' => '1.08',
3223 'Compress::Raw::Zlib' => '2.008',
3224 'Compress::Zlib' => '2.008',