1 package Module::CoreList;
3 use vars qw/$VERSION %released %version %families %upstream
4 %bug_tracker %deprecated/;
5 use Module::CoreList::TieHashDelta;
11 my $what = shift || '';
12 if ($what eq 'dumpinc') {
18 print "---INC---\n", join "\n" => keys %INC
23 sub first_release_raw {
25 $module = shift if eval { $module->isa(__PACKAGE__) }
26 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
30 ? grep { exists $version{$_}{ $module } &&
31 $version{$_}{ $module } ge $version } keys %version
32 : grep { exists $version{$_}{ $module } } keys %version;
37 sub first_release_by_date {
38 my @perls = &first_release_raw;
40 return (sort { $released{$a} cmp $released{$b} } @perls)[0];
44 my @perls = &first_release_raw;
46 return (sort { $a cmp $b } @perls)[0];
51 $regex = shift if eval { $regex->isa(__PACKAGE__) };
53 @perls = keys %version unless @perls;
57 while (my ($k, $v) = each %{$version{$_}}) {
58 $mods{$k}++ if $k =~ $regex;
61 return sort keys %mods
66 $v = shift if eval { $v->isa(__PACKAGE__) };
67 return $version{$v} if defined $version{$v};
73 $module = shift if eval { $module->isa(__PACKAGE__) }
74 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
75 my $perl_version = shift;
77 return unless $module && exists $deprecated{$perl_version}{$module};
78 return $deprecated{$perl_version}{$module};
83 $module = shift if eval { $module->isa(__PACKAGE__) }
84 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
85 return unless $module;
86 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
89 return List::Util::minstr(@perls);
93 my @perls = &removed_raw;
97 sub removed_from_by_date {
98 my @perls = sort { $released{$a} cmp $released{$b} } &removed_raw;
104 $mod = shift if eval { $mod->isa(__PACKAGE__) }
105 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
106 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
107 my $last = pop @perls;
108 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
112 sub changes_between {
113 my $left_ver = shift;
114 $left_ver = shift if eval { $left_ver->isa(__PACKAGE__) };
115 my $right_ver = shift;
117 my $left = $version{ $left_ver };
118 my $right = $version{ $right_ver };
120 my %uniq = (%$left, %$right);
123 for my $lib (keys %uniq) {
124 my $lhs = exists $left->{ $lib }
125 ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
127 my $rhs = exists $right->{ $lib }
128 ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
131 next if $lhs eq $rhs;
134 (exists $left->{$lib} ? (left => $left->{$lib}) : ()),
135 (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
138 $changes{$lib} = $change;
144 # When things escaped.
145 # NB. If you put version numbers with trailing zeroes here, you
146 # should also add an alias for the numerical ($]) version; see
147 # just before the __END__ of this module.
149 5.000 => '1994-10-17',
150 5.001 => '1995-03-14',
151 5.002 => '1996-02-29',
152 5.00307 => '1996-10-10',
153 5.004 => '1997-05-15',
154 5.005 => '1998-07-22',
155 5.00503 => '1999-03-28',
156 5.00405 => '1999-04-29',
157 5.006 => '2000-03-22',
158 5.006001 => '2001-04-08',
159 5.007003 => '2002-03-05',
160 5.008 => '2002-07-19',
161 5.008001 => '2003-09-25',
162 5.009 => '2003-10-27',
163 5.008002 => '2003-11-05',
164 5.006002 => '2003-11-15',
165 5.008003 => '2004-01-14',
166 5.00504 => '2004-02-23',
167 5.009001 => '2004-03-16',
168 5.008004 => '2004-04-21',
169 5.008005 => '2004-07-19',
170 5.008006 => '2004-11-27',
171 5.009002 => '2005-04-01',
172 5.008007 => '2005-05-30',
173 5.009003 => '2006-01-28',
174 5.008008 => '2006-01-31',
175 5.009004 => '2006-08-15',
176 5.009005 => '2007-07-07',
177 5.010000 => '2007-12-18',
178 5.008009 => '2008-12-14',
179 5.010001 => '2009-08-22',
180 5.011000 => '2009-10-02',
181 5.011001 => '2009-10-20',
182 5.011002 => '2009-11-20',
183 5.011003 => '2009-12-20',
184 5.011004 => '2010-01-20',
185 5.011005 => '2010-02-20',
186 5.012000 => '2010-04-12',
187 5.013000 => '2010-04-20',
188 5.012001 => '2010-05-16',
189 5.013001 => '2010-05-20',
190 5.013002 => '2010-06-22',
191 5.013003 => '2010-07-20',
192 5.013004 => '2010-08-20',
193 5.012002 => '2010-09-06',
194 5.013005 => '2010-09-19',
195 5.013006 => '2010-10-20',
196 5.013007 => '2010-11-20',
197 5.013008 => '2010-12-20',
198 5.012003 => '2011-01-21',
199 5.013009 => '2011-01-20',
200 5.013010 => '2011-02-20',
201 5.013011 => '2011-03-20',
202 5.014000 => '2011-05-14',
203 5.012004 => '2011-06-20',
204 5.012005 => '2012-11-10',
205 5.014001 => '2011-06-16',
206 5.015000 => '2011-06-20',
207 5.015001 => '2011-07-20',
208 5.015002 => '2011-08-20',
209 5.014002 => '2011-09-26',
210 5.015003 => '2011-09-20',
211 5.015004 => '2011-10-20',
212 5.015005 => '2011-11-20',
213 5.015006 => '2011-12-20',
214 5.015007 => '2012-01-20',
215 5.015008 => '2012-02-20',
216 5.015009 => '2012-03-20',
217 5.016000 => '2012-05-20',
218 5.016001 => '2012-08-08',
219 5.016002 => '2012-11-01',
220 5.017000 => '2012-05-26',
221 5.017001 => '2012-06-20',
222 5.017002 => '2012-07-20',
223 5.017003 => '2012-08-20',
224 5.017004 => '2012-09-20',
225 5.014003 => '2012-10-12',
226 5.017005 => '2012-10-20',
227 5.017006 => '2012-11-20',
228 5.017007 => '2012-12-18',
229 5.017008 => '2013-01-20',
230 5.017009 => '2013-02-20',
231 5.014004 => '2013-03-10',
232 5.016003 => '2013-03-11',
233 5.017010 => '2013-03-21',
234 5.017011 => '2013-04-20',
235 5.018000 => '2013-05-18',
236 5.019000 => '2013-05-20',
237 5.019001 => '2013-06-21',
238 5.019002 => '2013-07-22',
239 5.018001 => '2013-08-12',
240 5.019003 => '2013-08-20',
241 5.019004 => '????-??-??',
244 for my $version ( sort { $a <=> $b } keys %released ) {
245 my $family = int ($version * 1000) / 1000;
246 push @{ $families{ $family }} , $version;
252 'AnyDBM_File' => undef,
253 'AutoLoader' => undef,
254 'AutoSplit' => undef,
255 'Benchmark' => undef,
259 'DynaLoader' => undef,
263 'ExtUtils::MakeMaker' => undef,
265 'File::Basename' => undef,
266 'File::CheckTree' => undef,
267 'File::Find' => undef,
268 'FileHandle' => undef,
269 'GDBM_File' => undef,
270 'Getopt::Long' => undef,
271 'Getopt::Std' => undef,
272 'I18N::Collate' => undef,
273 'IPC::Open2' => undef,
274 'IPC::Open3' => undef,
275 'Math::BigFloat' => undef,
276 'Math::BigInt' => undef,
277 'Math::Complex' => undef,
278 'NDBM_File' => undef,
279 'Net::Ping' => undef,
280 'ODBM_File' => undef,
282 'SDBM_File' => undef,
283 'Search::Dict' => undef,
286 'Sys::Hostname' => undef,
287 'Sys::Syslog' => undef,
288 'Term::Cap' => undef,
289 'Term::Complete' => undef,
290 'Test::Harness' => undef,
291 'Text::Abbrev' => undef,
292 'Text::ParseWords' => undef,
293 'Text::Soundex' => undef,
294 'Text::Tabs' => undef,
296 'Time::Local' => undef,
309 'ExtUtils::Liblist' => undef,
310 'ExtUtils::Manifest' => undef,
311 'ExtUtils::Mkbootstrap' => undef,
312 'File::Path' => undef,
313 'SubstrHash' => undef,
323 'Devel::SelfStubber' => '1.01',
324 'DirHandle' => undef,
325 'DynaLoader' => '1.00',
326 'ExtUtils::Install' => undef,
327 'ExtUtils::MM_OS2' => undef,
328 'ExtUtils::MM_Unix' => undef,
329 'ExtUtils::MM_VMS' => undef,
330 'ExtUtils::MakeMaker' => '5.21',
331 'ExtUtils::Manifest' => '1.22',
332 'ExtUtils::Mksymlists' => '1.00',
334 'File::Copy' => '1.5',
335 'File::Path' => '1.01',
336 'FileCache' => undef,
337 'FileHandle' => '1.00',
338 'GDBM_File' => '1.00',
339 'Getopt::Long' => '2.01',
340 'NDBM_File' => '1.00',
342 'ODBM_File' => '1.00',
344 'Pod::Functions' => undef,
345 'Pod::Text' => undef,
346 'SDBM_File' => '1.00',
348 'SelectSaver' => undef,
349 'SelfLoader' => '1.06',
352 'Term::ReadLine' => undef,
353 'Test::Harness' => '1.07',
354 'Text::Wrap' => undef,
355 'Tie::Hash' => undef,
356 'Tie::Scalar' => undef,
357 'Tie::SubstrHash' => undef,
358 'diagnostics' => undef,
372 'ExtUtils::Embed' => '1.18',
373 'ExtUtils::Install' => '1.15 ',
374 'ExtUtils::Liblist' => '1.20 ',
375 'ExtUtils::MM_Unix' => '1.107 ',
376 'ExtUtils::MakeMaker' => '5.38',
377 'ExtUtils::Manifest' => '1.27',
378 'ExtUtils::Mkbootstrap' => '1.13 ',
379 'ExtUtils::Mksymlists' => '1.12 ',
380 'ExtUtils::testlib' => '1.11 ',
382 'File::Basename' => '2.4',
384 'Getopt::Long' => '2.04',
386 'IO::File' => '1.05',
387 'IO::Handle' => '1.12',
388 'IO::Pipe' => '1.07',
389 'IO::Seekable' => '1.05',
390 'IO::Select' => '1.09',
391 'IO::Socket' => '1.13',
392 'Net::Ping' => '1.01',
393 'OS2::ExtAttr' => '0.01',
394 'OS2::PrfDB' => '0.02',
395 'OS2::Process' => undef,
396 'OS2::REXX' => undef,
399 'Test::Harness' => '1.13',
400 'Text::Tabs' => '96.051501',
401 'Text::Wrap' => '96.041801',
402 'UNIVERSAL' => undef,
403 'VMS::Filespec' => undef,
404 'VMS::Stdio' => '2.0',
412 delta_from => 5.00307,
414 'Bundle::CPAN' => '0.02',
416 'CGI::Apache' => '1.01',
417 'CGI::Carp' => '1.06',
418 'CGI::Fast' => '1.00a',
419 'CGI::Push' => '1.00',
420 'CGI::Switch' => '0.05',
422 'CPAN::FirstTime' => '1.18 ',
423 'CPAN::Nox' => undef,
424 'Class::Struct' => undef,
427 'DynaLoader' => '1.02',
428 'ExtUtils::Command' => '1.00',
429 'ExtUtils::Embed' => '1.2501',
430 'ExtUtils::Install' => '1.16 ',
431 'ExtUtils::Liblist' => '1.2201 ',
432 'ExtUtils::MM_Unix' => '1.114 ',
433 'ExtUtils::MM_Win32' => undef,
434 'ExtUtils::MakeMaker' => '5.4002',
435 'ExtUtils::Manifest' => '1.33 ',
436 'ExtUtils::Mksymlists' => '1.13 ',
437 'ExtUtils::XSSymSet' => '1.0',
439 'File::Basename' => '2.5',
440 'File::Compare' => '1.1001',
441 'File::Copy' => '2.02',
442 'File::Path' => '1.04',
443 'File::stat' => undef,
444 'FileHandle' => '2.00',
445 'Getopt::Long' => '2.10',
446 'IO::File' => '1.0602',
447 'IO::Handle' => '1.1504',
448 'IO::Pipe' => '1.0901',
449 'IO::Seekable' => '1.06',
450 'IO::Select' => '1.10',
451 'IO::Socket' => '1.1602',
452 'IPC::Open2' => '1.01',
453 'IPC::Open3' => '1.0101',
454 'Math::Complex' => '1.01',
456 'Net::Ping' => '2.02',
457 'Net::hostent' => undef,
458 'Net::netent' => undef,
459 'Net::protoent' => undef,
460 'Net::servent' => undef,
463 'Pod::Html' => undef,
464 'Pod::Text' => '1.0203',
465 'SelfLoader' => '1.07',
468 'Test::Harness' => '1.1502',
469 'Text::Tabs' => '96.121201',
470 'Text::Wrap' => '97.011701',
471 'Tie::RefHash' => undef,
472 'Time::gmtime' => '1.01',
473 'Time::localtime' => '1.01',
475 'User::grent' => undef,
476 'User::pwent' => undef,
477 'VMS::DCLsym' => '1.01',
478 'VMS::Stdio' => '2.02',
481 'constant' => '1.00',
493 'AutoLoader' => '5.56',
494 'AutoSplit' => '1.0303',
495 'Bundle::CPAN' => '0.03',
497 'CGI::Apache' => '1.1',
498 'CGI::Carp' => '1.10',
499 'CGI::Cookie' => '1.06',
500 'CGI::Push' => '1.01',
501 'CGI::Switch' => '0.06',
503 'CPAN::FirstTime' => '1.30 ',
506 'DynaLoader' => '1.03',
507 'ExtUtils::Command' => '1.01',
508 'ExtUtils::Embed' => '1.2505',
509 'ExtUtils::Install' => '1.28 ',
510 'ExtUtils::Liblist' => '1.25 ',
511 'ExtUtils::MM_Unix' => '1.118 ',
512 'ExtUtils::MakeMaker' => '5.42',
513 'ExtUtils::Mkbootstrap' => '1.14 ',
514 'ExtUtils::Mksymlists' => '1.16 ',
515 'File::Basename' => '2.6',
516 'File::DosGlob' => undef,
517 'File::Path' => '1.0402',
518 'File::Spec' => '0.6',
519 'File::Spec::Mac' => '1.0',
520 'File::Spec::OS2' => undef,
521 'File::Spec::Unix' => undef,
522 'File::Spec::VMS' => undef,
523 'File::Spec::Win32' => undef,
525 'Getopt::Long' => '2.19',
526 'IO::File' => '1.06021',
527 'IO::Socket' => '1.1603',
528 'IPC::Open3' => '1.0103',
529 'Math::Complex' => '1.25',
530 'NDBM_File' => '1.01',
531 'Pod::Html' => '1.0101',
532 'Pod::Text' => '1.0204',
533 'SelfLoader' => '1.08',
536 'Test::Harness' => '1.1602',
537 'Text::ParseWords' => '3.1001',
538 'Text::Wrap' => '98.112902',
539 'Tie::Handle' => undef,
550 delta_from => 5.00405,
552 'AutoLoader' => undef,
553 'AutoSplit' => '1.0302',
555 'B::Asmdata' => undef,
556 'B::Assembler' => undef,
557 'B::Bblock' => undef,
558 'B::Bytecode' => undef,
562 'B::Deparse' => '0.56',
563 'B::Disassembler' => undef,
565 'B::Showlex' => undef,
566 'B::Stackobj' => undef,
569 'CGI::Carp' => '1.101',
571 'CPAN::FirstTime' => '1.29 ',
573 'Data::Dumper' => '2.09',
575 'ExtUtils::Installed' => '0.02',
576 'ExtUtils::MM_Unix' => '1.12601 ',
577 'ExtUtils::MakeMaker' => '5.4301',
578 'ExtUtils::Mkbootstrap' => '1.13 ',
579 'ExtUtils::Mksymlists' => '1.17 ',
580 'ExtUtils::Packlist' => '0.03',
582 'File::Path' => '1.0401',
583 'Getopt::Long' => '2.17',
584 'IO::Handle' => '1.1505',
585 'IPC::Msg' => '1.00',
586 'IPC::Open3' => '1.0102',
587 'IPC::Semaphore' => '1.00',
588 'IPC::SysV' => '1.03',
590 'OS2::Process' => '0.2',
591 'Pod::Html' => '1.01',
592 'Pod::Text' => '1.0203',
593 'Text::ParseWords' => '3.1',
594 'Text::Wrap' => '97.02',
596 'Thread::Queue' => undef,
597 'Thread::Semaphore' => undef,
598 'Thread::Signal' => undef,
599 'Thread::Specific' => undef,
600 'Tie::Array' => '1.00',
601 'VMS::Stdio' => '2.1',
613 'AutoSplit' => '1.0303',
615 'CGI::Carp' => '1.13',
616 'CGI::Fast' => '1.01',
618 'CPAN::FirstTime' => '1.36',
619 'CPAN::Nox' => '1.00',
621 'Data::Dumper' => '2.101',
622 'Dumpvalue' => undef,
624 'ExtUtils::Install' => '1.28',
625 'ExtUtils::Liblist' => '1.25',
626 'ExtUtils::MM_Unix' => '1.12602',
627 'ExtUtils::MakeMaker' => '5.4302',
628 'ExtUtils::Manifest' => '1.33',
629 'ExtUtils::Mkbootstrap' => '1.14',
630 'ExtUtils::Mksymlists' => '1.17',
631 'ExtUtils::testlib' => '1.11',
633 'Getopt::Long' => '2.19',
634 'Getopt::Std' => '1.01',
635 'IO::Pipe' => '1.0902',
636 'IPC::Open3' => '1.0103',
637 'Math::Complex' => '1.26',
639 'Text::Wrap' => '98.112902',
645 delta_from => 5.00503,
647 'CPAN::FirstTime' => '1.36 ',
648 'DB_File' => '1.807',
649 'ExtUtils::Install' => '1.28 ',
650 'ExtUtils::Liblist' => '1.25 ',
651 'ExtUtils::MM_Unix' => '1.12602 ',
652 'ExtUtils::Manifest' => '1.33 ',
653 'ExtUtils::Miniperl' => undef,
654 'ExtUtils::Mkbootstrap' => '1.14 ',
655 'ExtUtils::Mksymlists' => '1.17 ',
656 'ExtUtils::testlib' => '1.11 ',
657 'File::Compare' => '1.1002',
658 'File::Spec' => '0.8',
659 'File::Spec::Functions' => undef,
660 'File::Spec::Mac' => undef,
661 'Getopt::Long' => '2.20',
662 'Pod::Html' => '1.02',
668 delta_from => 5.00504,
670 'AutoLoader' => '5.57',
671 'AutoSplit' => '1.0305',
672 'B::Deparse' => '0.59',
675 'ByteLoader' => '0.03',
677 'CGI::Apache' => undef,
678 'CGI::Carp' => '1.14',
679 'CGI::Cookie' => '1.12',
680 'CGI::Fast' => '1.02',
681 'CGI::Pretty' => '1.03',
682 'CGI::Switch' => undef,
684 'CPAN::FirstTime' => '1.38 ',
685 'Carp::Heavy' => undef,
686 'Class::Struct' => '0.58',
690 'Devel::DProf' => '20000000.00_00',
691 'Devel::Peek' => '1.00_01',
692 'DynaLoader' => '1.04',
693 'Exporter' => '5.562',
694 'Exporter::Heavy' => undef,
695 'ExtUtils::MM_Cygwin' => undef,
696 'ExtUtils::MM_Unix' => '1.12603 ',
697 'ExtUtils::MakeMaker' => '5.45',
698 'File::Copy' => '2.03',
699 'File::Glob' => '0.991',
700 'File::Path' => '1.0403',
701 'GDBM_File' => '1.03',
702 'Getopt::Long' => '2.23',
703 'Getopt::Std' => '1.02',
706 'IO::File' => '1.08',
707 'IO::Handle' => '1.21',
708 'IO::Pipe' => '1.121',
709 'IO::Poll' => '0.01',
710 'IO::Seekable' => '1.08',
711 'IO::Select' => '1.14',
712 'IO::Socket' => '1.26',
713 'IO::Socket::INET' => '1.25',
714 'IO::Socket::UNIX' => '1.20',
716 'JPL::AutoLoader' => undef,
717 'JPL::Class' => undef,
718 'JPL::Compile' => undef,
719 'NDBM_File' => '1.03',
720 'ODBM_File' => '1.02',
723 'Pod::Checker' => '1.098',
724 'Pod::Find' => '0.12',
725 'Pod::Html' => '1.03',
726 'Pod::InputObjects' => '1.12',
727 'Pod::Man' => '1.02',
728 'Pod::ParseUtils' => '0.2',
729 'Pod::Parser' => '1.12',
730 'Pod::Plainer' => '0.01',
731 'Pod::Select' => '1.12',
732 'Pod::Text' => '2.03',
733 'Pod::Text::Color' => '0.05',
734 'Pod::Text::Termcap' => '0.04',
735 'Pod::Usage' => '1.12',
736 'SDBM_File' => '1.02',
737 'SelfLoader' => '1.0901',
740 'Sys::Hostname' => '1.1',
741 'Sys::Syslog' => '0.01',
742 'Term::ANSIColor' => '1.01',
744 'Test::Harness' => '1.1604',
745 'Text::ParseWords' => '3.2',
746 'Text::Soundex' => '1.0',
747 'Text::Tabs' => '98.112801',
748 'Tie::Array' => '1.01',
749 'Tie::Handle' => '1.0',
750 'VMS::Stdio' => '2.2',
751 'XSLoader' => '0.01',
752 'attributes' => '0.03',
756 'charnames' => undef,
757 'constant' => '1.02',
758 'diagnostics' => '1.0',
765 'warnings::register' => undef,
773 'AutoLoader' => '5.58',
774 'B::Assembler' => '0.02',
775 'B::Concise' => '0.51',
776 'B::Deparse' => '0.6',
777 'ByteLoader' => '0.04',
779 'CGI::Carp' => '1.20',
780 'CGI::Cookie' => '1.18',
781 'CGI::Pretty' => '1.05',
782 'CGI::Push' => '1.04',
783 'CGI::Util' => '1.1',
785 'CPAN::FirstTime' => '1.53',
786 'Class::Struct' => '0.59',
789 'Data::Dumper' => '2.102',
790 'ExtUtils::Install' => '1.28',
791 'ExtUtils::Liblist' => '1.26',
792 'ExtUtils::MM_Unix' => '1.12603',
793 'ExtUtils::Manifest' => '1.33',
794 'ExtUtils::Mkbootstrap' => '1.14',
795 'ExtUtils::Mksymlists' => '1.17',
796 'ExtUtils::testlib' => '1.11',
797 'File::Path' => '1.0404',
798 'File::Spec' => '0.82',
799 'File::Spec::Epoc' => undef,
800 'File::Spec::Functions' => '1.1',
801 'File::Spec::Mac' => '1.2',
802 'File::Spec::OS2' => '1.1',
803 'File::Spec::Unix' => '1.2',
804 'File::Spec::VMS' => '1.1',
805 'File::Spec::Win32' => '1.2',
806 'File::Temp' => '0.12',
807 'GDBM_File' => '1.05',
808 'Getopt::Long' => '2.25',
809 'IO::Poll' => '0.05',
811 'Math::BigFloat' => '0.02',
812 'Math::BigInt' => '0.01',
813 'Math::Complex' => '1.31',
814 'NDBM_File' => '1.04',
815 'ODBM_File' => '1.03',
816 'OS2::REXX' => '1.00',
817 'Pod::Checker' => '1.2',
818 'Pod::Find' => '0.21',
819 'Pod::InputObjects' => '1.13',
820 'Pod::LaTeX' => '0.53',
821 'Pod::Man' => '1.15',
822 'Pod::ParseUtils' => '0.22',
823 'Pod::Parser' => '1.13',
824 'Pod::Select' => '1.13',
825 'Pod::Text' => '2.08',
826 'Pod::Text::Color' => '0.06',
827 'Pod::Text::Overstrike' => '1.01',
828 'Pod::Text::Termcap' => '1',
829 'Pod::Usage' => '1.14',
830 'SDBM_File' => '1.03',
831 'SelfLoader' => '1.0902',
833 'Term::ANSIColor' => '1.03',
835 'Text::Wrap' => '2001.0131',
836 'Tie::Handle' => '4.0',
837 'Tie::RefHash' => '1.3',
843 delta_from => 5.006001,
845 'CPAN::FirstTime' => '1.53 ',
846 'DB_File' => '1.806',
847 'Data::Dumper' => '2.121',
848 'ExtUtils::Command' => '1.05',
849 'ExtUtils::Command::MM' => '0.03',
850 'ExtUtils::Install' => '1.32',
851 'ExtUtils::Installed' => '0.08',
852 'ExtUtils::Liblist' => '1.01',
853 'ExtUtils::Liblist::Kid'=> '1.3',
854 'ExtUtils::MM' => '0.04',
855 'ExtUtils::MM_Any' => '0.07',
856 'ExtUtils::MM_BeOS' => '1.04',
857 'ExtUtils::MM_Cygwin' => '1.06',
858 'ExtUtils::MM_DOS' => '0.02',
859 'ExtUtils::MM_MacOS' => '1.07',
860 'ExtUtils::MM_NW5' => '2.06',
861 'ExtUtils::MM_OS2' => '1.04',
862 'ExtUtils::MM_UWIN' => '0.02',
863 'ExtUtils::MM_Unix' => '1.42',
864 'ExtUtils::MM_VMS' => '5.70',
865 'ExtUtils::MM_Win32' => '1.09',
866 'ExtUtils::MM_Win95' => '0.03',
867 'ExtUtils::MY' => '0.01',
868 'ExtUtils::MakeMaker' => '6.17',
869 'ExtUtils::MakeMaker::bytes'=> '0.01',
870 'ExtUtils::MakeMaker::vmsish'=> '0.01',
871 'ExtUtils::Manifest' => '1.42',
872 'ExtUtils::Mkbootstrap' => '1.15',
873 'ExtUtils::Mksymlists' => '1.19',
874 'ExtUtils::Packlist' => '0.04',
875 'ExtUtils::testlib' => '1.15',
876 'File::Spec' => '0.86',
877 'File::Spec::Cygwin' => '1.1',
878 'File::Spec::Epoc' => '1.1',
879 'File::Spec::Functions' => '1.3',
880 'File::Spec::Mac' => '1.4',
881 'File::Spec::OS2' => '1.2',
882 'File::Spec::Unix' => '1.5',
883 'File::Spec::VMS' => '1.4',
884 'File::Spec::Win32' => '1.4',
885 'File::Temp' => '0.14',
888 'Test::Builder' => '0.17',
889 'Test::Harness' => '2.30',
890 'Test::Harness::Assert' => '0.01',
891 'Test::Harness::Iterator'=> '0.01',
892 'Test::Harness::Straps' => '0.15',
893 'Test::More' => '0.47',
894 'Test::Simple' => '0.47',
895 'Unicode' => '3.0.1',
903 delta_from => 5.006001,
905 'AnyDBM_File' => '1.00',
906 'Attribute::Handlers' => '0.76',
907 'AutoLoader' => '5.59',
908 'AutoSplit' => '1.0307',
910 'B::Asmdata' => '1.00',
911 'B::Assembler' => '0.04',
912 'B::Bblock' => '1.00',
913 'B::Bytecode' => '1.00',
916 'B::Concise' => '0.52',
917 'B::Debug' => '1.00',
918 'B::Deparse' => '0.63',
919 'B::Disassembler' => '1.01',
921 'B::Showlex' => '1.00',
922 'B::Stackobj' => '1.00',
923 'B::Stash' => '1.00',
924 'B::Terse' => '1.00',
926 'Benchmark' => '1.04',
928 'CGI::Apache' => '1.00',
929 'CGI::Carp' => '1.22',
930 'CGI::Cookie' => '1.20',
931 'CGI::Fast' => '1.04',
932 'CGI::Pretty' => '1.05_00',
933 'CGI::Switch' => '1.00',
934 'CGI::Util' => '1.3',
936 'CPAN::FirstTime' => '1.54 ',
937 'CPAN::Nox' => '1.00_01',
939 'Carp::Heavy' => '1.01',
940 'Class::ISA' => '0.32',
941 'Class::Struct' => '0.61',
943 'DB_File' => '1.804',
944 'Data::Dumper' => '2.12',
945 'Devel::DProf' => '20000000.00_01',
946 'Devel::PPPort' => '2.0002',
947 'Devel::Peek' => '1.00_03',
948 'Devel::SelfStubber' => '1.03',
950 'Digest::MD5' => '2.16',
951 'DirHandle' => '1.00',
952 'Dumpvalue' => '1.10',
954 'Encode::CN' => '0.02',
955 'Encode::CN::HZ' => undef,
956 'Encode::Encoding' => '0.02',
957 'Encode::Internal' => '0.30',
958 'Encode::JP' => '0.02',
959 'Encode::JP::Constants' => '1.02',
960 'Encode::JP::H2Z' => '0.77',
961 'Encode::JP::ISO_2022_JP'=> undef,
962 'Encode::JP::JIS' => undef,
963 'Encode::JP::Tr' => '0.77',
964 'Encode::KR' => '0.02',
965 'Encode::TW' => '0.02',
966 'Encode::Tcl' => '1.01',
967 'Encode::Tcl::Escape' => '1.01',
968 'Encode::Tcl::Extended' => '1.01',
969 'Encode::Tcl::HanZi' => '1.01',
970 'Encode::Tcl::Table' => '1.01',
971 'Encode::Unicode' => '0.30',
972 'Encode::XS' => '0.40',
973 'Encode::iso10646_1' => '0.30',
974 'Encode::usc2_le' => '0.30',
975 'Encode::utf8' => '0.30',
978 'Exporter' => '5.566',
979 'Exporter::Heavy' => '5.562',
980 'ExtUtils::Command' => '1.02',
981 'ExtUtils::Constant' => '0.11',
982 'ExtUtils::Embed' => '1.250601',
983 'ExtUtils::Install' => '1.29',
984 'ExtUtils::Installed' => '0.04',
985 'ExtUtils::Liblist' => '1.2701',
986 'ExtUtils::MM_BeOS' => '1.00',
987 'ExtUtils::MM_Cygwin' => '1.00',
988 'ExtUtils::MM_OS2' => '1.00',
989 'ExtUtils::MM_Unix' => '1.12607',
990 'ExtUtils::MM_VMS' => '5.56',
991 'ExtUtils::MM_Win32' => '1.00_02',
992 'ExtUtils::MakeMaker' => '5.48_03',
993 'ExtUtils::Manifest' => '1.35',
994 'ExtUtils::Mkbootstrap' => '1.1401',
995 'ExtUtils::Mksymlists' => '1.18',
996 'ExtUtils::Packlist' => '0.04',
997 'ExtUtils::testlib' => '1.1201',
1000 'File::Basename' => '2.71',
1001 'File::CheckTree' => '4.1',
1002 'File::Compare' => '1.1003',
1003 'File::Copy' => '2.05',
1004 'File::DosGlob' => '1.00',
1005 'File::Find' => '1.04',
1006 'File::Glob' => '1.01',
1007 'File::Path' => '1.05',
1008 'File::Spec' => '0.83',
1009 'File::Spec::Cygwin' => '1.0',
1010 'File::Spec::Epoc' => '1.00',
1011 'File::Spec::Functions' => '1.2',
1012 'File::Spec::Mac' => '1.3',
1013 'File::Spec::Unix' => '1.4',
1014 'File::Spec::VMS' => '1.2',
1015 'File::Spec::Win32' => '1.3',
1016 'File::Temp' => '0.13',
1017 'File::stat' => '1.00',
1018 'FileCache' => '1.00',
1019 'FileHandle' => '2.01',
1020 'Filter::Simple' => '0.77',
1021 'Filter::Util::Call' => '1.06',
1022 'FindBin' => '1.43',
1023 'GDBM_File' => '1.06',
1024 'Getopt::Long' => '2.28',
1025 'Getopt::Std' => '1.03',
1026 'I18N::Collate' => '1.00',
1027 'I18N::LangTags' => '0.27',
1028 'I18N::LangTags::List' => '0.25',
1029 'I18N::Langinfo' => '0.01',
1030 'IO::Dir' => '1.03_00',
1031 'IO::File' => '1.09',
1032 'IO::Handle' => '1.21_00',
1033 'IO::Pipe' => '1.122',
1034 'IO::Poll' => '0.06',
1035 'IO::Seekable' => '1.08_00',
1036 'IO::Select' => '1.15',
1037 'IO::Socket' => '1.27',
1038 'IO::Socket::INET' => '1.26',
1039 'IO::Socket::UNIX' => '1.20_00',
1040 'IPC::Msg' => '1.00_00',
1041 'IPC::Open3' => '1.0104',
1042 'IPC::Semaphore' => '1.00_00',
1043 'IPC::SysV' => '1.03_00',
1044 'List::Util' => '1.06_00',
1045 'Locale::Constants' => '2.01',
1046 'Locale::Country' => '2.01',
1047 'Locale::Currency' => '2.01',
1048 'Locale::Language' => '2.01',
1049 'Locale::Maketext' => '1.03',
1050 'Locale::Script' => '2.01',
1051 'MIME::Base64' => '2.12',
1052 'MIME::QuotedPrint' => '2.03',
1053 'Math::BigFloat' => '1.30',
1054 'Math::BigInt' => '1.54',
1055 'Math::BigInt::Calc' => '0.25',
1056 'Math::Complex' => '1.34',
1057 'Math::Trig' => '1.01',
1058 'Memoize' => '0.66',
1059 'Memoize::AnyDBM_File' => '0.65',
1060 'Memoize::Expire' => '0.66',
1061 'Memoize::ExpireFile' => '0.65',
1062 'Memoize::ExpireTest' => '0.65',
1063 'Memoize::NDBM_File' => '0.65',
1064 'Memoize::SDBM_File' => '0.65',
1065 'Memoize::Storable' => '0.65',
1067 'Net::Cmd' => '2.21',
1068 'Net::Config' => '1.10',
1069 'Net::Domain' => '2.17',
1070 'Net::FTP' => '2.64',
1071 'Net::FTP::A' => '1.15',
1072 'Net::FTP::E' => '0.01',
1073 'Net::FTP::I' => '1.12',
1074 'Net::FTP::L' => '0.01',
1075 'Net::FTP::dataconn' => '0.10',
1076 'Net::NNTP' => '2.21',
1077 'Net::Netrc' => '2.12',
1078 'Net::POP3' => '2.23',
1079 'Net::Ping' => '2.12',
1080 'Net::SMTP' => '2.21',
1081 'Net::Time' => '2.09',
1082 'Net::hostent' => '1.00',
1083 'Net::netent' => '1.00',
1084 'Net::protoent' => '1.00',
1085 'Net::servent' => '1.00',
1087 'OS2::DLL' => '1.00',
1088 'OS2::Process' => '1.0',
1089 'OS2::REXX' => '1.01',
1093 'PerlIO::Scalar' => '0.01',
1094 'PerlIO::Via' => '0.01',
1095 'Pod::Checker' => '1.3',
1096 'Pod::Find' => '0.22',
1097 'Pod::Functions' => '1.01',
1098 'Pod::Html' => '1.04',
1099 'Pod::LaTeX' => '0.54',
1100 'Pod::Man' => '1.32',
1101 'Pod::ParseLink' => '1.05',
1102 'Pod::Text' => '2.18',
1103 'Pod::Text::Color' => '1.03',
1104 'Pod::Text::Overstrike' => '1.08',
1105 'Pod::Text::Termcap' => '1.09',
1107 'Scalar::Util' => '1.06_00',
1108 'Search::Dict' => '1.02',
1109 'SelectSaver' => '1.00',
1110 'SelfLoader' => '1.0903',
1113 'Storable' => '1.015',
1116 'Sys::Syslog' => '0.02',
1117 'Term::ANSIColor' => '1.04',
1118 'Term::Cap' => '1.07',
1119 'Term::Complete' => '1.4',
1120 'Term::ReadLine' => '1.00',
1122 'Test::Builder' => '0.11',
1123 'Test::Harness' => '2.01',
1124 'Test::Harness::Assert' => '0.01',
1125 'Test::Harness::Iterator'=> '0.01',
1126 'Test::Harness::Straps' => '0.08',
1127 'Test::More' => '0.41',
1128 'Test::Simple' => '0.41',
1129 'Text::Abbrev' => '1.00',
1130 'Text::Balanced' => '1.89',
1131 'Text::ParseWords' => '3.21',
1132 'Text::Soundex' => '1.01',
1133 'Text::Wrap' => '2001.0929',
1135 'Thread::Queue' => '1.00',
1136 'Thread::Semaphore' => '1.00',
1137 'Thread::Signal' => '1.00',
1138 'Thread::Specific' => '1.00',
1139 'Tie::Array' => '1.02',
1140 'Tie::File' => '0.17',
1141 'Tie::Handle' => '4.1',
1142 'Tie::Hash' => '1.00',
1143 'Tie::Memoize' => '1.0',
1144 'Tie::RefHash' => '1.3_00',
1145 'Tie::Scalar' => '1.00',
1146 'Tie::SubstrHash' => '1.00',
1147 'Time::HiRes' => '1.20_00',
1148 'Time::Local' => '1.04',
1149 'Time::gmtime' => '1.02',
1150 'Time::localtime' => '1.02',
1151 'Time::tm' => '1.00',
1152 'UNIVERSAL' => '1.00',
1153 'Unicode::Collate' => '0.10',
1154 'Unicode::Normalize' => '0.14',
1155 'Unicode::UCD' => '0.2',
1156 'User::grent' => '1.00',
1157 'User::pwent' => '1.00',
1158 'VMS::DCLsym' => '1.02',
1159 'VMS::Filespec' => '1.1',
1160 'VMS::Stdio' => '2.3',
1161 'XS::Typemap' => '0.01',
1162 'attributes' => '0.04_01',
1164 'autouse' => '1.03',
1168 'charnames' => '1.01',
1169 'constant' => '1.04',
1170 'diagnostics' => '1.1',
1171 'encoding' => '1.00',
1173 'filetest' => '1.00',
1175 'integer' => '1.00',
1180 'overload' => '1.00',
1185 'threads' => '0.05',
1186 'threads::shared' => '0.90',
1190 'warnings' => '1.00',
1191 'warnings::register' => '1.00',
1197 delta_from => 5.007003,
1199 'Attribute::Handlers' => '0.77',
1201 'B::Lint' => '1.01',
1202 'B::Xref' => '1.01',
1204 'CGI::Carp' => '1.23',
1206 'CPAN::FirstTime' => '1.56 ',
1207 'CPAN::Nox' => '1.02',
1208 'Digest::MD5' => '2.20',
1209 'Dumpvalue' => '1.11',
1211 'Encode::Alias' => '1.32',
1212 'Encode::Byte' => '1.22',
1213 'Encode::CJKConstants' => '1.00',
1214 'Encode::CN' => '1.24',
1215 'Encode::CN::HZ' => '1.04',
1216 'Encode::Config' => '1.06',
1217 'Encode::EBCDIC' => '1.21',
1218 'Encode::Encoder' => '0.05',
1219 'Encode::Encoding' => '1.30',
1220 'Encode::Guess' => '1.06',
1221 'Encode::JP' => '1.25',
1222 'Encode::JP::H2Z' => '1.02',
1223 'Encode::JP::JIS7' => '1.08',
1224 'Encode::KR' => '1.22',
1225 'Encode::KR::2022_KR' => '1.05',
1226 'Encode::MIME::Header' => '1.05',
1227 'Encode::Symbol' => '1.22',
1228 'Encode::TW' => '1.26',
1229 'Encode::Unicode' => '1.37',
1230 'Exporter::Heavy' => '5.566',
1231 'ExtUtils::Command' => '1.04',
1232 'ExtUtils::Command::MM' => '0.01',
1233 'ExtUtils::Constant' => '0.12',
1234 'ExtUtils::Installed' => '0.06',
1235 'ExtUtils::Liblist' => '1.00',
1236 'ExtUtils::Liblist::Kid'=> '1.29',
1237 'ExtUtils::MM' => '0.04',
1238 'ExtUtils::MM_Any' => '0.04',
1239 'ExtUtils::MM_BeOS' => '1.03',
1240 'ExtUtils::MM_Cygwin' => '1.04',
1241 'ExtUtils::MM_DOS' => '0.01',
1242 'ExtUtils::MM_MacOS' => '1.03',
1243 'ExtUtils::MM_NW5' => '2.05',
1244 'ExtUtils::MM_OS2' => '1.03',
1245 'ExtUtils::MM_UWIN' => '0.01',
1246 'ExtUtils::MM_Unix' => '1.33',
1247 'ExtUtils::MM_VMS' => '5.65',
1248 'ExtUtils::MM_Win32' => '1.05',
1249 'ExtUtils::MM_Win95' => '0.02',
1250 'ExtUtils::MY' => '0.01',
1251 'ExtUtils::MakeMaker' => '6.03',
1252 'ExtUtils::Manifest' => '1.38',
1253 'ExtUtils::Mkbootstrap' => '1.15',
1254 'ExtUtils::Mksymlists' => '1.19',
1255 'ExtUtils::testlib' => '1.15',
1256 'File::CheckTree' => '4.2',
1257 'FileCache' => '1.021',
1258 'Filter::Simple' => '0.78',
1259 'Getopt::Long' => '2.32',
1260 'Hash::Util' => '0.04',
1261 'List::Util' => '1.07_00',
1262 'Locale::Country' => '2.04',
1263 'Math::BigFloat' => '1.35',
1264 'Math::BigFloat::Trace' => '0.01',
1265 'Math::BigInt' => '1.60',
1266 'Math::BigInt::Calc' => '0.30',
1267 'Math::BigInt::Trace' => '0.01',
1268 'Math::BigRat' => '0.07',
1269 'Memoize' => '1.01',
1270 'Memoize::Expire' => '1.00',
1271 'Memoize::ExpireFile' => '1.01',
1272 'Net::FTP' => '2.65',
1273 'Net::FTP::dataconn' => '0.11',
1274 'Net::Ping' => '2.19',
1275 'Net::SMTP' => '2.24',
1277 'PerlIO::encoding' => '0.06',
1278 'PerlIO::scalar' => '0.01',
1279 'PerlIO::via' => '0.01',
1280 'PerlIO::via::QuotedPrint'=> '0.04',
1281 'Pod::Man' => '1.33',
1282 'Pod::Text' => '2.19',
1283 'Scalar::Util' => '1.07_00',
1284 'Storable' => '2.04',
1286 'Sys::Syslog' => '0.03',
1288 'Test::Builder' => '0.15',
1289 'Test::Harness' => '2.26',
1290 'Test::Harness::Straps' => '0.14',
1291 'Test::More' => '0.45',
1292 'Test::Simple' => '0.45',
1293 'Thread::Queue' => '2.00',
1294 'Thread::Semaphore' => '2.00',
1295 'Tie::File' => '0.93',
1296 'Tie::RefHash' => '1.30',
1297 'Unicode' => '3.2.0',
1298 'Unicode::Collate' => '0.12',
1299 'Unicode::Normalize' => '0.17',
1300 'XS::APItest' => '0.01',
1301 'attributes' => '0.05',
1307 'encoding' => '1.35',
1309 'threads' => '0.99',
1312 'Encode::Internal' => 1,
1313 'Encode::JP::Constants' => 1,
1314 'Encode::JP::ISO_2022_JP'=> 1,
1315 'Encode::JP::JIS' => 1,
1316 'Encode::JP::Tr' => 1,
1318 'Encode::Tcl::Escape' => 1,
1319 'Encode::Tcl::Extended' => 1,
1320 'Encode::Tcl::HanZi' => 1,
1321 'Encode::Tcl::Table' => 1,
1323 'Encode::iso10646_1' => 1,
1324 'Encode::usc2_le' => 1,
1325 'Encode::utf8' => 1,
1326 'PerlIO::Scalar' => 1,
1331 delta_from => 5.008,
1333 'Attribute::Handlers' => '0.78',
1334 'AutoLoader' => '5.60',
1335 'AutoSplit' => '1.04',
1337 'B::Asmdata' => '1.01',
1338 'B::Assembler' => '0.06',
1339 'B::Bblock' => '1.02',
1340 'B::Bytecode' => '1.01',
1342 'B::Concise' => '0.56',
1343 'B::Debug' => '1.01',
1344 'B::Deparse' => '0.64',
1345 'B::Disassembler' => '1.03',
1346 'B::Lint' => '1.02',
1347 'B::Terse' => '1.02',
1348 'Benchmark' => '1.051',
1349 'ByteLoader' => '0.05',
1351 'CGI::Carp' => '1.26',
1352 'CGI::Cookie' => '1.24',
1353 'CGI::Fast' => '1.041',
1354 'CGI::Pretty' => '1.07_00',
1355 'CGI::Util' => '1.31',
1356 'CPAN' => '1.76_01',
1357 'CPAN::FirstTime' => '1.60 ',
1358 'CPAN::Nox' => '1.03',
1359 'Class::Struct' => '0.63',
1361 'DB_File' => '1.806',
1362 'Data::Dumper' => '2.121',
1363 'Devel::DProf' => '20030813.00',
1364 'Devel::PPPort' => '2.007',
1365 'Devel::Peek' => '1.01',
1367 'Digest::MD5' => '2.27',
1368 'Encode' => '1.9801',
1369 'Encode::Alias' => '1.38',
1370 'Encode::Byte' => '1.23',
1371 'Encode::CJKConstants' => '1.02',
1372 'Encode::CN::HZ' => '1.05',
1373 'Encode::Config' => '1.07',
1374 'Encode::Encoder' => '0.07',
1375 'Encode::Encoding' => '1.33',
1376 'Encode::Guess' => '1.09',
1377 'Encode::JP::JIS7' => '1.12',
1378 'Encode::KR' => '1.23',
1379 'Encode::KR::2022_KR' => '1.06',
1380 'Encode::MIME::Header' => '1.09',
1381 'Encode::Unicode' => '1.40',
1382 'Encode::Unicode::UTF7' => '0.02',
1383 'English' => '1.01',
1384 'Errno' => '1.09_00',
1385 'Exporter' => '5.567',
1386 'Exporter::Heavy' => '5.567',
1387 'ExtUtils::Command' => '1.05',
1388 'ExtUtils::Command::MM' => '0.03',
1389 'ExtUtils::Constant' => '0.14',
1390 'ExtUtils::Install' => '1.32',
1391 'ExtUtils::Installed' => '0.08',
1392 'ExtUtils::Liblist' => '1.01',
1393 'ExtUtils::Liblist::Kid'=> '1.3',
1394 'ExtUtils::MM_Any' => '0.07',
1395 'ExtUtils::MM_BeOS' => '1.04',
1396 'ExtUtils::MM_Cygwin' => '1.06',
1397 'ExtUtils::MM_DOS' => '0.02',
1398 'ExtUtils::MM_MacOS' => '1.07',
1399 'ExtUtils::MM_NW5' => '2.06',
1400 'ExtUtils::MM_OS2' => '1.04',
1401 'ExtUtils::MM_UWIN' => '0.02',
1402 'ExtUtils::MM_Unix' => '1.42',
1403 'ExtUtils::MM_VMS' => '5.70',
1404 'ExtUtils::MM_Win32' => '1.09',
1405 'ExtUtils::MM_Win95' => '0.03',
1406 'ExtUtils::MakeMaker' => '6.17',
1407 'ExtUtils::MakeMaker::bytes'=> '0.01',
1408 'ExtUtils::MakeMaker::vmsish'=> '0.01',
1409 'ExtUtils::Manifest' => '1.42',
1411 'File::Basename' => '2.72',
1412 'File::Copy' => '2.06',
1413 'File::Find' => '1.05',
1414 'File::Glob' => '1.02',
1415 'File::Path' => '1.06',
1416 'File::Spec' => '0.86',
1417 'File::Spec::Cygwin' => '1.1',
1418 'File::Spec::Epoc' => '1.1',
1419 'File::Spec::Functions' => '1.3',
1420 'File::Spec::Mac' => '1.4',
1421 'File::Spec::OS2' => '1.2',
1422 'File::Spec::Unix' => '1.5',
1423 'File::Spec::VMS' => '1.4',
1424 'File::Spec::Win32' => '1.4',
1425 'File::Temp' => '0.14',
1426 'FileCache' => '1.03',
1427 'Filter::Util::Call' => '1.0601',
1428 'GDBM_File' => '1.07',
1429 'Getopt::Long' => '2.34',
1430 'Getopt::Std' => '1.04',
1431 'Hash::Util' => '0.05',
1432 'I18N::LangTags' => '0.28',
1433 'I18N::LangTags::List' => '0.26',
1434 'I18N::Langinfo' => '0.02',
1436 'IO::Dir' => '1.04',
1437 'IO::File' => '1.10',
1438 'IO::Handle' => '1.23',
1439 'IO::Seekable' => '1.09',
1440 'IO::Select' => '1.16',
1441 'IO::Socket' => '1.28',
1442 'IO::Socket::INET' => '1.27',
1443 'IO::Socket::UNIX' => '1.21',
1444 'IPC::Msg' => '1.02',
1445 'IPC::Open3' => '1.0105',
1446 'IPC::Semaphore' => '1.02',
1447 'IPC::SysV' => '1.04',
1449 'List::Util' => '1.13',
1450 'Locale::Country' => '2.61',
1451 'Locale::Currency' => '2.21',
1452 'Locale::Language' => '2.21',
1453 'Locale::Maketext' => '1.06',
1454 'Locale::Maketext::Guts'=> undef,
1455 'Locale::Maketext::GutsLoader'=> undef,
1456 'Locale::Script' => '2.21',
1457 'MIME::Base64' => '2.20',
1458 'MIME::QuotedPrint' => '2.20',
1459 'Math::BigFloat' => '1.40',
1460 'Math::BigInt' => '1.66',
1461 'Math::BigInt::Calc' => '0.36',
1462 'Math::BigInt::Scalar' => '0.11',
1463 'Math::BigRat' => '0.10',
1464 'Math::Trig' => '1.02',
1465 'NDBM_File' => '1.05',
1467 'Net::Cmd' => '2.24',
1468 'Net::Domain' => '2.18',
1469 'Net::FTP' => '2.71',
1470 'Net::FTP::A' => '1.16',
1471 'Net::NNTP' => '2.22',
1472 'Net::POP3' => '2.24',
1473 'Net::Ping' => '2.31',
1474 'Net::SMTP' => '2.26',
1475 'Net::hostent' => '1.01',
1476 'Net::servent' => '1.01',
1477 'ODBM_File' => '1.04',
1478 'OS2::DLL' => '1.01',
1479 'OS2::ExtAttr' => '0.02',
1480 'OS2::PrfDB' => '0.03',
1481 'OS2::Process' => '1.01',
1482 'OS2::REXX' => '1.02',
1485 'PerlIO::encoding' => '0.07',
1486 'PerlIO::scalar' => '0.02',
1487 'PerlIO::via' => '0.02',
1488 'PerlIO::via::QuotedPrint'=> '0.05',
1489 'Pod::Checker' => '1.41',
1490 'Pod::Find' => '0.24',
1491 'Pod::Functions' => '1.02',
1492 'Pod::Html' => '1.0501',
1493 'Pod::InputObjects' => '1.14',
1494 'Pod::LaTeX' => '0.55',
1495 'Pod::Man' => '1.37',
1496 'Pod::ParseLink' => '1.06',
1497 'Pod::ParseUtils' => '0.3',
1498 'Pod::Perldoc' => '3.10',
1499 'Pod::Perldoc::BaseTo' => undef,
1500 'Pod::Perldoc::GetOptsOO'=> undef,
1501 'Pod::Perldoc::ToChecker'=> undef,
1502 'Pod::Perldoc::ToMan' => undef,
1503 'Pod::Perldoc::ToNroff' => undef,
1504 'Pod::Perldoc::ToPod' => undef,
1505 'Pod::Perldoc::ToRtf' => undef,
1506 'Pod::Perldoc::ToText' => undef,
1507 'Pod::Perldoc::ToTk' => undef,
1508 'Pod::Perldoc::ToXml' => undef,
1509 'Pod::PlainText' => '2.01',
1510 'Pod::Text' => '2.21',
1511 'Pod::Text::Color' => '1.04',
1512 'Pod::Text::Overstrike' => '1.1',
1513 'Pod::Text::Termcap' => '1.11',
1514 'Pod::Usage' => '1.16',
1515 'SDBM_File' => '1.04',
1517 'Scalar::Util' => '1.13',
1518 'SelfLoader' => '1.0904',
1521 'Storable' => '2.08',
1524 'Sys::Hostname' => '1.11',
1525 'Sys::Syslog' => '0.04',
1526 'Term::ANSIColor' => '1.07',
1527 'Term::Cap' => '1.08',
1528 'Term::Complete' => '1.401',
1529 'Term::ReadLine' => '1.01',
1531 'Test::Builder' => '0.17',
1532 'Test::Harness' => '2.30',
1533 'Test::Harness::Straps' => '0.15',
1534 'Test::More' => '0.47',
1535 'Test::Simple' => '0.47',
1536 'Text::Abbrev' => '1.01',
1537 'Text::Balanced' => '1.95',
1538 'Text::Wrap' => '2001.09291',
1539 'Thread::Semaphore' => '2.01',
1540 'Tie::Array' => '1.03',
1541 'Tie::File' => '0.97',
1542 'Tie::RefHash' => '1.31',
1543 'Time::HiRes' => '1.51',
1544 'Time::Local' => '1.07',
1545 'UNIVERSAL' => '1.01',
1546 'Unicode' => '4.0.0',
1547 'Unicode::Collate' => '0.28',
1548 'Unicode::Normalize' => '0.23',
1549 'Unicode::UCD' => '0.21',
1550 'VMS::Filespec' => '1.11',
1551 'XS::APItest' => '0.02',
1552 'XSLoader' => '0.02',
1553 'attributes' => '0.06',
1559 'charnames' => '1.02',
1560 'diagnostics' => '1.11',
1561 'encoding' => '1.47',
1563 'filetest' => '1.01',
1567 'overload' => '1.01',
1571 'threads' => '1.00',
1572 'threads::shared' => '0.91',
1575 'warnings' => '1.03',
1581 delta_from => 5.008001,
1583 'DB_File' => '1.807',
1584 'Devel::PPPort' => '2.009',
1585 'Digest::MD5' => '2.30',
1586 'I18N::LangTags' => '0.29',
1587 'I18N::LangTags::List' => '0.29',
1588 'MIME::Base64' => '2.21',
1589 'MIME::QuotedPrint' => '2.21',
1590 'Net::Domain' => '2.19',
1591 'Net::FTP' => '2.72',
1592 'Pod::Perldoc' => '3.11',
1593 'Time::HiRes' => '1.52',
1594 'Unicode::Collate' => '0.30',
1595 'Unicode::Normalize' => '0.25',
1601 delta_from => 5.008002,
1603 'Benchmark' => '1.052',
1605 'CGI::Carp' => '1.27',
1606 'CGI::Fast' => '1.05',
1607 'CGI::Pretty' => '1.08',
1608 'CGI::Util' => '1.4',
1610 'DB_File' => '1.808',
1611 'Devel::PPPort' => '2.011',
1613 'Digest::MD5' => '2.33',
1614 'Digest::base' => '1.00',
1616 'Exporter' => '5.57',
1617 'File::CheckTree' => '4.3',
1618 'File::Copy' => '2.07',
1619 'File::Find' => '1.06',
1620 'File::Spec' => '0.87',
1621 'FindBin' => '1.44',
1622 'Getopt::Std' => '1.05',
1623 'Math::BigFloat' => '1.42',
1624 'Math::BigInt' => '1.68',
1625 'Math::BigInt::Calc' => '0.38',
1626 'Math::BigInt::CalcEmu' => '0.02',
1627 'OS2::DLL' => '1.02',
1630 'PerlIO::via::QuotedPrint'=> '0.06',
1631 'Pod::Html' => '1.0502',
1632 'Pod::Parser' => '1.14',
1633 'Pod::Perldoc' => '3.12',
1634 'Pod::PlainText' => '2.02',
1635 'Storable' => '2.09',
1636 'Test::Harness' => '2.40',
1637 'Test::Harness::Assert' => '0.02',
1638 'Test::Harness::Iterator'=> '0.02',
1639 'Test::Harness::Straps' => '0.19',
1640 'Tie::Hash' => '1.01',
1641 'Unicode::Collate' => '0.33',
1642 'Unicode::Normalize' => '0.28',
1643 'XS::APItest' => '0.03',
1645 'diagnostics' => '1.12',
1646 'encoding' => '1.48',
1647 'threads' => '1.01',
1648 'threads::shared' => '0.92',
1651 'Math::BigInt::Scalar' => 1,
1655 delta_from => 5.008003,
1657 'Attribute::Handlers' => '0.78_01',
1658 'B::Assembler' => '0.07',
1659 'B::Concise' => '0.60',
1660 'B::Deparse' => '0.66',
1661 'Benchmark' => '1.06',
1665 'DBM_Filter' => '0.01',
1666 'DBM_Filter::compress' => '0.01',
1667 'DBM_Filter::encode' => '0.01',
1668 'DBM_Filter::int32' => '0.01',
1669 'DBM_Filter::null' => '0.01',
1670 'DBM_Filter::utf8' => '0.01',
1672 'DynaLoader' => '1.05',
1673 'Encode' => '1.99_01',
1674 'Encode::CN::HZ' => '1.0501',
1675 'Exporter' => '5.58',
1676 'Exporter::Heavy' => '5.57',
1677 'ExtUtils::Liblist::Kid'=> '1.3001',
1678 'ExtUtils::MM_NW5' => '2.07_02',
1679 'ExtUtils::MM_Win95' => '0.0301',
1680 'File::Find' => '1.07',
1681 'IO::Handle' => '1.24',
1682 'IO::Pipe' => '1.123',
1683 'IPC::Open3' => '1.0106',
1684 'Locale::Maketext' => '1.08',
1685 'MIME::Base64' => '3.01',
1686 'MIME::QuotedPrint' => '3.01',
1687 'Math::BigFloat' => '1.44',
1688 'Math::BigInt' => '1.70',
1689 'Math::BigInt::Calc' => '0.40',
1690 'Math::BigInt::CalcEmu' => '0.04',
1691 'Math::BigRat' => '0.12',
1692 'ODBM_File' => '1.05',
1696 'Storable' => '2.12',
1697 'Sys::Syslog' => '0.05',
1698 'Term::ANSIColor' => '1.08',
1699 'Time::HiRes' => '1.59',
1700 'Unicode' => '4.0.1',
1701 'Unicode::UCD' => '0.22',
1705 'charnames' => '1.03',
1707 'threads' => '1.03',
1714 delta_from => 5.008004,
1716 'B::Concise' => '0.61',
1717 'B::Deparse' => '0.67',
1719 'CGI::Carp' => '1.28',
1720 'CGI::Util' => '1.5',
1722 'Carp::Heavy' => '1.03',
1724 'DB_File' => '1.809',
1727 'Encode::Alias' => '2.00',
1728 'Encode::Byte' => '2.00',
1729 'Encode::CJKConstants' => '2.00',
1730 'Encode::CN' => '2.00',
1731 'Encode::CN::HZ' => '2.01',
1732 'Encode::Config' => '2.00',
1733 'Encode::EBCDIC' => '2.00',
1734 'Encode::Encoder' => '2.00',
1735 'Encode::Encoding' => '2.00',
1736 'Encode::Guess' => '2.00',
1737 'Encode::JP' => '2.00',
1738 'Encode::JP::H2Z' => '2.00',
1739 'Encode::JP::JIS7' => '2.00',
1740 'Encode::KR' => '2.00',
1741 'Encode::KR::2022_KR' => '2.00',
1742 'Encode::MIME::Header' => '2.00',
1743 'Encode::Symbol' => '2.00',
1744 'Encode::TW' => '2.00',
1745 'Encode::Unicode' => '2.00',
1746 'Encode::Unicode::UTF7' => '2.01',
1747 'File::Basename' => '2.73',
1748 'File::Copy' => '2.08',
1749 'File::Glob' => '1.03',
1750 'FileCache' => '1.04_01',
1751 'I18N::LangTags' => '0.33',
1752 'I18N::LangTags::Detect'=> '1.03',
1753 'List::Util' => '1.14',
1754 'Locale::Constants' => '2.07',
1755 'Locale::Country' => '2.07',
1756 'Locale::Currency' => '2.07',
1757 'Locale::Language' => '2.07',
1758 'Locale::Maketext' => '1.09',
1759 'Locale::Script' => '2.07',
1760 'Net::Cmd' => '2.26',
1761 'Net::FTP' => '2.75',
1762 'Net::NNTP' => '2.23',
1763 'Net::POP3' => '2.28',
1764 'Net::SMTP' => '2.29',
1765 'Net::Time' => '2.10',
1766 'Pod::Checker' => '1.42',
1767 'Pod::Find' => '0.2401',
1768 'Pod::LaTeX' => '0.56',
1769 'Pod::ParseUtils' => '1.2',
1770 'Pod::Perldoc' => '3.13',
1772 'Scalar::Util' => '1.14',
1774 'Storable' => '2.13',
1775 'Term::Cap' => '1.09',
1777 'Test::Harness' => '2.42',
1778 'Text::ParseWords' => '3.22',
1779 'Text::Wrap' => '2001.09292',
1780 'Time::Local' => '1.10',
1781 'Unicode::Collate' => '0.40',
1782 'Unicode::Normalize' => '0.30',
1783 'XS::APItest' => '0.04',
1784 'autouse' => '1.04',
1786 'charnames' => '1.04',
1787 'diagnostics' => '1.13',
1788 'encoding' => '2.00',
1789 'threads' => '1.05',
1796 delta_from => 5.008005,
1800 'B::Concise' => '0.64',
1801 'B::Debug' => '1.02',
1802 'B::Deparse' => '0.69',
1803 'B::Lint' => '1.03',
1804 'B::Showlex' => '1.02',
1806 'DB_File' => '1.810',
1807 'Data::Dumper' => '2.121_02',
1808 'Devel::PPPort' => '3.03',
1809 'Devel::Peek' => '1.02',
1811 'Encode::Alias' => '2.02',
1812 'Encode::Encoding' => '2.02',
1813 'Encode::JP' => '2.01',
1814 'Encode::Unicode' => '2.02',
1815 'Exporter::Heavy' => '5.58',
1816 'ExtUtils::Constant' => '0.1401',
1817 'File::Spec' => '3.01',
1818 'File::Spec::Win32' => '1.5',
1819 'I18N::LangTags' => '0.35',
1820 'I18N::LangTags::List' => '0.35',
1821 'MIME::Base64' => '3.05',
1822 'MIME::QuotedPrint' => '3.03',
1823 'Math::BigFloat' => '1.47',
1824 'Math::BigInt' => '1.73',
1825 'Math::BigInt::Calc' => '0.43',
1826 'Math::BigRat' => '0.13',
1827 'Text::ParseWords' => '3.23',
1828 'Time::HiRes' => '1.65',
1829 'XS::APItest' => '0.05',
1830 'diagnostics' => '1.14',
1831 'encoding' => '2.01',
1833 'overload' => '1.02',
1839 delta_from => 5.008006,
1842 'B::Concise' => '0.65',
1843 'B::Deparse' => '0.7',
1844 'B::Disassembler' => '1.04',
1845 'B::Terse' => '1.03',
1846 'Benchmark' => '1.07',
1848 'CGI::Carp' => '1.29',
1849 'CGI::Cookie' => '1.25',
1851 'Carp::Heavy' => '1.04',
1852 'Class::ISA' => '0.33',
1854 'DB_File' => '1.811',
1855 'Data::Dumper' => '2.121_04',
1856 'Devel::DProf' => '20050310.00',
1857 'Devel::PPPort' => '3.06',
1859 'Digest::file' => '0.01',
1861 'Encode::Alias' => '2.03',
1862 'Errno' => '1.09_01',
1863 'ExtUtils::Constant' => '0.16',
1864 'ExtUtils::Constant::Base'=> '0.01',
1865 'ExtUtils::Constant::Utils'=> '0.01',
1866 'ExtUtils::Constant::XS'=> '0.01',
1867 'File::Find' => '1.09',
1868 'File::Glob' => '1.04',
1869 'File::Path' => '1.07',
1870 'File::Spec' => '3.05',
1871 'File::Temp' => '0.16',
1872 'FileCache' => '1.05',
1873 'IO::File' => '1.11',
1874 'IO::Socket::INET' => '1.28',
1875 'Math::BigFloat' => '1.51',
1876 'Math::BigInt' => '1.77',
1877 'Math::BigInt::Calc' => '0.47',
1878 'Math::BigInt::CalcEmu' => '0.05',
1879 'Math::BigRat' => '0.15',
1880 'Pod::Find' => '1.3',
1881 'Pod::Html' => '1.0503',
1882 'Pod::InputObjects' => '1.3',
1883 'Pod::LaTeX' => '0.58',
1884 'Pod::ParseUtils' => '1.3',
1885 'Pod::Parser' => '1.3',
1886 'Pod::Perldoc' => '3.14',
1887 'Pod::Select' => '1.3',
1888 'Pod::Usage' => '1.3',
1889 'SelectSaver' => '1.01',
1891 'Sys::Syslog' => '0.06',
1892 'Term::ANSIColor' => '1.09',
1893 'Term::Complete' => '1.402',
1894 'Test::Builder' => '0.22',
1895 'Test::Harness' => '2.48',
1896 'Test::Harness::Point' => '0.01',
1897 'Test::Harness::Straps' => '0.23',
1898 'Test::More' => '0.54',
1899 'Test::Simple' => '0.54',
1900 'Text::ParseWords' => '3.24',
1901 'Text::Wrap' => '2001.09293',
1902 'Tie::RefHash' => '1.32',
1903 'Time::HiRes' => '1.66',
1904 'Time::Local' => '1.11',
1905 'Unicode' => '4.1.0',
1906 'Unicode::Normalize' => '0.32',
1907 'Unicode::UCD' => '0.23',
1909 'XS::APItest' => '0.06',
1915 'constant' => '1.05',
1916 'overload' => '1.03',
1917 'threads::shared' => '0.93',
1922 'JPL::AutoLoader' => 1,
1924 'JPL::Compile' => 1,
1926 'OS2::ExtAttr' => 1,
1928 'OS2::Process' => 1,
1933 delta_from => 5.008007,
1935 'Attribute::Handlers' => '0.78_02',
1937 'B::Bblock' => '1.02_01',
1938 'B::Bytecode' => '1.01_01',
1939 'B::C' => '1.04_01',
1940 'B::CC' => '1.00_01',
1941 'B::Concise' => '0.66',
1942 'B::Debug' => '1.02_01',
1943 'B::Deparse' => '0.71',
1944 'B::Disassembler' => '1.05',
1945 'B::Terse' => '1.03_01',
1946 'ByteLoader' => '0.06',
1948 'CGI::Cookie' => '1.26',
1949 'CPAN' => '1.76_02',
1952 'DB_File' => '1.814',
1953 'Data::Dumper' => '2.121_08',
1954 'Devel::DProf' => '20050603.00',
1955 'Devel::PPPort' => '3.06_01',
1956 'Devel::Peek' => '1.03',
1958 'Digest::MD5' => '2.36',
1959 'Digest::file' => '1.00',
1960 'Dumpvalue' => '1.12',
1962 'Encode::Alias' => '2.04',
1963 'Encode::Config' => '2.01',
1964 'Encode::MIME::Header' => '2.01',
1965 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
1966 'English' => '1.02',
1967 'ExtUtils::Command' => '1.09',
1968 'ExtUtils::Command::MM' => '0.05',
1969 'ExtUtils::Constant' => '0.17',
1970 'ExtUtils::Embed' => '1.26',
1971 'ExtUtils::Install' => '1.33',
1972 'ExtUtils::Liblist::Kid'=> '1.3',
1973 'ExtUtils::MM' => '0.05',
1974 'ExtUtils::MM_AIX' => '0.03',
1975 'ExtUtils::MM_Any' => '0.13',
1976 'ExtUtils::MM_BeOS' => '1.05',
1977 'ExtUtils::MM_Cygwin' => '1.08',
1978 'ExtUtils::MM_MacOS' => '1.08',
1979 'ExtUtils::MM_NW5' => '2.08',
1980 'ExtUtils::MM_OS2' => '1.05',
1981 'ExtUtils::MM_QNX' => '0.02',
1982 'ExtUtils::MM_Unix' => '1.50',
1983 'ExtUtils::MM_VMS' => '5.73',
1984 'ExtUtils::MM_VOS' => '0.02',
1985 'ExtUtils::MM_Win32' => '1.12',
1986 'ExtUtils::MM_Win95' => '0.04',
1987 'ExtUtils::MakeMaker' => '6.30',
1988 'ExtUtils::MakeMaker::Config'=> '0.02',
1989 'ExtUtils::Manifest' => '1.46',
1990 'File::Basename' => '2.74',
1991 'File::Copy' => '2.09',
1992 'File::Find' => '1.10',
1993 'File::Glob' => '1.05',
1994 'File::Path' => '1.08',
1995 'File::Spec' => '3.12',
1996 'File::Spec::Win32' => '1.6',
1997 'FileCache' => '1.06',
1998 'Filter::Simple' => '0.82',
1999 'FindBin' => '1.47',
2000 'GDBM_File' => '1.08',
2001 'Getopt::Long' => '2.35',
2003 'IO::Dir' => '1.05',
2004 'IO::File' => '1.13',
2005 'IO::Handle' => '1.25',
2006 'IO::Pipe' => '1.13',
2007 'IO::Poll' => '0.07',
2008 'IO::Seekable' => '1.10',
2009 'IO::Select' => '1.17',
2010 'IO::Socket' => '1.29',
2011 'IO::Socket::INET' => '1.29',
2012 'IO::Socket::UNIX' => '1.22',
2013 'IPC::Open2' => '1.02',
2014 'IPC::Open3' => '1.02',
2015 'List::Util' => '1.18',
2016 'MIME::Base64' => '3.07',
2017 'MIME::QuotedPrint' => '3.07',
2018 'Math::Complex' => '1.35',
2019 'Math::Trig' => '1.03',
2020 'NDBM_File' => '1.06',
2021 'ODBM_File' => '1.06',
2025 'PerlIO::encoding' => '0.09',
2026 'PerlIO::scalar' => '0.04',
2027 'PerlIO::via' => '0.03',
2028 'Pod::Checker' => '1.43',
2029 'Pod::Find' => '1.34',
2030 'Pod::Functions' => '1.03',
2031 'Pod::Html' => '1.0504',
2032 'Pod::ParseUtils' => '1.33',
2033 'Pod::Parser' => '1.32',
2034 'Pod::Usage' => '1.33',
2035 'SDBM_File' => '1.05',
2037 'Scalar::Util' => '1.18',
2039 'Storable' => '2.15',
2040 'Switch' => '2.10_01',
2041 'Sys::Syslog' => '0.13',
2042 'Term::ANSIColor' => '1.10',
2043 'Term::ReadLine' => '1.02',
2044 'Test::Builder' => '0.32',
2045 'Test::Builder::Module' => '0.02',
2046 'Test::Builder::Tester' => '1.02',
2047 'Test::Builder::Tester::Color'=> undef,
2048 'Test::Harness' => '2.56',
2049 'Test::Harness::Straps' => '0.26',
2050 'Test::More' => '0.62',
2051 'Test::Simple' => '0.62',
2052 'Text::Tabs' => '2005.0824',
2053 'Text::Wrap' => '2005.082401',
2054 'Tie::Hash' => '1.02',
2055 'Time::HiRes' => '1.86',
2056 'Unicode::Collate' => '0.52',
2057 'Unicode::UCD' => '0.24',
2058 'User::grent' => '1.01',
2059 'Win32' => '0.2601',
2060 'XS::APItest' => '0.08',
2061 'XS::Typemap' => '0.02',
2062 'XSLoader' => '0.06',
2064 'autouse' => '1.05',
2066 'charnames' => '1.05',
2067 'diagnostics' => '1.15',
2068 'encoding' => '2.02',
2072 'overload' => '1.04',
2074 'threads' => '1.07',
2075 'threads::shared' => '0.94',
2078 'warnings' => '1.05',
2079 'warnings::register' => '1.01',
2085 delta_from => 5.008008,
2087 'Attribute::Handlers' => '0.78_03',
2088 'AutoLoader' => '5.67',
2089 'AutoSplit' => '1.06',
2091 'B::Asmdata' => '1.02',
2092 'B::Assembler' => '0.08',
2094 'B::Concise' => '0.76',
2095 'B::Debug' => '1.05',
2096 'B::Deparse' => '0.87',
2097 'B::Lint' => '1.11',
2098 'B::Lint::Debug' => undef,
2099 'B::Terse' => '1.05',
2100 'Benchmark' => '1.1',
2102 'CGI::Carp' => '1.30_01',
2103 'CGI::Cookie' => '1.29',
2104 'CGI::Fast' => '1.07',
2105 'CGI::Util' => '1.5_01',
2107 'CPAN::Debug' => '5.5',
2108 'CPAN::DeferedCode' => '5.50',
2109 'CPAN::Distroprefs' => '6',
2110 'CPAN::FirstTime' => '5.5_01',
2111 'CPAN::HandleConfig' => '5.5',
2112 'CPAN::Kwalify' => '5.50',
2113 'CPAN::Nox' => '5.50',
2114 'CPAN::Queue' => '5.5',
2115 'CPAN::Tarzip' => '5.5',
2116 'CPAN::Version' => '5.5',
2118 'Carp::Heavy' => '1.10',
2120 'DBM_Filter' => '0.02',
2121 'DBM_Filter::compress' => '0.02',
2122 'DBM_Filter::encode' => '0.02',
2123 'DBM_Filter::int32' => '0.02',
2124 'DBM_Filter::null' => '0.02',
2125 'DBM_Filter::utf8' => '0.02',
2126 'DB_File' => '1.817',
2127 'Data::Dumper' => '2.121_17',
2128 'Devel::DProf' => '20080331.00',
2129 'Devel::InnerPackage' => '0.3',
2130 'Devel::PPPort' => '3.14',
2131 'Devel::Peek' => '1.04',
2133 'Digest::MD5' => '2.37',
2134 'DirHandle' => '1.02',
2135 'DynaLoader' => '1.09',
2137 'Encode::Alias' => '2.10',
2138 'Encode::Byte' => '2.03',
2139 'Encode::CJKConstants' => '2.02',
2140 'Encode::CN' => '2.02',
2141 'Encode::CN::HZ' => '2.05',
2142 'Encode::Config' => '2.05',
2143 'Encode::EBCDIC' => '2.02',
2144 'Encode::Encoder' => '2.01',
2145 'Encode::Encoding' => '2.05',
2146 'Encode::GSM0338' => '2.01',
2147 'Encode::Guess' => '2.02',
2148 'Encode::JP' => '2.03',
2149 'Encode::JP::H2Z' => '2.02',
2150 'Encode::JP::JIS7' => '2.04',
2151 'Encode::KR' => '2.02',
2152 'Encode::KR::2022_KR' => '2.02',
2153 'Encode::MIME::Header' => '2.05',
2154 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2155 'Encode::MIME::Name' => '1.01',
2156 'Encode::Symbol' => '2.02',
2157 'Encode::TW' => '2.02',
2158 'Encode::Unicode' => '2.05',
2159 'Encode::Unicode::UTF7' => '2.04',
2160 'English' => '1.03',
2162 'Exporter' => '5.63',
2163 'Exporter::Heavy' => '5.63',
2164 'ExtUtils::Command' => '1.15',
2165 'ExtUtils::Command::MM' => '6.48',
2166 'ExtUtils::Constant' => '0.21',
2167 'ExtUtils::Constant::Base'=> '0.04',
2168 'ExtUtils::Constant::ProxySubs'=> '0.06',
2169 'ExtUtils::Constant::Utils'=> '0.02',
2170 'ExtUtils::Constant::XS'=> '0.02',
2171 'ExtUtils::Embed' => '1.28',
2172 'ExtUtils::Install' => '1.50_01',
2173 'ExtUtils::Installed' => '1.43',
2174 'ExtUtils::Liblist' => '6.48',
2175 'ExtUtils::Liblist::Kid'=> '6.48',
2176 'ExtUtils::MM' => '6.48',
2177 'ExtUtils::MM_AIX' => '6.48',
2178 'ExtUtils::MM_Any' => '6.48',
2179 'ExtUtils::MM_BeOS' => '6.48',
2180 'ExtUtils::MM_Cygwin' => '6.48',
2181 'ExtUtils::MM_DOS' => '6.48',
2182 'ExtUtils::MM_Darwin' => '6.48',
2183 'ExtUtils::MM_MacOS' => '6.48',
2184 'ExtUtils::MM_NW5' => '6.48',
2185 'ExtUtils::MM_OS2' => '6.48',
2186 'ExtUtils::MM_QNX' => '6.48',
2187 'ExtUtils::MM_UWIN' => '6.48',
2188 'ExtUtils::MM_Unix' => '6.48',
2189 'ExtUtils::MM_VMS' => '6.48',
2190 'ExtUtils::MM_VOS' => '6.48',
2191 'ExtUtils::MM_Win32' => '6.48',
2192 'ExtUtils::MM_Win95' => '6.48',
2193 'ExtUtils::MY' => '6.48',
2194 'ExtUtils::MakeMaker' => '6.48',
2195 'ExtUtils::MakeMaker::Config'=> '6.48',
2196 'ExtUtils::MakeMaker::bytes'=> '6.48',
2197 'ExtUtils::MakeMaker::vmsish'=> '6.48',
2198 'ExtUtils::Manifest' => '1.55',
2199 'ExtUtils::Mkbootstrap' => '6.48',
2200 'ExtUtils::Mksymlists' => '6.48',
2201 'ExtUtils::Packlist' => '1.43',
2202 'ExtUtils::ParseXS' => '2.19',
2203 'ExtUtils::XSSymSet' => '1.1',
2204 'ExtUtils::testlib' => '6.48',
2207 'File::Basename' => '2.77',
2208 'File::CheckTree' => '4.4',
2209 'File::Compare' => '1.1005',
2210 'File::Copy' => '2.13',
2211 'File::DosGlob' => '1.01',
2212 'File::Find' => '1.13',
2213 'File::Glob' => '1.06',
2214 'File::Path' => '2.07_02',
2215 'File::Spec' => '3.29',
2216 'File::Spec::Cygwin' => '3.29',
2217 'File::Spec::Epoc' => '3.29',
2218 'File::Spec::Functions' => '3.29',
2219 'File::Spec::Mac' => '3.29',
2220 'File::Spec::OS2' => '3.29',
2221 'File::Spec::Unix' => '3.29',
2222 'File::Spec::VMS' => '3.29',
2223 'File::Spec::Win32' => '3.29',
2224 'File::Temp' => '0.20',
2225 'File::stat' => '1.01',
2226 'FileCache' => '1.07',
2227 'Filter::Simple' => '0.83',
2228 'Filter::Util::Call' => '1.07',
2229 'FindBin' => '1.49',
2230 'GDBM_File' => '1.09',
2231 'Getopt::Long' => '2.37',
2232 'Getopt::Std' => '1.06',
2233 'Hash::Util' => '0.06',
2235 'IO::Dir' => '1.06',
2236 'IO::File' => '1.14',
2237 'IO::Handle' => '1.27',
2238 'IO::Socket' => '1.30',
2239 'IO::Socket::INET' => '1.31',
2240 'IO::Socket::UNIX' => '1.23',
2241 'IPC::Msg' => '2.00',
2242 'IPC::Open2' => '1.03',
2243 'IPC::Open3' => '1.03',
2244 'IPC::Semaphore' => '2.00',
2245 'IPC::SharedMem' => '2.00',
2246 'IPC::SysV' => '2.00',
2247 'List::Util' => '1.19',
2248 'Locale::Maketext' => '1.13',
2249 'Locale::Maketext::Guts'=> '1.13',
2250 'Locale::Maketext::GutsLoader'=> '1.13',
2251 'Math::BigFloat' => '1.60',
2252 'Math::BigInt' => '1.89',
2253 'Math::BigInt::Calc' => '0.52',
2254 'Math::BigRat' => '0.22',
2255 'Math::Complex' => '1.54',
2256 'Math::Trig' => '1.18',
2257 'Module::CoreList' => '2.17',
2258 'Module::Pluggable' => '3.8',
2259 'Module::Pluggable::Object'=> '3.6',
2260 'NDBM_File' => '1.07',
2262 'Net::Cmd' => '2.29',
2263 'Net::Config' => '1.11',
2264 'Net::Domain' => '2.20',
2265 'Net::FTP' => '2.77',
2266 'Net::FTP::A' => '1.18',
2267 'Net::NNTP' => '2.24',
2268 'Net::POP3' => '2.29',
2269 'Net::Ping' => '2.35',
2270 'Net::SMTP' => '2.31',
2272 'ODBM_File' => '1.07',
2273 'Opcode' => '1.0601',
2276 'PerlIO::encoding' => '0.11',
2277 'PerlIO::scalar' => '0.06',
2278 'PerlIO::via' => '0.05',
2279 'Pod::Html' => '1.09',
2280 'Pod::ParseUtils' => '1.35',
2281 'Pod::Parser' => '1.35',
2282 'Pod::Select' => '1.35',
2283 'Pod::Usage' => '1.35',
2284 'SDBM_File' => '1.06',
2286 'Scalar::Util' => '1.19',
2287 'SelfLoader' => '1.17',
2290 'Storable' => '2.19',
2292 'Sys::Syslog' => '0.27',
2293 'Sys::Syslog::win32::Win32'=> undef,
2294 'Term::ANSIColor' => '1.12',
2295 'Term::Cap' => '1.12',
2296 'Term::ReadLine' => '1.03',
2297 'Test::Builder' => '0.80',
2298 'Test::Builder::Module' => '0.80',
2299 'Test::Builder::Tester' => '1.13',
2300 'Test::Harness' => '2.64',
2301 'Test::Harness::Results'=> '0.01_01',
2302 'Test::Harness::Straps' => '0.26_01',
2303 'Test::Harness::Util' => '0.01',
2304 'Test::More' => '0.80',
2305 'Test::Simple' => '0.80',
2306 'Text::Balanced' => '1.98',
2307 'Text::ParseWords' => '3.27',
2308 'Text::Soundex' => '3.03',
2309 'Text::Tabs' => '2007.1117',
2310 'Text::Wrap' => '2006.1117',
2312 'Thread::Queue' => '2.11',
2313 'Thread::Semaphore' => '2.09',
2314 'Tie::Handle' => '4.2',
2315 'Tie::Hash' => '1.03',
2316 'Tie::Memoize' => '1.1',
2317 'Tie::RefHash' => '1.38',
2318 'Tie::Scalar' => '1.01',
2319 'Tie::StdHandle' => '4.2',
2320 'Time::HiRes' => '1.9715',
2321 'Time::Local' => '1.1901',
2322 'Time::gmtime' => '1.03',
2323 'Unicode' => '5.1.0',
2324 'Unicode::Normalize' => '1.02',
2325 'Unicode::UCD' => '0.25',
2326 'VMS::DCLsym' => '1.03',
2327 'VMS::Stdio' => '2.4',
2329 'Win32API::File' => '0.1001_01',
2330 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2331 'Win32CORE' => '0.02',
2332 'XS::APItest' => '0.15',
2333 'XS::Typemap' => '0.03',
2334 'XSLoader' => '0.10',
2335 'attributes' => '0.09',
2336 'autouse' => '1.06',
2342 'charnames' => '1.06',
2343 'constant' => '1.17',
2344 'diagnostics' => '1.16',
2345 'encoding' => '2.6_01',
2347 'filetest' => '1.02',
2351 'overload' => '1.06',
2353 'sigtrap' => '1.04',
2354 'threads' => '1.71',
2355 'threads::shared' => '1.27',
2357 'warnings' => '1.05_01',
2363 delta_from => 5.008002,
2367 'B::Concise' => '0.57',
2368 'B::Deparse' => '0.65',
2369 'DB_File' => '1.806',
2370 'Devel::PPPort' => '2.008',
2371 'English' => '1.02',
2373 'OS2::DLL' => '1.02',
2375 'Time::HiRes' => '1.51',
2376 'Unicode::Collate' => '0.28',
2377 'Unicode::Normalize' => '0.23',
2378 'XSLoader' => '0.03',
2379 'assertions' => '0.01',
2380 'assertions::activate' => '0.01',
2381 'overload' => '1.02',
2382 'version' => '0.29',
2388 delta_from => 5.008004,
2391 'B::Assembler' => '0.06',
2393 'B::Concise' => '0.59',
2394 'B::Debug' => '1.02',
2395 'B::Deparse' => '0.65',
2396 'DB_File' => '1.808_01',
2397 'Devel::PPPort' => '2.011_01',
2399 'DynaLoader' => '1.04',
2400 'English' => '1.02',
2401 'Exporter::Heavy' => '5.567',
2402 'ExtUtils::Command' => '1.07',
2403 'ExtUtils::Liblist::Kid'=> '1.3',
2404 'ExtUtils::MM_Any' => '0.0901',
2405 'ExtUtils::MM_Cygwin' => '1.07',
2406 'ExtUtils::MM_NW5' => '2.07_01',
2407 'ExtUtils::MM_Unix' => '1.45_01',
2408 'ExtUtils::MM_VMS' => '5.71_01',
2409 'ExtUtils::MM_Win32' => '1.10_01',
2410 'ExtUtils::MM_Win95' => '0.03',
2411 'ExtUtils::MakeMaker' => '6.21_02',
2412 'ExtUtils::Manifest' => '1.43',
2414 'Getopt::Long' => '2.3401',
2415 'IO::Handle' => '1.23',
2416 'IO::Pipe' => '1.122',
2417 'IPC::Open3' => '1.0105',
2418 'MIME::Base64' => '3.00_01',
2419 'MIME::QuotedPrint' => '3.00',
2420 'Memoize' => '1.01_01',
2421 'ODBM_File' => '1.04',
2424 'Storable' => '2.11',
2425 'Time::HiRes' => '1.56',
2426 'Time::Local' => '1.07_94',
2427 'UNIVERSAL' => '1.02',
2428 'Unicode' => '4.0.0',
2429 'Unicode::UCD' => '0.21',
2430 'XSLoader' => '0.03',
2431 'assertions' => '0.01',
2432 'assertions::activate' => '0.01',
2436 'overload' => '1.02',
2437 'threads' => '1.02',
2439 'version' => '0.36',
2445 delta_from => 5.008007,
2448 'B::Concise' => '0.64',
2449 'B::Deparse' => '0.69',
2450 'B::Disassembler' => '1.03',
2451 'B::Terse' => '1.02',
2453 'Config::Extensions' => '0.01',
2454 'Devel::DProf' => '20030813.00',
2455 'DynaLoader' => '1.07',
2457 'Encode::Alias' => '2.02',
2458 'English' => '1.03',
2459 'Exporter' => '5.59',
2460 'Exporter::Heavy' => '5.59',
2461 'ExtUtils::Command' => '1.07',
2462 'ExtUtils::Command::MM' => '0.03_01',
2463 'ExtUtils::Embed' => '1.26',
2464 'ExtUtils::Liblist::Kid'=> '1.3',
2465 'ExtUtils::MM_Any' => '0.10',
2466 'ExtUtils::MM_Cygwin' => '1.07',
2467 'ExtUtils::MM_MacOS' => '1.08',
2468 'ExtUtils::MM_NW5' => '2.07',
2469 'ExtUtils::MM_Unix' => '1.46_01',
2470 'ExtUtils::MM_VMS' => '5.71',
2471 'ExtUtils::MM_Win32' => '1.10',
2472 'ExtUtils::MM_Win95' => '0.03',
2473 'ExtUtils::MakeMaker' => '6.25',
2474 'ExtUtils::Manifest' => '1.44',
2476 'File::Path' => '1.06',
2477 'FileCache' => '1.04_01',
2478 'Getopt::Long' => '2.3401',
2479 'IO::File' => '1.10',
2480 'IO::Socket::INET' => '1.27',
2481 'Math::BigFloat' => '1.49',
2482 'Math::BigInt' => '1.75',
2483 'Math::BigInt::Calc' => '0.45',
2484 'Math::BigRat' => '0.14',
2485 'Memoize' => '1.01_01',
2486 'Module::CoreList' => '1.99',
2487 'NEXT' => '0.60_01',
2489 'Pod::Html' => '1.0502',
2490 'Scalar::Util' => '1.14_1',
2491 'Storable' => '2.14',
2493 'Test::Harness' => '2.46',
2494 'Test::Harness::Straps' => '0.20_01',
2495 'Text::Balanced' => '1.95_01',
2496 'Text::Wrap' => '2001.09292',
2497 'UNIVERSAL' => '1.02',
2498 'Unicode' => '4.0.1',
2499 'Unicode::Normalize' => '0.30',
2500 'Unicode::UCD' => '0.22',
2502 'XS::APItest' => '0.05',
2503 'XSLoader' => '0.03',
2504 'assertions' => '0.01',
2505 'assertions::activate' => '0.01',
2511 'encoding::warnings' => '0.05',
2514 'threads::shared' => '0.92',
2516 'version' => '0.42',
2517 'warnings' => '1.04',
2520 'Test::Harness::Point' => 1,
2524 delta_from => 5.008008,
2526 'Archive::Tar' => '1.26_01',
2527 'Archive::Tar::Constant'=> '0.02',
2528 'Archive::Tar::File' => '0.02',
2529 'AutoSplit' => '1.04_01',
2531 'B::Bblock' => '1.02',
2532 'B::Bytecode' => '1.01',
2535 'B::Concise' => '0.67',
2536 'B::Debug' => '1.02',
2537 'B::Deparse' => '0.73',
2538 'B::Lint' => '1.04',
2539 'B::Terse' => '1.03',
2541 'CPAN' => '1.83_58',
2542 'CPAN::Debug' => '4.44',
2543 'CPAN::FirstTime' => '4.50',
2544 'CPAN::HandleConfig' => '4.31',
2545 'CPAN::Nox' => '2.31',
2546 'CPAN::Tarzip' => '3.36',
2547 'CPAN::Version' => '2.55',
2549 'Carp::Heavy' => '1.05',
2550 'Compress::Zlib' => '2.000_07',
2551 'Compress::Zlib::Common'=> '2.000_07',
2552 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2553 'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2554 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2555 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2556 'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2557 'Compress::Zlib::FileConstants'=> '2.000_07',
2558 'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2559 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2560 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2561 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2562 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2563 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2564 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2565 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2566 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2567 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2568 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2569 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2570 'Compress::Zlib::ParseParameters'=> '2.000_07',
2571 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2572 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2573 'Config::Extensions' => '0.01',
2575 'Devel::PPPort' => '3.08',
2576 'Digest::SHA' => '5.32',
2577 'DirHandle' => '1.01',
2578 'DynaLoader' => '1.07',
2580 'Encode::CN::HZ' => '2.02',
2581 'Encode::MIME::Header' => '2.02',
2582 'English' => '1.04',
2583 'Exporter' => '5.59',
2584 'Exporter::Heavy' => '5.59',
2585 'ExtUtils::CBuilder' => '0.15',
2586 'ExtUtils::CBuilder::Base'=> '0.12',
2587 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2588 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2589 'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2590 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2591 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2592 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2593 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2594 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2595 'ExtUtils::Command::MM' => '0.05_01',
2596 'ExtUtils::Constant' => '0.2',
2597 'ExtUtils::Constant::Base'=> '0.02',
2598 'ExtUtils::Constant::ProxySubs'=> '0.01',
2599 'ExtUtils::Constant::XS'=> '0.02',
2600 'ExtUtils::MM_Any' => '0.13_01',
2601 'ExtUtils::MM_Unix' => '1.50_01',
2602 'ExtUtils::MakeMaker' => '6.30_01',
2603 'ExtUtils::ParseXS' => '2.15_02',
2605 'File::Compare' => '1.1005',
2606 'File::Spec' => '3.15',
2607 'File::Temp' => '0.16_01',
2608 'IO::File' => '1.13_01',
2609 'IO::Handle' => '1.26',
2610 'IO::Socket' => '1.29_01',
2611 'IO::Socket::INET' => '1.29_02',
2612 'IO::Socket::UNIX' => '1.22_01',
2613 'IO::Zlib' => '1.04_02',
2614 'Locale::Maketext' => '1.10_01',
2615 'Math::BigInt::FastCalc'=> '0.10',
2616 'Memoize' => '1.01_01',
2617 'Module::CoreList' => '2.02',
2618 'Moped::Msg' => '0.01',
2619 'NEXT' => '0.60_01',
2620 'Net::Cmd' => '2.26_01',
2621 'Net::Domain' => '2.19_01',
2622 'Net::Ping' => '2.31_04',
2625 'Pod::Escapes' => '1.04',
2626 'Pod::Man' => '2.04',
2627 'Pod::Perldoc' => '3.14_01',
2628 'Pod::Simple' => '3.04',
2629 'Pod::Simple::BlackBox' => undef,
2630 'Pod::Simple::Checker' => '2.02',
2631 'Pod::Simple::Debug' => undef,
2632 'Pod::Simple::DumpAsText'=> '2.02',
2633 'Pod::Simple::DumpAsXML'=> '2.02',
2634 'Pod::Simple::HTML' => '3.03',
2635 'Pod::Simple::HTMLBatch'=> '3.02',
2636 'Pod::Simple::HTMLLegacy'=> '5.01',
2637 'Pod::Simple::LinkSection'=> undef,
2638 'Pod::Simple::Methody' => '2.02',
2639 'Pod::Simple::Progress' => '1.01',
2640 'Pod::Simple::PullParser'=> '2.02',
2641 'Pod::Simple::PullParserEndToken'=> undef,
2642 'Pod::Simple::PullParserStartToken'=> undef,
2643 'Pod::Simple::PullParserTextToken'=> undef,
2644 'Pod::Simple::PullParserToken'=> '2.02',
2645 'Pod::Simple::RTF' => '2.02',
2646 'Pod::Simple::Search' => '3.04',
2647 'Pod::Simple::SimpleTree'=> '2.02',
2648 'Pod::Simple::Text' => '2.02',
2649 'Pod::Simple::TextContent'=> '2.02',
2650 'Pod::Simple::TiedOutFH'=> undef,
2651 'Pod::Simple::Transcode'=> undef,
2652 'Pod::Simple::TranscodeDumb'=> '2.02',
2653 'Pod::Simple::TranscodeSmart'=> undef,
2654 'Pod::Simple::XMLOutStream'=> '2.02',
2655 'Pod::Text' => '3.01',
2656 'Pod::Text::Color' => '2.01',
2657 'Pod::Text::Overstrike' => '2',
2658 'Pod::Text::Termcap' => '2.01',
2659 'Pod::Usage' => '1.33_01',
2660 'SelfLoader' => '1.0905',
2661 'Storable' => '2.15_02',
2662 'Test::Builder::Module' => '0.03',
2663 'Text::Balanced' => '1.95_01',
2664 'Tie::File' => '0.97_01',
2665 'UNIVERSAL' => '1.03',
2666 'XS::APItest' => '0.09',
2667 'assertions' => '0.02',
2668 'assertions::activate' => '0.02',
2669 'assertions::compat' => undef,
2670 'constant' => '1.07',
2671 'encoding::warnings' => '0.05',
2672 'feature' => '1.00',
2675 'version' => '0.53',
2681 delta_from => 5.009003,
2683 'Archive::Tar' => '1.30_01',
2684 'AutoLoader' => '5.61',
2686 'B::Bytecode' => '1.02',
2688 'B::Concise' => '0.69',
2689 'B::Deparse' => '0.76',
2690 'B::Lint' => '1.08',
2691 'Benchmark' => '1.08',
2693 'CGI::Cookie' => '1.27',
2694 'CGI::Fast' => '1.07',
2695 'CPAN' => '1.87_55',
2696 'CPAN::Debug' => '5.400561',
2697 'CPAN::FirstTime' => '5.400742',
2698 'CPAN::HandleConfig' => '5.400740',
2699 'CPAN::Nox' => '5.400561',
2700 'CPAN::Tarzip' => '5.400714',
2701 'CPAN::Version' => '5.400561',
2702 'Compress::Raw::Zlib' => '2.000_13',
2703 'Compress::Zlib' => '2.000_13',
2705 'Devel::PPPort' => '3.10',
2707 'Digest::SHA' => '5.43',
2708 'Encode' => '2.18_01',
2709 'Encode::Alias' => '2.06',
2710 'Encode::Byte' => '2.02',
2711 'Encode::CJKConstants' => '2.02',
2712 'Encode::CN' => '2.02',
2713 'Encode::CN::HZ' => '2.04',
2714 'Encode::Config' => '2.03',
2715 'Encode::EBCDIC' => '2.02',
2716 'Encode::Encoder' => '2.01',
2717 'Encode::Encoding' => '2.04',
2718 'Encode::Guess' => '2.02',
2719 'Encode::JP' => '2.03',
2720 'Encode::JP::H2Z' => '2.02',
2721 'Encode::JP::JIS7' => '2.02',
2722 'Encode::KR' => '2.02',
2723 'Encode::KR::2022_KR' => '2.02',
2724 'Encode::MIME::Header' => '2.04',
2725 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2726 'Encode::Symbol' => '2.02',
2727 'Encode::TW' => '2.02',
2728 'Encode::Unicode' => '2.03',
2729 'Encode::Unicode::UTF7' => '2.04',
2730 'ExtUtils::CBuilder' => '0.18',
2731 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2732 'ExtUtils::Constant::Base'=> '0.03',
2733 'ExtUtils::Constant::ProxySubs'=> '0.03',
2734 'ExtUtils::Install' => '1.41',
2735 'ExtUtils::Installed' => '1.41',
2736 'ExtUtils::MM_Any' => '0.13_02',
2737 'ExtUtils::MM_NW5' => '2.08_01',
2738 'ExtUtils::MM_Unix' => '1.5003',
2739 'ExtUtils::MM_VMS' => '5.73_03',
2740 'ExtUtils::MM_Win32' => '1.12_02',
2741 'ExtUtils::MM_Win95' => '0.04_01',
2742 'ExtUtils::MakeMaker' => '6.30_02',
2743 'ExtUtils::Manifest' => '1.46_01',
2744 'ExtUtils::Mkbootstrap' => '1.15_01',
2745 'ExtUtils::Mksymlists' => '1.19_01',
2746 'ExtUtils::Packlist' => '1.41',
2747 'File::Basename' => '2.75',
2748 'File::Find' => '1.11',
2749 'File::GlobMapper' => '0.000_02',
2750 'File::Spec' => '3.19',
2751 'FileCache' => '1.07',
2752 'Getopt::Long' => '2.3501',
2753 'Hash::Util' => '0.07',
2754 'Hash::Util::FieldHash' => '0.01',
2756 'IO::Compress::Adapter::Deflate'=> '2.000_13',
2757 'IO::Compress::Adapter::Identity'=> '2.000_13',
2758 'IO::Compress::Base' => '2.000_13',
2759 'IO::Compress::Base::Common'=> '2.000_13',
2760 'IO::Compress::Deflate' => '2.000_13',
2761 'IO::Compress::Gzip' => '2.000_13',
2762 'IO::Compress::Gzip::Constants'=> '2.000_13',
2763 'IO::Compress::RawDeflate'=> '2.000_13',
2764 'IO::Compress::Zip' => '2.000_13',
2765 'IO::Compress::Zip::Constants'=> '2.000_13',
2766 'IO::Compress::Zlib::Constants'=> '2.000_13',
2767 'IO::Compress::Zlib::Extra'=> '2.000_13',
2768 'IO::Dir' => '1.06',
2769 'IO::File' => '1.14',
2770 'IO::Handle' => '1.27',
2771 'IO::Socket' => '1.30_01',
2772 'IO::Socket::INET' => '1.31',
2773 'IO::Socket::UNIX' => '1.23',
2774 'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2775 'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2776 'IO::Uncompress::AnyInflate'=> '2.000_13',
2777 'IO::Uncompress::AnyUncompress'=> '2.000_13',
2778 'IO::Uncompress::Base' => '2.000_13',
2779 'IO::Uncompress::Gunzip'=> '2.000_13',
2780 'IO::Uncompress::Inflate'=> '2.000_13',
2781 'IO::Uncompress::RawInflate'=> '2.000_13',
2782 'IO::Uncompress::Unzip' => '2.000_13',
2783 'MIME::Base64' => '3.07_01',
2784 'Math::Complex' => '1.36',
2785 'Math::Trig' => '1.04',
2786 'Module::Build' => '0.2805',
2787 'Module::Build::Base' => undef,
2788 'Module::Build::Compat' => '0.03',
2789 'Module::Build::ConfigData'=> undef,
2790 'Module::Build::Cookbook'=> undef,
2791 'Module::Build::ModuleInfo'=> undef,
2792 'Module::Build::Notes' => undef,
2793 'Module::Build::PPMMaker'=> undef,
2794 'Module::Build::Platform::Amiga'=> undef,
2795 'Module::Build::Platform::Default'=> undef,
2796 'Module::Build::Platform::EBCDIC'=> undef,
2797 'Module::Build::Platform::MPEiX'=> undef,
2798 'Module::Build::Platform::MacOS'=> undef,
2799 'Module::Build::Platform::RiscOS'=> undef,
2800 'Module::Build::Platform::Unix'=> undef,
2801 'Module::Build::Platform::VMS'=> undef,
2802 'Module::Build::Platform::VOS'=> undef,
2803 'Module::Build::Platform::Windows'=> undef,
2804 'Module::Build::Platform::aix'=> undef,
2805 'Module::Build::Platform::cygwin'=> undef,
2806 'Module::Build::Platform::darwin'=> undef,
2807 'Module::Build::Platform::os2'=> undef,
2808 'Module::Build::PodParser'=> undef,
2809 'Module::Build::Version'=> '0',
2810 'Module::Build::YAML' => '0.50',
2811 'Module::CoreList' => '2.08',
2812 'Module::Load' => '0.10',
2813 'Module::Loaded' => '0.01',
2814 'Package::Constants' => '0.01',
2815 'Pod::Html' => '1.07',
2816 'Pod::Man' => '2.09',
2817 'Pod::Text' => '3.07',
2818 'Pod::Text::Color' => '2.03',
2819 'Pod::Text::Termcap' => '2.03',
2820 'SDBM_File' => '1.06',
2822 'Sys::Syslog' => '0.17',
2823 'Term::ANSIColor' => '1.11',
2824 'Test::Builder' => '0.33',
2825 'Test::Builder::Tester' => '1.04',
2826 'Test::Harness' => '2.62',
2827 'Test::Harness::Util' => '0.01',
2828 'Test::More' => '0.64',
2829 'Test::Simple' => '0.64',
2830 'Text::Balanced' => '1.98_01',
2831 'Text::ParseWords' => '3.25',
2832 'Text::Tabs' => '2007.071101',
2833 'Text::Wrap' => '2006.0711',
2834 'Tie::RefHash' => '1.34_01',
2835 'Time::HiRes' => '1.87',
2836 'Time::Local' => '1.13',
2837 'Time::gmtime' => '1.03',
2838 'UNIVERSAL' => '1.04',
2839 'Unicode::Normalize' => '1.01',
2840 'Win32API::File' => '0.1001',
2841 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2842 'assertions' => '0.03',
2843 'assertions::compat' => '0.02',
2844 'autouse' => '1.06',
2845 'diagnostics' => '1.16',
2846 'encoding' => '2.04',
2847 'encoding::warnings' => '0.10',
2848 'feature' => '1.01',
2850 'threads' => '1.38',
2851 'threads::shared' => '0.94_01',
2852 'version' => '0.67',
2855 'Compress::Zlib::Common'=> 1,
2856 'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2857 'Compress::Zlib::Compress::Zip::Constants'=> 1,
2858 'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2859 'Compress::Zlib::CompressPlugin::Identity'=> 1,
2860 'Compress::Zlib::File::GlobMapper'=> 1,
2861 'Compress::Zlib::FileConstants'=> 1,
2862 'Compress::Zlib::IO::Compress::Base'=> 1,
2863 'Compress::Zlib::IO::Compress::Deflate'=> 1,
2864 'Compress::Zlib::IO::Compress::Gzip'=> 1,
2865 'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2866 'Compress::Zlib::IO::Compress::Zip'=> 1,
2867 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2868 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2869 'Compress::Zlib::IO::Uncompress::Base'=> 1,
2870 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2871 'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2872 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2873 'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2874 'Compress::Zlib::ParseParameters'=> 1,
2875 'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2876 'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2880 delta_from => 5.009004,
2882 'Archive::Extract' => '0.22_01',
2883 'Archive::Tar' => '1.32',
2884 'Attribute::Handlers' => '0.78_06',
2885 'AutoLoader' => '5.63',
2886 'AutoSplit' => '1.05',
2888 'B::Concise' => '0.72',
2889 'B::Debug' => '1.05',
2890 'B::Deparse' => '0.82',
2891 'B::Lint' => '1.09',
2892 'B::Terse' => '1.05',
2893 'Benchmark' => '1.1',
2895 'CGI::Cookie' => '1.28',
2896 'CGI::Util' => '1.5_01',
2898 'CPAN::Debug' => '5.400955',
2899 'CPAN::FirstTime' => '5.401669',
2900 'CPAN::HandleConfig' => '5.401744',
2901 'CPAN::Kwalify' => '5.401418',
2902 'CPAN::Nox' => '5.400844',
2903 'CPAN::Queue' => '5.401704',
2904 'CPAN::Tarzip' => '5.401717',
2905 'CPAN::Version' => '5.401387',
2906 'CPANPLUS' => '0.81_01',
2907 'CPANPLUS::Backend' => undef,
2908 'CPANPLUS::Backend::RV' => undef,
2909 'CPANPLUS::Config' => undef,
2910 'CPANPLUS::Configure' => undef,
2911 'CPANPLUS::Configure::Setup'=> undef,
2912 'CPANPLUS::Dist' => undef,
2913 'CPANPLUS::Dist::Base' => '0.01',
2914 'CPANPLUS::Dist::Build' => '0.06_01',
2915 'CPANPLUS::Dist::Build::Constants'=> '0.01',
2916 'CPANPLUS::Dist::MM' => undef,
2917 'CPANPLUS::Dist::Sample'=> undef,
2918 'CPANPLUS::Error' => undef,
2919 'CPANPLUS::Internals' => '0.81_01',
2920 'CPANPLUS::Internals::Constants'=> '0.01',
2921 'CPANPLUS::Internals::Constants::Report'=> '0.01',
2922 'CPANPLUS::Internals::Extract'=> undef,
2923 'CPANPLUS::Internals::Fetch'=> undef,
2924 'CPANPLUS::Internals::Report'=> undef,
2925 'CPANPLUS::Internals::Search'=> undef,
2926 'CPANPLUS::Internals::Source'=> undef,
2927 'CPANPLUS::Internals::Utils'=> undef,
2928 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
2929 'CPANPLUS::Module' => undef,
2930 'CPANPLUS::Module::Author'=> undef,
2931 'CPANPLUS::Module::Author::Fake'=> undef,
2932 'CPANPLUS::Module::Checksums'=> undef,
2933 'CPANPLUS::Module::Fake'=> undef,
2934 'CPANPLUS::Module::Signature'=> undef,
2935 'CPANPLUS::Selfupdate' => undef,
2936 'CPANPLUS::Shell' => undef,
2937 'CPANPLUS::Shell::Classic'=> '0.0562',
2938 'CPANPLUS::Shell::Default'=> '0.81_01',
2939 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
2940 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
2941 'CPANPLUS::inc' => undef,
2943 'Carp::Heavy' => '1.07',
2944 'Compress::Raw::Zlib' => '2.005',
2945 'Compress::Zlib' => '2.005',
2947 'DBM_Filter' => '0.02',
2948 'DB_File' => '1.815',
2949 'Data::Dumper' => '2.121_13',
2950 'Devel::InnerPackage' => '0.3',
2951 'Devel::PPPort' => '3.11_01',
2952 'Digest::MD5' => '2.36_01',
2953 'Digest::SHA' => '5.44',
2954 'DynaLoader' => '1.08',
2956 'Encode::Alias' => '2.07',
2957 'Encode::Byte' => '2.03',
2958 'Encode::Config' => '2.04',
2959 'Encode::Encoding' => '2.05',
2960 'Encode::GSM0338' => '2.00',
2961 'Encode::JP::JIS7' => '2.03',
2962 'Encode::MIME::Header' => '2.05',
2963 'Encode::MIME::Name' => '1.01',
2964 'Encode::Unicode' => '2.05',
2966 'Exporter' => '5.60',
2967 'Exporter::Heavy' => '5.60',
2968 'ExtUtils::CBuilder' => '0.19',
2969 'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
2970 'ExtUtils::Command' => '1.13',
2971 'ExtUtils::Command::MM' => '0.07',
2972 'ExtUtils::Constant::Base'=> '0.04',
2973 'ExtUtils::Install' => '1.41_01',
2974 'ExtUtils::Liblist' => '1.03',
2975 'ExtUtils::Liblist::Kid'=> '1.33',
2976 'ExtUtils::MM' => '0.07',
2977 'ExtUtils::MM_AIX' => '0.05',
2978 'ExtUtils::MM_Any' => '0.15',
2979 'ExtUtils::MM_BeOS' => '1.07',
2980 'ExtUtils::MM_Cygwin' => '1.1',
2981 'ExtUtils::MM_DOS' => '0.04',
2982 'ExtUtils::MM_MacOS' => '1.1',
2983 'ExtUtils::MM_NW5' => '2.1',
2984 'ExtUtils::MM_OS2' => '1.07',
2985 'ExtUtils::MM_QNX' => '0.04',
2986 'ExtUtils::MM_UWIN' => '0.04',
2987 'ExtUtils::MM_Unix' => '1.54_01',
2988 'ExtUtils::MM_VMS' => '5.76',
2989 'ExtUtils::MM_VOS' => '0.04',
2990 'ExtUtils::MM_Win32' => '1.15',
2991 'ExtUtils::MM_Win95' => '0.06',
2992 'ExtUtils::MY' => '0.03',
2993 'ExtUtils::MakeMaker' => '6.36',
2994 'ExtUtils::MakeMaker::Config'=> '0.04',
2995 'ExtUtils::MakeMaker::bytes'=> '0.03',
2996 'ExtUtils::MakeMaker::vmsish'=> '0.03',
2997 'ExtUtils::Manifest' => '1.51_01',
2998 'ExtUtils::Mkbootstrap' => '1.17',
2999 'ExtUtils::Mksymlists' => '1.21',
3000 'ExtUtils::ParseXS' => '2.18',
3001 'ExtUtils::XSSymSet' => '1.1',
3002 'ExtUtils::testlib' => '1.17',
3005 'File::Basename' => '2.76',
3006 'File::Copy' => '2.10',
3007 'File::Fetch' => '0.10',
3008 'File::Glob' => '1.06',
3009 'File::Path' => '2.01',
3010 'File::Spec' => '3.25',
3011 'File::Spec::Cygwin' => '1.1_01',
3012 'File::Spec::VMS' => '1.4_01',
3013 'File::Temp' => '0.18',
3014 'Filter::Util::Call' => '1.0602',
3015 'FindBin' => '1.49',
3016 'Getopt::Long' => '2.36',
3017 'Hash::Util::FieldHash' => '1.01',
3018 'IO::Compress::Adapter::Deflate'=> '2.005',
3019 'IO::Compress::Adapter::Identity'=> '2.005',
3020 'IO::Compress::Base' => '2.005',
3021 'IO::Compress::Base::Common'=> '2.005',
3022 'IO::Compress::Deflate' => '2.005',
3023 'IO::Compress::Gzip' => '2.005',
3024 'IO::Compress::Gzip::Constants'=> '2.005',
3025 'IO::Compress::RawDeflate'=> '2.005',
3026 'IO::Compress::Zip' => '2.005',
3027 'IO::Compress::Zip::Constants'=> '2.005',
3028 'IO::Compress::Zlib::Constants'=> '2.005',
3029 'IO::Compress::Zlib::Extra'=> '2.005',
3030 'IO::Uncompress::Adapter::Identity'=> '2.005',
3031 'IO::Uncompress::Adapter::Inflate'=> '2.005',
3032 'IO::Uncompress::AnyInflate'=> '2.005',
3033 'IO::Uncompress::AnyUncompress'=> '2.005',
3034 'IO::Uncompress::Base' => '2.005',
3035 'IO::Uncompress::Gunzip'=> '2.005',
3036 'IO::Uncompress::Inflate'=> '2.005',
3037 'IO::Uncompress::RawInflate'=> '2.005',
3038 'IO::Uncompress::Unzip' => '2.005',
3039 'IO::Zlib' => '1.05_01',
3040 'IPC::Cmd' => '0.36_01',
3041 'List::Util' => '1.19',
3042 'Locale::Maketext::Simple'=> '0.18',
3043 'Log::Message' => '0.01',
3044 'Log::Message::Config' => '0.01',
3045 'Log::Message::Handlers'=> undef,
3046 'Log::Message::Item' => undef,
3047 'Log::Message::Simple' => '0.0201',
3048 'Math::BigFloat' => '1.58',
3049 'Math::BigInt' => '1.87',
3050 'Math::BigInt::Calc' => '0.51',
3051 'Math::BigInt::FastCalc'=> '0.15_01',
3052 'Math::BigRat' => '0.19',
3053 'Math::Complex' => '1.37',
3054 'Memoize' => '1.01_02',
3055 'Module::Build' => '0.2808',
3056 'Module::Build::Config' => undef,
3057 'Module::Build::Version'=> '0.7203',
3058 'Module::CoreList' => '2.12',
3059 'Module::Load::Conditional'=> '0.16',
3060 'Module::Pluggable' => '3.6',
3061 'Module::Pluggable::Object'=> '3.6',
3062 'NDBM_File' => '1.07',
3063 'Net::Cmd' => '2.28',
3064 'Net::Config' => '1.11',
3065 'Net::Domain' => '2.20',
3066 'Net::FTP' => '2.77',
3067 'Net::FTP::A' => '1.18',
3068 'Net::NNTP' => '2.24',
3069 'Net::POP3' => '2.29',
3070 'Net::SMTP' => '2.31',
3071 'ODBM_File' => '1.07',
3072 'Object::Accessor' => '0.32',
3075 'Params::Check' => '0.26',
3076 'PerlIO::encoding' => '0.10',
3077 'PerlIO::scalar' => '0.05',
3078 'PerlIO::via' => '0.04',
3079 'Pod::Html' => '1.08',
3080 'Pod::Man' => '2.12',
3081 'Pod::ParseUtils' => '1.35',
3082 'Pod::Parser' => '1.35',
3083 'Pod::Select' => '1.35',
3084 'Pod::Simple' => '3.05',
3085 'Pod::Text' => '3.08',
3086 'Pod::Usage' => '1.35',
3087 'Scalar::Util' => '1.19',
3088 'SelfLoader' => '1.11',
3089 'Shell' => '0.72_01',
3091 'Storable' => '2.16',
3093 'Sys::Syslog' => '0.18_01',
3094 'Term::ANSIColor' => '1.12',
3095 'Term::UI' => '0.14_01',
3096 'Term::UI::History' => undef,
3097 'Test::Builder' => '0.70',
3098 'Test::Builder::Module' => '0.68',
3099 'Test::Builder::Tester' => '1.07',
3100 'Test::Harness' => '2.64',
3101 'Test::Harness::Results'=> '0.01',
3102 'Test::More' => '0.70',
3103 'Test::Simple' => '0.70',
3104 'Text::Balanced' => '2.0.0',
3105 'Text::Soundex' => '3.02',
3106 'Text::Tabs' => '2007.1117',
3107 'Text::Wrap' => '2006.1117',
3109 'Tie::File' => '0.97_02',
3110 'Tie::Hash::NamedCapture'=> '0.06',
3111 'Tie::Memoize' => '1.1',
3112 'Tie::RefHash' => '1.37',
3113 'Time::HiRes' => '1.9707',
3114 'Time::Local' => '1.17',
3115 'Time::Piece' => '1.11_02',
3116 'Time::Seconds' => undef,
3117 'Unicode' => '5.0.0',
3118 'Unicode::Normalize' => '1.02',
3119 'Unicode::UCD' => '0.25',
3120 'VMS::DCLsym' => '1.03',
3122 'Win32API::File' => '0.1001_01',
3123 'Win32CORE' => '0.02',
3124 'XS::APItest' => '0.12',
3125 'XSLoader' => '0.08',
3126 'attributes' => '0.08',
3132 'charnames' => '1.06',
3133 'constant' => '1.10',
3134 'diagnostics' => '1.17',
3135 'encoding' => '2.06',
3136 'encoding::warnings' => '0.11',
3137 'feature' => '1.10',
3141 'overload' => '1.06',
3143 'sigtrap' => '1.04',
3146 'threads' => '1.63',
3147 'threads::shared' => '1.12',
3149 'version' => '0.7203',
3150 'warnings' => '1.06',
3154 'B::Assembler' => 1,
3159 'B::Disassembler' => 1,
3163 'Thread::Signal' => 1,
3164 'Thread::Specific' => 1,
3166 'assertions::activate' => 1,
3167 'assertions::compat' => 1,
3171 delta_from => 5.009005,
3173 'Archive::Extract' => '0.24',
3174 'Archive::Tar' => '1.38',
3175 'Attribute::Handlers' => '0.79',
3177 'B::Concise' => '0.74',
3178 'B::Deparse' => '0.83',
3180 'CPAN::API::HOWTO' => undef,
3181 'CPAN::Debug' => '5.402212',
3182 'CPAN::DeferedCode' => '5.50',
3183 'CPAN::FirstTime' => '5.402229',
3184 'CPAN::HandleConfig' => '5.402212',
3185 'CPAN::Nox' => '5.402411',
3186 'CPAN::Queue' => '5.402212',
3187 'CPAN::Tarzip' => '5.402213',
3188 'CPAN::Version' => '5.5',
3189 'CPANPLUS' => '0.84',
3190 'CPANPLUS::Dist::Build' => '0.06_02',
3191 'CPANPLUS::Internals' => '0.84',
3192 'CPANPLUS::Shell::Default'=> '0.84',
3193 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3195 'Carp::Heavy' => '1.08',
3196 'Compress::Raw::Zlib' => '2.008',
3197 'Compress::Zlib' => '2.008',
3199 'DB_File' => '1.816_1',
3200 'Data::Dumper' => '2.121_14',
3201 'Devel::PPPort' => '3.13',
3202 'Digest::SHA' => '5.45',
3203 'Exporter' => '5.62',
3204 'Exporter::Heavy' => '5.62',
3205 'ExtUtils::CBuilder' => '0.21',
3206 'ExtUtils::CBuilder::Base'=> '0.21',
3207 'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3208 'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3209 'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3210 'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3211 'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3212 'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3213 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3214 'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3215 'ExtUtils::Command::MM' => '6.42',
3216 'ExtUtils::Constant::ProxySubs'=> '0.05',
3217 'ExtUtils::Embed' => '1.27',
3218 'ExtUtils::Install' => '1.44',
3219 'ExtUtils::Installed' => '1.43',