1 package Module::CoreList;
3 use vars qw/$VERSION %released %version %families %upstream
4 %bug_tracker %deprecated %delta/;
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 => '2013-09-20',
242 5.019005 => '2013-10-20',
243 5.019006 => '2013-11-20',
244 5.019007 => '2013-12-20',
247 for my $version ( sort { $a <=> $b } keys %released ) {
248 my $family = int ($version * 1000) / 1000;
249 push @{ $families{ $family }} , $version;
255 'AnyDBM_File' => undef,
256 'AutoLoader' => undef,
257 'AutoSplit' => undef,
258 'Benchmark' => undef,
262 'DynaLoader' => undef,
266 'ExtUtils::MakeMaker' => undef,
268 'File::Basename' => undef,
269 'File::CheckTree' => undef,
270 'File::Find' => undef,
271 'FileHandle' => undef,
272 'GDBM_File' => undef,
273 'Getopt::Long' => undef,
274 'Getopt::Std' => undef,
275 'I18N::Collate' => undef,
276 'IPC::Open2' => undef,
277 'IPC::Open3' => undef,
278 'Math::BigFloat' => undef,
279 'Math::BigInt' => undef,
280 'Math::Complex' => undef,
281 'NDBM_File' => undef,
282 'Net::Ping' => undef,
283 'ODBM_File' => undef,
285 'SDBM_File' => undef,
286 'Search::Dict' => undef,
289 'Sys::Hostname' => undef,
290 'Sys::Syslog' => undef,
291 'Term::Cap' => undef,
292 'Term::Complete' => undef,
293 'Test::Harness' => undef,
294 'Text::Abbrev' => undef,
295 'Text::ParseWords' => undef,
296 'Text::Soundex' => undef,
297 'Text::Tabs' => undef,
299 'Time::Local' => undef,
312 'ExtUtils::Liblist' => undef,
313 'ExtUtils::Manifest' => undef,
314 'ExtUtils::Mkbootstrap' => undef,
315 'File::Path' => undef,
316 'SubstrHash' => undef,
326 'Devel::SelfStubber' => '1.01',
327 'DirHandle' => undef,
328 'DynaLoader' => '1.00',
329 'ExtUtils::Install' => undef,
330 'ExtUtils::MM_OS2' => undef,
331 'ExtUtils::MM_Unix' => undef,
332 'ExtUtils::MM_VMS' => undef,
333 'ExtUtils::MakeMaker' => '5.21',
334 'ExtUtils::Manifest' => '1.22',
335 'ExtUtils::Mksymlists' => '1.00',
337 'File::Copy' => '1.5',
338 'File::Path' => '1.01',
339 'FileCache' => undef,
340 'FileHandle' => '1.00',
341 'GDBM_File' => '1.00',
342 'Getopt::Long' => '2.01',
343 'NDBM_File' => '1.00',
345 'ODBM_File' => '1.00',
347 'Pod::Functions' => undef,
348 'Pod::Text' => undef,
349 'SDBM_File' => '1.00',
351 'SelectSaver' => undef,
352 'SelfLoader' => '1.06',
355 'Term::ReadLine' => undef,
356 'Test::Harness' => '1.07',
357 'Text::Wrap' => undef,
358 'Tie::Hash' => undef,
359 'Tie::Scalar' => undef,
360 'Tie::SubstrHash' => undef,
361 'diagnostics' => undef,
375 'ExtUtils::Embed' => '1.18',
376 'ExtUtils::Install' => '1.15 ',
377 'ExtUtils::Liblist' => '1.20 ',
378 'ExtUtils::MM_Unix' => '1.107 ',
379 'ExtUtils::MakeMaker' => '5.38',
380 'ExtUtils::Manifest' => '1.27',
381 'ExtUtils::Mkbootstrap' => '1.13 ',
382 'ExtUtils::Mksymlists' => '1.12 ',
383 'ExtUtils::testlib' => '1.11 ',
385 'File::Basename' => '2.4',
387 'Getopt::Long' => '2.04',
389 'IO::File' => '1.05',
390 'IO::Handle' => '1.12',
391 'IO::Pipe' => '1.07',
392 'IO::Seekable' => '1.05',
393 'IO::Select' => '1.09',
394 'IO::Socket' => '1.13',
395 'Net::Ping' => '1.01',
396 'OS2::ExtAttr' => '0.01',
397 'OS2::PrfDB' => '0.02',
398 'OS2::Process' => undef,
399 'OS2::REXX' => undef,
402 'Test::Harness' => '1.13',
403 'Text::Tabs' => '96.051501',
404 'Text::Wrap' => '96.041801',
405 'UNIVERSAL' => undef,
406 'VMS::Filespec' => undef,
407 'VMS::Stdio' => '2.0',
415 delta_from => 5.00307,
417 'Bundle::CPAN' => '0.02',
419 'CGI::Apache' => '1.01',
420 'CGI::Carp' => '1.06',
421 'CGI::Fast' => '1.00a',
422 'CGI::Push' => '1.00',
423 'CGI::Switch' => '0.05',
425 'CPAN::FirstTime' => '1.18 ',
426 'CPAN::Nox' => undef,
427 'Class::Struct' => undef,
430 'DynaLoader' => '1.02',
431 'ExtUtils::Command' => '1.00',
432 'ExtUtils::Embed' => '1.2501',
433 'ExtUtils::Install' => '1.16 ',
434 'ExtUtils::Liblist' => '1.2201 ',
435 'ExtUtils::MM_Unix' => '1.114 ',
436 'ExtUtils::MM_Win32' => undef,
437 'ExtUtils::MakeMaker' => '5.4002',
438 'ExtUtils::Manifest' => '1.33 ',
439 'ExtUtils::Mksymlists' => '1.13 ',
440 'ExtUtils::XSSymSet' => '1.0',
442 'File::Basename' => '2.5',
443 'File::Compare' => '1.1001',
444 'File::Copy' => '2.02',
445 'File::Path' => '1.04',
446 'File::stat' => undef,
447 'FileHandle' => '2.00',
448 'Getopt::Long' => '2.10',
449 'IO::File' => '1.0602',
450 'IO::Handle' => '1.1504',
451 'IO::Pipe' => '1.0901',
452 'IO::Seekable' => '1.06',
453 'IO::Select' => '1.10',
454 'IO::Socket' => '1.1602',
455 'IPC::Open2' => '1.01',
456 'IPC::Open3' => '1.0101',
457 'Math::Complex' => '1.01',
459 'Net::Ping' => '2.02',
460 'Net::hostent' => undef,
461 'Net::netent' => undef,
462 'Net::protoent' => undef,
463 'Net::servent' => undef,
466 'Pod::Html' => undef,
467 'Pod::Text' => '1.0203',
468 'SelfLoader' => '1.07',
471 'Test::Harness' => '1.1502',
472 'Text::Tabs' => '96.121201',
473 'Text::Wrap' => '97.011701',
474 'Tie::RefHash' => undef,
475 'Time::gmtime' => '1.01',
476 'Time::localtime' => '1.01',
478 'User::grent' => undef,
479 'User::pwent' => undef,
480 'VMS::DCLsym' => '1.01',
481 'VMS::Stdio' => '2.02',
484 'constant' => '1.00',
496 'AutoLoader' => '5.56',
497 'AutoSplit' => '1.0303',
498 'Bundle::CPAN' => '0.03',
500 'CGI::Apache' => '1.1',
501 'CGI::Carp' => '1.10',
502 'CGI::Cookie' => '1.06',
503 'CGI::Push' => '1.01',
504 'CGI::Switch' => '0.06',
506 'CPAN::FirstTime' => '1.30 ',
509 'DynaLoader' => '1.03',
510 'ExtUtils::Command' => '1.01',
511 'ExtUtils::Embed' => '1.2505',
512 'ExtUtils::Install' => '1.28 ',
513 'ExtUtils::Liblist' => '1.25 ',
514 'ExtUtils::MM_Unix' => '1.118 ',
515 'ExtUtils::MakeMaker' => '5.42',
516 'ExtUtils::Mkbootstrap' => '1.14 ',
517 'ExtUtils::Mksymlists' => '1.16 ',
518 'File::Basename' => '2.6',
519 'File::DosGlob' => undef,
520 'File::Path' => '1.0402',
521 'File::Spec' => '0.6',
522 'File::Spec::Mac' => '1.0',
523 'File::Spec::OS2' => undef,
524 'File::Spec::Unix' => undef,
525 'File::Spec::VMS' => undef,
526 'File::Spec::Win32' => undef,
528 'Getopt::Long' => '2.19',
529 'IO::File' => '1.06021',
530 'IO::Socket' => '1.1603',
531 'IPC::Open3' => '1.0103',
532 'Math::Complex' => '1.25',
533 'NDBM_File' => '1.01',
534 'Pod::Html' => '1.0101',
535 'Pod::Text' => '1.0204',
536 'SelfLoader' => '1.08',
539 'Test::Harness' => '1.1602',
540 'Text::ParseWords' => '3.1001',
541 'Text::Wrap' => '98.112902',
542 'Tie::Handle' => undef,
553 delta_from => 5.00405,
555 'AutoLoader' => undef,
556 'AutoSplit' => '1.0302',
558 'B::Asmdata' => undef,
559 'B::Assembler' => undef,
560 'B::Bblock' => undef,
561 'B::Bytecode' => undef,
565 'B::Deparse' => '0.56',
566 'B::Disassembler' => undef,
568 'B::Showlex' => undef,
569 'B::Stackobj' => undef,
572 'CGI::Carp' => '1.101',
574 'CPAN::FirstTime' => '1.29 ',
576 'Data::Dumper' => '2.09',
578 'ExtUtils::Installed' => '0.02',
579 'ExtUtils::MM_Unix' => '1.12601 ',
580 'ExtUtils::MakeMaker' => '5.4301',
581 'ExtUtils::Mkbootstrap' => '1.13 ',
582 'ExtUtils::Mksymlists' => '1.17 ',
583 'ExtUtils::Packlist' => '0.03',
585 'File::Path' => '1.0401',
586 'Getopt::Long' => '2.17',
587 'IO::Handle' => '1.1505',
588 'IPC::Msg' => '1.00',
589 'IPC::Open3' => '1.0102',
590 'IPC::Semaphore' => '1.00',
591 'IPC::SysV' => '1.03',
593 'OS2::Process' => '0.2',
594 'Pod::Html' => '1.01',
595 'Pod::Text' => '1.0203',
596 'Text::ParseWords' => '3.1',
597 'Text::Wrap' => '97.02',
599 'Thread::Queue' => undef,
600 'Thread::Semaphore' => undef,
601 'Thread::Signal' => undef,
602 'Thread::Specific' => undef,
603 'Tie::Array' => '1.00',
604 'VMS::Stdio' => '2.1',
616 'AutoSplit' => '1.0303',
618 'CGI::Carp' => '1.13',
619 'CGI::Fast' => '1.01',
621 'CPAN::FirstTime' => '1.36',
622 'CPAN::Nox' => '1.00',
624 'Data::Dumper' => '2.101',
625 'Dumpvalue' => undef,
627 'ExtUtils::Install' => '1.28',
628 'ExtUtils::Liblist' => '1.25',
629 'ExtUtils::MM_Unix' => '1.12602',
630 'ExtUtils::MakeMaker' => '5.4302',
631 'ExtUtils::Manifest' => '1.33',
632 'ExtUtils::Mkbootstrap' => '1.14',
633 'ExtUtils::Mksymlists' => '1.17',
634 'ExtUtils::testlib' => '1.11',
636 'Getopt::Long' => '2.19',
637 'Getopt::Std' => '1.01',
638 'IO::Pipe' => '1.0902',
639 'IPC::Open3' => '1.0103',
640 'Math::Complex' => '1.26',
642 'Text::Wrap' => '98.112902',
648 delta_from => 5.00503,
650 'CPAN::FirstTime' => '1.36 ',
651 'DB_File' => '1.807',
652 'ExtUtils::Install' => '1.28 ',
653 'ExtUtils::Liblist' => '1.25 ',
654 'ExtUtils::MM_Unix' => '1.12602 ',
655 'ExtUtils::Manifest' => '1.33 ',
656 'ExtUtils::Miniperl' => undef,
657 'ExtUtils::Mkbootstrap' => '1.14 ',
658 'ExtUtils::Mksymlists' => '1.17 ',
659 'ExtUtils::testlib' => '1.11 ',
660 'File::Compare' => '1.1002',
661 'File::Spec' => '0.8',
662 'File::Spec::Functions' => undef,
663 'File::Spec::Mac' => undef,
664 'Getopt::Long' => '2.20',
665 'Pod::Html' => '1.02',
671 delta_from => 5.00504,
673 'AutoLoader' => '5.57',
674 'AutoSplit' => '1.0305',
675 'B::Deparse' => '0.59',
678 'ByteLoader' => '0.03',
680 'CGI::Apache' => undef,
681 'CGI::Carp' => '1.14',
682 'CGI::Cookie' => '1.12',
683 'CGI::Fast' => '1.02',
684 'CGI::Pretty' => '1.03',
685 'CGI::Switch' => undef,
687 'CPAN::FirstTime' => '1.38 ',
688 'Carp::Heavy' => undef,
689 'Class::Struct' => '0.58',
693 'Devel::DProf' => '20000000.00_00',
694 'Devel::Peek' => '1.00_01',
695 'DynaLoader' => '1.04',
696 'Exporter' => '5.562',
697 'Exporter::Heavy' => undef,
698 'ExtUtils::MM_Cygwin' => undef,
699 'ExtUtils::MM_Unix' => '1.12603 ',
700 'ExtUtils::MakeMaker' => '5.45',
701 'File::Copy' => '2.03',
702 'File::Glob' => '0.991',
703 'File::Path' => '1.0403',
704 'GDBM_File' => '1.03',
705 'Getopt::Long' => '2.23',
706 'Getopt::Std' => '1.02',
709 'IO::File' => '1.08',
710 'IO::Handle' => '1.21',
711 'IO::Pipe' => '1.121',
712 'IO::Poll' => '0.01',
713 'IO::Seekable' => '1.08',
714 'IO::Select' => '1.14',
715 'IO::Socket' => '1.26',
716 'IO::Socket::INET' => '1.25',
717 'IO::Socket::UNIX' => '1.20',
719 'JPL::AutoLoader' => undef,
720 'JPL::Class' => undef,
721 'JPL::Compile' => undef,
722 'NDBM_File' => '1.03',
723 'ODBM_File' => '1.02',
726 'Pod::Checker' => '1.098',
727 'Pod::Find' => '0.12',
728 'Pod::Html' => '1.03',
729 'Pod::InputObjects' => '1.12',
730 'Pod::Man' => '1.02',
731 'Pod::ParseUtils' => '0.2',
732 'Pod::Parser' => '1.12',
733 'Pod::Plainer' => '0.01',
734 'Pod::Select' => '1.12',
735 'Pod::Text' => '2.03',
736 'Pod::Text::Color' => '0.05',
737 'Pod::Text::Termcap' => '0.04',
738 'Pod::Usage' => '1.12',
739 'SDBM_File' => '1.02',
740 'SelfLoader' => '1.0901',
743 'Sys::Hostname' => '1.1',
744 'Sys::Syslog' => '0.01',
745 'Term::ANSIColor' => '1.01',
747 'Test::Harness' => '1.1604',
748 'Text::ParseWords' => '3.2',
749 'Text::Soundex' => '1.0',
750 'Text::Tabs' => '98.112801',
751 'Tie::Array' => '1.01',
752 'Tie::Handle' => '1.0',
753 'VMS::Stdio' => '2.2',
754 'XSLoader' => '0.01',
755 'attributes' => '0.03',
759 'charnames' => undef,
760 'constant' => '1.02',
761 'diagnostics' => '1.0',
768 'warnings::register' => undef,
776 'AutoLoader' => '5.58',
777 'B::Assembler' => '0.02',
778 'B::Concise' => '0.51',
779 'B::Deparse' => '0.6',
780 'ByteLoader' => '0.04',
782 'CGI::Carp' => '1.20',
783 'CGI::Cookie' => '1.18',
784 'CGI::Pretty' => '1.05',
785 'CGI::Push' => '1.04',
786 'CGI::Util' => '1.1',
788 'CPAN::FirstTime' => '1.53',
789 'Class::Struct' => '0.59',
792 'Data::Dumper' => '2.102',
793 'ExtUtils::Install' => '1.28',
794 'ExtUtils::Liblist' => '1.26',
795 'ExtUtils::MM_Unix' => '1.12603',
796 'ExtUtils::Manifest' => '1.33',
797 'ExtUtils::Mkbootstrap' => '1.14',
798 'ExtUtils::Mksymlists' => '1.17',
799 'ExtUtils::testlib' => '1.11',
800 'File::Path' => '1.0404',
801 'File::Spec' => '0.82',
802 'File::Spec::Epoc' => undef,
803 'File::Spec::Functions' => '1.1',
804 'File::Spec::Mac' => '1.2',
805 'File::Spec::OS2' => '1.1',
806 'File::Spec::Unix' => '1.2',
807 'File::Spec::VMS' => '1.1',
808 'File::Spec::Win32' => '1.2',
809 'File::Temp' => '0.12',
810 'GDBM_File' => '1.05',
811 'Getopt::Long' => '2.25',
812 'IO::Poll' => '0.05',
814 'Math::BigFloat' => '0.02',
815 'Math::BigInt' => '0.01',
816 'Math::Complex' => '1.31',
817 'NDBM_File' => '1.04',
818 'ODBM_File' => '1.03',
819 'OS2::REXX' => '1.00',
820 'Pod::Checker' => '1.2',
821 'Pod::Find' => '0.21',
822 'Pod::InputObjects' => '1.13',
823 'Pod::LaTeX' => '0.53',
824 'Pod::Man' => '1.15',
825 'Pod::ParseUtils' => '0.22',
826 'Pod::Parser' => '1.13',
827 'Pod::Select' => '1.13',
828 'Pod::Text' => '2.08',
829 'Pod::Text::Color' => '0.06',
830 'Pod::Text::Overstrike' => '1.01',
831 'Pod::Text::Termcap' => '1',
832 'Pod::Usage' => '1.14',
833 'SDBM_File' => '1.03',
834 'SelfLoader' => '1.0902',
836 'Term::ANSIColor' => '1.03',
838 'Text::Wrap' => '2001.0131',
839 'Tie::Handle' => '4.0',
840 'Tie::RefHash' => '1.3',
846 delta_from => 5.006001,
848 'CPAN::FirstTime' => '1.53 ',
849 'DB_File' => '1.806',
850 'Data::Dumper' => '2.121',
851 'ExtUtils::Command' => '1.05',
852 'ExtUtils::Command::MM' => '0.03',
853 'ExtUtils::Install' => '1.32',
854 'ExtUtils::Installed' => '0.08',
855 'ExtUtils::Liblist' => '1.01',
856 'ExtUtils::Liblist::Kid'=> '1.3',
857 'ExtUtils::MM' => '0.04',
858 'ExtUtils::MM_Any' => '0.07',
859 'ExtUtils::MM_BeOS' => '1.04',
860 'ExtUtils::MM_Cygwin' => '1.06',
861 'ExtUtils::MM_DOS' => '0.02',
862 'ExtUtils::MM_MacOS' => '1.07',
863 'ExtUtils::MM_NW5' => '2.06',
864 'ExtUtils::MM_OS2' => '1.04',
865 'ExtUtils::MM_UWIN' => '0.02',
866 'ExtUtils::MM_Unix' => '1.42',
867 'ExtUtils::MM_VMS' => '5.70',
868 'ExtUtils::MM_Win32' => '1.09',
869 'ExtUtils::MM_Win95' => '0.03',
870 'ExtUtils::MY' => '0.01',
871 'ExtUtils::MakeMaker' => '6.17',
872 'ExtUtils::MakeMaker::bytes'=> '0.01',
873 'ExtUtils::MakeMaker::vmsish'=> '0.01',
874 'ExtUtils::Manifest' => '1.42',
875 'ExtUtils::Mkbootstrap' => '1.15',
876 'ExtUtils::Mksymlists' => '1.19',
877 'ExtUtils::Packlist' => '0.04',
878 'ExtUtils::testlib' => '1.15',
879 'File::Spec' => '0.86',
880 'File::Spec::Cygwin' => '1.1',
881 'File::Spec::Epoc' => '1.1',
882 'File::Spec::Functions' => '1.3',
883 'File::Spec::Mac' => '1.4',
884 'File::Spec::OS2' => '1.2',
885 'File::Spec::Unix' => '1.5',
886 'File::Spec::VMS' => '1.4',
887 'File::Spec::Win32' => '1.4',
888 'File::Temp' => '0.14',
891 'Test::Builder' => '0.17',
892 'Test::Harness' => '2.30',
893 'Test::Harness::Assert' => '0.01',
894 'Test::Harness::Iterator'=> '0.01',
895 'Test::Harness::Straps' => '0.15',
896 'Test::More' => '0.47',
897 'Test::Simple' => '0.47',
898 'Unicode' => '3.0.1',
906 delta_from => 5.006001,
908 'AnyDBM_File' => '1.00',
909 'Attribute::Handlers' => '0.76',
910 'AutoLoader' => '5.59',
911 'AutoSplit' => '1.0307',
913 'B::Asmdata' => '1.00',
914 'B::Assembler' => '0.04',
915 'B::Bblock' => '1.00',
916 'B::Bytecode' => '1.00',
919 'B::Concise' => '0.52',
920 'B::Debug' => '1.00',
921 'B::Deparse' => '0.63',
922 'B::Disassembler' => '1.01',
924 'B::Showlex' => '1.00',
925 'B::Stackobj' => '1.00',
926 'B::Stash' => '1.00',
927 'B::Terse' => '1.00',
929 'Benchmark' => '1.04',
931 'CGI::Apache' => '1.00',
932 'CGI::Carp' => '1.22',
933 'CGI::Cookie' => '1.20',
934 'CGI::Fast' => '1.04',
935 'CGI::Pretty' => '1.05_00',
936 'CGI::Switch' => '1.00',
937 'CGI::Util' => '1.3',
939 'CPAN::FirstTime' => '1.54 ',
940 'CPAN::Nox' => '1.00_01',
942 'Carp::Heavy' => '1.01',
943 'Class::ISA' => '0.32',
944 'Class::Struct' => '0.61',
946 'DB_File' => '1.804',
947 'Data::Dumper' => '2.12',
948 'Devel::DProf' => '20000000.00_01',
949 'Devel::PPPort' => '2.0002',
950 'Devel::Peek' => '1.00_03',
951 'Devel::SelfStubber' => '1.03',
953 'Digest::MD5' => '2.16',
954 'DirHandle' => '1.00',
955 'Dumpvalue' => '1.10',
957 'Encode::CN' => '0.02',
958 'Encode::CN::HZ' => undef,
959 'Encode::Encoding' => '0.02',
960 'Encode::Internal' => '0.30',
961 'Encode::JP' => '0.02',
962 'Encode::JP::Constants' => '1.02',
963 'Encode::JP::H2Z' => '0.77',
964 'Encode::JP::ISO_2022_JP'=> undef,
965 'Encode::JP::JIS' => undef,
966 'Encode::JP::Tr' => '0.77',
967 'Encode::KR' => '0.02',
968 'Encode::TW' => '0.02',
969 'Encode::Tcl' => '1.01',
970 'Encode::Tcl::Escape' => '1.01',
971 'Encode::Tcl::Extended' => '1.01',
972 'Encode::Tcl::HanZi' => '1.01',
973 'Encode::Tcl::Table' => '1.01',
974 'Encode::Unicode' => '0.30',
975 'Encode::XS' => '0.40',
976 'Encode::iso10646_1' => '0.30',
977 'Encode::usc2_le' => '0.30',
978 'Encode::utf8' => '0.30',
981 'Exporter' => '5.566',
982 'Exporter::Heavy' => '5.562',
983 'ExtUtils::Command' => '1.02',
984 'ExtUtils::Constant' => '0.11',
985 'ExtUtils::Embed' => '1.250601',
986 'ExtUtils::Install' => '1.29',
987 'ExtUtils::Installed' => '0.04',
988 'ExtUtils::Liblist' => '1.2701',
989 'ExtUtils::MM_BeOS' => '1.00',
990 'ExtUtils::MM_Cygwin' => '1.00',
991 'ExtUtils::MM_OS2' => '1.00',
992 'ExtUtils::MM_Unix' => '1.12607',
993 'ExtUtils::MM_VMS' => '5.56',
994 'ExtUtils::MM_Win32' => '1.00_02',
995 'ExtUtils::MakeMaker' => '5.48_03',
996 'ExtUtils::Manifest' => '1.35',
997 'ExtUtils::Mkbootstrap' => '1.1401',
998 'ExtUtils::Mksymlists' => '1.18',
999 'ExtUtils::Packlist' => '0.04',
1000 'ExtUtils::testlib' => '1.1201',
1003 'File::Basename' => '2.71',
1004 'File::CheckTree' => '4.1',
1005 'File::Compare' => '1.1003',
1006 'File::Copy' => '2.05',
1007 'File::DosGlob' => '1.00',
1008 'File::Find' => '1.04',
1009 'File::Glob' => '1.01',
1010 'File::Path' => '1.05',
1011 'File::Spec' => '0.83',
1012 'File::Spec::Cygwin' => '1.0',
1013 'File::Spec::Epoc' => '1.00',
1014 'File::Spec::Functions' => '1.2',
1015 'File::Spec::Mac' => '1.3',
1016 'File::Spec::Unix' => '1.4',
1017 'File::Spec::VMS' => '1.2',
1018 'File::Spec::Win32' => '1.3',
1019 'File::Temp' => '0.13',
1020 'File::stat' => '1.00',
1021 'FileCache' => '1.00',
1022 'FileHandle' => '2.01',
1023 'Filter::Simple' => '0.77',
1024 'Filter::Util::Call' => '1.06',
1025 'FindBin' => '1.43',
1026 'GDBM_File' => '1.06',
1027 'Getopt::Long' => '2.28',
1028 'Getopt::Std' => '1.03',
1029 'I18N::Collate' => '1.00',
1030 'I18N::LangTags' => '0.27',
1031 'I18N::LangTags::List' => '0.25',
1032 'I18N::Langinfo' => '0.01',
1033 'IO::Dir' => '1.03_00',
1034 'IO::File' => '1.09',
1035 'IO::Handle' => '1.21_00',
1036 'IO::Pipe' => '1.122',
1037 'IO::Poll' => '0.06',
1038 'IO::Seekable' => '1.08_00',
1039 'IO::Select' => '1.15',
1040 'IO::Socket' => '1.27',
1041 'IO::Socket::INET' => '1.26',
1042 'IO::Socket::UNIX' => '1.20_00',
1043 'IPC::Msg' => '1.00_00',
1044 'IPC::Open3' => '1.0104',
1045 'IPC::Semaphore' => '1.00_00',
1046 'IPC::SysV' => '1.03_00',
1047 'List::Util' => '1.06_00',
1048 'Locale::Constants' => '2.01',
1049 'Locale::Country' => '2.01',
1050 'Locale::Currency' => '2.01',
1051 'Locale::Language' => '2.01',
1052 'Locale::Maketext' => '1.03',
1053 'Locale::Script' => '2.01',
1054 'MIME::Base64' => '2.12',
1055 'MIME::QuotedPrint' => '2.03',
1056 'Math::BigFloat' => '1.30',
1057 'Math::BigInt' => '1.54',
1058 'Math::BigInt::Calc' => '0.25',
1059 'Math::Complex' => '1.34',
1060 'Math::Trig' => '1.01',
1061 'Memoize' => '0.66',
1062 'Memoize::AnyDBM_File' => '0.65',
1063 'Memoize::Expire' => '0.66',
1064 'Memoize::ExpireFile' => '0.65',
1065 'Memoize::ExpireTest' => '0.65',
1066 'Memoize::NDBM_File' => '0.65',
1067 'Memoize::SDBM_File' => '0.65',
1068 'Memoize::Storable' => '0.65',
1070 'Net::Cmd' => '2.21',
1071 'Net::Config' => '1.10',
1072 'Net::Domain' => '2.17',
1073 'Net::FTP' => '2.64',
1074 'Net::FTP::A' => '1.15',
1075 'Net::FTP::E' => '0.01',
1076 'Net::FTP::I' => '1.12',
1077 'Net::FTP::L' => '0.01',
1078 'Net::FTP::dataconn' => '0.10',
1079 'Net::NNTP' => '2.21',
1080 'Net::Netrc' => '2.12',
1081 'Net::POP3' => '2.23',
1082 'Net::Ping' => '2.12',
1083 'Net::SMTP' => '2.21',
1084 'Net::Time' => '2.09',
1085 'Net::hostent' => '1.00',
1086 'Net::netent' => '1.00',
1087 'Net::protoent' => '1.00',
1088 'Net::servent' => '1.00',
1090 'OS2::DLL' => '1.00',
1091 'OS2::Process' => '1.0',
1092 'OS2::REXX' => '1.01',
1096 'PerlIO::Scalar' => '0.01',
1097 'PerlIO::Via' => '0.01',
1098 'Pod::Checker' => '1.3',
1099 'Pod::Find' => '0.22',
1100 'Pod::Functions' => '1.01',
1101 'Pod::Html' => '1.04',
1102 'Pod::LaTeX' => '0.54',
1103 'Pod::Man' => '1.32',
1104 'Pod::ParseLink' => '1.05',
1105 'Pod::Text' => '2.18',
1106 'Pod::Text::Color' => '1.03',
1107 'Pod::Text::Overstrike' => '1.08',
1108 'Pod::Text::Termcap' => '1.09',
1110 'Scalar::Util' => '1.06_00',
1111 'Search::Dict' => '1.02',
1112 'SelectSaver' => '1.00',
1113 'SelfLoader' => '1.0903',
1116 'Storable' => '1.015',
1119 'Sys::Syslog' => '0.02',
1120 'Term::ANSIColor' => '1.04',
1121 'Term::Cap' => '1.07',
1122 'Term::Complete' => '1.4',
1123 'Term::ReadLine' => '1.00',
1125 'Test::Builder' => '0.11',
1126 'Test::Harness' => '2.01',
1127 'Test::Harness::Assert' => '0.01',
1128 'Test::Harness::Iterator'=> '0.01',
1129 'Test::Harness::Straps' => '0.08',
1130 'Test::More' => '0.41',
1131 'Test::Simple' => '0.41',
1132 'Text::Abbrev' => '1.00',
1133 'Text::Balanced' => '1.89',
1134 'Text::ParseWords' => '3.21',
1135 'Text::Soundex' => '1.01',
1136 'Text::Wrap' => '2001.0929',
1138 'Thread::Queue' => '1.00',
1139 'Thread::Semaphore' => '1.00',
1140 'Thread::Signal' => '1.00',
1141 'Thread::Specific' => '1.00',
1142 'Tie::Array' => '1.02',
1143 'Tie::File' => '0.17',
1144 'Tie::Handle' => '4.1',
1145 'Tie::Hash' => '1.00',
1146 'Tie::Memoize' => '1.0',
1147 'Tie::RefHash' => '1.3_00',
1148 'Tie::Scalar' => '1.00',
1149 'Tie::SubstrHash' => '1.00',
1150 'Time::HiRes' => '1.20_00',
1151 'Time::Local' => '1.04',
1152 'Time::gmtime' => '1.02',
1153 'Time::localtime' => '1.02',
1154 'Time::tm' => '1.00',
1155 'UNIVERSAL' => '1.00',
1156 'Unicode::Collate' => '0.10',
1157 'Unicode::Normalize' => '0.14',
1158 'Unicode::UCD' => '0.2',
1159 'User::grent' => '1.00',
1160 'User::pwent' => '1.00',
1161 'VMS::DCLsym' => '1.02',
1162 'VMS::Filespec' => '1.1',
1163 'VMS::Stdio' => '2.3',
1164 'XS::Typemap' => '0.01',
1165 'attributes' => '0.04_01',
1167 'autouse' => '1.03',
1171 'charnames' => '1.01',
1172 'constant' => '1.04',
1173 'diagnostics' => '1.1',
1174 'encoding' => '1.00',
1176 'filetest' => '1.00',
1178 'integer' => '1.00',
1183 'overload' => '1.00',
1188 'threads' => '0.05',
1189 'threads::shared' => '0.90',
1193 'warnings' => '1.00',
1194 'warnings::register' => '1.00',
1200 delta_from => 5.007003,
1202 'Attribute::Handlers' => '0.77',
1204 'B::Lint' => '1.01',
1205 'B::Xref' => '1.01',
1207 'CGI::Carp' => '1.23',
1209 'CPAN::FirstTime' => '1.56 ',
1210 'CPAN::Nox' => '1.02',
1211 'Digest::MD5' => '2.20',
1212 'Dumpvalue' => '1.11',
1214 'Encode::Alias' => '1.32',
1215 'Encode::Byte' => '1.22',
1216 'Encode::CJKConstants' => '1.00',
1217 'Encode::CN' => '1.24',
1218 'Encode::CN::HZ' => '1.04',
1219 'Encode::Config' => '1.06',
1220 'Encode::EBCDIC' => '1.21',
1221 'Encode::Encoder' => '0.05',
1222 'Encode::Encoding' => '1.30',
1223 'Encode::Guess' => '1.06',
1224 'Encode::JP' => '1.25',
1225 'Encode::JP::H2Z' => '1.02',
1226 'Encode::JP::JIS7' => '1.08',
1227 'Encode::KR' => '1.22',
1228 'Encode::KR::2022_KR' => '1.05',
1229 'Encode::MIME::Header' => '1.05',
1230 'Encode::Symbol' => '1.22',
1231 'Encode::TW' => '1.26',
1232 'Encode::Unicode' => '1.37',
1233 'Exporter::Heavy' => '5.566',
1234 'ExtUtils::Command' => '1.04',
1235 'ExtUtils::Command::MM' => '0.01',
1236 'ExtUtils::Constant' => '0.12',
1237 'ExtUtils::Installed' => '0.06',
1238 'ExtUtils::Liblist' => '1.00',
1239 'ExtUtils::Liblist::Kid'=> '1.29',
1240 'ExtUtils::MM' => '0.04',
1241 'ExtUtils::MM_Any' => '0.04',
1242 'ExtUtils::MM_BeOS' => '1.03',
1243 'ExtUtils::MM_Cygwin' => '1.04',
1244 'ExtUtils::MM_DOS' => '0.01',
1245 'ExtUtils::MM_MacOS' => '1.03',
1246 'ExtUtils::MM_NW5' => '2.05',
1247 'ExtUtils::MM_OS2' => '1.03',
1248 'ExtUtils::MM_UWIN' => '0.01',
1249 'ExtUtils::MM_Unix' => '1.33',
1250 'ExtUtils::MM_VMS' => '5.65',
1251 'ExtUtils::MM_Win32' => '1.05',
1252 'ExtUtils::MM_Win95' => '0.02',
1253 'ExtUtils::MY' => '0.01',
1254 'ExtUtils::MakeMaker' => '6.03',
1255 'ExtUtils::Manifest' => '1.38',
1256 'ExtUtils::Mkbootstrap' => '1.15',
1257 'ExtUtils::Mksymlists' => '1.19',
1258 'ExtUtils::testlib' => '1.15',
1259 'File::CheckTree' => '4.2',
1260 'FileCache' => '1.021',
1261 'Filter::Simple' => '0.78',
1262 'Getopt::Long' => '2.32',
1263 'Hash::Util' => '0.04',
1264 'List::Util' => '1.07_00',
1265 'Locale::Country' => '2.04',
1266 'Math::BigFloat' => '1.35',
1267 'Math::BigFloat::Trace' => '0.01',
1268 'Math::BigInt' => '1.60',
1269 'Math::BigInt::Calc' => '0.30',
1270 'Math::BigInt::Trace' => '0.01',
1271 'Math::BigRat' => '0.07',
1272 'Memoize' => '1.01',
1273 'Memoize::Expire' => '1.00',
1274 'Memoize::ExpireFile' => '1.01',
1275 'Net::FTP' => '2.65',
1276 'Net::FTP::dataconn' => '0.11',
1277 'Net::Ping' => '2.19',
1278 'Net::SMTP' => '2.24',
1280 'PerlIO::encoding' => '0.06',
1281 'PerlIO::scalar' => '0.01',
1282 'PerlIO::via' => '0.01',
1283 'PerlIO::via::QuotedPrint'=> '0.04',
1284 'Pod::Man' => '1.33',
1285 'Pod::Text' => '2.19',
1286 'Scalar::Util' => '1.07_00',
1287 'Storable' => '2.04',
1289 'Sys::Syslog' => '0.03',
1291 'Test::Builder' => '0.15',
1292 'Test::Harness' => '2.26',
1293 'Test::Harness::Straps' => '0.14',
1294 'Test::More' => '0.45',
1295 'Test::Simple' => '0.45',
1296 'Thread::Queue' => '2.00',
1297 'Thread::Semaphore' => '2.00',
1298 'Tie::File' => '0.93',
1299 'Tie::RefHash' => '1.30',
1300 'Unicode' => '3.2.0',
1301 'Unicode::Collate' => '0.12',
1302 'Unicode::Normalize' => '0.17',
1303 'XS::APItest' => '0.01',
1304 'attributes' => '0.05',
1310 'encoding' => '1.35',
1312 'threads' => '0.99',
1315 'Encode::Internal' => 1,
1316 'Encode::JP::Constants' => 1,
1317 'Encode::JP::ISO_2022_JP'=> 1,
1318 'Encode::JP::JIS' => 1,
1319 'Encode::JP::Tr' => 1,
1321 'Encode::Tcl::Escape' => 1,
1322 'Encode::Tcl::Extended' => 1,
1323 'Encode::Tcl::HanZi' => 1,
1324 'Encode::Tcl::Table' => 1,
1326 'Encode::iso10646_1' => 1,
1327 'Encode::usc2_le' => 1,
1328 'Encode::utf8' => 1,
1329 'PerlIO::Scalar' => 1,
1334 delta_from => 5.008,
1336 'Attribute::Handlers' => '0.78',
1337 'AutoLoader' => '5.60',
1338 'AutoSplit' => '1.04',
1340 'B::Asmdata' => '1.01',
1341 'B::Assembler' => '0.06',
1342 'B::Bblock' => '1.02',
1343 'B::Bytecode' => '1.01',
1345 'B::Concise' => '0.56',
1346 'B::Debug' => '1.01',
1347 'B::Deparse' => '0.64',
1348 'B::Disassembler' => '1.03',
1349 'B::Lint' => '1.02',
1350 'B::Terse' => '1.02',
1351 'Benchmark' => '1.051',
1352 'ByteLoader' => '0.05',
1354 'CGI::Carp' => '1.26',
1355 'CGI::Cookie' => '1.24',
1356 'CGI::Fast' => '1.041',
1357 'CGI::Pretty' => '1.07_00',
1358 'CGI::Util' => '1.31',
1359 'CPAN' => '1.76_01',
1360 'CPAN::FirstTime' => '1.60 ',
1361 'CPAN::Nox' => '1.03',
1362 'Class::Struct' => '0.63',
1364 'DB_File' => '1.806',
1365 'Data::Dumper' => '2.121',
1366 'Devel::DProf' => '20030813.00',
1367 'Devel::PPPort' => '2.007',
1368 'Devel::Peek' => '1.01',
1370 'Digest::MD5' => '2.27',
1371 'Encode' => '1.9801',
1372 'Encode::Alias' => '1.38',
1373 'Encode::Byte' => '1.23',
1374 'Encode::CJKConstants' => '1.02',
1375 'Encode::CN::HZ' => '1.05',
1376 'Encode::Config' => '1.07',
1377 'Encode::Encoder' => '0.07',
1378 'Encode::Encoding' => '1.33',
1379 'Encode::Guess' => '1.09',
1380 'Encode::JP::JIS7' => '1.12',
1381 'Encode::KR' => '1.23',
1382 'Encode::KR::2022_KR' => '1.06',
1383 'Encode::MIME::Header' => '1.09',
1384 'Encode::Unicode' => '1.40',
1385 'Encode::Unicode::UTF7' => '0.02',
1386 'English' => '1.01',
1387 'Errno' => '1.09_00',
1388 'Exporter' => '5.567',
1389 'Exporter::Heavy' => '5.567',
1390 'ExtUtils::Command' => '1.05',
1391 'ExtUtils::Command::MM' => '0.03',
1392 'ExtUtils::Constant' => '0.14',
1393 'ExtUtils::Install' => '1.32',
1394 'ExtUtils::Installed' => '0.08',
1395 'ExtUtils::Liblist' => '1.01',
1396 'ExtUtils::Liblist::Kid'=> '1.3',
1397 'ExtUtils::MM_Any' => '0.07',
1398 'ExtUtils::MM_BeOS' => '1.04',
1399 'ExtUtils::MM_Cygwin' => '1.06',
1400 'ExtUtils::MM_DOS' => '0.02',
1401 'ExtUtils::MM_MacOS' => '1.07',
1402 'ExtUtils::MM_NW5' => '2.06',
1403 'ExtUtils::MM_OS2' => '1.04',
1404 'ExtUtils::MM_UWIN' => '0.02',
1405 'ExtUtils::MM_Unix' => '1.42',
1406 'ExtUtils::MM_VMS' => '5.70',
1407 'ExtUtils::MM_Win32' => '1.09',
1408 'ExtUtils::MM_Win95' => '0.03',
1409 'ExtUtils::MakeMaker' => '6.17',
1410 'ExtUtils::MakeMaker::bytes'=> '0.01',
1411 'ExtUtils::MakeMaker::vmsish'=> '0.01',
1412 'ExtUtils::Manifest' => '1.42',
1414 'File::Basename' => '2.72',
1415 'File::Copy' => '2.06',
1416 'File::Find' => '1.05',
1417 'File::Glob' => '1.02',
1418 'File::Path' => '1.06',
1419 'File::Spec' => '0.86',
1420 'File::Spec::Cygwin' => '1.1',
1421 'File::Spec::Epoc' => '1.1',
1422 'File::Spec::Functions' => '1.3',
1423 'File::Spec::Mac' => '1.4',
1424 'File::Spec::OS2' => '1.2',
1425 'File::Spec::Unix' => '1.5',
1426 'File::Spec::VMS' => '1.4',
1427 'File::Spec::Win32' => '1.4',
1428 'File::Temp' => '0.14',
1429 'FileCache' => '1.03',
1430 'Filter::Util::Call' => '1.0601',
1431 'GDBM_File' => '1.07',
1432 'Getopt::Long' => '2.34',
1433 'Getopt::Std' => '1.04',
1434 'Hash::Util' => '0.05',
1435 'I18N::LangTags' => '0.28',
1436 'I18N::LangTags::List' => '0.26',
1437 'I18N::Langinfo' => '0.02',
1439 'IO::Dir' => '1.04',
1440 'IO::File' => '1.10',
1441 'IO::Handle' => '1.23',
1442 'IO::Seekable' => '1.09',
1443 'IO::Select' => '1.16',
1444 'IO::Socket' => '1.28',
1445 'IO::Socket::INET' => '1.27',
1446 'IO::Socket::UNIX' => '1.21',
1447 'IPC::Msg' => '1.02',
1448 'IPC::Open3' => '1.0105',
1449 'IPC::Semaphore' => '1.02',
1450 'IPC::SysV' => '1.04',
1452 'List::Util' => '1.13',
1453 'Locale::Country' => '2.61',
1454 'Locale::Currency' => '2.21',
1455 'Locale::Language' => '2.21',
1456 'Locale::Maketext' => '1.06',
1457 'Locale::Maketext::Guts'=> undef,
1458 'Locale::Maketext::GutsLoader'=> undef,
1459 'Locale::Script' => '2.21',
1460 'MIME::Base64' => '2.20',
1461 'MIME::QuotedPrint' => '2.20',
1462 'Math::BigFloat' => '1.40',
1463 'Math::BigInt' => '1.66',
1464 'Math::BigInt::Calc' => '0.36',
1465 'Math::BigInt::Scalar' => '0.11',
1466 'Math::BigRat' => '0.10',
1467 'Math::Trig' => '1.02',
1468 'NDBM_File' => '1.05',
1470 'Net::Cmd' => '2.24',
1471 'Net::Domain' => '2.18',
1472 'Net::FTP' => '2.71',
1473 'Net::FTP::A' => '1.16',
1474 'Net::NNTP' => '2.22',
1475 'Net::POP3' => '2.24',
1476 'Net::Ping' => '2.31',
1477 'Net::SMTP' => '2.26',
1478 'Net::hostent' => '1.01',
1479 'Net::servent' => '1.01',
1480 'ODBM_File' => '1.04',
1481 'OS2::DLL' => '1.01',
1482 'OS2::ExtAttr' => '0.02',
1483 'OS2::PrfDB' => '0.03',
1484 'OS2::Process' => '1.01',
1485 'OS2::REXX' => '1.02',
1488 'PerlIO::encoding' => '0.07',
1489 'PerlIO::scalar' => '0.02',
1490 'PerlIO::via' => '0.02',
1491 'PerlIO::via::QuotedPrint'=> '0.05',
1492 'Pod::Checker' => '1.41',
1493 'Pod::Find' => '0.24',
1494 'Pod::Functions' => '1.02',
1495 'Pod::Html' => '1.0501',
1496 'Pod::InputObjects' => '1.14',
1497 'Pod::LaTeX' => '0.55',
1498 'Pod::Man' => '1.37',
1499 'Pod::ParseLink' => '1.06',
1500 'Pod::ParseUtils' => '0.3',
1501 'Pod::Perldoc' => '3.10',
1502 'Pod::Perldoc::BaseTo' => undef,
1503 'Pod::Perldoc::GetOptsOO'=> undef,
1504 'Pod::Perldoc::ToChecker'=> undef,
1505 'Pod::Perldoc::ToMan' => undef,
1506 'Pod::Perldoc::ToNroff' => undef,
1507 'Pod::Perldoc::ToPod' => undef,
1508 'Pod::Perldoc::ToRtf' => undef,
1509 'Pod::Perldoc::ToText' => undef,
1510 'Pod::Perldoc::ToTk' => undef,
1511 'Pod::Perldoc::ToXml' => undef,
1512 'Pod::PlainText' => '2.01',
1513 'Pod::Text' => '2.21',
1514 'Pod::Text::Color' => '1.04',
1515 'Pod::Text::Overstrike' => '1.1',
1516 'Pod::Text::Termcap' => '1.11',
1517 'Pod::Usage' => '1.16',
1518 'SDBM_File' => '1.04',
1520 'Scalar::Util' => '1.13',
1521 'SelfLoader' => '1.0904',
1524 'Storable' => '2.08',
1527 'Sys::Hostname' => '1.11',
1528 'Sys::Syslog' => '0.04',
1529 'Term::ANSIColor' => '1.07',
1530 'Term::Cap' => '1.08',
1531 'Term::Complete' => '1.401',
1532 'Term::ReadLine' => '1.01',
1534 'Test::Builder' => '0.17',
1535 'Test::Harness' => '2.30',
1536 'Test::Harness::Straps' => '0.15',
1537 'Test::More' => '0.47',
1538 'Test::Simple' => '0.47',
1539 'Text::Abbrev' => '1.01',
1540 'Text::Balanced' => '1.95',
1541 'Text::Wrap' => '2001.09291',
1542 'Thread::Semaphore' => '2.01',
1543 'Tie::Array' => '1.03',
1544 'Tie::File' => '0.97',
1545 'Tie::RefHash' => '1.31',
1546 'Time::HiRes' => '1.51',
1547 'Time::Local' => '1.07',
1548 'UNIVERSAL' => '1.01',
1549 'Unicode' => '4.0.0',
1550 'Unicode::Collate' => '0.28',
1551 'Unicode::Normalize' => '0.23',
1552 'Unicode::UCD' => '0.21',
1553 'VMS::Filespec' => '1.11',
1554 'XS::APItest' => '0.02',
1555 'XSLoader' => '0.02',
1556 'attributes' => '0.06',
1562 'charnames' => '1.02',
1563 'diagnostics' => '1.11',
1564 'encoding' => '1.47',
1566 'filetest' => '1.01',
1570 'overload' => '1.01',
1574 'threads' => '1.00',
1575 'threads::shared' => '0.91',
1578 'warnings' => '1.03',
1584 delta_from => 5.008001,
1586 'DB_File' => '1.807',
1587 'Devel::PPPort' => '2.009',
1588 'Digest::MD5' => '2.30',
1589 'I18N::LangTags' => '0.29',
1590 'I18N::LangTags::List' => '0.29',
1591 'MIME::Base64' => '2.21',
1592 'MIME::QuotedPrint' => '2.21',
1593 'Net::Domain' => '2.19',
1594 'Net::FTP' => '2.72',
1595 'Pod::Perldoc' => '3.11',
1596 'Time::HiRes' => '1.52',
1597 'Unicode::Collate' => '0.30',
1598 'Unicode::Normalize' => '0.25',
1604 delta_from => 5.008002,
1606 'Benchmark' => '1.052',
1608 'CGI::Carp' => '1.27',
1609 'CGI::Fast' => '1.05',
1610 'CGI::Pretty' => '1.08',
1611 'CGI::Util' => '1.4',
1613 'DB_File' => '1.808',
1614 'Devel::PPPort' => '2.011',
1616 'Digest::MD5' => '2.33',
1617 'Digest::base' => '1.00',
1619 'Exporter' => '5.57',
1620 'File::CheckTree' => '4.3',
1621 'File::Copy' => '2.07',
1622 'File::Find' => '1.06',
1623 'File::Spec' => '0.87',
1624 'FindBin' => '1.44',
1625 'Getopt::Std' => '1.05',
1626 'Math::BigFloat' => '1.42',
1627 'Math::BigInt' => '1.68',
1628 'Math::BigInt::Calc' => '0.38',
1629 'Math::BigInt::CalcEmu' => '0.02',
1630 'OS2::DLL' => '1.02',
1633 'PerlIO::via::QuotedPrint'=> '0.06',
1634 'Pod::Html' => '1.0502',
1635 'Pod::Parser' => '1.14',
1636 'Pod::Perldoc' => '3.12',
1637 'Pod::PlainText' => '2.02',
1638 'Storable' => '2.09',
1639 'Test::Harness' => '2.40',
1640 'Test::Harness::Assert' => '0.02',
1641 'Test::Harness::Iterator'=> '0.02',
1642 'Test::Harness::Straps' => '0.19',
1643 'Tie::Hash' => '1.01',
1644 'Unicode::Collate' => '0.33',
1645 'Unicode::Normalize' => '0.28',
1646 'XS::APItest' => '0.03',
1648 'diagnostics' => '1.12',
1649 'encoding' => '1.48',
1650 'threads' => '1.01',
1651 'threads::shared' => '0.92',
1654 'Math::BigInt::Scalar' => 1,
1658 delta_from => 5.008003,
1660 'Attribute::Handlers' => '0.78_01',
1661 'B::Assembler' => '0.07',
1662 'B::Concise' => '0.60',
1663 'B::Deparse' => '0.66',
1664 'Benchmark' => '1.06',
1668 'DBM_Filter' => '0.01',
1669 'DBM_Filter::compress' => '0.01',
1670 'DBM_Filter::encode' => '0.01',
1671 'DBM_Filter::int32' => '0.01',
1672 'DBM_Filter::null' => '0.01',
1673 'DBM_Filter::utf8' => '0.01',
1675 'DynaLoader' => '1.05',
1676 'Encode' => '1.99_01',
1677 'Encode::CN::HZ' => '1.0501',
1678 'Exporter' => '5.58',
1679 'Exporter::Heavy' => '5.57',
1680 'ExtUtils::Liblist::Kid'=> '1.3001',
1681 'ExtUtils::MM_NW5' => '2.07_02',
1682 'ExtUtils::MM_Win95' => '0.0301',
1683 'File::Find' => '1.07',
1684 'IO::Handle' => '1.24',
1685 'IO::Pipe' => '1.123',
1686 'IPC::Open3' => '1.0106',
1687 'Locale::Maketext' => '1.08',
1688 'MIME::Base64' => '3.01',
1689 'MIME::QuotedPrint' => '3.01',
1690 'Math::BigFloat' => '1.44',
1691 'Math::BigInt' => '1.70',
1692 'Math::BigInt::Calc' => '0.40',
1693 'Math::BigInt::CalcEmu' => '0.04',
1694 'Math::BigRat' => '0.12',
1695 'ODBM_File' => '1.05',
1699 'Storable' => '2.12',
1700 'Sys::Syslog' => '0.05',
1701 'Term::ANSIColor' => '1.08',
1702 'Time::HiRes' => '1.59',
1703 'Unicode' => '4.0.1',
1704 'Unicode::UCD' => '0.22',
1708 'charnames' => '1.03',
1710 'threads' => '1.03',
1717 delta_from => 5.008004,
1719 'B::Concise' => '0.61',
1720 'B::Deparse' => '0.67',
1722 'CGI::Carp' => '1.28',
1723 'CGI::Util' => '1.5',
1725 'Carp::Heavy' => '1.03',
1727 'DB_File' => '1.809',
1730 'Encode::Alias' => '2.00',
1731 'Encode::Byte' => '2.00',
1732 'Encode::CJKConstants' => '2.00',
1733 'Encode::CN' => '2.00',
1734 'Encode::CN::HZ' => '2.01',
1735 'Encode::Config' => '2.00',
1736 'Encode::EBCDIC' => '2.00',
1737 'Encode::Encoder' => '2.00',
1738 'Encode::Encoding' => '2.00',
1739 'Encode::Guess' => '2.00',
1740 'Encode::JP' => '2.00',
1741 'Encode::JP::H2Z' => '2.00',
1742 'Encode::JP::JIS7' => '2.00',
1743 'Encode::KR' => '2.00',
1744 'Encode::KR::2022_KR' => '2.00',
1745 'Encode::MIME::Header' => '2.00',
1746 'Encode::Symbol' => '2.00',
1747 'Encode::TW' => '2.00',
1748 'Encode::Unicode' => '2.00',
1749 'Encode::Unicode::UTF7' => '2.01',
1750 'File::Basename' => '2.73',
1751 'File::Copy' => '2.08',
1752 'File::Glob' => '1.03',
1753 'FileCache' => '1.04_01',
1754 'I18N::LangTags' => '0.33',
1755 'I18N::LangTags::Detect'=> '1.03',
1756 'List::Util' => '1.14',
1757 'Locale::Constants' => '2.07',
1758 'Locale::Country' => '2.07',
1759 'Locale::Currency' => '2.07',
1760 'Locale::Language' => '2.07',
1761 'Locale::Maketext' => '1.09',
1762 'Locale::Script' => '2.07',
1763 'Net::Cmd' => '2.26',
1764 'Net::FTP' => '2.75',
1765 'Net::NNTP' => '2.23',
1766 'Net::POP3' => '2.28',
1767 'Net::SMTP' => '2.29',
1768 'Net::Time' => '2.10',
1769 'Pod::Checker' => '1.42',
1770 'Pod::Find' => '0.2401',
1771 'Pod::LaTeX' => '0.56',
1772 'Pod::ParseUtils' => '1.2',
1773 'Pod::Perldoc' => '3.13',
1775 'Scalar::Util' => '1.14',
1777 'Storable' => '2.13',
1778 'Term::Cap' => '1.09',
1780 'Test::Harness' => '2.42',
1781 'Text::ParseWords' => '3.22',
1782 'Text::Wrap' => '2001.09292',
1783 'Time::Local' => '1.10',
1784 'Unicode::Collate' => '0.40',
1785 'Unicode::Normalize' => '0.30',
1786 'XS::APItest' => '0.04',
1787 'autouse' => '1.04',
1789 'charnames' => '1.04',
1790 'diagnostics' => '1.13',
1791 'encoding' => '2.00',
1792 'threads' => '1.05',
1799 delta_from => 5.008005,
1803 'B::Concise' => '0.64',
1804 'B::Debug' => '1.02',
1805 'B::Deparse' => '0.69',
1806 'B::Lint' => '1.03',
1807 'B::Showlex' => '1.02',
1809 'DB_File' => '1.810',
1810 'Data::Dumper' => '2.121_02',
1811 'Devel::PPPort' => '3.03',
1812 'Devel::Peek' => '1.02',
1814 'Encode::Alias' => '2.02',
1815 'Encode::Encoding' => '2.02',
1816 'Encode::JP' => '2.01',
1817 'Encode::Unicode' => '2.02',
1818 'Exporter::Heavy' => '5.58',
1819 'ExtUtils::Constant' => '0.1401',
1820 'File::Spec' => '3.01',
1821 'File::Spec::Win32' => '1.5',
1822 'I18N::LangTags' => '0.35',
1823 'I18N::LangTags::List' => '0.35',
1824 'MIME::Base64' => '3.05',
1825 'MIME::QuotedPrint' => '3.03',
1826 'Math::BigFloat' => '1.47',
1827 'Math::BigInt' => '1.73',
1828 'Math::BigInt::Calc' => '0.43',
1829 'Math::BigRat' => '0.13',
1830 'Text::ParseWords' => '3.23',
1831 'Time::HiRes' => '1.65',
1832 'XS::APItest' => '0.05',
1833 'diagnostics' => '1.14',
1834 'encoding' => '2.01',
1836 'overload' => '1.02',
1842 delta_from => 5.008006,
1845 'B::Concise' => '0.65',
1846 'B::Deparse' => '0.7',
1847 'B::Disassembler' => '1.04',
1848 'B::Terse' => '1.03',
1849 'Benchmark' => '1.07',
1851 'CGI::Carp' => '1.29',
1852 'CGI::Cookie' => '1.25',
1854 'Carp::Heavy' => '1.04',
1855 'Class::ISA' => '0.33',
1857 'DB_File' => '1.811',
1858 'Data::Dumper' => '2.121_04',
1859 'Devel::DProf' => '20050310.00',
1860 'Devel::PPPort' => '3.06',
1862 'Digest::file' => '0.01',
1864 'Encode::Alias' => '2.03',
1865 'Errno' => '1.09_01',
1866 'ExtUtils::Constant' => '0.16',
1867 'ExtUtils::Constant::Base'=> '0.01',
1868 'ExtUtils::Constant::Utils'=> '0.01',
1869 'ExtUtils::Constant::XS'=> '0.01',
1870 'File::Find' => '1.09',
1871 'File::Glob' => '1.04',
1872 'File::Path' => '1.07',
1873 'File::Spec' => '3.05',
1874 'File::Temp' => '0.16',
1875 'FileCache' => '1.05',
1876 'IO::File' => '1.11',
1877 'IO::Socket::INET' => '1.28',
1878 'Math::BigFloat' => '1.51',
1879 'Math::BigInt' => '1.77',
1880 'Math::BigInt::Calc' => '0.47',
1881 'Math::BigInt::CalcEmu' => '0.05',
1882 'Math::BigRat' => '0.15',
1883 'Pod::Find' => '1.3',
1884 'Pod::Html' => '1.0503',
1885 'Pod::InputObjects' => '1.3',
1886 'Pod::LaTeX' => '0.58',
1887 'Pod::ParseUtils' => '1.3',
1888 'Pod::Parser' => '1.3',
1889 'Pod::Perldoc' => '3.14',
1890 'Pod::Select' => '1.3',
1891 'Pod::Usage' => '1.3',
1892 'SelectSaver' => '1.01',
1894 'Sys::Syslog' => '0.06',
1895 'Term::ANSIColor' => '1.09',
1896 'Term::Complete' => '1.402',
1897 'Test::Builder' => '0.22',
1898 'Test::Harness' => '2.48',
1899 'Test::Harness::Point' => '0.01',
1900 'Test::Harness::Straps' => '0.23',
1901 'Test::More' => '0.54',
1902 'Test::Simple' => '0.54',
1903 'Text::ParseWords' => '3.24',
1904 'Text::Wrap' => '2001.09293',
1905 'Tie::RefHash' => '1.32',
1906 'Time::HiRes' => '1.66',
1907 'Time::Local' => '1.11',
1908 'Unicode' => '4.1.0',
1909 'Unicode::Normalize' => '0.32',
1910 'Unicode::UCD' => '0.23',
1912 'XS::APItest' => '0.06',
1918 'constant' => '1.05',
1919 'overload' => '1.03',
1920 'threads::shared' => '0.93',
1925 'JPL::AutoLoader' => 1,
1927 'JPL::Compile' => 1,
1929 'OS2::ExtAttr' => 1,
1931 'OS2::Process' => 1,
1936 delta_from => 5.008007,
1938 'Attribute::Handlers' => '0.78_02',
1940 'B::Bblock' => '1.02_01',
1941 'B::Bytecode' => '1.01_01',
1942 'B::C' => '1.04_01',
1943 'B::CC' => '1.00_01',
1944 'B::Concise' => '0.66',
1945 'B::Debug' => '1.02_01',
1946 'B::Deparse' => '0.71',
1947 'B::Disassembler' => '1.05',
1948 'B::Terse' => '1.03_01',
1949 'ByteLoader' => '0.06',
1951 'CGI::Cookie' => '1.26',
1952 'CPAN' => '1.76_02',
1955 'DB_File' => '1.814',
1956 'Data::Dumper' => '2.121_08',
1957 'Devel::DProf' => '20050603.00',
1958 'Devel::PPPort' => '3.06_01',
1959 'Devel::Peek' => '1.03',
1961 'Digest::MD5' => '2.36',
1962 'Digest::file' => '1.00',
1963 'Dumpvalue' => '1.12',
1965 'Encode::Alias' => '2.04',
1966 'Encode::Config' => '2.01',
1967 'Encode::MIME::Header' => '2.01',
1968 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
1969 'English' => '1.02',
1970 'ExtUtils::Command' => '1.09',
1971 'ExtUtils::Command::MM' => '0.05',
1972 'ExtUtils::Constant' => '0.17',
1973 'ExtUtils::Embed' => '1.26',
1974 'ExtUtils::Install' => '1.33',
1975 'ExtUtils::Liblist::Kid'=> '1.3',
1976 'ExtUtils::MM' => '0.05',
1977 'ExtUtils::MM_AIX' => '0.03',
1978 'ExtUtils::MM_Any' => '0.13',
1979 'ExtUtils::MM_BeOS' => '1.05',
1980 'ExtUtils::MM_Cygwin' => '1.08',
1981 'ExtUtils::MM_MacOS' => '1.08',
1982 'ExtUtils::MM_NW5' => '2.08',
1983 'ExtUtils::MM_OS2' => '1.05',
1984 'ExtUtils::MM_QNX' => '0.02',
1985 'ExtUtils::MM_Unix' => '1.50',
1986 'ExtUtils::MM_VMS' => '5.73',
1987 'ExtUtils::MM_VOS' => '0.02',
1988 'ExtUtils::MM_Win32' => '1.12',
1989 'ExtUtils::MM_Win95' => '0.04',
1990 'ExtUtils::MakeMaker' => '6.30',
1991 'ExtUtils::MakeMaker::Config'=> '0.02',
1992 'ExtUtils::Manifest' => '1.46',
1993 'File::Basename' => '2.74',
1994 'File::Copy' => '2.09',
1995 'File::Find' => '1.10',
1996 'File::Glob' => '1.05',
1997 'File::Path' => '1.08',
1998 'File::Spec' => '3.12',
1999 'File::Spec::Win32' => '1.6',
2000 'FileCache' => '1.06',
2001 'Filter::Simple' => '0.82',
2002 'FindBin' => '1.47',
2003 'GDBM_File' => '1.08',
2004 'Getopt::Long' => '2.35',
2006 'IO::Dir' => '1.05',
2007 'IO::File' => '1.13',
2008 'IO::Handle' => '1.25',
2009 'IO::Pipe' => '1.13',
2010 'IO::Poll' => '0.07',
2011 'IO::Seekable' => '1.10',
2012 'IO::Select' => '1.17',
2013 'IO::Socket' => '1.29',
2014 'IO::Socket::INET' => '1.29',
2015 'IO::Socket::UNIX' => '1.22',
2016 'IPC::Open2' => '1.02',
2017 'IPC::Open3' => '1.02',
2018 'List::Util' => '1.18',
2019 'MIME::Base64' => '3.07',
2020 'MIME::QuotedPrint' => '3.07',
2021 'Math::Complex' => '1.35',
2022 'Math::Trig' => '1.03',
2023 'NDBM_File' => '1.06',
2024 'ODBM_File' => '1.06',
2028 'PerlIO::encoding' => '0.09',
2029 'PerlIO::scalar' => '0.04',
2030 'PerlIO::via' => '0.03',
2031 'Pod::Checker' => '1.43',
2032 'Pod::Find' => '1.34',
2033 'Pod::Functions' => '1.03',
2034 'Pod::Html' => '1.0504',
2035 'Pod::ParseUtils' => '1.33',
2036 'Pod::Parser' => '1.32',
2037 'Pod::Usage' => '1.33',
2038 'SDBM_File' => '1.05',
2040 'Scalar::Util' => '1.18',
2042 'Storable' => '2.15',
2043 'Switch' => '2.10_01',
2044 'Sys::Syslog' => '0.13',
2045 'Term::ANSIColor' => '1.10',
2046 'Term::ReadLine' => '1.02',
2047 'Test::Builder' => '0.32',
2048 'Test::Builder::Module' => '0.02',
2049 'Test::Builder::Tester' => '1.02',
2050 'Test::Builder::Tester::Color'=> undef,
2051 'Test::Harness' => '2.56',
2052 'Test::Harness::Straps' => '0.26',
2053 'Test::More' => '0.62',
2054 'Test::Simple' => '0.62',
2055 'Text::Tabs' => '2005.0824',
2056 'Text::Wrap' => '2005.082401',
2057 'Tie::Hash' => '1.02',
2058 'Time::HiRes' => '1.86',
2059 'Unicode::Collate' => '0.52',
2060 'Unicode::UCD' => '0.24',
2061 'User::grent' => '1.01',
2062 'Win32' => '0.2601',
2063 'XS::APItest' => '0.08',
2064 'XS::Typemap' => '0.02',
2065 'XSLoader' => '0.06',
2067 'autouse' => '1.05',
2069 'charnames' => '1.05',
2070 'diagnostics' => '1.15',
2071 'encoding' => '2.02',
2075 'overload' => '1.04',
2077 'threads' => '1.07',
2078 'threads::shared' => '0.94',
2081 'warnings' => '1.05',
2082 'warnings::register' => '1.01',
2088 delta_from => 5.008008,
2090 'Attribute::Handlers' => '0.78_03',
2091 'AutoLoader' => '5.67',
2092 'AutoSplit' => '1.06',
2094 'B::Asmdata' => '1.02',
2095 'B::Assembler' => '0.08',
2097 'B::Concise' => '0.76',
2098 'B::Debug' => '1.05',
2099 'B::Deparse' => '0.87',
2100 'B::Lint' => '1.11',
2101 'B::Lint::Debug' => undef,
2102 'B::Terse' => '1.05',
2103 'Benchmark' => '1.1',
2105 'CGI::Carp' => '1.30_01',
2106 'CGI::Cookie' => '1.29',
2107 'CGI::Fast' => '1.07',
2108 'CGI::Util' => '1.5_01',
2110 'CPAN::Debug' => '5.5',
2111 'CPAN::DeferedCode' => '5.50',
2112 'CPAN::Distroprefs' => '6',
2113 'CPAN::FirstTime' => '5.5_01',
2114 'CPAN::HandleConfig' => '5.5',
2115 'CPAN::Kwalify' => '5.50',
2116 'CPAN::Nox' => '5.50',
2117 'CPAN::Queue' => '5.5',
2118 'CPAN::Tarzip' => '5.5',
2119 'CPAN::Version' => '5.5',
2121 'Carp::Heavy' => '1.10',
2123 'DBM_Filter' => '0.02',
2124 'DBM_Filter::compress' => '0.02',
2125 'DBM_Filter::encode' => '0.02',
2126 'DBM_Filter::int32' => '0.02',
2127 'DBM_Filter::null' => '0.02',
2128 'DBM_Filter::utf8' => '0.02',
2129 'DB_File' => '1.817',
2130 'Data::Dumper' => '2.121_17',
2131 'Devel::DProf' => '20080331.00',
2132 'Devel::InnerPackage' => '0.3',
2133 'Devel::PPPort' => '3.14',
2134 'Devel::Peek' => '1.04',
2136 'Digest::MD5' => '2.37',
2137 'DirHandle' => '1.02',
2138 'DynaLoader' => '1.09',
2140 'Encode::Alias' => '2.10',
2141 'Encode::Byte' => '2.03',
2142 'Encode::CJKConstants' => '2.02',
2143 'Encode::CN' => '2.02',
2144 'Encode::CN::HZ' => '2.05',
2145 'Encode::Config' => '2.05',
2146 'Encode::EBCDIC' => '2.02',
2147 'Encode::Encoder' => '2.01',
2148 'Encode::Encoding' => '2.05',
2149 'Encode::GSM0338' => '2.01',
2150 'Encode::Guess' => '2.02',
2151 'Encode::JP' => '2.03',
2152 'Encode::JP::H2Z' => '2.02',
2153 'Encode::JP::JIS7' => '2.04',
2154 'Encode::KR' => '2.02',
2155 'Encode::KR::2022_KR' => '2.02',
2156 'Encode::MIME::Header' => '2.05',
2157 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2158 'Encode::MIME::Name' => '1.01',
2159 'Encode::Symbol' => '2.02',
2160 'Encode::TW' => '2.02',
2161 'Encode::Unicode' => '2.05',
2162 'Encode::Unicode::UTF7' => '2.04',
2163 'English' => '1.03',
2165 'Exporter' => '5.63',
2166 'Exporter::Heavy' => '5.63',
2167 'ExtUtils::Command' => '1.15',
2168 'ExtUtils::Command::MM' => '6.48',
2169 'ExtUtils::Constant' => '0.21',
2170 'ExtUtils::Constant::Base'=> '0.04',
2171 'ExtUtils::Constant::ProxySubs'=> '0.06',
2172 'ExtUtils::Constant::Utils'=> '0.02',
2173 'ExtUtils::Constant::XS'=> '0.02',
2174 'ExtUtils::Embed' => '1.28',
2175 'ExtUtils::Install' => '1.50_01',
2176 'ExtUtils::Installed' => '1.43',
2177 'ExtUtils::Liblist' => '6.48',
2178 'ExtUtils::Liblist::Kid'=> '6.48',
2179 'ExtUtils::MM' => '6.48',
2180 'ExtUtils::MM_AIX' => '6.48',
2181 'ExtUtils::MM_Any' => '6.48',
2182 'ExtUtils::MM_BeOS' => '6.48',
2183 'ExtUtils::MM_Cygwin' => '6.48',
2184 'ExtUtils::MM_DOS' => '6.48',
2185 'ExtUtils::MM_Darwin' => '6.48',
2186 'ExtUtils::MM_MacOS' => '6.48',
2187 'ExtUtils::MM_NW5' => '6.48',
2188 'ExtUtils::MM_OS2' => '6.48',
2189 'ExtUtils::MM_QNX' => '6.48',
2190 'ExtUtils::MM_UWIN' => '6.48',
2191 'ExtUtils::MM_Unix' => '6.48',
2192 'ExtUtils::MM_VMS' => '6.48',
2193 'ExtUtils::MM_VOS' => '6.48',
2194 'ExtUtils::MM_Win32' => '6.48',
2195 'ExtUtils::MM_Win95' => '6.48',
2196 'ExtUtils::MY' => '6.48',
2197 'ExtUtils::MakeMaker' => '6.48',
2198 'ExtUtils::MakeMaker::Config'=> '6.48',
2199 'ExtUtils::MakeMaker::bytes'=> '6.48',
2200 'ExtUtils::MakeMaker::vmsish'=> '6.48',
2201 'ExtUtils::Manifest' => '1.55',
2202 'ExtUtils::Mkbootstrap' => '6.48',
2203 'ExtUtils::Mksymlists' => '6.48',
2204 'ExtUtils::Packlist' => '1.43',
2205 'ExtUtils::ParseXS' => '2.19',
2206 'ExtUtils::XSSymSet' => '1.1',
2207 'ExtUtils::testlib' => '6.48',
2210 'File::Basename' => '2.77',
2211 'File::CheckTree' => '4.4',
2212 'File::Compare' => '1.1005',
2213 'File::Copy' => '2.13',
2214 'File::DosGlob' => '1.01',
2215 'File::Find' => '1.13',
2216 'File::Glob' => '1.06',
2217 'File::Path' => '2.07_02',
2218 'File::Spec' => '3.29',
2219 'File::Spec::Cygwin' => '3.29',
2220 'File::Spec::Epoc' => '3.29',
2221 'File::Spec::Functions' => '3.29',
2222 'File::Spec::Mac' => '3.29',
2223 'File::Spec::OS2' => '3.29',
2224 'File::Spec::Unix' => '3.29',
2225 'File::Spec::VMS' => '3.29',
2226 'File::Spec::Win32' => '3.29',
2227 'File::Temp' => '0.20',
2228 'File::stat' => '1.01',
2229 'FileCache' => '1.07',
2230 'Filter::Simple' => '0.83',
2231 'Filter::Util::Call' => '1.07',
2232 'FindBin' => '1.49',
2233 'GDBM_File' => '1.09',
2234 'Getopt::Long' => '2.37',
2235 'Getopt::Std' => '1.06',
2236 'Hash::Util' => '0.06',
2238 'IO::Dir' => '1.06',
2239 'IO::File' => '1.14',
2240 'IO::Handle' => '1.27',
2241 'IO::Socket' => '1.30',
2242 'IO::Socket::INET' => '1.31',
2243 'IO::Socket::UNIX' => '1.23',
2244 'IPC::Msg' => '2.00',
2245 'IPC::Open2' => '1.03',
2246 'IPC::Open3' => '1.03',
2247 'IPC::Semaphore' => '2.00',
2248 'IPC::SharedMem' => '2.00',
2249 'IPC::SysV' => '2.00',
2250 'List::Util' => '1.19',
2251 'Locale::Maketext' => '1.13',
2252 'Locale::Maketext::Guts'=> '1.13',
2253 'Locale::Maketext::GutsLoader'=> '1.13',
2254 'Math::BigFloat' => '1.60',
2255 'Math::BigInt' => '1.89',
2256 'Math::BigInt::Calc' => '0.52',
2257 'Math::BigRat' => '0.22',
2258 'Math::Complex' => '1.54',
2259 'Math::Trig' => '1.18',
2260 'Module::CoreList' => '2.17',
2261 'Module::Pluggable' => '3.8',
2262 'Module::Pluggable::Object'=> '3.6',
2263 'NDBM_File' => '1.07',
2265 'Net::Cmd' => '2.29',
2266 'Net::Config' => '1.11',
2267 'Net::Domain' => '2.20',
2268 'Net::FTP' => '2.77',
2269 'Net::FTP::A' => '1.18',
2270 'Net::NNTP' => '2.24',
2271 'Net::POP3' => '2.29',
2272 'Net::Ping' => '2.35',
2273 'Net::SMTP' => '2.31',
2275 'ODBM_File' => '1.07',
2276 'Opcode' => '1.0601',
2279 'PerlIO::encoding' => '0.11',
2280 'PerlIO::scalar' => '0.06',
2281 'PerlIO::via' => '0.05',
2282 'Pod::Html' => '1.09',
2283 'Pod::ParseUtils' => '1.35',
2284 'Pod::Parser' => '1.35',
2285 'Pod::Select' => '1.35',
2286 'Pod::Usage' => '1.35',
2287 'SDBM_File' => '1.06',
2289 'Scalar::Util' => '1.19',
2290 'SelfLoader' => '1.17',
2293 'Storable' => '2.19',
2295 'Sys::Syslog' => '0.27',
2296 'Sys::Syslog::win32::Win32'=> undef,
2297 'Term::ANSIColor' => '1.12',
2298 'Term::Cap' => '1.12',
2299 'Term::ReadLine' => '1.03',
2300 'Test::Builder' => '0.80',
2301 'Test::Builder::Module' => '0.80',
2302 'Test::Builder::Tester' => '1.13',
2303 'Test::Harness' => '2.64',
2304 'Test::Harness::Results'=> '0.01_01',
2305 'Test::Harness::Straps' => '0.26_01',
2306 'Test::Harness::Util' => '0.01',
2307 'Test::More' => '0.80',
2308 'Test::Simple' => '0.80',
2309 'Text::Balanced' => '1.98',
2310 'Text::ParseWords' => '3.27',
2311 'Text::Soundex' => '3.03',
2312 'Text::Tabs' => '2007.1117',
2313 'Text::Wrap' => '2006.1117',
2315 'Thread::Queue' => '2.11',
2316 'Thread::Semaphore' => '2.09',
2317 'Tie::Handle' => '4.2',
2318 'Tie::Hash' => '1.03',
2319 'Tie::Memoize' => '1.1',
2320 'Tie::RefHash' => '1.38',
2321 'Tie::Scalar' => '1.01',
2322 'Tie::StdHandle' => '4.2',
2323 'Time::HiRes' => '1.9715',
2324 'Time::Local' => '1.1901',
2325 'Time::gmtime' => '1.03',
2326 'Unicode' => '5.1.0',
2327 'Unicode::Normalize' => '1.02',
2328 'Unicode::UCD' => '0.25',
2329 'VMS::DCLsym' => '1.03',
2330 'VMS::Stdio' => '2.4',
2332 'Win32API::File' => '0.1001_01',
2333 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2334 'Win32CORE' => '0.02',
2335 'XS::APItest' => '0.15',
2336 'XS::Typemap' => '0.03',
2337 'XSLoader' => '0.10',
2338 'attributes' => '0.09',
2339 'autouse' => '1.06',
2345 'charnames' => '1.06',
2346 'constant' => '1.17',
2347 'diagnostics' => '1.16',
2348 'encoding' => '2.6_01',
2350 'filetest' => '1.02',
2354 'overload' => '1.06',
2356 'sigtrap' => '1.04',
2357 'threads' => '1.71',
2358 'threads::shared' => '1.27',
2360 'warnings' => '1.05_01',
2366 delta_from => 5.008002,
2370 'B::Concise' => '0.57',
2371 'B::Deparse' => '0.65',
2372 'DB_File' => '1.806',
2373 'Devel::PPPort' => '2.008',
2374 'English' => '1.02',
2376 'OS2::DLL' => '1.02',
2378 'Time::HiRes' => '1.51',
2379 'Unicode::Collate' => '0.28',
2380 'Unicode::Normalize' => '0.23',
2381 'XSLoader' => '0.03',
2382 'assertions' => '0.01',
2383 'assertions::activate' => '0.01',
2384 'overload' => '1.02',
2385 'version' => '0.29',
2391 delta_from => 5.008004,
2394 'B::Assembler' => '0.06',
2396 'B::Concise' => '0.59',
2397 'B::Debug' => '1.02',
2398 'B::Deparse' => '0.65',
2399 'DB_File' => '1.808_01',
2400 'Devel::PPPort' => '2.011_01',
2402 'DynaLoader' => '1.04',
2403 'English' => '1.02',
2404 'Exporter::Heavy' => '5.567',
2405 'ExtUtils::Command' => '1.07',
2406 'ExtUtils::Liblist::Kid'=> '1.3',
2407 'ExtUtils::MM_Any' => '0.0901',
2408 'ExtUtils::MM_Cygwin' => '1.07',
2409 'ExtUtils::MM_NW5' => '2.07_01',
2410 'ExtUtils::MM_Unix' => '1.45_01',
2411 'ExtUtils::MM_VMS' => '5.71_01',
2412 'ExtUtils::MM_Win32' => '1.10_01',
2413 'ExtUtils::MM_Win95' => '0.03',
2414 'ExtUtils::MakeMaker' => '6.21_02',
2415 'ExtUtils::Manifest' => '1.43',
2417 'Getopt::Long' => '2.3401',
2418 'IO::Handle' => '1.23',
2419 'IO::Pipe' => '1.122',
2420 'IPC::Open3' => '1.0105',
2421 'MIME::Base64' => '3.00_01',
2422 'MIME::QuotedPrint' => '3.00',
2423 'Memoize' => '1.01_01',
2424 'ODBM_File' => '1.04',
2427 'Storable' => '2.11',
2428 'Time::HiRes' => '1.56',
2429 'Time::Local' => '1.07_94',
2430 'UNIVERSAL' => '1.02',
2431 'Unicode' => '4.0.0',
2432 'Unicode::UCD' => '0.21',
2433 'XSLoader' => '0.03',
2434 'assertions' => '0.01',
2435 'assertions::activate' => '0.01',
2439 'overload' => '1.02',
2440 'threads' => '1.02',
2442 'version' => '0.36',
2448 delta_from => 5.008007,
2451 'B::Concise' => '0.64',
2452 'B::Deparse' => '0.69',
2453 'B::Disassembler' => '1.03',
2454 'B::Terse' => '1.02',
2456 'Config::Extensions' => '0.01',
2457 'Devel::DProf' => '20030813.00',
2458 'DynaLoader' => '1.07',
2460 'Encode::Alias' => '2.02',
2461 'English' => '1.03',
2462 'Exporter' => '5.59',
2463 'Exporter::Heavy' => '5.59',
2464 'ExtUtils::Command' => '1.07',
2465 'ExtUtils::Command::MM' => '0.03_01',
2466 'ExtUtils::Embed' => '1.26',
2467 'ExtUtils::Liblist::Kid'=> '1.3',
2468 'ExtUtils::MM_Any' => '0.10',
2469 'ExtUtils::MM_Cygwin' => '1.07',
2470 'ExtUtils::MM_MacOS' => '1.08',
2471 'ExtUtils::MM_NW5' => '2.07',
2472 'ExtUtils::MM_Unix' => '1.46_01',
2473 'ExtUtils::MM_VMS' => '5.71',
2474 'ExtUtils::MM_Win32' => '1.10',
2475 'ExtUtils::MM_Win95' => '0.03',
2476 'ExtUtils::MakeMaker' => '6.25',
2477 'ExtUtils::Manifest' => '1.44',
2479 'File::Path' => '1.06',
2480 'FileCache' => '1.04_01',
2481 'Getopt::Long' => '2.3401',
2482 'IO::File' => '1.10',
2483 'IO::Socket::INET' => '1.27',
2484 'Math::BigFloat' => '1.49',
2485 'Math::BigInt' => '1.75',
2486 'Math::BigInt::Calc' => '0.45',
2487 'Math::BigRat' => '0.14',
2488 'Memoize' => '1.01_01',
2489 'Module::CoreList' => '1.99',
2490 'NEXT' => '0.60_01',
2492 'Pod::Html' => '1.0502',
2493 'Scalar::Util' => '1.14_1',
2494 'Storable' => '2.14',
2496 'Test::Harness' => '2.46',
2497 'Test::Harness::Straps' => '0.20_01',
2498 'Text::Balanced' => '1.95_01',
2499 'Text::Wrap' => '2001.09292',
2500 'UNIVERSAL' => '1.02',
2501 'Unicode' => '4.0.1',
2502 'Unicode::Normalize' => '0.30',
2503 'Unicode::UCD' => '0.22',
2505 'XS::APItest' => '0.05',
2506 'XSLoader' => '0.03',
2507 'assertions' => '0.01',
2508 'assertions::activate' => '0.01',
2514 'encoding::warnings' => '0.05',
2517 'threads::shared' => '0.92',
2519 'version' => '0.42',
2520 'warnings' => '1.04',
2523 'Test::Harness::Point' => 1,
2527 delta_from => 5.008008,
2529 'Archive::Tar' => '1.26_01',
2530 'Archive::Tar::Constant'=> '0.02',
2531 'Archive::Tar::File' => '0.02',
2532 'AutoSplit' => '1.04_01',
2534 'B::Bblock' => '1.02',
2535 'B::Bytecode' => '1.01',
2538 'B::Concise' => '0.67',
2539 'B::Debug' => '1.02',
2540 'B::Deparse' => '0.73',
2541 'B::Lint' => '1.04',
2542 'B::Terse' => '1.03',
2544 'CPAN' => '1.83_58',
2545 'CPAN::Debug' => '4.44',
2546 'CPAN::FirstTime' => '4.50',
2547 'CPAN::HandleConfig' => '4.31',
2548 'CPAN::Nox' => '2.31',
2549 'CPAN::Tarzip' => '3.36',
2550 'CPAN::Version' => '2.55',
2552 'Carp::Heavy' => '1.05',
2553 'Compress::Zlib' => '2.000_07',
2554 'Compress::Zlib::Common'=> '2.000_07',
2555 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2556 'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2557 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2558 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2559 'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2560 'Compress::Zlib::FileConstants'=> '2.000_07',
2561 'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2562 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2563 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2564 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2565 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2566 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2567 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2568 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2569 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2570 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2571 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2572 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2573 'Compress::Zlib::ParseParameters'=> '2.000_07',
2574 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2575 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2576 'Config::Extensions' => '0.01',
2578 'Devel::PPPort' => '3.08',
2579 'Digest::SHA' => '5.32',
2580 'DirHandle' => '1.01',
2581 'DynaLoader' => '1.07',
2583 'Encode::CN::HZ' => '2.02',
2584 'Encode::MIME::Header' => '2.02',
2585 'English' => '1.04',
2586 'Exporter' => '5.59',
2587 'Exporter::Heavy' => '5.59',
2588 'ExtUtils::CBuilder' => '0.15',
2589 'ExtUtils::CBuilder::Base'=> '0.12',
2590 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2591 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2592 'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2593 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2594 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2595 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2596 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2597 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2598 'ExtUtils::Command::MM' => '0.05_01',
2599 'ExtUtils::Constant' => '0.2',
2600 'ExtUtils::Constant::Base'=> '0.02',
2601 'ExtUtils::Constant::ProxySubs'=> '0.01',
2602 'ExtUtils::Constant::XS'=> '0.02',
2603 'ExtUtils::MM_Any' => '0.13_01',
2604 'ExtUtils::MM_Unix' => '1.50_01',
2605 'ExtUtils::MakeMaker' => '6.30_01',
2606 'ExtUtils::ParseXS' => '2.15_02',
2608 'File::Compare' => '1.1005',
2609 'File::Spec' => '3.15',
2610 'File::Temp' => '0.16_01',
2611 'IO::File' => '1.13_01',
2612 'IO::Handle' => '1.26',
2613 'IO::Socket' => '1.29_01',
2614 'IO::Socket::INET' => '1.29_02',
2615 'IO::Socket::UNIX' => '1.22_01',
2616 'IO::Zlib' => '1.04_02',
2617 'Locale::Maketext' => '1.10_01',
2618 'Math::BigInt::FastCalc'=> '0.10',
2619 'Memoize' => '1.01_01',
2620 'Module::CoreList' => '2.02',
2621 'Moped::Msg' => '0.01',
2622 'NEXT' => '0.60_01',
2623 'Net::Cmd' => '2.26_01',
2624 'Net::Domain' => '2.19_01',
2625 'Net::Ping' => '2.31_04',
2628 'Pod::Escapes' => '1.04',
2629 'Pod::Man' => '2.04',
2630 'Pod::Perldoc' => '3.14_01',
2631 'Pod::Simple' => '3.04',
2632 'Pod::Simple::BlackBox' => undef,
2633 'Pod::Simple::Checker' => '2.02',
2634 'Pod::Simple::Debug' => undef,
2635 'Pod::Simple::DumpAsText'=> '2.02',
2636 'Pod::Simple::DumpAsXML'=> '2.02',
2637 'Pod::Simple::HTML' => '3.03',
2638 'Pod::Simple::HTMLBatch'=> '3.02',
2639 'Pod::Simple::HTMLLegacy'=> '5.01',
2640 'Pod::Simple::LinkSection'=> undef,
2641 'Pod::Simple::Methody' => '2.02',
2642 'Pod::Simple::Progress' => '1.01',
2643 'Pod::Simple::PullParser'=> '2.02',
2644 'Pod::Simple::PullParserEndToken'=> undef,
2645 'Pod::Simple::PullParserStartToken'=> undef,
2646 'Pod::Simple::PullParserTextToken'=> undef,
2647 'Pod::Simple::PullParserToken'=> '2.02',
2648 'Pod::Simple::RTF' => '2.02',
2649 'Pod::Simple::Search' => '3.04',
2650 'Pod::Simple::SimpleTree'=> '2.02',
2651 'Pod::Simple::Text' => '2.02',
2652 'Pod::Simple::TextContent'=> '2.02',
2653 'Pod::Simple::TiedOutFH'=> undef,
2654 'Pod::Simple::Transcode'=> undef,
2655 'Pod::Simple::TranscodeDumb'=> '2.02',
2656 'Pod::Simple::TranscodeSmart'=> undef,
2657 'Pod::Simple::XMLOutStream'=> '2.02',
2658 'Pod::Text' => '3.01',
2659 'Pod::Text::Color' => '2.01',
2660 'Pod::Text::Overstrike' => '2',
2661 'Pod::Text::Termcap' => '2.01',
2662 'Pod::Usage' => '1.33_01',
2663 'SelfLoader' => '1.0905',
2664 'Storable' => '2.15_02',
2665 'Test::Builder::Module' => '0.03',
2666 'Text::Balanced' => '1.95_01',
2667 'Tie::File' => '0.97_01',
2668 'UNIVERSAL' => '1.03',
2669 'XS::APItest' => '0.09',
2670 'assertions' => '0.02',
2671 'assertions::activate' => '0.02',
2672 'assertions::compat' => undef,
2673 'constant' => '1.07',
2674 'encoding::warnings' => '0.05',
2675 'feature' => '1.00',
2678 'version' => '0.53',
2684 delta_from => 5.009003,
2686 'Archive::Tar' => '1.30_01',
2687 'AutoLoader' => '5.61',
2689 'B::Bytecode' => '1.02',
2691 'B::Concise' => '0.69',
2692 'B::Deparse' => '0.76',
2693 'B::Lint' => '1.08',
2694 'Benchmark' => '1.08',
2696 'CGI::Cookie' => '1.27',
2697 'CGI::Fast' => '1.07',
2698 'CPAN' => '1.87_55',
2699 'CPAN::Debug' => '5.400561',
2700 'CPAN::FirstTime' => '5.400742',
2701 'CPAN::HandleConfig' => '5.400740',
2702 'CPAN::Nox' => '5.400561',
2703 'CPAN::Tarzip' => '5.400714',
2704 'CPAN::Version' => '5.400561',
2705 'Compress::Raw::Zlib' => '2.000_13',
2706 'Compress::Zlib' => '2.000_13',
2708 'Devel::PPPort' => '3.10',
2710 'Digest::SHA' => '5.43',
2711 'Encode' => '2.18_01',
2712 'Encode::Alias' => '2.06',
2713 'Encode::Byte' => '2.02',
2714 'Encode::CJKConstants' => '2.02',
2715 'Encode::CN' => '2.02',
2716 'Encode::CN::HZ' => '2.04',
2717 'Encode::Config' => '2.03',
2718 'Encode::EBCDIC' => '2.02',
2719 'Encode::Encoder' => '2.01',
2720 'Encode::Encoding' => '2.04',
2721 'Encode::Guess' => '2.02',
2722 'Encode::JP' => '2.03',
2723 'Encode::JP::H2Z' => '2.02',
2724 'Encode::JP::JIS7' => '2.02',
2725 'Encode::KR' => '2.02',
2726 'Encode::KR::2022_KR' => '2.02',
2727 'Encode::MIME::Header' => '2.04',
2728 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2729 'Encode::Symbol' => '2.02',
2730 'Encode::TW' => '2.02',
2731 'Encode::Unicode' => '2.03',
2732 'Encode::Unicode::UTF7' => '2.04',
2733 'ExtUtils::CBuilder' => '0.18',
2734 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2735 'ExtUtils::Constant::Base'=> '0.03',
2736 'ExtUtils::Constant::ProxySubs'=> '0.03',
2737 'ExtUtils::Install' => '1.41',
2738 'ExtUtils::Installed' => '1.41',
2739 'ExtUtils::MM_Any' => '0.13_02',
2740 'ExtUtils::MM_NW5' => '2.08_01',
2741 'ExtUtils::MM_Unix' => '1.5003',
2742 'ExtUtils::MM_VMS' => '5.73_03',
2743 'ExtUtils::MM_Win32' => '1.12_02',
2744 'ExtUtils::MM_Win95' => '0.04_01',
2745 'ExtUtils::MakeMaker' => '6.30_02',
2746 'ExtUtils::Manifest' => '1.46_01',
2747 'ExtUtils::Mkbootstrap' => '1.15_01',
2748 'ExtUtils::Mksymlists' => '1.19_01',
2749 'ExtUtils::Packlist' => '1.41',
2750 'File::Basename' => '2.75',
2751 'File::Find' => '1.11',
2752 'File::GlobMapper' => '0.000_02',
2753 'File::Spec' => '3.19',
2754 'FileCache' => '1.07',
2755 'Getopt::Long' => '2.3501',
2756 'Hash::Util' => '0.07',
2757 'Hash::Util::FieldHash' => '0.01',
2759 'IO::Compress::Adapter::Deflate'=> '2.000_13',
2760 'IO::Compress::Adapter::Identity'=> '2.000_13',
2761 'IO::Compress::Base' => '2.000_13',
2762 'IO::Compress::Base::Common'=> '2.000_13',
2763 'IO::Compress::Deflate' => '2.000_13',
2764 'IO::Compress::Gzip' => '2.000_13',
2765 'IO::Compress::Gzip::Constants'=> '2.000_13',
2766 'IO::Compress::RawDeflate'=> '2.000_13',
2767 'IO::Compress::Zip' => '2.000_13',
2768 'IO::Compress::Zip::Constants'=> '2.000_13',
2769 'IO::Compress::Zlib::Constants'=> '2.000_13',
2770 'IO::Compress::Zlib::Extra'=> '2.000_13',
2771 'IO::Dir' => '1.06',
2772 'IO::File' => '1.14',
2773 'IO::Handle' => '1.27',
2774 'IO::Socket' => '1.30_01',
2775 'IO::Socket::INET' => '1.31',
2776 'IO::Socket::UNIX' => '1.23',
2777 'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2778 'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2779 'IO::Uncompress::AnyInflate'=> '2.000_13',
2780 'IO::Uncompress::AnyUncompress'=> '2.000_13',
2781 'IO::Uncompress::Base' => '2.000_13',
2782 'IO::Uncompress::Gunzip'=> '2.000_13',
2783 'IO::Uncompress::Inflate'=> '2.000_13',
2784 'IO::Uncompress::RawInflate'=> '2.000_13',
2785 'IO::Uncompress::Unzip' => '2.000_13',
2786 'MIME::Base64' => '3.07_01',
2787 'Math::Complex' => '1.36',
2788 'Math::Trig' => '1.04',
2789 'Module::Build' => '0.2805',
2790 'Module::Build::Base' => undef,
2791 'Module::Build::Compat' => '0.03',
2792 'Module::Build::ConfigData'=> undef,
2793 'Module::Build::Cookbook'=> undef,
2794 'Module::Build::ModuleInfo'=> undef,
2795 'Module::Build::Notes' => undef,
2796 'Module::Build::PPMMaker'=> undef,
2797 'Module::Build::Platform::Amiga'=> undef,
2798 'Module::Build::Platform::Default'=> undef,
2799 'Module::Build::Platform::EBCDIC'=> undef,
2800 'Module::Build::Platform::MPEiX'=> undef,
2801 'Module::Build::Platform::MacOS'=> undef,
2802 'Module::Build::Platform::RiscOS'=> undef,
2803 'Module::Build::Platform::Unix'=> undef,
2804 'Module::Build::Platform::VMS'=> undef,
2805 'Module::Build::Platform::VOS'=> undef,
2806 'Module::Build::Platform::Windows'=> undef,
2807 'Module::Build::Platform::aix'=> undef,
2808 'Module::Build::Platform::cygwin'=> undef,
2809 'Module::Build::Platform::darwin'=> undef,
2810 'Module::Build::Platform::os2'=> undef,
2811 'Module::Build::PodParser'=> undef,
2812 'Module::Build::Version'=> '0',
2813 'Module::Build::YAML' => '0.50',
2814 'Module::CoreList' => '2.08',
2815 'Module::Load' => '0.10',
2816 'Module::Loaded' => '0.01',
2817 'Package::Constants' => '0.01',
2818 'Pod::Html' => '1.07',
2819 'Pod::Man' => '2.09',
2820 'Pod::Text' => '3.07',
2821 'Pod::Text::Color' => '2.03',
2822 'Pod::Text::Termcap' => '2.03',
2823 'SDBM_File' => '1.06',
2825 'Sys::Syslog' => '0.17',
2826 'Term::ANSIColor' => '1.11',
2827 'Test::Builder' => '0.33',
2828 'Test::Builder::Tester' => '1.04',
2829 'Test::Harness' => '2.62',
2830 'Test::Harness::Util' => '0.01',
2831 'Test::More' => '0.64',
2832 'Test::Simple' => '0.64',
2833 'Text::Balanced' => '1.98_01',
2834 'Text::ParseWords' => '3.25',
2835 'Text::Tabs' => '2007.071101',
2836 'Text::Wrap' => '2006.0711',
2837 'Tie::RefHash' => '1.34_01',
2838 'Time::HiRes' => '1.87',
2839 'Time::Local' => '1.13',
2840 'Time::gmtime' => '1.03',
2841 'UNIVERSAL' => '1.04',
2842 'Unicode::Normalize' => '1.01',
2843 'Win32API::File' => '0.1001',
2844 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2845 'assertions' => '0.03',
2846 'assertions::compat' => '0.02',
2847 'autouse' => '1.06',
2848 'diagnostics' => '1.16',
2849 'encoding' => '2.04',
2850 'encoding::warnings' => '0.10',
2851 'feature' => '1.01',
2853 'threads' => '1.38',
2854 'threads::shared' => '0.94_01',
2855 'version' => '0.67',
2858 'Compress::Zlib::Common'=> 1,
2859 'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2860 'Compress::Zlib::Compress::Zip::Constants'=> 1,
2861 'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2862 'Compress::Zlib::CompressPlugin::Identity'=> 1,
2863 'Compress::Zlib::File::GlobMapper'=> 1,
2864 'Compress::Zlib::FileConstants'=> 1,
2865 'Compress::Zlib::IO::Compress::Base'=> 1,
2866 'Compress::Zlib::IO::Compress::Deflate'=> 1,
2867 'Compress::Zlib::IO::Compress::Gzip'=> 1,
2868 'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2869 'Compress::Zlib::IO::Compress::Zip'=> 1,
2870 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2871 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2872 'Compress::Zlib::IO::Uncompress::Base'=> 1,
2873 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2874 'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2875 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2876 'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2877 'Compress::Zlib::ParseParameters'=> 1,
2878 'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2879 'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2883 delta_from => 5.009004,
2885 'Archive::Extract' => '0.22_01',
2886 'Archive::Tar' => '1.32',
2887 'Attribute::Handlers' => '0.78_06',
2888 'AutoLoader' => '5.63',
2889 'AutoSplit' => '1.05',
2891 'B::Concise' => '0.72',
2892 'B::Debug' => '1.05',
2893 'B::Deparse' => '0.82',
2894 'B::Lint' => '1.09',
2895 'B::Terse' => '1.05',
2896 'Benchmark' => '1.1',
2898 'CGI::Cookie' => '1.28',
2899 'CGI::Util' => '1.5_01',
2901 'CPAN::Debug' => '5.400955',
2902 'CPAN::FirstTime' => '5.401669',
2903 'CPAN::HandleConfig' => '5.401744',
2904 'CPAN::Kwalify' => '5.401418',
2905 'CPAN::Nox' => '5.400844',
2906 'CPAN::Queue' => '5.401704',
2907 'CPAN::Tarzip' => '5.401717',
2908 'CPAN::Version' => '5.401387',
2909 'CPANPLUS' => '0.81_01',
2910 'CPANPLUS::Backend' => undef,
2911 'CPANPLUS::Backend::RV' => undef,
2912 'CPANPLUS::Config' => undef,
2913 'CPANPLUS::Configure' => undef,
2914 'CPANPLUS::Configure::Setup'=> undef,
2915 'CPANPLUS::Dist' => undef,
2916 'CPANPLUS::Dist::Base' => '0.01',
2917 'CPANPLUS::Dist::Build' => '0.06_01',
2918 'CPANPLUS::Dist::Build::Constants'=> '0.01',
2919 'CPANPLUS::Dist::MM' => undef,
2920 'CPANPLUS::Dist::Sample'=> undef,
2921 'CPANPLUS::Error' => undef,
2922 'CPANPLUS::Internals' => '0.81_01',
2923 'CPANPLUS::Internals::Constants'=> '0.01',
2924 'CPANPLUS::Internals::Constants::Report'=> '0.01',
2925 'CPANPLUS::Internals::Extract'=> undef,
2926 'CPANPLUS::Internals::Fetch'=> undef,
2927 'CPANPLUS::Internals::Report'=> undef,
2928 'CPANPLUS::Internals::Search'=> undef,
2929 'CPANPLUS::Internals::Source'=> undef,
2930 'CPANPLUS::Internals::Utils'=> undef,
2931 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
2932 'CPANPLUS::Module' => undef,
2933 'CPANPLUS::Module::Author'=> undef,
2934 'CPANPLUS::Module::Author::Fake'=> undef,
2935 'CPANPLUS::Module::Checksums'=> undef,
2936 'CPANPLUS::Module::Fake'=> undef,
2937 'CPANPLUS::Module::Signature'=> undef,
2938 'CPANPLUS::Selfupdate' => undef,
2939 'CPANPLUS::Shell' => undef,
2940 'CPANPLUS::Shell::Classic'=> '0.0562',
2941 'CPANPLUS::Shell::Default'=> '0.81_01',
2942 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
2943 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
2944 'CPANPLUS::inc' => undef,
2946 'Carp::Heavy' => '1.07',
2947 'Compress::Raw::Zlib' => '2.005',
2948 'Compress::Zlib' => '2.005',
2950 'DBM_Filter' => '0.02',
2951 'DB_File' => '1.815',
2952 'Data::Dumper' => '2.121_13',
2953 'Devel::InnerPackage' => '0.3',
2954 'Devel::PPPort' => '3.11_01',
2955 'Digest::MD5' => '2.36_01',
2956 'Digest::SHA' => '5.44',
2957 'DynaLoader' => '1.08',
2959 'Encode::Alias' => '2.07',
2960 'Encode::Byte' => '2.03',
2961 'Encode::Config' => '2.04',
2962 'Encode::Encoding' => '2.05',
2963 'Encode::GSM0338' => '2.00',
2964 'Encode::JP::JIS7' => '2.03',
2965 'Encode::MIME::Header' => '2.05',
2966 'Encode::MIME::Name' => '1.01',
2967 'Encode::Unicode' => '2.05',
2969 'Exporter' => '5.60',
2970 'Exporter::Heavy' => '5.60',
2971 'ExtUtils::CBuilder' => '0.19',
2972 'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
2973 'ExtUtils::Command' => '1.13',
2974 'ExtUtils::Command::MM' => '0.07',
2975 'ExtUtils::Constant::Base'=> '0.04',
2976 'ExtUtils::Install' => '1.41_01',
2977 'ExtUtils::Liblist' => '1.03',
2978 'ExtUtils::Liblist::Kid'=> '1.33',
2979 'ExtUtils::MM' => '0.07',
2980 'ExtUtils::MM_AIX' => '0.05',
2981 'ExtUtils::MM_Any' => '0.15',
2982 'ExtUtils::MM_BeOS' => '1.07',
2983 'ExtUtils::MM_Cygwin' => '1.1',
2984 'ExtUtils::MM_DOS' => '0.04',
2985 'ExtUtils::MM_MacOS' => '1.1',
2986 'ExtUtils::MM_NW5' => '2.1',
2987 'ExtUtils::MM_OS2' => '1.07',
2988 'ExtUtils::MM_QNX' => '0.04',
2989 'ExtUtils::MM_UWIN' => '0.04',
2990 'ExtUtils::MM_Unix' => '1.54_01',
2991 'ExtUtils::MM_VMS' => '5.76',
2992 'ExtUtils::MM_VOS' => '0.04',
2993 'ExtUtils::MM_Win32' => '1.15',
2994 'ExtUtils::MM_Win95' => '0.06',
2995 'ExtUtils::MY' => '0.03',
2996 'ExtUtils::MakeMaker' => '6.36',
2997 'ExtUtils::MakeMaker::Config'=> '0.04',
2998 'ExtUtils::MakeMaker::bytes'=> '0.03',
2999 'ExtUtils::MakeMaker::vmsish'=> '0.03',
3000 'ExtUtils::Manifest' => '1.51_01',
3001 'ExtUtils::Mkbootstrap' => '1.17',
3002 'ExtUtils::Mksymlists' => '1.21',
3003 'ExtUtils::ParseXS' => '2.18',
3004 'ExtUtils::XSSymSet' => '1.1',
3005 'ExtUtils::testlib' => '1.17',
3008 'File::Basename' => '2.76',
3009 'File::Copy' => '2.10',
3010 'File::Fetch' => '0.10',
3011 'File::Glob' => '1.06',
3012 'File::Path' => '2.01',
3013 'File::Spec' => '3.25',
3014 'File::Spec::Cygwin' => '1.1_01',
3015 'File::Spec::VMS' => '1.4_01',
3016 'File::Temp' => '0.18',
3017 'Filter::Util::Call' => '1.0602',
3018 'FindBin' => '1.49',
3019 'Getopt::Long' => '2.36',
3020 'Hash::Util::FieldHash' => '1.01',
3021 'IO::Compress::Adapter::Deflate'=> '2.005',
3022 'IO::Compress::Adapter::Identity'=> '2.005',
3023 'IO::Compress::Base' => '2.005',
3024 'IO::Compress::Base::Common'=> '2.005',
3025 'IO::Compress::Deflate' => '2.005',
3026 'IO::Compress::Gzip' => '2.005',
3027 'IO::Compress::Gzip::Constants'=> '2.005',
3028 'IO::Compress::RawDeflate'=> '2.005',
3029 'IO::Compress::Zip' => '2.005',
3030 'IO::Compress::Zip::Constants'=> '2.005',
3031 'IO::Compress::Zlib::Constants'=> '2.005',
3032 'IO::Compress::Zlib::Extra'=> '2.005',
3033 'IO::Uncompress::Adapter::Identity'=> '2.005',
3034 'IO::Uncompress::Adapter::Inflate'=> '2.005',
3035 'IO::Uncompress::AnyInflate'=> '2.005',
3036 'IO::Uncompress::AnyUncompress'=> '2.005',
3037 'IO::Uncompress::Base' => '2.005',
3038 'IO::Uncompress::Gunzip'=> '2.005',
3039 'IO::Uncompress::Inflate'=> '2.005',
3040 'IO::Uncompress::RawInflate'=> '2.005',
3041 'IO::Uncompress::Unzip' => '2.005',
3042 'IO::Zlib' => '1.05_01',
3043 'IPC::Cmd' => '0.36_01',
3044 'List::Util' => '1.19',
3045 'Locale::Maketext::Simple'=> '0.18',
3046 'Log::Message' => '0.01',
3047 'Log::Message::Config' => '0.01',
3048 'Log::Message::Handlers'=> undef,
3049 'Log::Message::Item' => undef,
3050 'Log::Message::Simple' => '0.0201',
3051 'Math::BigFloat' => '1.58',
3052 'Math::BigInt' => '1.87',
3053 'Math::BigInt::Calc' => '0.51',
3054 'Math::BigInt::FastCalc'=> '0.15_01',
3055 'Math::BigRat' => '0.19',
3056 'Math::Complex' => '1.37',
3057 'Memoize' => '1.01_02',
3058 'Module::Build' => '0.2808',
3059 'Module::Build::Config' => undef,
3060 'Module::Build::Version'=> '0.7203',
3061 'Module::CoreList' => '2.12',
3062 'Module::Load::Conditional'=> '0.16',
3063 'Module::Pluggable' => '3.6',
3064 'Module::Pluggable::Object'=> '3.6',
3065 'NDBM_File' => '1.07',
3066 'Net::Cmd' => '2.28',
3067 'Net::Config' => '1.11',
3068 'Net::Domain' => '2.20',
3069 'Net::FTP' => '2.77',
3070 'Net::FTP::A' => '1.18',
3071 'Net::NNTP' => '2.24',
3072 'Net::POP3' => '2.29',
3073 'Net::SMTP' => '2.31',
3074 'ODBM_File' => '1.07',
3075 'Object::Accessor' => '0.32',
3078 'Params::Check' => '0.26',
3079 'PerlIO::encoding' => '0.10',
3080 'PerlIO::scalar' => '0.05',
3081 'PerlIO::via' => '0.04',
3082 'Pod::Html' => '1.08',
3083 'Pod::Man' => '2.12',
3084 'Pod::ParseUtils' => '1.35',
3085 'Pod::Parser' => '1.35',
3086 'Pod::Select' => '1.35',
3087 'Pod::Simple' => '3.05',
3088 'Pod::Text' => '3.08',
3089 'Pod::Usage' => '1.35',
3090 'Scalar::Util' => '1.19',
3091 'SelfLoader' => '1.11',
3092 'Shell' => '0.72_01',
3094 'Storable' => '2.16',
3096 'Sys::Syslog' => '0.18_01',
3097 'Term::ANSIColor' => '1.12',
3098 'Term::UI' => '0.14_01',
3099 'Term::UI::History' => undef,
3100 'Test::Builder' => '0.70',
3101 'Test::Builder::Module' => '0.68',
3102 'Test::Builder::Tester' => '1.07',
3103 'Test::Harness' => '2.64',
3104 'Test::Harness::Results'=> '0.01',
3105 'Test::More' => '0.70',
3106 'Test::Simple' => '0.70',
3107 'Text::Balanced' => '2.0.0',
3108 'Text::Soundex' => '3.02',
3109 'Text::Tabs' => '2007.1117',
3110 'Text::Wrap' => '2006.1117',
3112 'Tie::File' => '0.97_02',
3113 'Tie::Hash::NamedCapture'=> '0.06',
3114 'Tie::Memoize' => '1.1',
3115 'Tie::RefHash' => '1.37',
3116 'Time::HiRes' => '1.9707',
3117 'Time::Local' => '1.17',
3118 'Time::Piece' => '1.11_02',
3119 'Time::Seconds' => undef,
3120 'Unicode' => '5.0.0',
3121 'Unicode::Normalize' => '1.02',
3122 'Unicode::UCD' => '0.25',
3123 'VMS::DCLsym' => '1.03',
3125 'Win32API::File' => '0.1001_01',
3126 'Win32CORE' => '0.02',
3127 'XS::APItest' => '0.12',
3128 'XSLoader' => '0.08',
3129 'attributes' => '0.08',
3135 'charnames' => '1.06',
3136 'constant' => '1.10',
3137 'diagnostics' => '1.17',
3138 'encoding' => '2.06',
3139 'encoding::warnings' => '0.11',
3140 'feature' => '1.10',
3144 'overload' => '1.06',
3146 'sigtrap' => '1.04',
3149 'threads' => '1.63',
3150 'threads::shared' => '1.12',
3152 'version' => '0.7203',
3153 'warnings' => '1.06',
3157 'B::Assembler' => 1,
3162 'B::Disassembler' => 1,
3166 'Thread::Signal' => 1,
3167 'Thread::Specific' => 1,
3169 'assertions::activate' => 1,
3170 'assertions::compat' => 1,
3174 delta_from => 5.009005,
3176 'Archive::Extract' => '0.24',
3177 'Archive::Tar' => '1.38',
3178 'Attribute::Handlers' => '0.79',
3180 'B::Concise' => '0.74',
3181 'B::Deparse' => '0.83',
3183 'CPAN::API::HOWTO' => undef,
3184 'CPAN::Debug' => '5.402212',
3185 'CPAN::DeferedCode' => '5.50',
3186 'CPAN::FirstTime' => '5.402229',
3187 'CPAN::HandleConfig' => '5.402212',
3188 'CPAN::Nox' => '5.402411',
3189 'CPAN::Queue' => '5.402212',
3190 'CPAN::Tarzip' => '5.402213',
3191 'CPAN::Version' => '5.5',
3192 'CPANPLUS' => '0.84',
3193 'CPANPLUS::Dist::Build' => '0.06_02',
3194 'CPANPLUS::Internals' => '0.84',
3195 'CPANPLUS::Shell::Default'=> '0.84',
3196 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3198 'Carp::Heavy' => '1.08',
3199 'Compress::Raw::Zlib' => '2.008',
3200 'Compress::Zlib' => '2.008',
3202 'DB_File' => '1.816_1',
3203 'Data::Dumper' => '2.121_14',
3204 'Devel::PPPort' => '3.13',
3205 'Digest::SHA' => '5.45',
3206 'Exporter' => '5.62',
3207 'Exporter::Heavy' => '5.62',
3208 'ExtUtils::CBuilder' => '0.21',
3209 'ExtUtils::CBuilder::Base'=> '0.21',
3210 'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3211 'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3212 'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3213 'ExtUtils::CBuilder::Platform::aix'=> '0.21',