1 package Module::CoreList;
3 use vars qw/$VERSION %released %version %families %upstream
4 %bug_tracker %deprecated %delta/;
5 use Module::CoreList::TieHashDelta;
7 $VERSION = '5.20160221';
9 sub _released_order { # Sort helper, to make '?' sort after everything else
10 (substr($released{$a}, 0, 1) eq "?")
11 ? ((substr($released{$b}, 0, 1) eq "?")
14 : ((substr($released{$b}, 0, 1) eq "?")
16 : $released{$a} cmp $released{$b} )
22 my $what = shift || '';
23 if ($what eq 'dumpinc') {
29 print "---INC---\n", join "\n" => keys %INC
34 sub first_release_raw {
36 $module = shift if eval { $module->isa(__PACKAGE__) }
37 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
41 ? grep { defined $version{$_}{ $module } &&
42 $version{$_}{ $module } ge $version } keys %version
43 : grep { exists $version{$_}{ $module } } keys %version;
48 sub first_release_by_date {
49 my @perls = &first_release_raw;
51 return (sort _released_order @perls)[0];
55 my @perls = &first_release_raw;
57 return (sort { $a cmp $b } @perls)[0];
62 $regex = shift if eval { $regex->isa(__PACKAGE__) };
64 @perls = keys %version unless @perls;
68 while (my ($k, $v) = each %{$version{$_}}) {
69 $mods{$k}++ if $k =~ $regex;
72 return sort keys %mods
77 if ($v->isa(__PACKAGE__)) {
79 return if not defined $v;
81 return $version{$v} if defined $version{$v};
87 $module = shift if eval { $module->isa(__PACKAGE__) }
88 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
89 my $perl_version = shift;
91 return unless $module && exists $deprecated{$perl_version}{$module};
92 return $deprecated{$perl_version}{$module};
97 $module = shift if eval { $module->isa(__PACKAGE__) }
98 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
99 return unless $module;
100 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
101 return unless @perls;
103 return List::Util::minstr(@perls);
107 my @perls = &removed_raw;
111 sub removed_from_by_date {
112 my @perls = sort _released_order &removed_raw;
118 $mod = shift if eval { $mod->isa(__PACKAGE__) }
119 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
120 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
121 my $last = pop @perls;
122 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
126 sub changes_between {
127 my $left_ver = shift;
128 $left_ver = shift if eval { $left_ver->isa(__PACKAGE__) };
129 my $right_ver = shift;
131 my $left = $version{ $left_ver };
132 my $right = $version{ $right_ver };
134 my %uniq = (%$left, %$right);
137 for my $lib (keys %uniq) {
138 my $lhs = exists $left->{ $lib }
139 ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
141 my $rhs = exists $right->{ $lib }
142 ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
145 next if $lhs eq $rhs;
148 (exists $left->{$lib} ? (left => $left->{$lib}) : ()),
149 (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
152 $changes{$lib} = $change;
158 # When things escaped.
159 # NB. If you put version numbers with trailing zeroes here, you
160 # should also add an alias for the numerical ($]) version; see
161 # just before the __END__ of this module.
163 5.000 => '1994-10-17',
164 5.001 => '1995-03-14',
165 5.002 => '1996-02-29',
166 5.00307 => '1996-10-10',
167 5.004 => '1997-05-15',
168 5.005 => '1998-07-22',
169 5.00503 => '1999-03-28',
170 5.00405 => '1999-04-29',
171 5.006 => '2000-03-22',
172 5.006001 => '2001-04-08',
173 5.007003 => '2002-03-05',
174 5.008 => '2002-07-19',
175 5.008001 => '2003-09-25',
176 5.009 => '2003-10-27',
177 5.008002 => '2003-11-05',
178 5.006002 => '2003-11-15',
179 5.008003 => '2004-01-14',
180 5.00504 => '2004-02-23',
181 5.009001 => '2004-03-16',
182 5.008004 => '2004-04-21',
183 5.008005 => '2004-07-19',
184 5.008006 => '2004-11-27',
185 5.009002 => '2005-04-01',
186 5.008007 => '2005-05-30',
187 5.009003 => '2006-01-28',
188 5.008008 => '2006-01-31',
189 5.009004 => '2006-08-15',
190 5.009005 => '2007-07-07',
191 5.010000 => '2007-12-18',
192 5.008009 => '2008-12-14',
193 5.010001 => '2009-08-22',
194 5.011000 => '2009-10-02',
195 5.011001 => '2009-10-20',
196 5.011002 => '2009-11-20',
197 5.011003 => '2009-12-20',
198 5.011004 => '2010-01-20',
199 5.011005 => '2010-02-20',
200 5.012000 => '2010-04-12',
201 5.013000 => '2010-04-20',
202 5.012001 => '2010-05-16',
203 5.013001 => '2010-05-20',
204 5.013002 => '2010-06-22',
205 5.013003 => '2010-07-20',
206 5.013004 => '2010-08-20',
207 5.012002 => '2010-09-06',
208 5.013005 => '2010-09-19',
209 5.013006 => '2010-10-20',
210 5.013007 => '2010-11-20',
211 5.013008 => '2010-12-20',
212 5.012003 => '2011-01-21',
213 5.013009 => '2011-01-20',
214 5.013010 => '2011-02-20',
215 5.013011 => '2011-03-20',
216 5.014000 => '2011-05-14',
217 5.012004 => '2011-06-20',
218 5.012005 => '2012-11-10',
219 5.014001 => '2011-06-16',
220 5.015000 => '2011-06-20',
221 5.015001 => '2011-07-20',
222 5.015002 => '2011-08-20',
223 5.014002 => '2011-09-26',
224 5.015003 => '2011-09-20',
225 5.015004 => '2011-10-20',
226 5.015005 => '2011-11-20',
227 5.015006 => '2011-12-20',
228 5.015007 => '2012-01-20',
229 5.015008 => '2012-02-20',
230 5.015009 => '2012-03-20',
231 5.016000 => '2012-05-20',
232 5.016001 => '2012-08-08',
233 5.016002 => '2012-11-01',
234 5.017000 => '2012-05-26',
235 5.017001 => '2012-06-20',
236 5.017002 => '2012-07-20',
237 5.017003 => '2012-08-20',
238 5.017004 => '2012-09-20',
239 5.014003 => '2012-10-12',
240 5.017005 => '2012-10-20',
241 5.017006 => '2012-11-20',
242 5.017007 => '2012-12-18',
243 5.017008 => '2013-01-20',
244 5.017009 => '2013-02-20',
245 5.014004 => '2013-03-10',
246 5.016003 => '2013-03-11',
247 5.017010 => '2013-03-21',
248 5.017011 => '2013-04-20',
249 5.018000 => '2013-05-18',
250 5.019000 => '2013-05-20',
251 5.019001 => '2013-06-21',
252 5.019002 => '2013-07-22',
253 5.018001 => '2013-08-12',
254 5.019003 => '2013-08-20',
255 5.019004 => '2013-09-20',
256 5.019005 => '2013-10-20',
257 5.019006 => '2013-11-20',
258 5.019007 => '2013-12-20',
259 5.018002 => '2014-01-06',
260 5.018003 => '2014-10-01',
261 5.018004 => '2014-10-01',
262 5.019008 => '2014-01-20',
263 5.019009 => '2014-02-20',
264 5.01901 => '2014-03-20',
265 5.019011 => '2014-04-20',
266 5.020000 => '2014-05-27',
267 5.021000 => '2014-05-27',
268 5.021001 => '2014-06-20',
269 5.021002 => '2014-07-20',
270 5.021003 => '2014-08-20',
271 5.020001 => '2014-09-14',
272 5.021004 => '2014-09-20',
273 5.021005 => '2014-10-20',
274 5.021006 => '2014-11-20',
275 5.021007 => '2014-12-20',
276 5.021008 => '2015-01-20',
277 5.020002 => '2015-02-14',
278 5.021009 => '2015-02-21',
279 5.021010 => '2015-03-20',
280 5.021011 => '2015-04-20',
281 5.022000 => '2015-06-01',
282 5.023000 => '2015-06-20',
283 5.023001 => '2015-07-20',
284 5.023002 => '2015-08-20',
285 5.020003 => '2015-09-12',
286 5.023003 => '2015-09-20',
287 5.023004 => '2015-10-20',
288 5.023005 => '2015-11-20',
289 5.022001 => '2015-12-13',
290 5.023006 => '2015-12-21',
291 5.023007 => '2016-01-20',
292 5.023008 => '2016-02-20',
293 5.023009 => '????-??-??',
296 for my $version ( sort { $a <=> $b } keys %released ) {
297 my $family = int ($version * 1000) / 1000;
298 push @{ $families{ $family }} , $version;
304 'AnyDBM_File' => undef,
305 'AutoLoader' => undef,
306 'AutoSplit' => undef,
307 'Benchmark' => undef,
311 'DynaLoader' => undef,
315 'ExtUtils::MakeMaker' => undef,
317 'File::Basename' => undef,
318 'File::CheckTree' => undef,
319 'File::Find' => undef,
320 'FileHandle' => undef,
321 'GDBM_File' => undef,
322 'Getopt::Long' => undef,
323 'Getopt::Std' => undef,
324 'I18N::Collate' => undef,
325 'IPC::Open2' => undef,
326 'IPC::Open3' => undef,
327 'Math::BigFloat' => undef,
328 'Math::BigInt' => undef,
329 'Math::Complex' => undef,
330 'NDBM_File' => undef,
331 'Net::Ping' => undef,
332 'ODBM_File' => undef,
334 'SDBM_File' => undef,
335 'Search::Dict' => undef,
338 'Sys::Hostname' => undef,
339 'Sys::Syslog' => undef,
340 'Term::Cap' => undef,
341 'Term::Complete' => undef,
342 'Test::Harness' => undef,
343 'Text::Abbrev' => undef,
344 'Text::ParseWords' => undef,
345 'Text::Soundex' => undef,
346 'Text::Tabs' => undef,
348 'Time::Local' => undef,
361 'ExtUtils::Liblist' => undef,
362 'ExtUtils::Manifest' => undef,
363 'ExtUtils::Mkbootstrap' => undef,
364 'File::Path' => undef,
365 'SubstrHash' => undef,
375 'Devel::SelfStubber' => '1.01',
376 'DirHandle' => undef,
377 'DynaLoader' => '1.00',
378 'ExtUtils::Install' => undef,
379 'ExtUtils::MM_OS2' => undef,
380 'ExtUtils::MM_Unix' => undef,
381 'ExtUtils::MM_VMS' => undef,
382 'ExtUtils::MakeMaker' => '5.21',
383 'ExtUtils::Manifest' => '1.22',
384 'ExtUtils::Mksymlists' => '1.00',
386 'File::Copy' => '1.5',
387 'File::Path' => '1.01',
388 'FileCache' => undef,
389 'FileHandle' => '1.00',
390 'GDBM_File' => '1.00',
391 'Getopt::Long' => '2.01',
392 'NDBM_File' => '1.00',
394 'ODBM_File' => '1.00',
396 'Pod::Functions' => undef,
397 'Pod::Text' => undef,
398 'SDBM_File' => '1.00',
400 'SelectSaver' => undef,
401 'SelfLoader' => '1.06',
404 'Term::ReadLine' => undef,
405 'Test::Harness' => '1.07',
406 'Text::Wrap' => undef,
407 'Tie::Hash' => undef,
408 'Tie::Scalar' => undef,
409 'Tie::SubstrHash' => undef,
410 'diagnostics' => undef,
424 'ExtUtils::Embed' => '1.18',
425 'ExtUtils::Install' => '1.15',
426 'ExtUtils::Liblist' => '1.20',
427 'ExtUtils::MM_Unix' => '1.107',
428 'ExtUtils::MakeMaker' => '5.38',
429 'ExtUtils::Manifest' => '1.27',
430 'ExtUtils::Mkbootstrap' => '1.13',
431 'ExtUtils::Mksymlists' => '1.12',
432 'ExtUtils::testlib' => '1.11',
434 'File::Basename' => '2.4',
436 'Getopt::Long' => '2.04',
438 'IO::File' => '1.05',
439 'IO::Handle' => '1.12',
440 'IO::Pipe' => '1.07',
441 'IO::Seekable' => '1.05',
442 'IO::Select' => '1.09',
443 'IO::Socket' => '1.13',
444 'Net::Ping' => '1.01',
445 'OS2::ExtAttr' => '0.01',
446 'OS2::PrfDB' => '0.02',
447 'OS2::Process' => undef,
448 'OS2::REXX' => undef,
451 'Test::Harness' => '1.13',
452 'Text::Tabs' => '96.051501',
453 'Text::Wrap' => '96.041801',
454 'UNIVERSAL' => undef,
455 'VMS::Filespec' => undef,
456 'VMS::Stdio' => '2.0',
464 delta_from => 5.00307,
466 'Bundle::CPAN' => '0.02',
468 'CGI::Apache' => '1.01',
469 'CGI::Carp' => '1.06',
470 'CGI::Fast' => '1.00a',
471 'CGI::Push' => '1.00',
472 'CGI::Switch' => '0.05',
474 'CPAN::FirstTime' => '1.18',
475 'CPAN::Nox' => undef,
476 'Class::Struct' => undef,
479 'DynaLoader' => '1.02',
480 'ExtUtils::Command' => '1.00',
481 'ExtUtils::Embed' => '1.2501',
482 'ExtUtils::Install' => '1.16',
483 'ExtUtils::Liblist' => '1.2201',
484 'ExtUtils::MM_Unix' => '1.114',
485 'ExtUtils::MM_Win32' => undef,
486 'ExtUtils::MakeMaker' => '5.4002',
487 'ExtUtils::Manifest' => '1.33',
488 'ExtUtils::Mksymlists' => '1.13',
489 'ExtUtils::XSSymSet' => '1.0',
491 'File::Basename' => '2.5',
492 'File::Compare' => '1.1001',
493 'File::Copy' => '2.02',
494 'File::Path' => '1.04',
495 'File::stat' => undef,
496 'FileHandle' => '2.00',
497 'Getopt::Long' => '2.10',
498 'IO::File' => '1.0602',
499 'IO::Handle' => '1.1504',
500 'IO::Pipe' => '1.0901',
501 'IO::Seekable' => '1.06',
502 'IO::Select' => '1.10',
503 'IO::Socket' => '1.1602',
504 'IPC::Open2' => '1.01',
505 'IPC::Open3' => '1.0101',
506 'Math::Complex' => '1.01',
508 'Net::Ping' => '2.02',
509 'Net::hostent' => undef,
510 'Net::netent' => undef,
511 'Net::protoent' => undef,
512 'Net::servent' => undef,
515 'Pod::Html' => undef,
516 'Pod::Text' => '1.0203',
517 'SelfLoader' => '1.07',
520 'Test::Harness' => '1.1502',
521 'Text::Tabs' => '96.121201',
522 'Text::Wrap' => '97.011701',
523 'Tie::RefHash' => undef,
524 'Time::gmtime' => '1.01',
525 'Time::localtime' => '1.01',
527 'User::grent' => undef,
528 'User::pwent' => undef,
529 'VMS::DCLsym' => '1.01',
530 'VMS::Stdio' => '2.02',
533 'constant' => '1.00',
545 'AutoLoader' => '5.56',
546 'AutoSplit' => '1.0303',
547 'Bundle::CPAN' => '0.03',
549 'CGI::Apache' => '1.1',
550 'CGI::Carp' => '1.10',
551 'CGI::Cookie' => '1.06',
552 'CGI::Push' => '1.01',
553 'CGI::Switch' => '0.06',
555 'CPAN::FirstTime' => '1.30',
558 'DynaLoader' => '1.03',
559 'ExtUtils::Command' => '1.01',
560 'ExtUtils::Embed' => '1.2505',
561 'ExtUtils::Install' => '1.28',
562 'ExtUtils::Liblist' => '1.25',
563 'ExtUtils::MM_Unix' => '1.118',
564 'ExtUtils::MakeMaker' => '5.42',
565 'ExtUtils::Mkbootstrap' => '1.14',
566 'ExtUtils::Mksymlists' => '1.16',
567 'File::Basename' => '2.6',
568 'File::DosGlob' => undef,
569 'File::Path' => '1.0402',
570 'File::Spec' => '0.6',
571 'File::Spec::Mac' => '1.0',
572 'File::Spec::OS2' => undef,
573 'File::Spec::Unix' => undef,
574 'File::Spec::VMS' => undef,
575 'File::Spec::Win32' => undef,
577 'Getopt::Long' => '2.19',
578 'IO::File' => '1.06021',
579 'IO::Socket' => '1.1603',
580 'IPC::Open3' => '1.0103',
581 'Math::Complex' => '1.25',
582 'NDBM_File' => '1.01',
583 'Pod::Html' => '1.0101',
584 'Pod::Text' => '1.0204',
585 'SelfLoader' => '1.08',
588 'Test::Harness' => '1.1602',
589 'Text::ParseWords' => '3.1001',
590 'Text::Wrap' => '98.112902',
591 'Tie::Handle' => undef,
602 delta_from => 5.00405,
604 'AutoLoader' => undef,
605 'AutoSplit' => '1.0302',
607 'B::Asmdata' => undef,
608 'B::Assembler' => undef,
609 'B::Bblock' => undef,
610 'B::Bytecode' => undef,
614 'B::Deparse' => '0.56',
615 'B::Disassembler' => undef,
617 'B::Showlex' => undef,
618 'B::Stackobj' => undef,
621 'CGI::Carp' => '1.101',
623 'CPAN::FirstTime' => '1.29',
625 'Data::Dumper' => '2.09',
627 'ExtUtils::Installed' => '0.02',
628 'ExtUtils::MM_Unix' => '1.12601',
629 'ExtUtils::MakeMaker' => '5.4301',
630 'ExtUtils::Mkbootstrap' => '1.13',
631 'ExtUtils::Mksymlists' => '1.17',
632 'ExtUtils::Packlist' => '0.03',
634 'File::Path' => '1.0401',
635 'Getopt::Long' => '2.17',
636 'IO::Handle' => '1.1505',
637 'IPC::Msg' => '1.00',
638 'IPC::Open3' => '1.0102',
639 'IPC::Semaphore' => '1.00',
640 'IPC::SysV' => '1.03',
642 'OS2::Process' => '0.2',
643 'Pod::Html' => '1.01',
644 'Pod::Text' => '1.0203',
645 'Text::ParseWords' => '3.1',
646 'Text::Wrap' => '97.02',
648 'Thread::Queue' => undef,
649 'Thread::Semaphore' => undef,
650 'Thread::Signal' => undef,
651 'Thread::Specific' => undef,
652 'Tie::Array' => '1.00',
653 'VMS::Stdio' => '2.1',
665 'AutoSplit' => '1.0303',
667 'CGI::Carp' => '1.13',
668 'CGI::Fast' => '1.01',
670 'CPAN::FirstTime' => '1.36',
671 'CPAN::Nox' => '1.00',
673 'Data::Dumper' => '2.101',
674 'Dumpvalue' => undef,
676 'ExtUtils::Install' => '1.28',
677 'ExtUtils::Liblist' => '1.25',
678 'ExtUtils::MM_Unix' => '1.12602',
679 'ExtUtils::MakeMaker' => '5.4302',
680 'ExtUtils::Manifest' => '1.33',
681 'ExtUtils::Mkbootstrap' => '1.14',
682 'ExtUtils::Mksymlists' => '1.17',
683 'ExtUtils::testlib' => '1.11',
685 'Getopt::Long' => '2.19',
686 'Getopt::Std' => '1.01',
687 'IO::Pipe' => '1.0902',
688 'IPC::Open3' => '1.0103',
689 'Math::Complex' => '1.26',
691 'Text::Wrap' => '98.112902',
697 delta_from => 5.00503,
699 'CPAN::FirstTime' => '1.36',
700 'DB_File' => '1.807',
701 'ExtUtils::Install' => '1.28',
702 'ExtUtils::Liblist' => '1.25',
703 'ExtUtils::MM_Unix' => '1.12602',
704 'ExtUtils::Manifest' => '1.33',
705 'ExtUtils::Miniperl' => undef,
706 'ExtUtils::Mkbootstrap' => '1.14',
707 'ExtUtils::Mksymlists' => '1.17',
708 'ExtUtils::testlib' => '1.11',
709 'File::Compare' => '1.1002',
710 'File::Spec' => '0.8',
711 'File::Spec::Functions' => undef,
712 'File::Spec::Mac' => undef,
713 'Getopt::Long' => '2.20',
714 'Pod::Html' => '1.02',
720 delta_from => 5.00504,
722 'AutoLoader' => '5.57',
723 'AutoSplit' => '1.0305',
724 'B::Deparse' => '0.59',
727 'ByteLoader' => '0.03',
729 'CGI::Apache' => undef,
730 'CGI::Carp' => '1.14',
731 'CGI::Cookie' => '1.12',
732 'CGI::Fast' => '1.02',
733 'CGI::Pretty' => '1.03',
734 'CGI::Switch' => undef,
736 'CPAN::FirstTime' => '1.38',
737 'Carp::Heavy' => undef,
738 'Class::Struct' => '0.58',
742 'Devel::DProf' => '20000000.00_00',
743 'Devel::Peek' => '1.00_01',
744 'DynaLoader' => '1.04',
745 'Exporter' => '5.562',
746 'Exporter::Heavy' => undef,
747 'ExtUtils::MM_Cygwin' => undef,
748 'ExtUtils::MM_Unix' => '1.12603',
749 'ExtUtils::MakeMaker' => '5.45',
750 'File::Copy' => '2.03',
751 'File::Glob' => '0.991',
752 'File::Path' => '1.0403',
753 'GDBM_File' => '1.03',
754 'Getopt::Long' => '2.23',
755 'Getopt::Std' => '1.02',
758 'IO::File' => '1.08',
759 'IO::Handle' => '1.21',
760 'IO::Pipe' => '1.121',
761 'IO::Poll' => '0.01',
762 'IO::Seekable' => '1.08',
763 'IO::Select' => '1.14',
764 'IO::Socket' => '1.26',
765 'IO::Socket::INET' => '1.25',
766 'IO::Socket::UNIX' => '1.20',
768 'JPL::AutoLoader' => undef,
769 'JPL::Class' => undef,
770 'JPL::Compile' => undef,
771 'NDBM_File' => '1.03',
772 'ODBM_File' => '1.02',
775 'Pod::Checker' => '1.098',
776 'Pod::Find' => '0.12',
777 'Pod::Html' => '1.03',
778 'Pod::InputObjects' => '1.12',
779 'Pod::Man' => '1.02',
780 'Pod::ParseUtils' => '0.2',
781 'Pod::Parser' => '1.12',
782 'Pod::Plainer' => '0.01',
783 'Pod::Select' => '1.12',
784 'Pod::Text' => '2.03',
785 'Pod::Text::Color' => '0.05',
786 'Pod::Text::Termcap' => '0.04',
787 'Pod::Usage' => '1.12',
788 'SDBM_File' => '1.02',
789 'SelfLoader' => '1.0901',
792 'Sys::Hostname' => '1.1',
793 'Sys::Syslog' => '0.01',
794 'Term::ANSIColor' => '1.01',
796 'Test::Harness' => '1.1604',
797 'Text::ParseWords' => '3.2',
798 'Text::Soundex' => '1.0',
799 'Text::Tabs' => '98.112801',
800 'Tie::Array' => '1.01',
801 'Tie::Handle' => '1.0',
802 'VMS::Stdio' => '2.2',
803 'XSLoader' => '0.01',
804 'attributes' => '0.03',
808 'charnames' => undef,
809 'constant' => '1.02',
810 'diagnostics' => '1.0',
817 'warnings::register' => undef,
825 'AutoLoader' => '5.58',
826 'B::Assembler' => '0.02',
827 'B::Concise' => '0.51',
828 'B::Deparse' => '0.6',
829 'ByteLoader' => '0.04',
831 'CGI::Carp' => '1.20',
832 'CGI::Cookie' => '1.18',
833 'CGI::Pretty' => '1.05',
834 'CGI::Push' => '1.04',
835 'CGI::Util' => '1.1',
837 'CPAN::FirstTime' => '1.53',
838 'Class::Struct' => '0.59',
841 'Data::Dumper' => '2.102',
842 'ExtUtils::Install' => '1.28',
843 'ExtUtils::Liblist' => '1.26',
844 'ExtUtils::MM_Unix' => '1.12603',
845 'ExtUtils::Manifest' => '1.33',
846 'ExtUtils::Mkbootstrap' => '1.14',
847 'ExtUtils::Mksymlists' => '1.17',
848 'ExtUtils::testlib' => '1.11',
849 'File::Path' => '1.0404',
850 'File::Spec' => '0.82',
851 'File::Spec::Epoc' => undef,
852 'File::Spec::Functions' => '1.1',
853 'File::Spec::Mac' => '1.2',
854 'File::Spec::OS2' => '1.1',
855 'File::Spec::Unix' => '1.2',
856 'File::Spec::VMS' => '1.1',
857 'File::Spec::Win32' => '1.2',
858 'File::Temp' => '0.12',
859 'GDBM_File' => '1.05',
860 'Getopt::Long' => '2.25',
861 'IO::Poll' => '0.05',
863 'Math::BigFloat' => '0.02',
864 'Math::BigInt' => '0.01',
865 'Math::Complex' => '1.31',
866 'NDBM_File' => '1.04',
867 'ODBM_File' => '1.03',
868 'OS2::REXX' => '1.00',
869 'Pod::Checker' => '1.2',
870 'Pod::Find' => '0.21',
871 'Pod::InputObjects' => '1.13',
872 'Pod::LaTeX' => '0.53',
873 'Pod::Man' => '1.15',
874 'Pod::ParseUtils' => '0.22',
875 'Pod::Parser' => '1.13',
876 'Pod::Select' => '1.13',
877 'Pod::Text' => '2.08',
878 'Pod::Text::Color' => '0.06',
879 'Pod::Text::Overstrike' => '1.01',
880 'Pod::Text::Termcap' => '1',
881 'Pod::Usage' => '1.14',
882 'SDBM_File' => '1.03',
883 'SelfLoader' => '1.0902',
885 'Term::ANSIColor' => '1.03',
887 'Text::Wrap' => '2001.0131',
888 'Tie::Handle' => '4.0',
889 'Tie::RefHash' => '1.3',
895 delta_from => 5.006001,
897 'CPAN::FirstTime' => '1.53',
898 'DB_File' => '1.806',
899 'Data::Dumper' => '2.121',
900 'ExtUtils::Command' => '1.05',
901 'ExtUtils::Command::MM' => '0.03',
902 'ExtUtils::Install' => '1.32',
903 'ExtUtils::Installed' => '0.08',
904 'ExtUtils::Liblist' => '1.01',
905 'ExtUtils::Liblist::Kid'=> '1.3',
906 'ExtUtils::MM' => '0.04',
907 'ExtUtils::MM_Any' => '0.07',
908 'ExtUtils::MM_BeOS' => '1.04',
909 'ExtUtils::MM_Cygwin' => '1.06',
910 'ExtUtils::MM_DOS' => '0.02',
911 'ExtUtils::MM_MacOS' => '1.07',
912 'ExtUtils::MM_NW5' => '2.06',
913 'ExtUtils::MM_OS2' => '1.04',
914 'ExtUtils::MM_UWIN' => '0.02',
915 'ExtUtils::MM_Unix' => '1.42',
916 'ExtUtils::MM_VMS' => '5.70',
917 'ExtUtils::MM_Win32' => '1.09',
918 'ExtUtils::MM_Win95' => '0.03',
919 'ExtUtils::MY' => '0.01',
920 'ExtUtils::MakeMaker' => '6.17',
921 'ExtUtils::MakeMaker::bytes'=> '0.01',
922 'ExtUtils::MakeMaker::vmsish'=> '0.01',
923 'ExtUtils::Manifest' => '1.42',
924 'ExtUtils::Mkbootstrap' => '1.15',
925 'ExtUtils::Mksymlists' => '1.19',
926 'ExtUtils::Packlist' => '0.04',
927 'ExtUtils::testlib' => '1.15',
928 'File::Spec' => '0.86',
929 'File::Spec::Cygwin' => '1.1',
930 'File::Spec::Epoc' => '1.1',
931 'File::Spec::Functions' => '1.3',
932 'File::Spec::Mac' => '1.4',
933 'File::Spec::OS2' => '1.2',
934 'File::Spec::Unix' => '1.5',
935 'File::Spec::VMS' => '1.4',
936 'File::Spec::Win32' => '1.4',
937 'File::Temp' => '0.14',
940 'Test::Builder' => '0.17',
941 'Test::Harness' => '2.30',
942 'Test::Harness::Assert' => '0.01',
943 'Test::Harness::Iterator'=> '0.01',
944 'Test::Harness::Straps' => '0.15',
945 'Test::More' => '0.47',
946 'Test::Simple' => '0.47',
947 'Unicode' => '3.0.1',
955 delta_from => 5.006001,
957 'AnyDBM_File' => '1.00',
958 'Attribute::Handlers' => '0.76',
959 'AutoLoader' => '5.59',
960 'AutoSplit' => '1.0307',
962 'B::Asmdata' => '1.00',
963 'B::Assembler' => '0.04',
964 'B::Bblock' => '1.00',
965 'B::Bytecode' => '1.00',
968 'B::Concise' => '0.52',
969 'B::Debug' => '1.00',
970 'B::Deparse' => '0.63',
971 'B::Disassembler' => '1.01',
973 'B::Showlex' => '1.00',
974 'B::Stackobj' => '1.00',
975 'B::Stash' => '1.00',
976 'B::Terse' => '1.00',
978 'Benchmark' => '1.04',
980 'CGI::Apache' => '1.00',
981 'CGI::Carp' => '1.22',
982 'CGI::Cookie' => '1.20',
983 'CGI::Fast' => '1.04',
984 'CGI::Pretty' => '1.05_00',
985 'CGI::Switch' => '1.00',
986 'CGI::Util' => '1.3',
988 'CPAN::FirstTime' => '1.54',
989 'CPAN::Nox' => '1.00_01',
991 'Carp::Heavy' => '1.01',
992 'Class::ISA' => '0.32',
993 'Class::Struct' => '0.61',
995 'DB_File' => '1.804',
996 'Data::Dumper' => '2.12',
997 'Devel::DProf' => '20000000.00_01',
998 'Devel::PPPort' => '2.0002',
999 'Devel::Peek' => '1.00_03',
1000 'Devel::SelfStubber' => '1.03',
1002 'Digest::MD5' => '2.16',
1003 'DirHandle' => '1.00',
1004 'Dumpvalue' => '1.10',
1006 'Encode::CN' => '0.02',
1007 'Encode::CN::HZ' => undef,
1008 'Encode::Encoding' => '0.02',
1009 'Encode::Internal' => '0.30',
1010 'Encode::JP' => '0.02',
1011 'Encode::JP::Constants' => '1.02',
1012 'Encode::JP::H2Z' => '0.77',
1013 'Encode::JP::ISO_2022_JP'=> undef,
1014 'Encode::JP::JIS' => undef,
1015 'Encode::JP::Tr' => '0.77',
1016 'Encode::KR' => '0.02',
1017 'Encode::TW' => '0.02',
1018 'Encode::Tcl' => '1.01',
1019 'Encode::Tcl::Escape' => '1.01',
1020 'Encode::Tcl::Extended' => '1.01',
1021 'Encode::Tcl::HanZi' => '1.01',
1022 'Encode::Tcl::Table' => '1.01',
1023 'Encode::Unicode' => '0.30',
1024 'Encode::XS' => '0.40',
1025 'Encode::iso10646_1' => '0.30',
1026 'Encode::usc2_le' => '0.30',
1027 'Encode::utf8' => '0.30',
1028 'English' => '1.00',
1030 'Exporter' => '5.566',
1031 'Exporter::Heavy' => '5.562',
1032 'ExtUtils::Command' => '1.02',
1033 'ExtUtils::Constant' => '0.11',
1034 'ExtUtils::Embed' => '1.250601',
1035 'ExtUtils::Install' => '1.29',
1036 'ExtUtils::Installed' => '0.04',
1037 'ExtUtils::Liblist' => '1.2701',
1038 'ExtUtils::MM_BeOS' => '1.00',
1039 'ExtUtils::MM_Cygwin' => '1.00',
1040 'ExtUtils::MM_OS2' => '1.00',
1041 'ExtUtils::MM_Unix' => '1.12607',
1042 'ExtUtils::MM_VMS' => '5.56',
1043 'ExtUtils::MM_Win32' => '1.00_02',
1044 'ExtUtils::MakeMaker' => '5.48_03',
1045 'ExtUtils::Manifest' => '1.35',
1046 'ExtUtils::Mkbootstrap' => '1.1401',
1047 'ExtUtils::Mksymlists' => '1.18',
1048 'ExtUtils::Packlist' => '0.04',
1049 'ExtUtils::testlib' => '1.1201',
1052 'File::Basename' => '2.71',
1053 'File::CheckTree' => '4.1',
1054 'File::Compare' => '1.1003',
1055 'File::Copy' => '2.05',
1056 'File::DosGlob' => '1.00',
1057 'File::Find' => '1.04',
1058 'File::Glob' => '1.01',
1059 'File::Path' => '1.05',
1060 'File::Spec' => '0.83',
1061 'File::Spec::Cygwin' => '1.0',
1062 'File::Spec::Epoc' => '1.00',
1063 'File::Spec::Functions' => '1.2',
1064 'File::Spec::Mac' => '1.3',
1065 'File::Spec::Unix' => '1.4',
1066 'File::Spec::VMS' => '1.2',
1067 'File::Spec::Win32' => '1.3',
1068 'File::Temp' => '0.13',
1069 'File::stat' => '1.00',
1070 'FileCache' => '1.00',
1071 'FileHandle' => '2.01',
1072 'Filter::Simple' => '0.77',
1073 'Filter::Util::Call' => '1.06',
1074 'FindBin' => '1.43',
1075 'GDBM_File' => '1.06',
1076 'Getopt::Long' => '2.28',
1077 'Getopt::Std' => '1.03',
1078 'I18N::Collate' => '1.00',
1079 'I18N::LangTags' => '0.27',
1080 'I18N::LangTags::List' => '0.25',
1081 'I18N::Langinfo' => '0.01',
1082 'IO::Dir' => '1.03_00',
1083 'IO::File' => '1.09',
1084 'IO::Handle' => '1.21_00',
1085 'IO::Pipe' => '1.122',
1086 'IO::Poll' => '0.06',
1087 'IO::Seekable' => '1.08_00',
1088 'IO::Select' => '1.15',
1089 'IO::Socket' => '1.27',
1090 'IO::Socket::INET' => '1.26',
1091 'IO::Socket::UNIX' => '1.20_00',
1092 'IPC::Msg' => '1.00_00',
1093 'IPC::Open3' => '1.0104',
1094 'IPC::Semaphore' => '1.00_00',
1095 'IPC::SysV' => '1.03_00',
1096 'List::Util' => '1.06_00',
1097 'Locale::Constants' => '2.01',
1098 'Locale::Country' => '2.01',
1099 'Locale::Currency' => '2.01',
1100 'Locale::Language' => '2.01',
1101 'Locale::Maketext' => '1.03',
1102 'Locale::Script' => '2.01',
1103 'MIME::Base64' => '2.12',
1104 'MIME::QuotedPrint' => '2.03',
1105 'Math::BigFloat' => '1.30',
1106 'Math::BigInt' => '1.54',
1107 'Math::BigInt::Calc' => '0.25',
1108 'Math::Complex' => '1.34',
1109 'Math::Trig' => '1.01',
1110 'Memoize' => '0.66',
1111 'Memoize::AnyDBM_File' => '0.65',
1112 'Memoize::Expire' => '0.66',
1113 'Memoize::ExpireFile' => '0.65',
1114 'Memoize::ExpireTest' => '0.65',
1115 'Memoize::NDBM_File' => '0.65',
1116 'Memoize::SDBM_File' => '0.65',
1117 'Memoize::Storable' => '0.65',
1119 'Net::Cmd' => '2.21',
1120 'Net::Config' => '1.10',
1121 'Net::Domain' => '2.17',
1122 'Net::FTP' => '2.64',
1123 'Net::FTP::A' => '1.15',
1124 'Net::FTP::E' => '0.01',
1125 'Net::FTP::I' => '1.12',
1126 'Net::FTP::L' => '0.01',
1127 'Net::FTP::dataconn' => '0.10',
1128 'Net::NNTP' => '2.21',
1129 'Net::Netrc' => '2.12',
1130 'Net::POP3' => '2.23',
1131 'Net::Ping' => '2.12',
1132 'Net::SMTP' => '2.21',
1133 'Net::Time' => '2.09',
1134 'Net::hostent' => '1.00',
1135 'Net::netent' => '1.00',
1136 'Net::protoent' => '1.00',
1137 'Net::servent' => '1.00',
1139 'OS2::DLL' => '1.00',
1140 'OS2::Process' => '1.0',
1141 'OS2::REXX' => '1.01',
1145 'PerlIO::Scalar' => '0.01',
1146 'PerlIO::Via' => '0.01',
1147 'Pod::Checker' => '1.3',
1148 'Pod::Find' => '0.22',
1149 'Pod::Functions' => '1.01',
1150 'Pod::Html' => '1.04',
1151 'Pod::LaTeX' => '0.54',
1152 'Pod::Man' => '1.32',
1153 'Pod::ParseLink' => '1.05',
1154 'Pod::Text' => '2.18',
1155 'Pod::Text::Color' => '1.03',
1156 'Pod::Text::Overstrike' => '1.08',
1157 'Pod::Text::Termcap' => '1.09',
1159 'Scalar::Util' => '1.06_00',
1160 'Search::Dict' => '1.02',
1161 'SelectSaver' => '1.00',
1162 'SelfLoader' => '1.0903',
1165 'Storable' => '1.015',
1168 'Sys::Syslog' => '0.02',
1169 'Term::ANSIColor' => '1.04',
1170 'Term::Cap' => '1.07',
1171 'Term::Complete' => '1.4',
1172 'Term::ReadLine' => '1.00',
1174 'Test::Builder' => '0.11',
1175 'Test::Harness' => '2.01',
1176 'Test::Harness::Assert' => '0.01',
1177 'Test::Harness::Iterator'=> '0.01',
1178 'Test::Harness::Straps' => '0.08',
1179 'Test::More' => '0.41',
1180 'Test::Simple' => '0.41',
1181 'Text::Abbrev' => '1.00',
1182 'Text::Balanced' => '1.89',
1183 'Text::ParseWords' => '3.21',
1184 'Text::Soundex' => '1.01',
1185 'Text::Wrap' => '2001.0929',
1187 'Thread::Queue' => '1.00',
1188 'Thread::Semaphore' => '1.00',
1189 'Thread::Signal' => '1.00',
1190 'Thread::Specific' => '1.00',
1191 'Tie::Array' => '1.02',
1192 'Tie::File' => '0.17',
1193 'Tie::Handle' => '4.1',
1194 'Tie::Hash' => '1.00',
1195 'Tie::Memoize' => '1.0',
1196 'Tie::RefHash' => '1.3_00',
1197 'Tie::Scalar' => '1.00',
1198 'Tie::SubstrHash' => '1.00',
1199 'Time::HiRes' => '1.20_00',
1200 'Time::Local' => '1.04',
1201 'Time::gmtime' => '1.02',
1202 'Time::localtime' => '1.02',
1203 'Time::tm' => '1.00',
1204 'UNIVERSAL' => '1.00',
1205 'Unicode::Collate' => '0.10',
1206 'Unicode::Normalize' => '0.14',
1207 'Unicode::UCD' => '0.2',
1208 'User::grent' => '1.00',
1209 'User::pwent' => '1.00',
1210 'VMS::DCLsym' => '1.02',
1211 'VMS::Filespec' => '1.1',
1212 'VMS::Stdio' => '2.3',
1213 'XS::Typemap' => '0.01',
1214 'attributes' => '0.04_01',
1216 'autouse' => '1.03',
1220 'charnames' => '1.01',
1221 'constant' => '1.04',
1222 'diagnostics' => '1.1',
1223 'encoding' => '1.00',
1225 'filetest' => '1.00',
1227 'integer' => '1.00',
1232 'overload' => '1.00',
1237 'threads' => '0.05',
1238 'threads::shared' => '0.90',
1242 'warnings' => '1.00',
1243 'warnings::register' => '1.00',
1249 delta_from => 5.007003,
1251 'Attribute::Handlers' => '0.77',
1253 'B::Lint' => '1.01',
1254 'B::Xref' => '1.01',
1256 'CGI::Carp' => '1.23',
1258 'CPAN::FirstTime' => '1.56',
1259 'CPAN::Nox' => '1.02',
1260 'Digest::MD5' => '2.20',
1261 'Dumpvalue' => '1.11',
1263 'Encode::Alias' => '1.32',
1264 'Encode::Byte' => '1.22',
1265 'Encode::CJKConstants' => '1.00',
1266 'Encode::CN' => '1.24',
1267 'Encode::CN::HZ' => '1.04',
1268 'Encode::Config' => '1.06',
1269 'Encode::EBCDIC' => '1.21',
1270 'Encode::Encoder' => '0.05',
1271 'Encode::Encoding' => '1.30',
1272 'Encode::Guess' => '1.06',
1273 'Encode::JP' => '1.25',
1274 'Encode::JP::H2Z' => '1.02',
1275 'Encode::JP::JIS7' => '1.08',
1276 'Encode::KR' => '1.22',
1277 'Encode::KR::2022_KR' => '1.05',
1278 'Encode::MIME::Header' => '1.05',
1279 'Encode::Symbol' => '1.22',
1280 'Encode::TW' => '1.26',
1281 'Encode::Unicode' => '1.37',
1282 'Exporter::Heavy' => '5.566',
1283 'ExtUtils::Command' => '1.04',
1284 'ExtUtils::Command::MM' => '0.01',
1285 'ExtUtils::Constant' => '0.12',
1286 'ExtUtils::Installed' => '0.06',
1287 'ExtUtils::Liblist' => '1.00',
1288 'ExtUtils::Liblist::Kid'=> '1.29',
1289 'ExtUtils::MM' => '0.04',
1290 'ExtUtils::MM_Any' => '0.04',
1291 'ExtUtils::MM_BeOS' => '1.03',
1292 'ExtUtils::MM_Cygwin' => '1.04',
1293 'ExtUtils::MM_DOS' => '0.01',
1294 'ExtUtils::MM_MacOS' => '1.03',
1295 'ExtUtils::MM_NW5' => '2.05',
1296 'ExtUtils::MM_OS2' => '1.03',
1297 'ExtUtils::MM_UWIN' => '0.01',
1298 'ExtUtils::MM_Unix' => '1.33',
1299 'ExtUtils::MM_VMS' => '5.65',
1300 'ExtUtils::MM_Win32' => '1.05',
1301 'ExtUtils::MM_Win95' => '0.02',
1302 'ExtUtils::MY' => '0.01',
1303 'ExtUtils::MakeMaker' => '6.03',
1304 'ExtUtils::Manifest' => '1.38',
1305 'ExtUtils::Mkbootstrap' => '1.15',
1306 'ExtUtils::Mksymlists' => '1.19',
1307 'ExtUtils::testlib' => '1.15',
1308 'File::CheckTree' => '4.2',
1309 'FileCache' => '1.021',
1310 'Filter::Simple' => '0.78',
1311 'Getopt::Long' => '2.32',
1312 'Hash::Util' => '0.04',
1313 'List::Util' => '1.07_00',
1314 'Locale::Country' => '2.04',
1315 'Math::BigFloat' => '1.35',
1316 'Math::BigFloat::Trace' => '0.01',
1317 'Math::BigInt' => '1.60',
1318 'Math::BigInt::Calc' => '0.30',
1319 'Math::BigInt::Trace' => '0.01',
1320 'Math::BigRat' => '0.07',
1321 'Memoize' => '1.01',
1322 'Memoize::Expire' => '1.00',
1323 'Memoize::ExpireFile' => '1.01',
1324 'Net::FTP' => '2.65',
1325 'Net::FTP::dataconn' => '0.11',
1326 'Net::Ping' => '2.19',
1327 'Net::SMTP' => '2.24',
1329 'PerlIO::encoding' => '0.06',
1330 'PerlIO::scalar' => '0.01',
1331 'PerlIO::via' => '0.01',
1332 'PerlIO::via::QuotedPrint'=> '0.04',
1333 'Pod::Man' => '1.33',
1334 'Pod::Text' => '2.19',
1335 'Scalar::Util' => '1.07_00',
1336 'Storable' => '2.04',
1338 'Sys::Syslog' => '0.03',
1340 'Test::Builder' => '0.15',
1341 'Test::Harness' => '2.26',
1342 'Test::Harness::Straps' => '0.14',
1343 'Test::More' => '0.45',
1344 'Test::Simple' => '0.45',
1345 'Thread::Queue' => '2.00',
1346 'Thread::Semaphore' => '2.00',
1347 'Tie::File' => '0.93',
1348 'Tie::RefHash' => '1.30',
1349 'Unicode' => '3.2.0',
1350 'Unicode::Collate' => '0.12',
1351 'Unicode::Normalize' => '0.17',
1352 'XS::APItest' => '0.01',
1353 'attributes' => '0.05',
1359 'encoding' => '1.35',
1361 'threads' => '0.99',
1364 'Encode::Internal' => 1,
1365 'Encode::JP::Constants' => 1,
1366 'Encode::JP::ISO_2022_JP'=> 1,
1367 'Encode::JP::JIS' => 1,
1368 'Encode::JP::Tr' => 1,
1370 'Encode::Tcl::Escape' => 1,
1371 'Encode::Tcl::Extended' => 1,
1372 'Encode::Tcl::HanZi' => 1,
1373 'Encode::Tcl::Table' => 1,
1375 'Encode::iso10646_1' => 1,
1376 'Encode::usc2_le' => 1,
1377 'Encode::utf8' => 1,
1378 'PerlIO::Scalar' => 1,
1383 delta_from => 5.008,
1385 'Attribute::Handlers' => '0.78',
1386 'AutoLoader' => '5.60',
1387 'AutoSplit' => '1.04',
1389 'B::Asmdata' => '1.01',
1390 'B::Assembler' => '0.06',
1391 'B::Bblock' => '1.02',
1392 'B::Bytecode' => '1.01',
1394 'B::Concise' => '0.56',
1395 'B::Debug' => '1.01',
1396 'B::Deparse' => '0.64',
1397 'B::Disassembler' => '1.03',
1398 'B::Lint' => '1.02',
1399 'B::Terse' => '1.02',
1400 'Benchmark' => '1.051',
1401 'ByteLoader' => '0.05',
1403 'CGI::Carp' => '1.26',
1404 'CGI::Cookie' => '1.24',
1405 'CGI::Fast' => '1.041',
1406 'CGI::Pretty' => '1.07_00',
1407 'CGI::Util' => '1.31',
1408 'CPAN' => '1.76_01',
1409 'CPAN::FirstTime' => '1.60',
1410 'CPAN::Nox' => '1.03',
1411 'Class::Struct' => '0.63',
1413 'DB_File' => '1.806',
1414 'Data::Dumper' => '2.121',
1415 'Devel::DProf' => '20030813.00',
1416 'Devel::PPPort' => '2.007',
1417 'Devel::Peek' => '1.01',
1419 'Digest::MD5' => '2.27',
1420 'Encode' => '1.9801',
1421 'Encode::Alias' => '1.38',
1422 'Encode::Byte' => '1.23',
1423 'Encode::CJKConstants' => '1.02',
1424 'Encode::CN::HZ' => '1.05',
1425 'Encode::Config' => '1.07',
1426 'Encode::Encoder' => '0.07',
1427 'Encode::Encoding' => '1.33',
1428 'Encode::Guess' => '1.09',
1429 'Encode::JP::JIS7' => '1.12',
1430 'Encode::KR' => '1.23',
1431 'Encode::KR::2022_KR' => '1.06',
1432 'Encode::MIME::Header' => '1.09',
1433 'Encode::Unicode' => '1.40',
1434 'Encode::Unicode::UTF7' => '0.02',
1435 'English' => '1.01',
1436 'Errno' => '1.09_00',
1437 'Exporter' => '5.567',
1438 'Exporter::Heavy' => '5.567',
1439 'ExtUtils::Command' => '1.05',
1440 'ExtUtils::Command::MM' => '0.03',
1441 'ExtUtils::Constant' => '0.14',
1442 'ExtUtils::Install' => '1.32',
1443 'ExtUtils::Installed' => '0.08',
1444 'ExtUtils::Liblist' => '1.01',
1445 'ExtUtils::Liblist::Kid'=> '1.3',
1446 'ExtUtils::MM_Any' => '0.07',
1447 'ExtUtils::MM_BeOS' => '1.04',
1448 'ExtUtils::MM_Cygwin' => '1.06',
1449 'ExtUtils::MM_DOS' => '0.02',
1450 'ExtUtils::MM_MacOS' => '1.07',
1451 'ExtUtils::MM_NW5' => '2.06',
1452 'ExtUtils::MM_OS2' => '1.04',
1453 'ExtUtils::MM_UWIN' => '0.02',
1454 'ExtUtils::MM_Unix' => '1.42',
1455 'ExtUtils::MM_VMS' => '5.70',
1456 'ExtUtils::MM_Win32' => '1.09',
1457 'ExtUtils::MM_Win95' => '0.03',
1458 'ExtUtils::MakeMaker' => '6.17',
1459 'ExtUtils::MakeMaker::bytes'=> '0.01',
1460 'ExtUtils::MakeMaker::vmsish'=> '0.01',
1461 'ExtUtils::Manifest' => '1.42',
1463 'File::Basename' => '2.72',
1464 'File::Copy' => '2.06',
1465 'File::Find' => '1.05',
1466 'File::Glob' => '1.02',
1467 'File::Path' => '1.06',
1468 'File::Spec' => '0.86',
1469 'File::Spec::Cygwin' => '1.1',
1470 'File::Spec::Epoc' => '1.1',
1471 'File::Spec::Functions' => '1.3',
1472 'File::Spec::Mac' => '1.4',
1473 'File::Spec::OS2' => '1.2',
1474 'File::Spec::Unix' => '1.5',
1475 'File::Spec::VMS' => '1.4',
1476 'File::Spec::Win32' => '1.4',
1477 'File::Temp' => '0.14',
1478 'FileCache' => '1.03',
1479 'Filter::Util::Call' => '1.0601',
1480 'GDBM_File' => '1.07',
1481 'Getopt::Long' => '2.34',
1482 'Getopt::Std' => '1.04',
1483 'Hash::Util' => '0.05',
1484 'I18N::LangTags' => '0.28',
1485 'I18N::LangTags::List' => '0.26',
1486 'I18N::Langinfo' => '0.02',
1488 'IO::Dir' => '1.04',
1489 'IO::File' => '1.10',
1490 'IO::Handle' => '1.23',
1491 'IO::Seekable' => '1.09',
1492 'IO::Select' => '1.16',
1493 'IO::Socket' => '1.28',
1494 'IO::Socket::INET' => '1.27',
1495 'IO::Socket::UNIX' => '1.21',
1496 'IPC::Msg' => '1.02',
1497 'IPC::Open3' => '1.0105',
1498 'IPC::Semaphore' => '1.02',
1499 'IPC::SysV' => '1.04',
1501 'List::Util' => '1.13',
1502 'Locale::Country' => '2.61',
1503 'Locale::Currency' => '2.21',
1504 'Locale::Language' => '2.21',
1505 'Locale::Maketext' => '1.06',
1506 'Locale::Maketext::Guts'=> undef,
1507 'Locale::Maketext::GutsLoader'=> undef,
1508 'Locale::Script' => '2.21',
1509 'MIME::Base64' => '2.20',
1510 'MIME::QuotedPrint' => '2.20',
1511 'Math::BigFloat' => '1.40',
1512 'Math::BigInt' => '1.66',
1513 'Math::BigInt::Calc' => '0.36',
1514 'Math::BigInt::Scalar' => '0.11',
1515 'Math::BigRat' => '0.10',
1516 'Math::Trig' => '1.02',
1517 'NDBM_File' => '1.05',
1519 'Net::Cmd' => '2.24',
1520 'Net::Domain' => '2.18',
1521 'Net::FTP' => '2.71',
1522 'Net::FTP::A' => '1.16',
1523 'Net::NNTP' => '2.22',
1524 'Net::POP3' => '2.24',
1525 'Net::Ping' => '2.31',
1526 'Net::SMTP' => '2.26',
1527 'Net::hostent' => '1.01',
1528 'Net::servent' => '1.01',
1529 'ODBM_File' => '1.04',
1530 'OS2::DLL' => '1.01',
1531 'OS2::ExtAttr' => '0.02',
1532 'OS2::PrfDB' => '0.03',
1533 'OS2::Process' => '1.01',
1534 'OS2::REXX' => '1.02',
1537 'PerlIO::encoding' => '0.07',
1538 'PerlIO::scalar' => '0.02',
1539 'PerlIO::via' => '0.02',
1540 'PerlIO::via::QuotedPrint'=> '0.05',
1541 'Pod::Checker' => '1.41',
1542 'Pod::Find' => '0.24',
1543 'Pod::Functions' => '1.02',
1544 'Pod::Html' => '1.0501',
1545 'Pod::InputObjects' => '1.14',
1546 'Pod::LaTeX' => '0.55',
1547 'Pod::Man' => '1.37',
1548 'Pod::ParseLink' => '1.06',
1549 'Pod::ParseUtils' => '0.3',
1550 'Pod::Perldoc' => '3.10',
1551 'Pod::Perldoc::BaseTo' => undef,
1552 'Pod::Perldoc::GetOptsOO'=> undef,
1553 'Pod::Perldoc::ToChecker'=> undef,
1554 'Pod::Perldoc::ToMan' => undef,
1555 'Pod::Perldoc::ToNroff' => undef,
1556 'Pod::Perldoc::ToPod' => undef,
1557 'Pod::Perldoc::ToRtf' => undef,
1558 'Pod::Perldoc::ToText' => undef,
1559 'Pod::Perldoc::ToTk' => undef,
1560 'Pod::Perldoc::ToXml' => undef,
1561 'Pod::PlainText' => '2.01',
1562 'Pod::Text' => '2.21',
1563 'Pod::Text::Color' => '1.04',
1564 'Pod::Text::Overstrike' => '1.1',
1565 'Pod::Text::Termcap' => '1.11',
1566 'Pod::Usage' => '1.16',
1567 'SDBM_File' => '1.04',
1569 'Scalar::Util' => '1.13',
1570 'SelfLoader' => '1.0904',
1573 'Storable' => '2.08',
1576 'Sys::Hostname' => '1.11',
1577 'Sys::Syslog' => '0.04',
1578 'Term::ANSIColor' => '1.07',
1579 'Term::Cap' => '1.08',
1580 'Term::Complete' => '1.401',
1581 'Term::ReadLine' => '1.01',
1583 'Test::Builder' => '0.17',
1584 'Test::Harness' => '2.30',
1585 'Test::Harness::Straps' => '0.15',
1586 'Test::More' => '0.47',
1587 'Test::Simple' => '0.47',
1588 'Text::Abbrev' => '1.01',
1589 'Text::Balanced' => '1.95',
1590 'Text::Wrap' => '2001.09291',
1591 'Thread::Semaphore' => '2.01',
1592 'Tie::Array' => '1.03',
1593 'Tie::File' => '0.97',
1594 'Tie::RefHash' => '1.31',
1595 'Time::HiRes' => '1.51',
1596 'Time::Local' => '1.07',
1597 'UNIVERSAL' => '1.01',
1598 'Unicode' => '4.0.0',
1599 'Unicode::Collate' => '0.28',
1600 'Unicode::Normalize' => '0.23',
1601 'Unicode::UCD' => '0.21',
1602 'VMS::Filespec' => '1.11',
1603 'XS::APItest' => '0.02',
1604 'XSLoader' => '0.02',
1605 'attributes' => '0.06',
1611 'charnames' => '1.02',
1612 'diagnostics' => '1.11',
1613 'encoding' => '1.47',
1615 'filetest' => '1.01',
1619 'overload' => '1.01',
1623 'threads' => '1.00',
1624 'threads::shared' => '0.91',
1627 'warnings' => '1.03',
1633 delta_from => 5.008001,
1635 'DB_File' => '1.807',
1636 'Devel::PPPort' => '2.009',
1637 'Digest::MD5' => '2.30',
1638 'I18N::LangTags' => '0.29',
1639 'I18N::LangTags::List' => '0.29',
1640 'MIME::Base64' => '2.21',
1641 'MIME::QuotedPrint' => '2.21',
1642 'Net::Domain' => '2.19',
1643 'Net::FTP' => '2.72',
1644 'Pod::Perldoc' => '3.11',
1645 'Time::HiRes' => '1.52',
1646 'Unicode::Collate' => '0.30',
1647 'Unicode::Normalize' => '0.25',
1653 delta_from => 5.008002,
1655 'Benchmark' => '1.052',
1657 'CGI::Carp' => '1.27',
1658 'CGI::Fast' => '1.05',
1659 'CGI::Pretty' => '1.08',
1660 'CGI::Util' => '1.4',
1662 'DB_File' => '1.808',
1663 'Devel::PPPort' => '2.011',
1665 'Digest::MD5' => '2.33',
1666 'Digest::base' => '1.00',
1668 'Exporter' => '5.57',
1669 'File::CheckTree' => '4.3',
1670 'File::Copy' => '2.07',
1671 'File::Find' => '1.06',
1672 'File::Spec' => '0.87',
1673 'FindBin' => '1.44',
1674 'Getopt::Std' => '1.05',
1675 'Math::BigFloat' => '1.42',
1676 'Math::BigInt' => '1.68',
1677 'Math::BigInt::Calc' => '0.38',
1678 'Math::BigInt::CalcEmu' => '0.02',
1679 'OS2::DLL' => '1.02',
1682 'PerlIO::via::QuotedPrint'=> '0.06',
1683 'Pod::Html' => '1.0502',
1684 'Pod::Parser' => '1.14',
1685 'Pod::Perldoc' => '3.12',
1686 'Pod::PlainText' => '2.02',
1687 'Storable' => '2.09',
1688 'Test::Harness' => '2.40',
1689 'Test::Harness::Assert' => '0.02',
1690 'Test::Harness::Iterator'=> '0.02',
1691 'Test::Harness::Straps' => '0.19',
1692 'Tie::Hash' => '1.01',
1693 'Unicode::Collate' => '0.33',
1694 'Unicode::Normalize' => '0.28',
1695 'XS::APItest' => '0.03',
1697 'diagnostics' => '1.12',
1698 'encoding' => '1.48',
1699 'threads' => '1.01',
1700 'threads::shared' => '0.92',
1703 'Math::BigInt::Scalar' => 1,
1707 delta_from => 5.008003,
1709 'Attribute::Handlers' => '0.78_01',
1710 'B::Assembler' => '0.07',
1711 'B::Concise' => '0.60',
1712 'B::Deparse' => '0.66',
1713 'Benchmark' => '1.06',
1717 'DBM_Filter' => '0.01',
1718 'DBM_Filter::compress' => '0.01',
1719 'DBM_Filter::encode' => '0.01',
1720 'DBM_Filter::int32' => '0.01',
1721 'DBM_Filter::null' => '0.01',
1722 'DBM_Filter::utf8' => '0.01',
1724 'DynaLoader' => '1.05',
1725 'Encode' => '1.99_01',
1726 'Encode::CN::HZ' => '1.0501',
1727 'Exporter' => '5.58',
1728 'Exporter::Heavy' => '5.57',
1729 'ExtUtils::Liblist::Kid'=> '1.3001',
1730 'ExtUtils::MM_NW5' => '2.07_02',
1731 'ExtUtils::MM_Win95' => '0.0301',
1732 'File::Find' => '1.07',
1733 'IO::Handle' => '1.24',
1734 'IO::Pipe' => '1.123',
1735 'IPC::Open3' => '1.0106',
1736 'Locale::Maketext' => '1.08',
1737 'MIME::Base64' => '3.01',
1738 'MIME::QuotedPrint' => '3.01',
1739 'Math::BigFloat' => '1.44',
1740 'Math::BigInt' => '1.70',
1741 'Math::BigInt::Calc' => '0.40',
1742 'Math::BigInt::CalcEmu' => '0.04',
1743 'Math::BigRat' => '0.12',
1744 'ODBM_File' => '1.05',
1748 'Storable' => '2.12',
1749 'Sys::Syslog' => '0.05',
1750 'Term::ANSIColor' => '1.08',
1751 'Time::HiRes' => '1.59',
1752 'Unicode' => '4.0.1',
1753 'Unicode::UCD' => '0.22',
1758 'charnames' => '1.03',
1760 'threads' => '1.03',
1767 delta_from => 5.008004,
1769 'B::Concise' => '0.61',
1770 'B::Deparse' => '0.67',
1772 'CGI::Carp' => '1.28',
1773 'CGI::Util' => '1.5',
1775 'Carp::Heavy' => '1.03',
1777 'DB_File' => '1.809',
1780 'Encode::Alias' => '2.00',
1781 'Encode::Byte' => '2.00',
1782 'Encode::CJKConstants' => '2.00',
1783 'Encode::CN' => '2.00',
1784 'Encode::CN::HZ' => '2.01',
1785 'Encode::Config' => '2.00',
1786 'Encode::EBCDIC' => '2.00',
1787 'Encode::Encoder' => '2.00',
1788 'Encode::Encoding' => '2.00',
1789 'Encode::Guess' => '2.00',
1790 'Encode::JP' => '2.00',
1791 'Encode::JP::H2Z' => '2.00',
1792 'Encode::JP::JIS7' => '2.00',
1793 'Encode::KR' => '2.00',
1794 'Encode::KR::2022_KR' => '2.00',
1795 'Encode::MIME::Header' => '2.00',
1796 'Encode::Symbol' => '2.00',
1797 'Encode::TW' => '2.00',
1798 'Encode::Unicode' => '2.00',
1799 'Encode::Unicode::UTF7' => '2.01',
1800 'File::Basename' => '2.73',
1801 'File::Copy' => '2.08',
1802 'File::Glob' => '1.03',
1803 'FileCache' => '1.04_01',
1804 'I18N::LangTags' => '0.33',
1805 'I18N::LangTags::Detect'=> '1.03',
1806 'List::Util' => '1.14',
1807 'Locale::Constants' => '2.07',
1808 'Locale::Country' => '2.07',
1809 'Locale::Currency' => '2.07',
1810 'Locale::Language' => '2.07',
1811 'Locale::Maketext' => '1.09',
1812 'Locale::Script' => '2.07',
1813 'Net::Cmd' => '2.26',
1814 'Net::FTP' => '2.75',
1815 'Net::NNTP' => '2.23',
1816 'Net::POP3' => '2.28',
1817 'Net::SMTP' => '2.29',
1818 'Net::Time' => '2.10',
1819 'Pod::Checker' => '1.42',
1820 'Pod::Find' => '0.2401',
1821 'Pod::LaTeX' => '0.56',
1822 'Pod::ParseUtils' => '1.2',
1823 'Pod::Perldoc' => '3.13',
1825 'Scalar::Util' => '1.14',
1827 'Storable' => '2.13',
1828 'Term::Cap' => '1.09',
1830 'Test::Harness' => '2.42',
1831 'Text::ParseWords' => '3.22',
1832 'Text::Wrap' => '2001.09292',
1833 'Time::Local' => '1.10',
1834 'Unicode::Collate' => '0.40',
1835 'Unicode::Normalize' => '0.30',
1836 'XS::APItest' => '0.04',
1837 'autouse' => '1.04',
1839 'charnames' => '1.04',
1840 'diagnostics' => '1.13',
1841 'encoding' => '2.00',
1842 'threads' => '1.05',
1849 delta_from => 5.008005,
1853 'B::Concise' => '0.64',
1854 'B::Debug' => '1.02',
1855 'B::Deparse' => '0.69',
1856 'B::Lint' => '1.03',
1857 'B::Showlex' => '1.02',
1859 'DB_File' => '1.810',
1860 'Data::Dumper' => '2.121_02',
1861 'Devel::PPPort' => '3.03',
1862 'Devel::Peek' => '1.02',
1864 'Encode::Alias' => '2.02',
1865 'Encode::Encoding' => '2.02',
1866 'Encode::JP' => '2.01',
1867 'Encode::Unicode' => '2.02',
1868 'Exporter::Heavy' => '5.58',
1869 'ExtUtils::Constant' => '0.1401',
1870 'File::Spec' => '3.01',
1871 'File::Spec::Win32' => '1.5',
1872 'I18N::LangTags' => '0.35',
1873 'I18N::LangTags::List' => '0.35',
1874 'MIME::Base64' => '3.05',
1875 'MIME::QuotedPrint' => '3.03',
1876 'Math::BigFloat' => '1.47',
1877 'Math::BigInt' => '1.73',
1878 'Math::BigInt::Calc' => '0.43',
1879 'Math::BigRat' => '0.13',
1880 'Text::ParseWords' => '3.23',
1881 'Time::HiRes' => '1.65',
1882 'XS::APItest' => '0.05',
1883 'diagnostics' => '1.14',
1884 'encoding' => '2.01',
1886 'overload' => '1.02',
1892 delta_from => 5.008006,
1895 'B::Concise' => '0.65',
1896 'B::Deparse' => '0.7',
1897 'B::Disassembler' => '1.04',
1898 'B::Terse' => '1.03',
1899 'Benchmark' => '1.07',
1901 'CGI::Carp' => '1.29',
1902 'CGI::Cookie' => '1.25',
1904 'Carp::Heavy' => '1.04',
1905 'Class::ISA' => '0.33',
1907 'DB_File' => '1.811',
1908 'Data::Dumper' => '2.121_04',
1909 'Devel::DProf' => '20050310.00',
1910 'Devel::PPPort' => '3.06',
1912 'Digest::file' => '0.01',
1914 'Encode::Alias' => '2.03',
1915 'Errno' => '1.09_01',
1916 'ExtUtils::Constant' => '0.16',
1917 'ExtUtils::Constant::Base'=> '0.01',
1918 'ExtUtils::Constant::Utils'=> '0.01',
1919 'ExtUtils::Constant::XS'=> '0.01',
1920 'File::Find' => '1.09',
1921 'File::Glob' => '1.04',
1922 'File::Path' => '1.07',
1923 'File::Spec' => '3.05',
1924 'File::Temp' => '0.16',
1925 'FileCache' => '1.05',
1926 'IO::File' => '1.11',
1927 'IO::Socket::INET' => '1.28',
1928 'Math::BigFloat' => '1.51',
1929 'Math::BigInt' => '1.77',
1930 'Math::BigInt::Calc' => '0.47',
1931 'Math::BigInt::CalcEmu' => '0.05',
1932 'Math::BigRat' => '0.15',
1933 'Pod::Find' => '1.3',
1934 'Pod::Html' => '1.0503',
1935 'Pod::InputObjects' => '1.3',
1936 'Pod::LaTeX' => '0.58',
1937 'Pod::ParseUtils' => '1.3',
1938 'Pod::Parser' => '1.3',
1939 'Pod::Perldoc' => '3.14',
1940 'Pod::Select' => '1.3',
1941 'Pod::Usage' => '1.3',
1942 'SelectSaver' => '1.01',
1944 'Sys::Syslog' => '0.06',
1945 'Term::ANSIColor' => '1.09',
1946 'Term::Complete' => '1.402',
1947 'Test::Builder' => '0.22',
1948 'Test::Harness' => '2.48',
1949 'Test::Harness::Point' => '0.01',
1950 'Test::Harness::Straps' => '0.23',
1951 'Test::More' => '0.54',
1952 'Test::Simple' => '0.54',
1953 'Text::ParseWords' => '3.24',
1954 'Text::Wrap' => '2001.09293',
1955 'Tie::RefHash' => '1.32',
1956 'Time::HiRes' => '1.66',
1957 'Time::Local' => '1.11',
1958 'Unicode' => '4.1.0',
1959 'Unicode::Normalize' => '0.32',
1960 'Unicode::UCD' => '0.23',
1962 'XS::APItest' => '0.06',
1968 'constant' => '1.05',
1969 'overload' => '1.03',
1970 'threads::shared' => '0.93',
1975 'JPL::AutoLoader' => 1,
1977 'JPL::Compile' => 1,
1981 delta_from => 5.008007,
1983 'Attribute::Handlers' => '0.78_02',
1985 'B::Bblock' => '1.02_01',
1986 'B::Bytecode' => '1.01_01',
1987 'B::C' => '1.04_01',
1988 'B::CC' => '1.00_01',
1989 'B::Concise' => '0.66',
1990 'B::Debug' => '1.02_01',
1991 'B::Deparse' => '0.71',
1992 'B::Disassembler' => '1.05',
1993 'B::Terse' => '1.03_01',
1994 'ByteLoader' => '0.06',
1996 'CGI::Cookie' => '1.26',
1997 'CPAN' => '1.76_02',
2000 'DB_File' => '1.814',
2001 'Data::Dumper' => '2.121_08',
2002 'Devel::DProf' => '20050603.00',
2003 'Devel::PPPort' => '3.06_01',
2004 'Devel::Peek' => '1.03',
2006 'Digest::MD5' => '2.36',
2007 'Digest::file' => '1.00',
2008 'Dumpvalue' => '1.12',
2010 'Encode::Alias' => '2.04',
2011 'Encode::Config' => '2.01',
2012 'Encode::MIME::Header' => '2.01',
2013 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2014 'English' => '1.02',
2015 'ExtUtils::Command' => '1.09',
2016 'ExtUtils::Command::MM' => '0.05',
2017 'ExtUtils::Constant' => '0.17',
2018 'ExtUtils::Embed' => '1.26',
2019 'ExtUtils::Install' => '1.33',
2020 'ExtUtils::Liblist::Kid'=> '1.3',
2021 'ExtUtils::MM' => '0.05',
2022 'ExtUtils::MM_AIX' => '0.03',
2023 'ExtUtils::MM_Any' => '0.13',
2024 'ExtUtils::MM_BeOS' => '1.05',
2025 'ExtUtils::MM_Cygwin' => '1.08',
2026 'ExtUtils::MM_MacOS' => '1.08',
2027 'ExtUtils::MM_NW5' => '2.08',
2028 'ExtUtils::MM_OS2' => '1.05',
2029 'ExtUtils::MM_QNX' => '0.02',
2030 'ExtUtils::MM_Unix' => '1.50',
2031 'ExtUtils::MM_VMS' => '5.73',
2032 'ExtUtils::MM_VOS' => '0.02',
2033 'ExtUtils::MM_Win32' => '1.12',
2034 'ExtUtils::MM_Win95' => '0.04',
2035 'ExtUtils::MakeMaker' => '6.30',
2036 'ExtUtils::MakeMaker::Config'=> '0.02',
2037 'ExtUtils::Manifest' => '1.46',
2038 'File::Basename' => '2.74',
2039 'File::Copy' => '2.09',
2040 'File::Find' => '1.10',
2041 'File::Glob' => '1.05',
2042 'File::Path' => '1.08',
2043 'File::Spec' => '3.12',
2044 'File::Spec::Win32' => '1.6',
2045 'FileCache' => '1.06',
2046 'Filter::Simple' => '0.82',
2047 'FindBin' => '1.47',
2048 'GDBM_File' => '1.08',
2049 'Getopt::Long' => '2.35',
2051 'IO::Dir' => '1.05',
2052 'IO::File' => '1.13',
2053 'IO::Handle' => '1.25',
2054 'IO::Pipe' => '1.13',
2055 'IO::Poll' => '0.07',
2056 'IO::Seekable' => '1.10',
2057 'IO::Select' => '1.17',
2058 'IO::Socket' => '1.29',
2059 'IO::Socket::INET' => '1.29',
2060 'IO::Socket::UNIX' => '1.22',
2061 'IPC::Open2' => '1.02',
2062 'IPC::Open3' => '1.02',
2063 'List::Util' => '1.18',
2064 'MIME::Base64' => '3.07',
2065 'MIME::QuotedPrint' => '3.07',
2066 'Math::Complex' => '1.35',
2067 'Math::Trig' => '1.03',
2068 'NDBM_File' => '1.06',
2069 'ODBM_File' => '1.06',
2070 'OS2::PrfDB' => '0.04',
2071 'OS2::Process' => '1.02',
2072 'OS2::REXX' => '1.03',
2076 'PerlIO::encoding' => '0.09',
2077 'PerlIO::scalar' => '0.04',
2078 'PerlIO::via' => '0.03',
2079 'Pod::Checker' => '1.43',
2080 'Pod::Find' => '1.34',
2081 'Pod::Functions' => '1.03',
2082 'Pod::Html' => '1.0504',
2083 'Pod::ParseUtils' => '1.33',
2084 'Pod::Parser' => '1.32',
2085 'Pod::Usage' => '1.33',
2086 'SDBM_File' => '1.05',
2088 'Scalar::Util' => '1.18',
2090 'Storable' => '2.15',
2091 'Switch' => '2.10_01',
2092 'Sys::Syslog' => '0.13',
2093 'Term::ANSIColor' => '1.10',
2094 'Term::ReadLine' => '1.02',
2095 'Test::Builder' => '0.32',
2096 'Test::Builder::Module' => '0.02',
2097 'Test::Builder::Tester' => '1.02',
2098 'Test::Builder::Tester::Color'=> undef,
2099 'Test::Harness' => '2.56',
2100 'Test::Harness::Straps' => '0.26',
2101 'Test::More' => '0.62',
2102 'Test::Simple' => '0.62',
2103 'Text::Tabs' => '2005.0824',
2104 'Text::Wrap' => '2005.082401',
2105 'Tie::Hash' => '1.02',
2106 'Time::HiRes' => '1.86',
2107 'Unicode::Collate' => '0.52',
2108 'Unicode::UCD' => '0.24',
2109 'User::grent' => '1.01',
2110 'Win32' => '0.2601',
2111 'XS::APItest' => '0.08',
2112 'XS::Typemap' => '0.02',
2113 'XSLoader' => '0.06',
2115 'autouse' => '1.05',
2117 'charnames' => '1.05',
2118 'diagnostics' => '1.15',
2119 'encoding' => '2.02',
2123 'overload' => '1.04',
2125 'threads' => '1.07',
2126 'threads::shared' => '0.94',
2129 'warnings' => '1.05',
2130 'warnings::register' => '1.01',
2136 delta_from => 5.008008,
2138 'Attribute::Handlers' => '0.78_03',
2139 'AutoLoader' => '5.67',
2140 'AutoSplit' => '1.06',
2142 'B::Asmdata' => '1.02',
2143 'B::Assembler' => '0.08',
2145 'B::Concise' => '0.76',
2146 'B::Debug' => '1.05',
2147 'B::Deparse' => '0.87',
2148 'B::Lint' => '1.11',
2149 'B::Lint::Debug' => undef,
2150 'B::Terse' => '1.05',
2151 'Benchmark' => '1.1',
2153 'CGI::Carp' => '1.30_01',
2154 'CGI::Cookie' => '1.29',
2155 'CGI::Fast' => '1.07',
2156 'CGI::Util' => '1.5_01',
2158 'CPAN::Debug' => '5.5',
2159 'CPAN::DeferedCode' => '5.50',
2160 'CPAN::Distroprefs' => '6',
2161 'CPAN::FirstTime' => '5.5_01',
2162 'CPAN::HandleConfig' => '5.5',
2163 'CPAN::Kwalify' => '5.50',
2164 'CPAN::Nox' => '5.50',
2165 'CPAN::Queue' => '5.5',
2166 'CPAN::Tarzip' => '5.5',
2167 'CPAN::Version' => '5.5',
2169 'Carp::Heavy' => '1.10',
2171 'DBM_Filter' => '0.02',
2172 'DBM_Filter::compress' => '0.02',
2173 'DBM_Filter::encode' => '0.02',
2174 'DBM_Filter::int32' => '0.02',
2175 'DBM_Filter::null' => '0.02',
2176 'DBM_Filter::utf8' => '0.02',
2177 'DB_File' => '1.817',
2178 'Data::Dumper' => '2.121_17',
2179 'Devel::DProf' => '20080331.00',
2180 'Devel::InnerPackage' => '0.3',
2181 'Devel::PPPort' => '3.14',
2182 'Devel::Peek' => '1.04',
2184 'Digest::MD5' => '2.37',
2185 'DirHandle' => '1.02',
2186 'DynaLoader' => '1.09',
2188 'Encode::Alias' => '2.10',
2189 'Encode::Byte' => '2.03',
2190 'Encode::CJKConstants' => '2.02',
2191 'Encode::CN' => '2.02',
2192 'Encode::CN::HZ' => '2.05',
2193 'Encode::Config' => '2.05',
2194 'Encode::EBCDIC' => '2.02',
2195 'Encode::Encoder' => '2.01',
2196 'Encode::Encoding' => '2.05',
2197 'Encode::GSM0338' => '2.01',
2198 'Encode::Guess' => '2.02',
2199 'Encode::JP' => '2.03',
2200 'Encode::JP::H2Z' => '2.02',
2201 'Encode::JP::JIS7' => '2.04',
2202 'Encode::KR' => '2.02',
2203 'Encode::KR::2022_KR' => '2.02',
2204 'Encode::MIME::Header' => '2.05',
2205 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2206 'Encode::MIME::Name' => '1.01',
2207 'Encode::Symbol' => '2.02',
2208 'Encode::TW' => '2.02',
2209 'Encode::Unicode' => '2.05',
2210 'Encode::Unicode::UTF7' => '2.04',
2211 'English' => '1.03',
2213 'Exporter' => '5.63',
2214 'Exporter::Heavy' => '5.63',
2215 'ExtUtils::Command' => '1.15',
2216 'ExtUtils::Command::MM' => '6.48',
2217 'ExtUtils::Constant' => '0.21',
2218 'ExtUtils::Constant::Base'=> '0.04',
2219 'ExtUtils::Constant::ProxySubs'=> '0.06',
2220 'ExtUtils::Constant::Utils'=> '0.02',
2221 'ExtUtils::Constant::XS'=> '0.02',
2222 'ExtUtils::Embed' => '1.28',
2223 'ExtUtils::Install' => '1.50_01',
2224 'ExtUtils::Installed' => '1.43',
2225 'ExtUtils::Liblist' => '6.48',
2226 'ExtUtils::Liblist::Kid'=> '6.48',
2227 'ExtUtils::MM' => '6.48',
2228 'ExtUtils::MM_AIX' => '6.48',
2229 'ExtUtils::MM_Any' => '6.48',
2230 'ExtUtils::MM_BeOS' => '6.48',
2231 'ExtUtils::MM_Cygwin' => '6.48',
2232 'ExtUtils::MM_DOS' => '6.48',
2233 'ExtUtils::MM_Darwin' => '6.48',
2234 'ExtUtils::MM_MacOS' => '6.48',
2235 'ExtUtils::MM_NW5' => '6.48',
2236 'ExtUtils::MM_OS2' => '6.48',
2237 'ExtUtils::MM_QNX' => '6.48',
2238 'ExtUtils::MM_UWIN' => '6.48',
2239 'ExtUtils::MM_Unix' => '6.48',
2240 'ExtUtils::MM_VMS' => '6.48',
2241 'ExtUtils::MM_VOS' => '6.48',
2242 'ExtUtils::MM_Win32' => '6.48',
2243 'ExtUtils::MM_Win95' => '6.48',
2244 'ExtUtils::MY' => '6.48',
2245 'ExtUtils::MakeMaker' => '6.48',
2246 'ExtUtils::MakeMaker::Config'=> '6.48',
2247 'ExtUtils::MakeMaker::bytes'=> '6.48',
2248 'ExtUtils::MakeMaker::vmsish'=> '6.48',
2249 'ExtUtils::Manifest' => '1.55',
2250 'ExtUtils::Mkbootstrap' => '6.48',
2251 'ExtUtils::Mksymlists' => '6.48',
2252 'ExtUtils::Packlist' => '1.43',
2253 'ExtUtils::ParseXS' => '2.19',
2254 'ExtUtils::XSSymSet' => '1.1',
2255 'ExtUtils::testlib' => '6.48',
2258 'File::Basename' => '2.77',
2259 'File::CheckTree' => '4.4',
2260 'File::Compare' => '1.1005',
2261 'File::Copy' => '2.13',
2262 'File::DosGlob' => '1.01',
2263 'File::Find' => '1.13',
2264 'File::Glob' => '1.06',
2265 'File::Path' => '2.07_02',
2266 'File::Spec' => '3.29',
2267 'File::Spec::Cygwin' => '3.29',
2268 'File::Spec::Epoc' => '3.29',
2269 'File::Spec::Functions' => '3.29',
2270 'File::Spec::Mac' => '3.29',
2271 'File::Spec::OS2' => '3.29',
2272 'File::Spec::Unix' => '3.29',
2273 'File::Spec::VMS' => '3.29',
2274 'File::Spec::Win32' => '3.29',
2275 'File::Temp' => '0.20',
2276 'File::stat' => '1.01',
2277 'FileCache' => '1.07',
2278 'Filter::Simple' => '0.83',
2279 'Filter::Util::Call' => '1.07',
2280 'FindBin' => '1.49',
2281 'GDBM_File' => '1.09',
2282 'Getopt::Long' => '2.37',
2283 'Getopt::Std' => '1.06',
2284 'Hash::Util' => '0.06',
2286 'IO::Dir' => '1.06',
2287 'IO::File' => '1.14',
2288 'IO::Handle' => '1.27',
2289 'IO::Socket' => '1.30',
2290 'IO::Socket::INET' => '1.31',
2291 'IO::Socket::UNIX' => '1.23',
2292 'IPC::Msg' => '2.00',
2293 'IPC::Open2' => '1.03',
2294 'IPC::Open3' => '1.03',
2295 'IPC::Semaphore' => '2.00',
2296 'IPC::SharedMem' => '2.00',
2297 'IPC::SysV' => '2.00',
2298 'List::Util' => '1.19',
2299 'Locale::Maketext' => '1.13',
2300 'Locale::Maketext::Guts'=> '1.13',
2301 'Locale::Maketext::GutsLoader'=> '1.13',
2302 'Math::BigFloat' => '1.60',
2303 'Math::BigInt' => '1.89',
2304 'Math::BigInt::Calc' => '0.52',
2305 'Math::BigRat' => '0.22',
2306 'Math::Complex' => '1.54',
2307 'Math::Trig' => '1.18',
2308 'Module::CoreList' => '2.17',
2309 'Module::Pluggable' => '3.8',
2310 'Module::Pluggable::Object'=> '3.6',
2311 'NDBM_File' => '1.07',
2313 'Net::Cmd' => '2.29',
2314 'Net::Config' => '1.11',
2315 'Net::Domain' => '2.20',
2316 'Net::FTP' => '2.77',
2317 'Net::FTP::A' => '1.18',
2318 'Net::NNTP' => '2.24',
2319 'Net::POP3' => '2.29',
2320 'Net::Ping' => '2.35',
2321 'Net::SMTP' => '2.31',
2323 'ODBM_File' => '1.07',
2324 'OS2::DLL' => '1.03',
2325 'OS2::Process' => '1.03',
2326 'Opcode' => '1.0601',
2329 'PerlIO::encoding' => '0.11',
2330 'PerlIO::scalar' => '0.06',
2331 'PerlIO::via' => '0.05',
2332 'Pod::Html' => '1.09',
2333 'Pod::ParseUtils' => '1.35',
2334 'Pod::Parser' => '1.35',
2335 'Pod::Select' => '1.35',
2336 'Pod::Usage' => '1.35',
2337 'SDBM_File' => '1.06',
2339 'Scalar::Util' => '1.19',
2340 'SelfLoader' => '1.17',
2343 'Storable' => '2.19',
2345 'Sys::Syslog' => '0.27',
2346 'Sys::Syslog::win32::Win32'=> undef,
2347 'Term::ANSIColor' => '1.12',
2348 'Term::Cap' => '1.12',
2349 'Term::ReadLine' => '1.03',
2350 'Test::Builder' => '0.80',
2351 'Test::Builder::Module' => '0.80',
2352 'Test::Builder::Tester' => '1.13',
2353 'Test::Harness' => '2.64',
2354 'Test::Harness::Results'=> '0.01_01',
2355 'Test::Harness::Straps' => '0.26_01',
2356 'Test::Harness::Util' => '0.01',
2357 'Test::More' => '0.80',
2358 'Test::Simple' => '0.80',
2359 'Text::Balanced' => '1.98',
2360 'Text::ParseWords' => '3.27',
2361 'Text::Soundex' => '3.03',
2362 'Text::Tabs' => '2007.1117',
2363 'Text::Wrap' => '2006.1117',
2365 'Thread::Queue' => '2.11',
2366 'Thread::Semaphore' => '2.09',
2367 'Tie::Handle' => '4.2',
2368 'Tie::Hash' => '1.03',
2369 'Tie::Memoize' => '1.1',
2370 'Tie::RefHash' => '1.38',
2371 'Tie::Scalar' => '1.01',
2372 'Tie::StdHandle' => '4.2',
2373 'Time::HiRes' => '1.9715',
2374 'Time::Local' => '1.1901',
2375 'Time::gmtime' => '1.03',
2376 'Unicode' => '5.1.0',
2377 'Unicode::Normalize' => '1.02',
2378 'Unicode::UCD' => '0.25',
2379 'VMS::DCLsym' => '1.03',
2380 'VMS::Stdio' => '2.4',
2382 'Win32API::File' => '0.1001_01',
2383 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2384 'Win32CORE' => '0.02',
2385 'XS::APItest' => '0.15',
2386 'XS::Typemap' => '0.03',
2387 'XSLoader' => '0.10',
2388 'attributes' => '0.09',
2389 'autouse' => '1.06',
2395 'charnames' => '1.06',
2396 'constant' => '1.17',
2397 'diagnostics' => '1.16',
2398 'encoding' => '2.6_01',
2400 'filetest' => '1.02',
2404 'overload' => '1.06',
2406 'sigtrap' => '1.04',
2407 'threads' => '1.71',
2408 'threads::shared' => '1.27',
2410 'warnings' => '1.05_01',
2416 delta_from => 5.008002,
2420 'B::Concise' => '0.57',
2421 'B::Deparse' => '0.65',
2422 'DB_File' => '1.806',
2423 'Devel::PPPort' => '2.008',
2424 'English' => '1.02',
2426 'OS2::DLL' => '1.02',
2428 'Time::HiRes' => '1.51',
2429 'Unicode::Collate' => '0.28',
2430 'Unicode::Normalize' => '0.23',
2431 'XSLoader' => '0.03',
2432 'assertions' => '0.01',
2433 'assertions::activate' => '0.01',
2434 'overload' => '1.02',
2435 'version' => '0.29',
2441 delta_from => 5.008004,
2444 'B::Assembler' => '0.06',
2446 'B::Concise' => '0.59',
2447 'B::Debug' => '1.02',
2448 'B::Deparse' => '0.65',
2449 'DB_File' => '1.808_01',
2450 'Devel::PPPort' => '2.011_01',
2452 'DynaLoader' => '1.04',
2453 'English' => '1.02',
2454 'Exporter::Heavy' => '5.567',
2455 'ExtUtils::Command' => '1.07',
2456 'ExtUtils::Liblist::Kid'=> '1.3',
2457 'ExtUtils::MM_Any' => '0.0901',
2458 'ExtUtils::MM_Cygwin' => '1.07',
2459 'ExtUtils::MM_NW5' => '2.07_01',
2460 'ExtUtils::MM_Unix' => '1.45_01',
2461 'ExtUtils::MM_VMS' => '5.71_01',
2462 'ExtUtils::MM_Win32' => '1.10_01',
2463 'ExtUtils::MM_Win95' => '0.03',
2464 'ExtUtils::MakeMaker' => '6.21_02',
2465 'ExtUtils::Manifest' => '1.43',
2467 'Getopt::Long' => '2.3401',
2468 'IO::Handle' => '1.23',
2469 'IO::Pipe' => '1.122',
2470 'IPC::Open3' => '1.0105',
2471 'MIME::Base64' => '3.00_01',
2472 'MIME::QuotedPrint' => '3.00',
2473 'Memoize' => '1.01_01',
2474 'ODBM_File' => '1.04',
2477 'Storable' => '2.11',
2478 'Time::HiRes' => '1.56',
2479 'Time::Local' => '1.07_94',
2480 'UNIVERSAL' => '1.02',
2481 'Unicode' => '4.0.0',
2482 'Unicode::UCD' => '0.21',
2483 'XSLoader' => '0.03',
2484 'assertions' => '0.01',
2485 'assertions::activate' => '0.01',
2489 'overload' => '1.02',
2490 'threads' => '1.02',
2492 'version' => '0.36',
2498 delta_from => 5.008007,
2501 'B::Concise' => '0.64',
2502 'B::Deparse' => '0.69',
2503 'B::Disassembler' => '1.03',
2504 'B::Terse' => '1.02',
2506 'Config::Extensions' => '0.01',
2507 'Devel::DProf' => '20030813.00',
2508 'DynaLoader' => '1.07',
2510 'Encode::Alias' => '2.02',
2511 'English' => '1.03',
2512 'Exporter' => '5.59',
2513 'Exporter::Heavy' => '5.59',
2514 'ExtUtils::Command' => '1.07',
2515 'ExtUtils::Command::MM' => '0.03_01',
2516 'ExtUtils::Embed' => '1.26',
2517 'ExtUtils::Liblist::Kid'=> '1.3',
2518 'ExtUtils::MM_Any' => '0.10',
2519 'ExtUtils::MM_Cygwin' => '1.07',
2520 'ExtUtils::MM_MacOS' => '1.08',
2521 'ExtUtils::MM_NW5' => '2.07',
2522 'ExtUtils::MM_Unix' => '1.46_01',
2523 'ExtUtils::MM_VMS' => '5.71',
2524 'ExtUtils::MM_Win32' => '1.10',
2525 'ExtUtils::MM_Win95' => '0.03',
2526 'ExtUtils::MakeMaker' => '6.25',
2527 'ExtUtils::Manifest' => '1.44',
2529 'File::Path' => '1.06',
2530 'FileCache' => '1.04_01',
2531 'Getopt::Long' => '2.3401',
2532 'IO::File' => '1.10',
2533 'IO::Socket::INET' => '1.27',
2534 'Math::BigFloat' => '1.49',
2535 'Math::BigInt' => '1.75',
2536 'Math::BigInt::Calc' => '0.45',
2537 'Math::BigRat' => '0.14',
2538 'Memoize' => '1.01_01',
2539 'Module::CoreList' => '1.99',
2540 'NEXT' => '0.60_01',
2542 'Pod::Html' => '1.0502',
2543 'Scalar::Util' => '1.14_1',
2544 'Storable' => '2.14',
2546 'Test::Harness' => '2.46',
2547 'Test::Harness::Straps' => '0.20_01',
2548 'Text::Balanced' => '1.95_01',
2549 'Text::Wrap' => '2001.09292',
2550 'UNIVERSAL' => '1.02',
2551 'Unicode' => '4.0.1',
2552 'Unicode::Normalize' => '0.30',
2553 'Unicode::UCD' => '0.22',
2555 'XS::APItest' => '0.05',
2556 'XSLoader' => '0.03',
2557 'assertions' => '0.01',
2558 'assertions::activate' => '0.01',
2564 'encoding::warnings' => '0.05',
2567 'threads::shared' => '0.92',
2569 'version' => '0.42',
2570 'warnings' => '1.04',
2573 'Test::Harness::Point' => 1,
2577 delta_from => 5.008008,
2579 'Archive::Tar' => '1.26_01',
2580 'Archive::Tar::Constant'=> '0.02',
2581 'Archive::Tar::File' => '0.02',
2582 'AutoSplit' => '1.04_01',
2584 'B::Bblock' => '1.02',
2585 'B::Bytecode' => '1.01',
2588 'B::Concise' => '0.67',
2589 'B::Debug' => '1.02',
2590 'B::Deparse' => '0.73',
2591 'B::Lint' => '1.04',
2592 'B::Terse' => '1.03',
2594 'CPAN' => '1.83_58',
2595 'CPAN::Debug' => '4.44',
2596 'CPAN::FirstTime' => '4.50',
2597 'CPAN::HandleConfig' => '4.31',
2598 'CPAN::Nox' => '2.31',
2599 'CPAN::Tarzip' => '3.36',
2600 'CPAN::Version' => '2.55',
2602 'Carp::Heavy' => '1.05',
2603 'Compress::Zlib' => '2.000_07',
2604 'Compress::Zlib::Common'=> '2.000_07',
2605 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2606 'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2607 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2608 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2609 'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2610 'Compress::Zlib::FileConstants'=> '2.000_07',
2611 'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2612 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2613 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2614 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2615 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2616 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2617 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2618 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2619 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2620 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2621 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2622 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2623 'Compress::Zlib::ParseParameters'=> '2.000_07',
2624 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2625 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2626 'Config::Extensions' => '0.01',
2628 'Devel::PPPort' => '3.08',
2629 'Digest::SHA' => '5.32',
2630 'DirHandle' => '1.01',
2631 'DynaLoader' => '1.07',
2633 'Encode::CN::HZ' => '2.02',
2634 'Encode::MIME::Header' => '2.02',
2635 'English' => '1.04',
2636 'Exporter' => '5.59',
2637 'Exporter::Heavy' => '5.59',
2638 'ExtUtils::CBuilder' => '0.15',
2639 'ExtUtils::CBuilder::Base'=> '0.12',
2640 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2641 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2642 'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2643 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2644 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2645 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2646 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2647 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2648 'ExtUtils::Command::MM' => '0.05_01',
2649 'ExtUtils::Constant' => '0.2',
2650 'ExtUtils::Constant::Base'=> '0.02',
2651 'ExtUtils::Constant::ProxySubs'=> '0.01',
2652 'ExtUtils::Constant::XS'=> '0.02',
2653 'ExtUtils::MM_Any' => '0.13_01',
2654 'ExtUtils::MM_Unix' => '1.50_01',
2655 'ExtUtils::MakeMaker' => '6.30_01',
2656 'ExtUtils::ParseXS' => '2.15_02',
2658 'File::Compare' => '1.1005',
2659 'File::Spec' => '3.15',
2660 'File::Temp' => '0.16_01',
2661 'IO::File' => '1.13_01',
2662 'IO::Handle' => '1.26',
2663 'IO::Socket' => '1.29_01',
2664 'IO::Socket::INET' => '1.29_02',
2665 'IO::Socket::UNIX' => '1.22_01',
2666 'IO::Zlib' => '1.04_02',
2667 'Locale::Maketext' => '1.10_01',
2668 'Math::BigInt::FastCalc'=> '0.10',
2669 'Memoize' => '1.01_01',
2670 'Module::CoreList' => '2.02',
2671 'Moped::Msg' => '0.01',
2672 'NEXT' => '0.60_01',
2673 'Net::Cmd' => '2.26_01',
2674 'Net::Domain' => '2.19_01',
2675 'Net::Ping' => '2.31_04',
2678 'Pod::Escapes' => '1.04',
2679 'Pod::Man' => '2.04',
2680 'Pod::Perldoc' => '3.14_01',
2681 'Pod::Simple' => '3.04',
2682 'Pod::Simple::BlackBox' => undef,
2683 'Pod::Simple::Checker' => '2.02',
2684 'Pod::Simple::Debug' => undef,
2685 'Pod::Simple::DumpAsText'=> '2.02',
2686 'Pod::Simple::DumpAsXML'=> '2.02',
2687 'Pod::Simple::HTML' => '3.03',
2688 'Pod::Simple::HTMLBatch'=> '3.02',
2689 'Pod::Simple::HTMLLegacy'=> '5.01',
2690 'Pod::Simple::LinkSection'=> undef,
2691 'Pod::Simple::Methody' => '2.02',
2692 'Pod::Simple::Progress' => '1.01',
2693 'Pod::Simple::PullParser'=> '2.02',
2694 'Pod::Simple::PullParserEndToken'=> undef,
2695 'Pod::Simple::PullParserStartToken'=> undef,
2696 'Pod::Simple::PullParserTextToken'=> undef,
2697 'Pod::Simple::PullParserToken'=> '2.02',
2698 'Pod::Simple::RTF' => '2.02',
2699 'Pod::Simple::Search' => '3.04',
2700 'Pod::Simple::SimpleTree'=> '2.02',
2701 'Pod::Simple::Text' => '2.02',
2702 'Pod::Simple::TextContent'=> '2.02',
2703 'Pod::Simple::TiedOutFH'=> undef,
2704 'Pod::Simple::Transcode'=> undef,
2705 'Pod::Simple::TranscodeDumb'=> '2.02',
2706 'Pod::Simple::TranscodeSmart'=> undef,
2707 'Pod::Simple::XMLOutStream'=> '2.02',
2708 'Pod::Text' => '3.01',
2709 'Pod::Text::Color' => '2.01',
2710 'Pod::Text::Overstrike' => '2',
2711 'Pod::Text::Termcap' => '2.01',
2712 'Pod::Usage' => '1.33_01',
2713 'SelfLoader' => '1.0905',
2714 'Storable' => '2.15_02',
2715 'Test::Builder::Module' => '0.03',
2716 'Text::Balanced' => '1.95_01',
2717 'Tie::File' => '0.97_01',
2718 'UNIVERSAL' => '1.03',
2719 'XS::APItest' => '0.09',
2720 'assertions' => '0.02',
2721 'assertions::activate' => '0.02',
2722 'assertions::compat' => undef,
2723 'constant' => '1.07',
2724 'encoding::warnings' => '0.05',
2725 'feature' => '1.00',
2728 'version' => '0.53',
2734 delta_from => 5.009003,
2736 'Archive::Tar' => '1.30_01',
2737 'AutoLoader' => '5.61',
2739 'B::Bytecode' => '1.02',
2741 'B::Concise' => '0.69',
2742 'B::Deparse' => '0.76',
2743 'B::Lint' => '1.08',
2744 'Benchmark' => '1.08',
2746 'CGI::Cookie' => '1.27',
2747 'CGI::Fast' => '1.07',
2748 'CPAN' => '1.87_55',
2749 'CPAN::Debug' => '5.400561',
2750 'CPAN::FirstTime' => '5.400742',
2751 'CPAN::HandleConfig' => '5.400740',
2752 'CPAN::Nox' => '5.400561',
2753 'CPAN::Tarzip' => '5.400714',
2754 'CPAN::Version' => '5.400561',
2755 'Compress::Raw::Zlib' => '2.000_13',
2756 'Compress::Zlib' => '2.000_13',
2758 'Devel::PPPort' => '3.10',
2760 'Digest::SHA' => '5.43',
2761 'Encode' => '2.18_01',
2762 'Encode::Alias' => '2.06',
2763 'Encode::Byte' => '2.02',
2764 'Encode::CJKConstants' => '2.02',
2765 'Encode::CN' => '2.02',
2766 'Encode::CN::HZ' => '2.04',
2767 'Encode::Config' => '2.03',
2768 'Encode::EBCDIC' => '2.02',
2769 'Encode::Encoder' => '2.01',
2770 'Encode::Encoding' => '2.04',
2771 'Encode::Guess' => '2.02',
2772 'Encode::JP' => '2.03',
2773 'Encode::JP::H2Z' => '2.02',
2774 'Encode::JP::JIS7' => '2.02',
2775 'Encode::KR' => '2.02',
2776 'Encode::KR::2022_KR' => '2.02',
2777 'Encode::MIME::Header' => '2.04',
2778 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2779 'Encode::Symbol' => '2.02',
2780 'Encode::TW' => '2.02',
2781 'Encode::Unicode' => '2.03',
2782 'Encode::Unicode::UTF7' => '2.04',
2783 'ExtUtils::CBuilder' => '0.18',
2784 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2785 'ExtUtils::Constant::Base'=> '0.03',
2786 'ExtUtils::Constant::ProxySubs'=> '0.03',
2787 'ExtUtils::Install' => '1.41',
2788 'ExtUtils::Installed' => '1.41',
2789 'ExtUtils::MM_Any' => '0.13_02',
2790 'ExtUtils::MM_NW5' => '2.08_01',
2791 'ExtUtils::MM_Unix' => '1.5003',
2792 'ExtUtils::MM_VMS' => '5.73_03',
2793 'ExtUtils::MM_Win32' => '1.12_02',
2794 'ExtUtils::MM_Win95' => '0.04_01',
2795 'ExtUtils::MakeMaker' => '6.30_02',
2796 'ExtUtils::Manifest' => '1.46_01',
2797 'ExtUtils::Mkbootstrap' => '1.15_01',
2798 'ExtUtils::Mksymlists' => '1.19_01',
2799 'ExtUtils::Packlist' => '1.41',
2800 'File::Basename' => '2.75',
2801 'File::Find' => '1.11',
2802 'File::GlobMapper' => '0.000_02',
2803 'File::Spec' => '3.19',
2804 'FileCache' => '1.07',
2805 'Getopt::Long' => '2.3501',
2806 'Hash::Util' => '0.07',
2807 'Hash::Util::FieldHash' => '0.01',
2809 'IO::Compress::Adapter::Deflate'=> '2.000_13',
2810 'IO::Compress::Adapter::Identity'=> '2.000_13',
2811 'IO::Compress::Base' => '2.000_13',
2812 'IO::Compress::Base::Common'=> '2.000_13',
2813 'IO::Compress::Deflate' => '2.000_13',
2814 'IO::Compress::Gzip' => '2.000_13',
2815 'IO::Compress::Gzip::Constants'=> '2.000_13',
2816 'IO::Compress::RawDeflate'=> '2.000_13',
2817 'IO::Compress::Zip' => '2.000_13',
2818 'IO::Compress::Zip::Constants'=> '2.000_13',
2819 'IO::Compress::Zlib::Constants'=> '2.000_13',
2820 'IO::Compress::Zlib::Extra'=> '2.000_13',
2821 'IO::Dir' => '1.06',
2822 'IO::File' => '1.14',
2823 'IO::Handle' => '1.27',
2824 'IO::Socket' => '1.30_01',
2825 'IO::Socket::INET' => '1.31',
2826 'IO::Socket::UNIX' => '1.23',
2827 'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2828 'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2829 'IO::Uncompress::AnyInflate'=> '2.000_13',
2830 'IO::Uncompress::AnyUncompress'=> '2.000_13',
2831 'IO::Uncompress::Base' => '2.000_13',
2832 'IO::Uncompress::Gunzip'=> '2.000_13',
2833 'IO::Uncompress::Inflate'=> '2.000_13',
2834 'IO::Uncompress::RawInflate'=> '2.000_13',
2835 'IO::Uncompress::Unzip' => '2.000_13',
2836 'MIME::Base64' => '3.07_01',
2837 'Math::Complex' => '1.36',
2838 'Math::Trig' => '1.04',
2839 'Module::Build' => '0.2805',
2840 'Module::Build::Base' => undef,
2841 'Module::Build::Compat' => '0.03',
2842 'Module::Build::ConfigData'=> undef,
2843 'Module::Build::Cookbook'=> undef,
2844 'Module::Build::ModuleInfo'=> undef,
2845 'Module::Build::Notes' => undef,
2846 'Module::Build::PPMMaker'=> undef,
2847 'Module::Build::Platform::Amiga'=> undef,
2848 'Module::Build::Platform::Default'=> undef,
2849 'Module::Build::Platform::EBCDIC'=> undef,
2850 'Module::Build::Platform::MPEiX'=> undef,
2851 'Module::Build::Platform::MacOS'=> undef,
2852 'Module::Build::Platform::RiscOS'=> undef,
2853 'Module::Build::Platform::Unix'=> undef,
2854 'Module::Build::Platform::VMS'=> undef,
2855 'Module::Build::Platform::VOS'=> undef,
2856 'Module::Build::Platform::Windows'=> undef,
2857 'Module::Build::Platform::aix'=> undef,
2858 'Module::Build::Platform::cygwin'=> undef,
2859 'Module::Build::Platform::darwin'=> undef,
2860 'Module::Build::Platform::os2'=> undef,
2861 'Module::Build::PodParser'=> undef,
2862 'Module::Build::Version'=> '0',
2863 'Module::Build::YAML' => '0.50',
2864 'Module::CoreList' => '2.08',
2865 'Module::Load' => '0.10',
2866 'Module::Loaded' => '0.01',
2867 'Package::Constants' => '0.01',
2868 'Pod::Html' => '1.07',
2869 'Pod::Man' => '2.09',
2870 'Pod::Text' => '3.07',
2871 'Pod::Text::Color' => '2.03',
2872 'Pod::Text::Termcap' => '2.03',
2873 'SDBM_File' => '1.06',
2875 'Sys::Syslog' => '0.17',
2876 'Term::ANSIColor' => '1.11',
2877 'Test::Builder' => '0.33',
2878 'Test::Builder::Tester' => '1.04',
2879 'Test::Harness' => '2.62',
2880 'Test::Harness::Util' => '0.01',
2881 'Test::More' => '0.64',
2882 'Test::Simple' => '0.64',
2883 'Text::Balanced' => '1.98_01',
2884 'Text::ParseWords' => '3.25',
2885 'Text::Tabs' => '2007.071101',
2886 'Text::Wrap' => '2006.0711',
2887 'Tie::RefHash' => '1.34_01',
2888 'Time::HiRes' => '1.87',
2889 'Time::Local' => '1.13',
2890 'Time::gmtime' => '1.03',
2891 'UNIVERSAL' => '1.04',
2892 'Unicode::Normalize' => '1.01',
2893 'Win32API::File' => '0.1001',
2894 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2895 'assertions' => '0.03',
2896 'assertions::compat' => '0.02',
2897 'autouse' => '1.06',
2898 'diagnostics' => '1.16',
2899 'encoding' => '2.04',
2900 'encoding::warnings' => '0.10',
2901 'feature' => '1.01',
2903 'threads' => '1.38',
2904 'threads::shared' => '0.94_01',
2905 'version' => '0.67',
2908 'Compress::Zlib::Common'=> 1,
2909 'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2910 'Compress::Zlib::Compress::Zip::Constants'=> 1,
2911 'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2912 'Compress::Zlib::CompressPlugin::Identity'=> 1,
2913 'Compress::Zlib::File::GlobMapper'=> 1,
2914 'Compress::Zlib::FileConstants'=> 1,
2915 'Compress::Zlib::IO::Compress::Base'=> 1,
2916 'Compress::Zlib::IO::Compress::Deflate'=> 1,
2917 'Compress::Zlib::IO::Compress::Gzip'=> 1,
2918 'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2919 'Compress::Zlib::IO::Compress::Zip'=> 1,
2920 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2921 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2922 'Compress::Zlib::IO::Uncompress::Base'=> 1,
2923 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2924 'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2925 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2926 'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2927 'Compress::Zlib::ParseParameters'=> 1,
2928 'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2929 'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2933 delta_from => 5.009004,
2935 'Archive::Extract' => '0.22_01',
2936 'Archive::Tar' => '1.32',
2937 'Attribute::Handlers' => '0.78_06',
2938 'AutoLoader' => '5.63',
2939 'AutoSplit' => '1.05',
2941 'B::Concise' => '0.72',
2942 'B::Debug' => '1.05',
2943 'B::Deparse' => '0.82',
2944 'B::Lint' => '1.09',
2945 'B::Terse' => '1.05',
2946 'Benchmark' => '1.1',
2948 'CGI::Cookie' => '1.28',
2949 'CGI::Util' => '1.5_01',
2951 'CPAN::Debug' => '5.400955',
2952 'CPAN::FirstTime' => '5.401669',
2953 'CPAN::HandleConfig' => '5.401744',
2954 'CPAN::Kwalify' => '5.401418',
2955 'CPAN::Nox' => '5.400844',
2956 'CPAN::Queue' => '5.401704',
2957 'CPAN::Tarzip' => '5.401717',
2958 'CPAN::Version' => '5.401387',
2959 'CPANPLUS' => '0.81_01',
2960 'CPANPLUS::Backend' => undef,
2961 'CPANPLUS::Backend::RV' => undef,
2962 'CPANPLUS::Config' => undef,
2963 'CPANPLUS::Configure' => undef,
2964 'CPANPLUS::Configure::Setup'=> undef,
2965 'CPANPLUS::Dist' => undef,
2966 'CPANPLUS::Dist::Base' => '0.01',
2967 'CPANPLUS::Dist::Build' => '0.06_01',
2968 'CPANPLUS::Dist::Build::Constants'=> '0.01',
2969 'CPANPLUS::Dist::MM' => undef,
2970 'CPANPLUS::Dist::Sample'=> undef,
2971 'CPANPLUS::Error' => undef,
2972 'CPANPLUS::Internals' => '0.81_01',
2973 'CPANPLUS::Internals::Constants'=> '0.01',
2974 'CPANPLUS::Internals::Constants::Report'=> '0.01',
2975 'CPANPLUS::Internals::Extract'=> undef,
2976 'CPANPLUS::Internals::Fetch'=> undef,
2977 'CPANPLUS::Internals::Report'=> undef,
2978 'CPANPLUS::Internals::Search'=> undef,
2979 'CPANPLUS::Internals::Source'=> undef,
2980 'CPANPLUS::Internals::Utils'=> undef,
2981 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
2982 'CPANPLUS::Module' => undef,
2983 'CPANPLUS::Module::Author'=> undef,
2984 'CPANPLUS::Module::Author::Fake'=> undef,
2985 'CPANPLUS::Module::Checksums'=> undef,
2986 'CPANPLUS::Module::Fake'=> undef,
2987 'CPANPLUS::Module::Signature'=> undef,
2988 'CPANPLUS::Selfupdate' => undef,
2989 'CPANPLUS::Shell' => undef,
2990 'CPANPLUS::Shell::Classic'=> '0.0562',
2991 'CPANPLUS::Shell::Default'=> '0.81_01',
2992 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
2993 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
2994 'CPANPLUS::inc' => undef,
2996 'Carp::Heavy' => '1.07',
2997 'Compress::Raw::Zlib' => '2.005',
2998 'Compress::Zlib' => '2.005',
3000 'DBM_Filter' => '0.02',
3001 'DB_File' => '1.815',
3002 'Data::Dumper' => '2.121_13',
3003 'Devel::InnerPackage' => '0.3',
3004 'Devel::PPPort' => '3.11_01',
3005 'Digest::MD5' => '2.36_01',
3006 'Digest::SHA' => '5.44',
3007 'DynaLoader' => '1.08',
3009 'Encode::Alias' => '2.07',
3010 'Encode::Byte' => '2.03',
3011 'Encode::Config' => '2.04',
3012 'Encode::Encoding' => '2.05',
3013 'Encode::GSM0338' => '2.00',
3014 'Encode::JP::JIS7' => '2.03',
3015 'Encode::MIME::Header' => '2.05',
3016 'Encode::MIME::Name' => '1.01',
3017 'Encode::Unicode' => '2.05',
3019 'Exporter' => '5.60',
3020 'Exporter::Heavy' => '5.60',
3021 'ExtUtils::CBuilder' => '0.19',
3022 'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3023 'ExtUtils::Command' => '1.13',
3024 'ExtUtils::Command::MM' => '0.07',
3025 'ExtUtils::Constant::Base'=> '0.04',
3026 'ExtUtils::Install' => '1.41_01',
3027 'ExtUtils::Liblist' => '1.03',
3028 'ExtUtils::Liblist::Kid'=> '1.33',
3029 'ExtUtils::MM' => '0.07',
3030 'ExtUtils::MM_AIX' => '0.05',
3031 'ExtUtils::MM_Any' => '0.15',
3032 'ExtUtils::MM_BeOS' => '1.07',
3033 'ExtUtils::MM_Cygwin' => '1.1',
3034 'ExtUtils::MM_DOS' => '0.04',
3035 'ExtUtils::MM_MacOS' => '1.1',
3036 'ExtUtils::MM_NW5' => '2.1',
3037 'ExtUtils::MM_OS2' => '1.07',
3038 'ExtUtils::MM_QNX' => '0.04',
3039 'ExtUtils::MM_UWIN' => '0.04',
3040 'ExtUtils::MM_Unix' => '1.54_01',
3041 'ExtUtils::MM_VMS' => '5.76',
3042 'ExtUtils::MM_VOS' => '0.04',
3043 'ExtUtils::MM_Win32' => '1.15',
3044 'ExtUtils::MM_Win95' => '0.06',
3045 'ExtUtils::MY' => '0.03',
3046 'ExtUtils::MakeMaker' => '6.36',
3047 'ExtUtils::MakeMaker::Config'=> '0.04',
3048 'ExtUtils::MakeMaker::bytes'=> '0.03',
3049 'ExtUtils::MakeMaker::vmsish'=> '0.03',
3050 'ExtUtils::Manifest' => '1.51_01',
3051 'ExtUtils::Mkbootstrap' => '1.17',
3052 'ExtUtils::Mksymlists' => '1.21',
3053 'ExtUtils::ParseXS' => '2.18',
3054 'ExtUtils::XSSymSet' => '1.1',
3055 'ExtUtils::testlib' => '1.17',
3058 'File::Basename' => '2.76',
3059 'File::Copy' => '2.10',
3060 'File::Fetch' => '0.10',
3061 'File::Glob' => '1.06',
3062 'File::Path' => '2.01',
3063 'File::Spec' => '3.25',
3064 'File::Spec::Cygwin' => '1.1_01',
3065 'File::Spec::VMS' => '1.4_01',
3066 'File::Temp' => '0.18',
3067 'Filter::Util::Call' => '1.0602',
3068 'FindBin' => '1.49',
3069 'Getopt::Long' => '2.36',
3070 'Hash::Util::FieldHash' => '1.01',
3071 'IO::Compress::Adapter::Deflate'=> '2.005',
3072 'IO::Compress::Adapter::Identity'=> '2.005',
3073 'IO::Compress::Base' => '2.005',
3074 'IO::Compress::Base::Common'=> '2.005',
3075 'IO::Compress::Deflate' => '2.005',
3076 'IO::Compress::Gzip' => '2.005',
3077 'IO::Compress::Gzip::Constants'=> '2.005',
3078 'IO::Compress::RawDeflate'=> '2.005',
3079 'IO::Compress::Zip' => '2.005',
3080 'IO::Compress::Zip::Constants'=> '2.005',
3081 'IO::Compress::Zlib::Constants'=> '2.005',
3082 'IO::Compress::Zlib::Extra'=> '2.005',
3083 'IO::Uncompress::Adapter::Identity'=> '2.005',
3084 'IO::Uncompress::Adapter::Inflate'=> '2.005',
3085 'IO::Uncompress::AnyInflate'=> '2.005',
3086 'IO::Uncompress::AnyUncompress'=> '2.005',
3087 'IO::Uncompress::Base' => '2.005',
3088 'IO::Uncompress::Gunzip'=> '2.005',
3089 'IO::Uncompress::Inflate'=> '2.005',
3090 'IO::Uncompress::RawInflate'=> '2.005',
3091 'IO::Uncompress::Unzip' => '2.005',
3092 'IO::Zlib' => '1.05_01',
3093 'IPC::Cmd' => '0.36_01',
3094 'List::Util' => '1.19',
3095 'Locale::Maketext::Simple'=> '0.18',
3096 'Log::Message' => '0.01',
3097 'Log::Message::Config' => '0.01',
3098 'Log::Message::Handlers'=> undef,
3099 'Log::Message::Item' => undef,
3100 'Log::Message::Simple' => '0.0201',
3101 'Math::BigFloat' => '1.58',
3102 'Math::BigInt' => '1.87',
3103 'Math::BigInt::Calc' => '0.51',
3104 'Math::BigInt::FastCalc'=> '0.15_01',
3105 'Math::BigRat' => '0.19',
3106 'Math::Complex' => '1.37',
3107 'Memoize' => '1.01_02',
3108 'Module::Build' => '0.2808',
3109 'Module::Build::Config' => undef,
3110 'Module::Build::Version'=> '0.7203',
3111 'Module::CoreList' => '2.12',
3112 'Module::Load::Conditional'=> '0.16',
3113 'Module::Pluggable' => '3.6',
3114 'Module::Pluggable::Object'=> '3.6',
3115 'NDBM_File' => '1.07',
3116 'Net::Cmd' => '2.28',
3117 'Net::Config' => '1.11',
3118 'Net::Domain' => '2.20',
3119 'Net::FTP' => '2.77',
3120 'Net::FTP::A' => '1.18',
3121 'Net::NNTP' => '2.24',
3122 'Net::POP3' => '2.29',
3123 'Net::SMTP' => '2.31',
3124 'ODBM_File' => '1.07',
3125 'OS2::DLL' => '1.03',
3126 'Object::Accessor' => '0.32',
3129 'Params::Check' => '0.26',
3130 'PerlIO::encoding' => '0.10',
3131 'PerlIO::scalar' => '0.05',
3132 'PerlIO::via' => '0.04',
3133 'Pod::Html' => '1.08',
3134 'Pod::Man' => '2.12',
3135 'Pod::ParseUtils' => '1.35',
3136 'Pod::Parser' => '1.35',
3137 'Pod::Select' => '1.35',
3138 'Pod::Simple' => '3.05',
3139 'Pod::Text' => '3.08',
3140 'Pod::Usage' => '1.35',
3141 'Scalar::Util' => '1.19',
3142 'SelfLoader' => '1.11',
3143 'Shell' => '0.72_01',
3145 'Storable' => '2.16',
3147 'Sys::Syslog' => '0.18_01',
3148 'Term::ANSIColor' => '1.12',
3149 'Term::UI' => '0.14_01',
3150 'Term::UI::History' => undef,
3151 'Test::Builder' => '0.70',
3152 'Test::Builder::Module' => '0.68',
3153 'Test::Builder::Tester' => '1.07',
3154 'Test::Harness' => '2.64',
3155 'Test::Harness::Results'=> '0.01',
3156 'Test::More' => '0.70',
3157 'Test::Simple' => '0.70',
3158 'Text::Balanced' => '2.0.0',
3159 'Text::Soundex' => '3.02',
3160 'Text::Tabs' => '2007.1117',
3161 'Text::Wrap' => '2006.1117',
3163 'Tie::File' => '0.97_02',
3164 'Tie::Hash::NamedCapture'=> '0.06',
3165 'Tie::Memoize' => '1.1',
3166 'Tie::RefHash' => '1.37',
3167 'Time::HiRes' => '1.9707',
3168 'Time::Local' => '1.17',
3169 'Time::Piece' => '1.11_02',
3170 'Time::Seconds' => undef,
3171 'Unicode' => '5.0.0',
3172 'Unicode::Normalize' => '1.02',
3173 'Unicode::UCD' => '0.25',
3174 'VMS::DCLsym' => '1.03',
3176 'Win32API::File' => '0.1001_01',
3177 'Win32CORE' => '0.02',
3178 'XS::APItest' => '0.12',
3179 'XSLoader' => '0.08',
3180 'attributes' => '0.08',
3186 'charnames' => '1.06',
3187 'constant' => '1.10',
3188 'diagnostics' => '1.17',
3189 'encoding' => '2.06',
3190 'encoding::warnings' => '0.11',
3191 'feature' => '1.10',
3195 'overload' => '1.06',
3197 'sigtrap' => '1.04',
3200 'threads' => '1.63',
3201 'threads::shared' => '1.12',
3203 'version' => '0.7203',
3204 'warnings' => '1.06',
3208 'B::Assembler' => 1,
3213 'B::Disassembler' => 1,
3217 'Thread::Signal' => 1,
3218 'Thread::Specific' => 1,
3220 'assertions::activate' => 1,
3221 'assertions::compat' => 1,
3225 delta_from => 5.009005,
3227 'Archive::Extract' => '0.24',
3228 'Archive::Tar' => '1.38',