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.20160520';
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 => '2016-03-20',
294 5.022002 => '2016-04-29',
295 5.024000 => '2016-05-09',
296 5.025000 => '2016-05-09',
297 5.025001 => '2016-05-20',
300 for my $version ( sort { $a <=> $b } keys %released ) {
301 my $family = int ($version * 1000) / 1000;
302 push @{ $families{ $family }} , $version;
308 'AnyDBM_File' => undef,
309 'AutoLoader' => undef,
310 'AutoSplit' => undef,
311 'Benchmark' => undef,
315 'DynaLoader' => undef,
319 'ExtUtils::MakeMaker' => undef,
321 'File::Basename' => undef,
322 'File::CheckTree' => undef,
323 'File::Find' => undef,
324 'FileHandle' => undef,
325 'GDBM_File' => undef,
326 'Getopt::Long' => undef,
327 'Getopt::Std' => undef,
328 'I18N::Collate' => undef,
329 'IPC::Open2' => undef,
330 'IPC::Open3' => undef,
331 'Math::BigFloat' => undef,
332 'Math::BigInt' => undef,
333 'Math::Complex' => undef,
334 'NDBM_File' => undef,
335 'Net::Ping' => undef,
336 'ODBM_File' => undef,
338 'SDBM_File' => undef,
339 'Search::Dict' => undef,
342 'Sys::Hostname' => undef,
343 'Sys::Syslog' => undef,
344 'Term::Cap' => undef,
345 'Term::Complete' => undef,
346 'Test::Harness' => undef,
347 'Text::Abbrev' => undef,
348 'Text::ParseWords' => undef,
349 'Text::Soundex' => undef,
350 'Text::Tabs' => undef,
352 'Time::Local' => undef,
365 'ExtUtils::Liblist' => undef,
366 'ExtUtils::Manifest' => undef,
367 'ExtUtils::Mkbootstrap' => undef,
368 'File::Path' => undef,
369 'SubstrHash' => undef,
379 'Devel::SelfStubber' => '1.01',
380 'DirHandle' => undef,
381 'DynaLoader' => '1.00',
382 'ExtUtils::Install' => undef,
383 'ExtUtils::MM_OS2' => undef,
384 'ExtUtils::MM_Unix' => undef,
385 'ExtUtils::MM_VMS' => undef,
386 'ExtUtils::MakeMaker' => '5.21',
387 'ExtUtils::Manifest' => '1.22',
388 'ExtUtils::Mksymlists' => '1.00',
390 'File::Copy' => '1.5',
391 'File::Path' => '1.01',
392 'FileCache' => undef,
393 'FileHandle' => '1.00',
394 'GDBM_File' => '1.00',
395 'Getopt::Long' => '2.01',
396 'NDBM_File' => '1.00',
398 'ODBM_File' => '1.00',
400 'Pod::Functions' => undef,
401 'Pod::Text' => undef,
402 'SDBM_File' => '1.00',
404 'SelectSaver' => undef,
405 'SelfLoader' => '1.06',
408 'Term::ReadLine' => undef,
409 'Test::Harness' => '1.07',
410 'Text::Wrap' => undef,
411 'Tie::Hash' => undef,
412 'Tie::Scalar' => undef,
413 'Tie::SubstrHash' => undef,
414 'diagnostics' => undef,
428 'ExtUtils::Embed' => '1.18',
429 'ExtUtils::Install' => '1.15',
430 'ExtUtils::Liblist' => '1.20',
431 'ExtUtils::MM_Unix' => '1.107',
432 'ExtUtils::MakeMaker' => '5.38',
433 'ExtUtils::Manifest' => '1.27',
434 'ExtUtils::Mkbootstrap' => '1.13',
435 'ExtUtils::Mksymlists' => '1.12',
436 'ExtUtils::testlib' => '1.11',
438 'File::Basename' => '2.4',
440 'Getopt::Long' => '2.04',
442 'IO::File' => '1.05',
443 'IO::Handle' => '1.12',
444 'IO::Pipe' => '1.07',
445 'IO::Seekable' => '1.05',
446 'IO::Select' => '1.09',
447 'IO::Socket' => '1.13',
448 'Net::Ping' => '1.01',
449 'OS2::ExtAttr' => '0.01',
450 'OS2::PrfDB' => '0.02',
451 'OS2::Process' => undef,
452 'OS2::REXX' => undef,
455 'Test::Harness' => '1.13',
456 'Text::Tabs' => '96.051501',
457 'Text::Wrap' => '96.041801',
458 'UNIVERSAL' => undef,
459 'VMS::Filespec' => undef,
460 'VMS::Stdio' => '2.0',
468 delta_from => 5.00307,
470 'Bundle::CPAN' => '0.02',
472 'CGI::Apache' => '1.01',
473 'CGI::Carp' => '1.06',
474 'CGI::Fast' => '1.00a',
475 'CGI::Push' => '1.00',
476 'CGI::Switch' => '0.05',
478 'CPAN::FirstTime' => '1.18',
479 'CPAN::Nox' => undef,
480 'Class::Struct' => undef,
483 'DynaLoader' => '1.02',
484 'ExtUtils::Command' => '1.00',
485 'ExtUtils::Embed' => '1.2501',
486 'ExtUtils::Install' => '1.16',
487 'ExtUtils::Liblist' => '1.2201',
488 'ExtUtils::MM_Unix' => '1.114',
489 'ExtUtils::MM_Win32' => undef,
490 'ExtUtils::MakeMaker' => '5.4002',
491 'ExtUtils::Manifest' => '1.33',
492 'ExtUtils::Mksymlists' => '1.13',
493 'ExtUtils::XSSymSet' => '1.0',
495 'File::Basename' => '2.5',
496 'File::Compare' => '1.1001',
497 'File::Copy' => '2.02',
498 'File::Path' => '1.04',
499 'File::stat' => undef,
500 'FileHandle' => '2.00',
501 'Getopt::Long' => '2.10',
502 'IO::File' => '1.0602',
503 'IO::Handle' => '1.1504',
504 'IO::Pipe' => '1.0901',
505 'IO::Seekable' => '1.06',
506 'IO::Select' => '1.10',
507 'IO::Socket' => '1.1602',
508 'IPC::Open2' => '1.01',
509 'IPC::Open3' => '1.0101',
510 'Math::Complex' => '1.01',
512 'Net::Ping' => '2.02',
513 'Net::hostent' => undef,
514 'Net::netent' => undef,
515 'Net::protoent' => undef,
516 'Net::servent' => undef,
519 'Pod::Html' => undef,
520 'Pod::Text' => '1.0203',
521 'SelfLoader' => '1.07',
524 'Test::Harness' => '1.1502',
525 'Text::Tabs' => '96.121201',
526 'Text::Wrap' => '97.011701',
527 'Tie::RefHash' => undef,
528 'Time::gmtime' => '1.01',
529 'Time::localtime' => '1.01',
531 'User::grent' => undef,
532 'User::pwent' => undef,
533 'VMS::DCLsym' => '1.01',
534 'VMS::Stdio' => '2.02',
537 'constant' => '1.00',
549 'AutoLoader' => '5.56',
550 'AutoSplit' => '1.0303',
551 'Bundle::CPAN' => '0.03',
553 'CGI::Apache' => '1.1',
554 'CGI::Carp' => '1.10',
555 'CGI::Cookie' => '1.06',
556 'CGI::Push' => '1.01',
557 'CGI::Switch' => '0.06',
559 'CPAN::FirstTime' => '1.30',
562 'DynaLoader' => '1.03',
563 'ExtUtils::Command' => '1.01',
564 'ExtUtils::Embed' => '1.2505',
565 'ExtUtils::Install' => '1.28',
566 'ExtUtils::Liblist' => '1.25',
567 'ExtUtils::MM_Unix' => '1.118',
568 'ExtUtils::MakeMaker' => '5.42',
569 'ExtUtils::Mkbootstrap' => '1.14',
570 'ExtUtils::Mksymlists' => '1.16',
571 'File::Basename' => '2.6',
572 'File::DosGlob' => undef,
573 'File::Path' => '1.0402',
574 'File::Spec' => '0.6',
575 'File::Spec::Mac' => '1.0',
576 'File::Spec::OS2' => undef,
577 'File::Spec::Unix' => undef,
578 'File::Spec::VMS' => undef,
579 'File::Spec::Win32' => undef,
581 'Getopt::Long' => '2.19',
582 'IO::File' => '1.06021',
583 'IO::Socket' => '1.1603',
584 'IPC::Open3' => '1.0103',
585 'Math::Complex' => '1.25',
586 'NDBM_File' => '1.01',
587 'Pod::Html' => '1.0101',
588 'Pod::Text' => '1.0204',
589 'SelfLoader' => '1.08',
592 'Test::Harness' => '1.1602',
593 'Text::ParseWords' => '3.1001',
594 'Text::Wrap' => '98.112902',
595 'Tie::Handle' => undef,
606 delta_from => 5.00405,
608 'AutoLoader' => undef,
609 'AutoSplit' => '1.0302',
611 'B::Asmdata' => undef,
612 'B::Assembler' => undef,
613 'B::Bblock' => undef,
614 'B::Bytecode' => undef,
618 'B::Deparse' => '0.56',
619 'B::Disassembler' => undef,
621 'B::Showlex' => undef,
622 'B::Stackobj' => undef,
625 'CGI::Carp' => '1.101',
627 'CPAN::FirstTime' => '1.29',
629 'Data::Dumper' => '2.09',
631 'ExtUtils::Installed' => '0.02',
632 'ExtUtils::MM_Unix' => '1.12601',
633 'ExtUtils::MakeMaker' => '5.4301',
634 'ExtUtils::Mkbootstrap' => '1.13',
635 'ExtUtils::Mksymlists' => '1.17',
636 'ExtUtils::Packlist' => '0.03',
638 'File::Path' => '1.0401',
639 'Getopt::Long' => '2.17',
640 'IO::Handle' => '1.1505',
641 'IPC::Msg' => '1.00',
642 'IPC::Open3' => '1.0102',
643 'IPC::Semaphore' => '1.00',
644 'IPC::SysV' => '1.03',
646 'OS2::Process' => '0.2',
647 'Pod::Html' => '1.01',
648 'Pod::Text' => '1.0203',
649 'Text::ParseWords' => '3.1',
650 'Text::Wrap' => '97.02',
652 'Thread::Queue' => undef,
653 'Thread::Semaphore' => undef,
654 'Thread::Signal' => undef,
655 'Thread::Specific' => undef,
656 'Tie::Array' => '1.00',
657 'VMS::Stdio' => '2.1',
669 'AutoSplit' => '1.0303',
671 'CGI::Carp' => '1.13',
672 'CGI::Fast' => '1.01',
674 'CPAN::FirstTime' => '1.36',
675 'CPAN::Nox' => '1.00',
677 'Data::Dumper' => '2.101',
678 'Dumpvalue' => undef,
680 'ExtUtils::Install' => '1.28',
681 'ExtUtils::Liblist' => '1.25',
682 'ExtUtils::MM_Unix' => '1.12602',
683 'ExtUtils::MakeMaker' => '5.4302',
684 'ExtUtils::Manifest' => '1.33',
685 'ExtUtils::Mkbootstrap' => '1.14',
686 'ExtUtils::Mksymlists' => '1.17',
687 'ExtUtils::testlib' => '1.11',
689 'Getopt::Long' => '2.19',
690 'Getopt::Std' => '1.01',
691 'IO::Pipe' => '1.0902',
692 'IPC::Open3' => '1.0103',
693 'Math::Complex' => '1.26',
695 'Text::Wrap' => '98.112902',
701 delta_from => 5.00503,
703 'CPAN::FirstTime' => '1.36',
704 'DB_File' => '1.807',
705 'ExtUtils::Install' => '1.28',
706 'ExtUtils::Liblist' => '1.25',
707 'ExtUtils::MM_Unix' => '1.12602',
708 'ExtUtils::Manifest' => '1.33',
709 'ExtUtils::Miniperl' => undef,
710 'ExtUtils::Mkbootstrap' => '1.14',
711 'ExtUtils::Mksymlists' => '1.17',
712 'ExtUtils::testlib' => '1.11',
713 'File::Compare' => '1.1002',
714 'File::Spec' => '0.8',
715 'File::Spec::Functions' => undef,
716 'File::Spec::Mac' => undef,
717 'Getopt::Long' => '2.20',
718 'Pod::Html' => '1.02',
724 delta_from => 5.00504,
726 'AutoLoader' => '5.57',
727 'AutoSplit' => '1.0305',
728 'B::Deparse' => '0.59',
731 'ByteLoader' => '0.03',
733 'CGI::Apache' => undef,
734 'CGI::Carp' => '1.14',
735 'CGI::Cookie' => '1.12',
736 'CGI::Fast' => '1.02',
737 'CGI::Pretty' => '1.03',
738 'CGI::Switch' => undef,
740 'CPAN::FirstTime' => '1.38',
741 'Carp::Heavy' => undef,
742 'Class::Struct' => '0.58',
746 'Devel::DProf' => '20000000.00_00',
747 'Devel::Peek' => '1.00_01',
748 'DynaLoader' => '1.04',
749 'Exporter' => '5.562',
750 'Exporter::Heavy' => undef,
751 'ExtUtils::MM_Cygwin' => undef,
752 'ExtUtils::MM_Unix' => '1.12603',
753 'ExtUtils::MakeMaker' => '5.45',
754 'File::Copy' => '2.03',
755 'File::Glob' => '0.991',
756 'File::Path' => '1.0403',
757 'GDBM_File' => '1.03',
758 'Getopt::Long' => '2.23',
759 'Getopt::Std' => '1.02',
762 'IO::File' => '1.08',
763 'IO::Handle' => '1.21',
764 'IO::Pipe' => '1.121',
765 'IO::Poll' => '0.01',
766 'IO::Seekable' => '1.08',
767 'IO::Select' => '1.14',
768 'IO::Socket' => '1.26',
769 'IO::Socket::INET' => '1.25',
770 'IO::Socket::UNIX' => '1.20',
772 'JPL::AutoLoader' => undef,
773 'JPL::Class' => undef,
774 'JPL::Compile' => undef,
775 'NDBM_File' => '1.03',
776 'ODBM_File' => '1.02',
779 'Pod::Checker' => '1.098',
780 'Pod::Find' => '0.12',
781 'Pod::Html' => '1.03',
782 'Pod::InputObjects' => '1.12',
783 'Pod::Man' => '1.02',
784 'Pod::ParseUtils' => '0.2',
785 'Pod::Parser' => '1.12',
786 'Pod::Plainer' => '0.01',
787 'Pod::Select' => '1.12',
788 'Pod::Text' => '2.03',
789 'Pod::Text::Color' => '0.05',
790 'Pod::Text::Termcap' => '0.04',
791 'Pod::Usage' => '1.12',
792 'SDBM_File' => '1.02',
793 'SelfLoader' => '1.0901',
796 'Sys::Hostname' => '1.1',
797 'Sys::Syslog' => '0.01',
798 'Term::ANSIColor' => '1.01',
800 'Test::Harness' => '1.1604',
801 'Text::ParseWords' => '3.2',
802 'Text::Soundex' => '1.0',
803 'Text::Tabs' => '98.112801',
804 'Tie::Array' => '1.01',
805 'Tie::Handle' => '1.0',
806 'VMS::Stdio' => '2.2',
807 'XSLoader' => '0.01',
808 'attributes' => '0.03',
812 'charnames' => undef,
813 'constant' => '1.02',
814 'diagnostics' => '1.0',
821 'warnings::register' => undef,
829 'AutoLoader' => '5.58',
830 'B::Assembler' => '0.02',
831 'B::Concise' => '0.51',
832 'B::Deparse' => '0.6',
833 'ByteLoader' => '0.04',
835 'CGI::Carp' => '1.20',
836 'CGI::Cookie' => '1.18',
837 'CGI::Pretty' => '1.05',
838 'CGI::Push' => '1.04',
839 'CGI::Util' => '1.1',
841 'CPAN::FirstTime' => '1.53',
842 'Class::Struct' => '0.59',
845 'Data::Dumper' => '2.102',
846 'ExtUtils::Install' => '1.28',
847 'ExtUtils::Liblist' => '1.26',
848 'ExtUtils::MM_Unix' => '1.12603',
849 'ExtUtils::Manifest' => '1.33',
850 'ExtUtils::Mkbootstrap' => '1.14',
851 'ExtUtils::Mksymlists' => '1.17',
852 'ExtUtils::testlib' => '1.11',
853 'File::Path' => '1.0404',
854 'File::Spec' => '0.82',
855 'File::Spec::Epoc' => undef,
856 'File::Spec::Functions' => '1.1',
857 'File::Spec::Mac' => '1.2',
858 'File::Spec::OS2' => '1.1',
859 'File::Spec::Unix' => '1.2',
860 'File::Spec::VMS' => '1.1',
861 'File::Spec::Win32' => '1.2',
862 'File::Temp' => '0.12',
863 'GDBM_File' => '1.05',
864 'Getopt::Long' => '2.25',
865 'IO::Poll' => '0.05',
867 'Math::BigFloat' => '0.02',
868 'Math::BigInt' => '0.01',
869 'Math::Complex' => '1.31',
870 'NDBM_File' => '1.04',
871 'ODBM_File' => '1.03',
872 'OS2::REXX' => '1.00',
873 'Pod::Checker' => '1.2',
874 'Pod::Find' => '0.21',
875 'Pod::InputObjects' => '1.13',
876 'Pod::LaTeX' => '0.53',
877 'Pod::Man' => '1.15',
878 'Pod::ParseUtils' => '0.22',
879 'Pod::Parser' => '1.13',
880 'Pod::Select' => '1.13',
881 'Pod::Text' => '2.08',
882 'Pod::Text::Color' => '0.06',
883 'Pod::Text::Overstrike' => '1.01',
884 'Pod::Text::Termcap' => '1',
885 'Pod::Usage' => '1.14',
886 'SDBM_File' => '1.03',
887 'SelfLoader' => '1.0902',
889 'Term::ANSIColor' => '1.03',
891 'Text::Wrap' => '2001.0131',
892 'Tie::Handle' => '4.0',
893 'Tie::RefHash' => '1.3',
899 delta_from => 5.006001,
901 'CPAN::FirstTime' => '1.53',
902 'DB_File' => '1.806',
903 'Data::Dumper' => '2.121',
904 'ExtUtils::Command' => '1.05',
905 'ExtUtils::Command::MM' => '0.03',
906 'ExtUtils::Install' => '1.32',
907 'ExtUtils::Installed' => '0.08',
908 'ExtUtils::Liblist' => '1.01',
909 'ExtUtils::Liblist::Kid'=> '1.3',
910 'ExtUtils::MM' => '0.04',
911 'ExtUtils::MM_Any' => '0.07',
912 'ExtUtils::MM_BeOS' => '1.04',
913 'ExtUtils::MM_Cygwin' => '1.06',
914 'ExtUtils::MM_DOS' => '0.02',
915 'ExtUtils::MM_MacOS' => '1.07',
916 'ExtUtils::MM_NW5' => '2.06',
917 'ExtUtils::MM_OS2' => '1.04',
918 'ExtUtils::MM_UWIN' => '0.02',
919 'ExtUtils::MM_Unix' => '1.42',
920 'ExtUtils::MM_VMS' => '5.70',
921 'ExtUtils::MM_Win32' => '1.09',
922 'ExtUtils::MM_Win95' => '0.03',
923 'ExtUtils::MY' => '0.01',
924 'ExtUtils::MakeMaker' => '6.17',
925 'ExtUtils::MakeMaker::bytes'=> '0.01',
926 'ExtUtils::MakeMaker::vmsish'=> '0.01',
927 'ExtUtils::Manifest' => '1.42',
928 'ExtUtils::Mkbootstrap' => '1.15',
929 'ExtUtils::Mksymlists' => '1.19',
930 'ExtUtils::Packlist' => '0.04',
931 'ExtUtils::testlib' => '1.15',
932 'File::Spec' => '0.86',
933 'File::Spec::Cygwin' => '1.1',
934 'File::Spec::Epoc' => '1.1',
935 'File::Spec::Functions' => '1.3',
936 'File::Spec::Mac' => '1.4',
937 'File::Spec::OS2' => '1.2',
938 'File::Spec::Unix' => '1.5',
939 'File::Spec::VMS' => '1.4',
940 'File::Spec::Win32' => '1.4',
941 'File::Temp' => '0.14',
944 'Test::Builder' => '0.17',
945 'Test::Harness' => '2.30',
946 'Test::Harness::Assert' => '0.01',
947 'Test::Harness::Iterator'=> '0.01',
948 'Test::Harness::Straps' => '0.15',
949 'Test::More' => '0.47',
950 'Test::Simple' => '0.47',
951 'Unicode' => '3.0.1',
959 delta_from => 5.006001,
961 'AnyDBM_File' => '1.00',
962 'Attribute::Handlers' => '0.76',
963 'AutoLoader' => '5.59',
964 'AutoSplit' => '1.0307',
966 'B::Asmdata' => '1.00',
967 'B::Assembler' => '0.04',
968 'B::Bblock' => '1.00',
969 'B::Bytecode' => '1.00',
972 'B::Concise' => '0.52',
973 'B::Debug' => '1.00',
974 'B::Deparse' => '0.63',
975 'B::Disassembler' => '1.01',
977 'B::Showlex' => '1.00',
978 'B::Stackobj' => '1.00',
979 'B::Stash' => '1.00',
980 'B::Terse' => '1.00',
982 'Benchmark' => '1.04',
984 'CGI::Apache' => '1.00',
985 'CGI::Carp' => '1.22',
986 'CGI::Cookie' => '1.20',
987 'CGI::Fast' => '1.04',
988 'CGI::Pretty' => '1.05_00',
989 'CGI::Switch' => '1.00',
990 'CGI::Util' => '1.3',
992 'CPAN::FirstTime' => '1.54',
993 'CPAN::Nox' => '1.00_01',
995 'Carp::Heavy' => '1.01',
996 'Class::ISA' => '0.32',
997 'Class::Struct' => '0.61',
999 'DB_File' => '1.804',
1000 'Data::Dumper' => '2.12',
1001 'Devel::DProf' => '20000000.00_01',
1002 'Devel::PPPort' => '2.0002',
1003 'Devel::Peek' => '1.00_03',
1004 'Devel::SelfStubber' => '1.03',
1006 'Digest::MD5' => '2.16',
1007 'DirHandle' => '1.00',
1008 'Dumpvalue' => '1.10',
1010 'Encode::CN' => '0.02',
1011 'Encode::CN::HZ' => undef,
1012 'Encode::Encoding' => '0.02',
1013 'Encode::Internal' => '0.30',
1014 'Encode::JP' => '0.02',
1015 'Encode::JP::Constants' => '1.02',
1016 'Encode::JP::H2Z' => '0.77',
1017 'Encode::JP::ISO_2022_JP'=> undef,
1018 'Encode::JP::JIS' => undef,
1019 'Encode::JP::Tr' => '0.77',
1020 'Encode::KR' => '0.02',
1021 'Encode::TW' => '0.02',
1022 'Encode::Tcl' => '1.01',
1023 'Encode::Tcl::Escape' => '1.01',
1024 'Encode::Tcl::Extended' => '1.01',
1025 'Encode::Tcl::HanZi' => '1.01',
1026 'Encode::Tcl::Table' => '1.01',
1027 'Encode::Unicode' => '0.30',
1028 'Encode::XS' => '0.40',
1029 'Encode::iso10646_1' => '0.30',
1030 'Encode::usc2_le' => '0.30',
1031 'Encode::utf8' => '0.30',
1032 'English' => '1.00',
1034 'Exporter' => '5.566',
1035 'Exporter::Heavy' => '5.562',
1036 'ExtUtils::Command' => '1.02',
1037 'ExtUtils::Constant' => '0.11',
1038 'ExtUtils::Embed' => '1.250601',
1039 'ExtUtils::Install' => '1.29',
1040 'ExtUtils::Installed' => '0.04',
1041 'ExtUtils::Liblist' => '1.2701',
1042 'ExtUtils::MM_BeOS' => '1.00',
1043 'ExtUtils::MM_Cygwin' => '1.00',
1044 'ExtUtils::MM_OS2' => '1.00',
1045 'ExtUtils::MM_Unix' => '1.12607',
1046 'ExtUtils::MM_VMS' => '5.56',
1047 'ExtUtils::MM_Win32' => '1.00_02',
1048 'ExtUtils::MakeMaker' => '5.48_03',
1049 'ExtUtils::Manifest' => '1.35',
1050 'ExtUtils::Mkbootstrap' => '1.1401',
1051 'ExtUtils::Mksymlists' => '1.18',
1052 'ExtUtils::Packlist' => '0.04',
1053 'ExtUtils::testlib' => '1.1201',
1056 'File::Basename' => '2.71',
1057 'File::CheckTree' => '4.1',
1058 'File::Compare' => '1.1003',
1059 'File::Copy' => '2.05',
1060 'File::DosGlob' => '1.00',
1061 'File::Find' => '1.04',
1062 'File::Glob' => '1.01',
1063 'File::Path' => '1.05',
1064 'File::Spec' => '0.83',
1065 'File::Spec::Cygwin' => '1.0',
1066 'File::Spec::Epoc' => '1.00',
1067 'File::Spec::Functions' => '1.2',
1068 'File::Spec::Mac' => '1.3',
1069 'File::Spec::Unix' => '1.4',
1070 'File::Spec::VMS' => '1.2',
1071 'File::Spec::Win32' => '1.3',
1072 'File::Temp' => '0.13',
1073 'File::stat' => '1.00',
1074 'FileCache' => '1.00',
1075 'FileHandle' => '2.01',
1076 'Filter::Simple' => '0.77',
1077 'Filter::Util::Call' => '1.06',
1078 'FindBin' => '1.43',
1079 'GDBM_File' => '1.06',
1080 'Getopt::Long' => '2.28',
1081 'Getopt::Std' => '1.03',
1082 'I18N::Collate' => '1.00',
1083 'I18N::LangTags' => '0.27',
1084 'I18N::LangTags::List' => '0.25',
1085 'I18N::Langinfo' => '0.01',
1086 'IO::Dir' => '1.03_00',
1087 'IO::File' => '1.09',
1088 'IO::Handle' => '1.21_00',
1089 'IO::Pipe' => '1.122',
1090 'IO::Poll' => '0.06',
1091 'IO::Seekable' => '1.08_00',
1092 'IO::Select' => '1.15',
1093 'IO::Socket' => '1.27',
1094 'IO::Socket::INET' => '1.26',
1095 'IO::Socket::UNIX' => '1.20_00',
1096 'IPC::Msg' => '1.00_00',
1097 'IPC::Open3' => '1.0104',
1098 'IPC::Semaphore' => '1.00_00',
1099 'IPC::SysV' => '1.03_00',
1100 'List::Util' => '1.06_00',
1101 'Locale::Constants' => '2.01',
1102 'Locale::Country' => '2.01',
1103 'Locale::Currency' => '2.01',
1104 'Locale::Language' => '2.01',
1105 'Locale::Maketext' => '1.03',
1106 'Locale::Script' => '2.01',
1107 'MIME::Base64' => '2.12',
1108 'MIME::QuotedPrint' => '2.03',
1109 'Math::BigFloat' => '1.30',
1110 'Math::BigInt' => '1.54',
1111 'Math::BigInt::Calc' => '0.25',
1112 'Math::Complex' => '1.34',
1113 'Math::Trig' => '1.01',
1114 'Memoize' => '0.66',
1115 'Memoize::AnyDBM_File' => '0.65',
1116 'Memoize::Expire' => '0.66',
1117 'Memoize::ExpireFile' => '0.65',
1118 'Memoize::ExpireTest' => '0.65',
1119 'Memoize::NDBM_File' => '0.65',
1120 'Memoize::SDBM_File' => '0.65',
1121 'Memoize::Storable' => '0.65',
1123 'Net::Cmd' => '2.21',
1124 'Net::Config' => '1.10',
1125 'Net::Domain' => '2.17',
1126 'Net::FTP' => '2.64',
1127 'Net::FTP::A' => '1.15',
1128 'Net::FTP::E' => '0.01',
1129 'Net::FTP::I' => '1.12',
1130 'Net::FTP::L' => '0.01',
1131 'Net::FTP::dataconn' => '0.10',
1132 'Net::NNTP' => '2.21',
1133 'Net::Netrc' => '2.12',
1134 'Net::POP3' => '2.23',
1135 'Net::Ping' => '2.12',
1136 'Net::SMTP' => '2.21',
1137 'Net::Time' => '2.09',
1138 'Net::hostent' => '1.00',
1139 'Net::netent' => '1.00',
1140 'Net::protoent' => '1.00',
1141 'Net::servent' => '1.00',
1143 'OS2::DLL' => '1.00',
1144 'OS2::Process' => '1.0',
1145 'OS2::REXX' => '1.01',
1149 'PerlIO::Scalar' => '0.01',
1150 'PerlIO::Via' => '0.01',
1151 'Pod::Checker' => '1.3',
1152 'Pod::Find' => '0.22',
1153 'Pod::Functions' => '1.01',
1154 'Pod::Html' => '1.04',
1155 'Pod::LaTeX' => '0.54',
1156 'Pod::Man' => '1.32',
1157 'Pod::ParseLink' => '1.05',
1158 'Pod::Text' => '2.18',
1159 'Pod::Text::Color' => '1.03',
1160 'Pod::Text::Overstrike' => '1.08',
1161 'Pod::Text::Termcap' => '1.09',
1163 'Scalar::Util' => '1.06_00',
1164 'Search::Dict' => '1.02',
1165 'SelectSaver' => '1.00',
1166 'SelfLoader' => '1.0903',
1169 'Storable' => '1.015',
1172 'Sys::Syslog' => '0.02',
1173 'Term::ANSIColor' => '1.04',
1174 'Term::Cap' => '1.07',
1175 'Term::Complete' => '1.4',
1176 'Term::ReadLine' => '1.00',
1178 'Test::Builder' => '0.11',
1179 'Test::Harness' => '2.01',
1180 'Test::Harness::Assert' => '0.01',
1181 'Test::Harness::Iterator'=> '0.01',
1182 'Test::Harness::Straps' => '0.08',
1183 'Test::More' => '0.41',
1184 'Test::Simple' => '0.41',
1185 'Text::Abbrev' => '1.00',
1186 'Text::Balanced' => '1.89',
1187 'Text::ParseWords' => '3.21',
1188 'Text::Soundex' => '1.01',
1189 'Text::Wrap' => '2001.0929',
1191 'Thread::Queue' => '1.00',
1192 'Thread::Semaphore' => '1.00',
1193 'Thread::Signal' => '1.00',
1194 'Thread::Specific' => '1.00',
1195 'Tie::Array' => '1.02',
1196 'Tie::File' => '0.17',
1197 'Tie::Handle' => '4.1',
1198 'Tie::Hash' => '1.00',
1199 'Tie::Memoize' => '1.0',
1200 'Tie::RefHash' => '1.3_00',
1201 'Tie::Scalar' => '1.00',
1202 'Tie::SubstrHash' => '1.00',
1203 'Time::HiRes' => '1.20_00',
1204 'Time::Local' => '1.04',
1205 'Time::gmtime' => '1.02',
1206 'Time::localtime' => '1.02',
1207 'Time::tm' => '1.00',
1208 'UNIVERSAL' => '1.00',
1209 'Unicode::Collate' => '0.10',
1210 'Unicode::Normalize' => '0.14',
1211 'Unicode::UCD' => '0.2',
1212 'User::grent' => '1.00',
1213 'User::pwent' => '1.00',
1214 'VMS::DCLsym' => '1.02',
1215 'VMS::Filespec' => '1.1',
1216 'VMS::Stdio' => '2.3',
1217 'XS::Typemap' => '0.01',
1218 'attributes' => '0.04_01',
1220 'autouse' => '1.03',
1224 'charnames' => '1.01',
1225 'constant' => '1.04',
1226 'diagnostics' => '1.1',
1227 'encoding' => '1.00',
1229 'filetest' => '1.00',
1231 'integer' => '1.00',
1236 'overload' => '1.00',
1241 'threads' => '0.05',
1242 'threads::shared' => '0.90',
1246 'warnings' => '1.00',
1247 'warnings::register' => '1.00',
1253 delta_from => 5.007003,
1255 'Attribute::Handlers' => '0.77',
1257 'B::Lint' => '1.01',
1258 'B::Xref' => '1.01',
1260 'CGI::Carp' => '1.23',
1262 'CPAN::FirstTime' => '1.56',
1263 'CPAN::Nox' => '1.02',
1264 'Digest::MD5' => '2.20',
1265 'Dumpvalue' => '1.11',
1267 'Encode::Alias' => '1.32',
1268 'Encode::Byte' => '1.22',
1269 'Encode::CJKConstants' => '1.00',
1270 'Encode::CN' => '1.24',
1271 'Encode::CN::HZ' => '1.04',
1272 'Encode::Config' => '1.06',
1273 'Encode::EBCDIC' => '1.21',
1274 'Encode::Encoder' => '0.05',
1275 'Encode::Encoding' => '1.30',
1276 'Encode::Guess' => '1.06',
1277 'Encode::JP' => '1.25',
1278 'Encode::JP::H2Z' => '1.02',
1279 'Encode::JP::JIS7' => '1.08',
1280 'Encode::KR' => '1.22',
1281 'Encode::KR::2022_KR' => '1.05',
1282 'Encode::MIME::Header' => '1.05',
1283 'Encode::Symbol' => '1.22',
1284 'Encode::TW' => '1.26',
1285 'Encode::Unicode' => '1.37',
1286 'Exporter::Heavy' => '5.566',
1287 'ExtUtils::Command' => '1.04',
1288 'ExtUtils::Command::MM' => '0.01',
1289 'ExtUtils::Constant' => '0.12',
1290 'ExtUtils::Installed' => '0.06',
1291 'ExtUtils::Liblist' => '1.00',
1292 'ExtUtils::Liblist::Kid'=> '1.29',
1293 'ExtUtils::MM' => '0.04',
1294 'ExtUtils::MM_Any' => '0.04',
1295 'ExtUtils::MM_BeOS' => '1.03',
1296 'ExtUtils::MM_Cygwin' => '1.04',
1297 'ExtUtils::MM_DOS' => '0.01',
1298 'ExtUtils::MM_MacOS' => '1.03',
1299 'ExtUtils::MM_NW5' => '2.05',
1300 'ExtUtils::MM_OS2' => '1.03',
1301 'ExtUtils::MM_UWIN' => '0.01',
1302 'ExtUtils::MM_Unix' => '1.33',
1303 'ExtUtils::MM_VMS' => '5.65',
1304 'ExtUtils::MM_Win32' => '1.05',
1305 'ExtUtils::MM_Win95' => '0.02',
1306 'ExtUtils::MY' => '0.01',
1307 'ExtUtils::MakeMaker' => '6.03',
1308 'ExtUtils::Manifest' => '1.38',
1309 'ExtUtils::Mkbootstrap' => '1.15',
1310 'ExtUtils::Mksymlists' => '1.19',
1311 'ExtUtils::testlib' => '1.15',
1312 'File::CheckTree' => '4.2',
1313 'FileCache' => '1.021',
1314 'Filter::Simple' => '0.78',
1315 'Getopt::Long' => '2.32',
1316 'Hash::Util' => '0.04',
1317 'List::Util' => '1.07_00',
1318 'Locale::Country' => '2.04',
1319 'Math::BigFloat' => '1.35',
1320 'Math::BigFloat::Trace' => '0.01',
1321 'Math::BigInt' => '1.60',
1322 'Math::BigInt::Calc' => '0.30',
1323 'Math::BigInt::Trace' => '0.01',
1324 'Math::BigRat' => '0.07',
1325 'Memoize' => '1.01',
1326 'Memoize::Expire' => '1.00',
1327 'Memoize::ExpireFile' => '1.01',
1328 'Net::FTP' => '2.65',
1329 'Net::FTP::dataconn' => '0.11',
1330 'Net::Ping' => '2.19',
1331 'Net::SMTP' => '2.24',
1333 'PerlIO::encoding' => '0.06',
1334 'PerlIO::scalar' => '0.01',
1335 'PerlIO::via' => '0.01',
1336 'PerlIO::via::QuotedPrint'=> '0.04',
1337 'Pod::Man' => '1.33',
1338 'Pod::Text' => '2.19',
1339 'Scalar::Util' => '1.07_00',
1340 'Storable' => '2.04',
1342 'Sys::Syslog' => '0.03',
1344 'Test::Builder' => '0.15',
1345 'Test::Harness' => '2.26',
1346 'Test::Harness::Straps' => '0.14',
1347 'Test::More' => '0.45',
1348 'Test::Simple' => '0.45',
1349 'Thread::Queue' => '2.00',
1350 'Thread::Semaphore' => '2.00',
1351 'Tie::File' => '0.93',
1352 'Tie::RefHash' => '1.30',
1353 'Unicode' => '3.2.0',
1354 'Unicode::Collate' => '0.12',
1355 'Unicode::Normalize' => '0.17',
1356 'XS::APItest' => '0.01',
1357 'attributes' => '0.05',
1363 'encoding' => '1.35',
1365 'threads' => '0.99',
1368 'Encode::Internal' => 1,
1369 'Encode::JP::Constants' => 1,
1370 'Encode::JP::ISO_2022_JP'=> 1,
1371 'Encode::JP::JIS' => 1,
1372 'Encode::JP::Tr' => 1,
1374 'Encode::Tcl::Escape' => 1,
1375 'Encode::Tcl::Extended' => 1,
1376 'Encode::Tcl::HanZi' => 1,
1377 'Encode::Tcl::Table' => 1,
1379 'Encode::iso10646_1' => 1,
1380 'Encode::usc2_le' => 1,
1381 'Encode::utf8' => 1,
1382 'PerlIO::Scalar' => 1,
1387 delta_from => 5.008,
1389 'Attribute::Handlers' => '0.78',
1390 'AutoLoader' => '5.60',
1391 'AutoSplit' => '1.04',
1393 'B::Asmdata' => '1.01',
1394 'B::Assembler' => '0.06',
1395 'B::Bblock' => '1.02',
1396 'B::Bytecode' => '1.01',
1398 'B::Concise' => '0.56',
1399 'B::Debug' => '1.01',
1400 'B::Deparse' => '0.64',
1401 'B::Disassembler' => '1.03',
1402 'B::Lint' => '1.02',
1403 'B::Terse' => '1.02',
1404 'Benchmark' => '1.051',
1405 'ByteLoader' => '0.05',
1407 'CGI::Carp' => '1.26',
1408 'CGI::Cookie' => '1.24',
1409 'CGI::Fast' => '1.041',
1410 'CGI::Pretty' => '1.07_00',
1411 'CGI::Util' => '1.31',
1412 'CPAN' => '1.76_01',
1413 'CPAN::FirstTime' => '1.60',
1414 'CPAN::Nox' => '1.03',
1415 'Class::Struct' => '0.63',
1417 'DB_File' => '1.806',
1418 'Data::Dumper' => '2.121',
1419 'Devel::DProf' => '20030813.00',
1420 'Devel::PPPort' => '2.007',
1421 'Devel::Peek' => '1.01',
1423 'Digest::MD5' => '2.27',
1424 'Encode' => '1.9801',
1425 'Encode::Alias' => '1.38',
1426 'Encode::Byte' => '1.23',
1427 'Encode::CJKConstants' => '1.02',
1428 'Encode::CN::HZ' => '1.05',
1429 'Encode::Config' => '1.07',
1430 'Encode::Encoder' => '0.07',
1431 'Encode::Encoding' => '1.33',
1432 'Encode::Guess' => '1.09',
1433 'Encode::JP::JIS7' => '1.12',
1434 'Encode::KR' => '1.23',
1435 'Encode::KR::2022_KR' => '1.06',
1436 'Encode::MIME::Header' => '1.09',
1437 'Encode::Unicode' => '1.40',
1438 'Encode::Unicode::UTF7' => '0.02',
1439 'English' => '1.01',
1440 'Errno' => '1.09_00',
1441 'Exporter' => '5.567',
1442 'Exporter::Heavy' => '5.567',
1443 'ExtUtils::Command' => '1.05',
1444 'ExtUtils::Command::MM' => '0.03',
1445 'ExtUtils::Constant' => '0.14',
1446 'ExtUtils::Install' => '1.32',
1447 'ExtUtils::Installed' => '0.08',
1448 'ExtUtils::Liblist' => '1.01',
1449 'ExtUtils::Liblist::Kid'=> '1.3',
1450 'ExtUtils::MM_Any' => '0.07',
1451 'ExtUtils::MM_BeOS' => '1.04',
1452 'ExtUtils::MM_Cygwin' => '1.06',
1453 'ExtUtils::MM_DOS' => '0.02',
1454 'ExtUtils::MM_MacOS' => '1.07',
1455 'ExtUtils::MM_NW5' => '2.06',
1456 'ExtUtils::MM_OS2' => '1.04',
1457 'ExtUtils::MM_UWIN' => '0.02',
1458 'ExtUtils::MM_Unix' => '1.42',
1459 'ExtUtils::MM_VMS' => '5.70',
1460 'ExtUtils::MM_Win32' => '1.09',
1461 'ExtUtils::MM_Win95' => '0.03',
1462 'ExtUtils::MakeMaker' => '6.17',
1463 'ExtUtils::MakeMaker::bytes'=> '0.01',
1464 'ExtUtils::MakeMaker::vmsish'=> '0.01',
1465 'ExtUtils::Manifest' => '1.42',
1467 'File::Basename' => '2.72',
1468 'File::Copy' => '2.06',
1469 'File::Find' => '1.05',
1470 'File::Glob' => '1.02',
1471 'File::Path' => '1.06',
1472 'File::Spec' => '0.86',
1473 'File::Spec::Cygwin' => '1.1',
1474 'File::Spec::Epoc' => '1.1',
1475 'File::Spec::Functions' => '1.3',
1476 'File::Spec::Mac' => '1.4',
1477 'File::Spec::OS2' => '1.2',
1478 'File::Spec::Unix' => '1.5',
1479 'File::Spec::VMS' => '1.4',
1480 'File::Spec::Win32' => '1.4',
1481 'File::Temp' => '0.14',
1482 'FileCache' => '1.03',
1483 'Filter::Util::Call' => '1.0601',
1484 'GDBM_File' => '1.07',
1485 'Getopt::Long' => '2.34',
1486 'Getopt::Std' => '1.04',
1487 'Hash::Util' => '0.05',
1488 'I18N::LangTags' => '0.28',
1489 'I18N::LangTags::List' => '0.26',
1490 'I18N::Langinfo' => '0.02',
1492 'IO::Dir' => '1.04',
1493 'IO::File' => '1.10',
1494 'IO::Handle' => '1.23',
1495 'IO::Seekable' => '1.09',
1496 'IO::Select' => '1.16',
1497 'IO::Socket' => '1.28',
1498 'IO::Socket::INET' => '1.27',
1499 'IO::Socket::UNIX' => '1.21',
1500 'IPC::Msg' => '1.02',
1501 'IPC::Open3' => '1.0105',
1502 'IPC::Semaphore' => '1.02',
1503 'IPC::SysV' => '1.04',
1505 'List::Util' => '1.13',
1506 'Locale::Country' => '2.61',
1507 'Locale::Currency' => '2.21',
1508 'Locale::Language' => '2.21',
1509 'Locale::Maketext' => '1.06',
1510 'Locale::Maketext::Guts'=> undef,
1511 'Locale::Maketext::GutsLoader'=> undef,
1512 'Locale::Script' => '2.21',
1513 'MIME::Base64' => '2.20',
1514 'MIME::QuotedPrint' => '2.20',
1515 'Math::BigFloat' => '1.40',
1516 'Math::BigInt' => '1.66',
1517 'Math::BigInt::Calc' => '0.36',
1518 'Math::BigInt::Scalar' => '0.11',
1519 'Math::BigRat' => '0.10',
1520 'Math::Trig' => '1.02',
1521 'NDBM_File' => '1.05',
1523 'Net::Cmd' => '2.24',
1524 'Net::Domain' => '2.18',
1525 'Net::FTP' => '2.71',
1526 'Net::FTP::A' => '1.16',
1527 'Net::NNTP' => '2.22',
1528 'Net::POP3' => '2.24',
1529 'Net::Ping' => '2.31',
1530 'Net::SMTP' => '2.26',
1531 'Net::hostent' => '1.01',
1532 'Net::servent' => '1.01',
1533 'ODBM_File' => '1.04',
1534 'OS2::DLL' => '1.01',
1535 'OS2::ExtAttr' => '0.02',
1536 'OS2::PrfDB' => '0.03',
1537 'OS2::Process' => '1.01',
1538 'OS2::REXX' => '1.02',
1541 'PerlIO::encoding' => '0.07',
1542 'PerlIO::scalar' => '0.02',
1543 'PerlIO::via' => '0.02',
1544 'PerlIO::via::QuotedPrint'=> '0.05',
1545 'Pod::Checker' => '1.41',
1546 'Pod::Find' => '0.24',
1547 'Pod::Functions' => '1.02',
1548 'Pod::Html' => '1.0501',
1549 'Pod::InputObjects' => '1.14',
1550 'Pod::LaTeX' => '0.55',
1551 'Pod::Man' => '1.37',
1552 'Pod::ParseLink' => '1.06',
1553 'Pod::ParseUtils' => '0.3',
1554 'Pod::Perldoc' => '3.10',
1555 'Pod::Perldoc::BaseTo' => undef,
1556 'Pod::Perldoc::GetOptsOO'=> undef,
1557 'Pod::Perldoc::ToChecker'=> undef,
1558 'Pod::Perldoc::ToMan' => undef,
1559 'Pod::Perldoc::ToNroff' => undef,
1560 'Pod::Perldoc::ToPod' => undef,
1561 'Pod::Perldoc::ToRtf' => undef,
1562 'Pod::Perldoc::ToText' => undef,
1563 'Pod::Perldoc::ToTk' => undef,
1564 'Pod::Perldoc::ToXml' => undef,
1565 'Pod::PlainText' => '2.01',
1566 'Pod::Text' => '2.21',
1567 'Pod::Text::Color' => '1.04',
1568 'Pod::Text::Overstrike' => '1.1',
1569 'Pod::Text::Termcap' => '1.11',
1570 'Pod::Usage' => '1.16',
1571 'SDBM_File' => '1.04',
1573 'Scalar::Util' => '1.13',
1574 'SelfLoader' => '1.0904',
1577 'Storable' => '2.08',
1580 'Sys::Hostname' => '1.11',
1581 'Sys::Syslog' => '0.04',
1582 'Term::ANSIColor' => '1.07',
1583 'Term::Cap' => '1.08',
1584 'Term::Complete' => '1.401',
1585 'Term::ReadLine' => '1.01',
1587 'Test::Builder' => '0.17',
1588 'Test::Harness' => '2.30',
1589 'Test::Harness::Straps' => '0.15',
1590 'Test::More' => '0.47',
1591 'Test::Simple' => '0.47',
1592 'Text::Abbrev' => '1.01',
1593 'Text::Balanced' => '1.95',
1594 'Text::Wrap' => '2001.09291',
1595 'Thread::Semaphore' => '2.01',
1596 'Tie::Array' => '1.03',
1597 'Tie::File' => '0.97',
1598 'Tie::RefHash' => '1.31',
1599 'Time::HiRes' => '1.51',
1600 'Time::Local' => '1.07',
1601 'UNIVERSAL' => '1.01',
1602 'Unicode' => '4.0.0',
1603 'Unicode::Collate' => '0.28',
1604 'Unicode::Normalize' => '0.23',
1605 'Unicode::UCD' => '0.21',
1606 'VMS::Filespec' => '1.11',
1607 'XS::APItest' => '0.02',
1608 'XSLoader' => '0.02',
1609 'attributes' => '0.06',
1615 'charnames' => '1.02',
1616 'diagnostics' => '1.11',
1617 'encoding' => '1.47',
1619 'filetest' => '1.01',
1623 'overload' => '1.01',
1627 'threads' => '1.00',
1628 'threads::shared' => '0.91',
1631 'warnings' => '1.03',
1637 delta_from => 5.008001,
1639 'DB_File' => '1.807',
1640 'Devel::PPPort' => '2.009',
1641 'Digest::MD5' => '2.30',
1642 'I18N::LangTags' => '0.29',
1643 'I18N::LangTags::List' => '0.29',
1644 'MIME::Base64' => '2.21',
1645 'MIME::QuotedPrint' => '2.21',
1646 'Net::Domain' => '2.19',
1647 'Net::FTP' => '2.72',
1648 'Pod::Perldoc' => '3.11',
1649 'Time::HiRes' => '1.52',
1650 'Unicode::Collate' => '0.30',
1651 'Unicode::Normalize' => '0.25',
1657 delta_from => 5.008002,
1659 'Benchmark' => '1.052',
1661 'CGI::Carp' => '1.27',
1662 'CGI::Fast' => '1.05',
1663 'CGI::Pretty' => '1.08',
1664 'CGI::Util' => '1.4',
1666 'DB_File' => '1.808',
1667 'Devel::PPPort' => '2.011',
1669 'Digest::MD5' => '2.33',
1670 'Digest::base' => '1.00',
1672 'Exporter' => '5.57',
1673 'File::CheckTree' => '4.3',
1674 'File::Copy' => '2.07',
1675 'File::Find' => '1.06',
1676 'File::Spec' => '0.87',
1677 'FindBin' => '1.44',
1678 'Getopt::Std' => '1.05',
1679 'Math::BigFloat' => '1.42',
1680 'Math::BigInt' => '1.68',
1681 'Math::BigInt::Calc' => '0.38',
1682 'Math::BigInt::CalcEmu' => '0.02',
1683 'OS2::DLL' => '1.02',
1686 'PerlIO::via::QuotedPrint'=> '0.06',
1687 'Pod::Html' => '1.0502',
1688 'Pod::Parser' => '1.14',
1689 'Pod::Perldoc' => '3.12',
1690 'Pod::PlainText' => '2.02',
1691 'Storable' => '2.09',
1692 'Test::Harness' => '2.40',
1693 'Test::Harness::Assert' => '0.02',
1694 'Test::Harness::Iterator'=> '0.02',
1695 'Test::Harness::Straps' => '0.19',
1696 'Tie::Hash' => '1.01',
1697 'Unicode::Collate' => '0.33',
1698 'Unicode::Normalize' => '0.28',
1699 'XS::APItest' => '0.03',
1701 'diagnostics' => '1.12',
1702 'encoding' => '1.48',
1703 'threads' => '1.01',
1704 'threads::shared' => '0.92',
1707 'Math::BigInt::Scalar' => 1,
1711 delta_from => 5.008003,
1713 'Attribute::Handlers' => '0.78_01',
1714 'B::Assembler' => '0.07',
1715 'B::Concise' => '0.60',
1716 'B::Deparse' => '0.66',
1717 'Benchmark' => '1.06',
1721 'DBM_Filter' => '0.01',
1722 'DBM_Filter::compress' => '0.01',
1723 'DBM_Filter::encode' => '0.01',
1724 'DBM_Filter::int32' => '0.01',
1725 'DBM_Filter::null' => '0.01',
1726 'DBM_Filter::utf8' => '0.01',
1728 'DynaLoader' => '1.05',
1729 'Encode' => '1.99_01',
1730 'Encode::CN::HZ' => '1.0501',
1731 'Exporter' => '5.58',
1732 'Exporter::Heavy' => '5.57',
1733 'ExtUtils::Liblist::Kid'=> '1.3001',
1734 'ExtUtils::MM_NW5' => '2.07_02',
1735 'ExtUtils::MM_Win95' => '0.0301',
1736 'File::Find' => '1.07',
1737 'IO::Handle' => '1.24',
1738 'IO::Pipe' => '1.123',
1739 'IPC::Open3' => '1.0106',
1740 'Locale::Maketext' => '1.08',
1741 'MIME::Base64' => '3.01',
1742 'MIME::QuotedPrint' => '3.01',
1743 'Math::BigFloat' => '1.44',
1744 'Math::BigInt' => '1.70',
1745 'Math::BigInt::Calc' => '0.40',
1746 'Math::BigInt::CalcEmu' => '0.04',
1747 'Math::BigRat' => '0.12',
1748 'ODBM_File' => '1.05',
1752 'Storable' => '2.12',
1753 'Sys::Syslog' => '0.05',
1754 'Term::ANSIColor' => '1.08',
1755 'Time::HiRes' => '1.59',
1756 'Unicode' => '4.0.1',
1757 'Unicode::UCD' => '0.22',
1762 'charnames' => '1.03',
1764 'threads' => '1.03',
1771 delta_from => 5.008004,
1773 'B::Concise' => '0.61',
1774 'B::Deparse' => '0.67',
1776 'CGI::Carp' => '1.28',
1777 'CGI::Util' => '1.5',
1779 'Carp::Heavy' => '1.03',
1781 'DB_File' => '1.809',
1784 'Encode::Alias' => '2.00',
1785 'Encode::Byte' => '2.00',
1786 'Encode::CJKConstants' => '2.00',
1787 'Encode::CN' => '2.00',
1788 'Encode::CN::HZ' => '2.01',
1789 'Encode::Config' => '2.00',
1790 'Encode::EBCDIC' => '2.00',
1791 'Encode::Encoder' => '2.00',
1792 'Encode::Encoding' => '2.00',
1793 'Encode::Guess' => '2.00',
1794 'Encode::JP' => '2.00',
1795 'Encode::JP::H2Z' => '2.00',
1796 'Encode::JP::JIS7' => '2.00',
1797 'Encode::KR' => '2.00',
1798 'Encode::KR::2022_KR' => '2.00',
1799 'Encode::MIME::Header' => '2.00',
1800 'Encode::Symbol' => '2.00',
1801 'Encode::TW' => '2.00',
1802 'Encode::Unicode' => '2.00',
1803 'Encode::Unicode::UTF7' => '2.01',
1804 'File::Basename' => '2.73',
1805 'File::Copy' => '2.08',
1806 'File::Glob' => '1.03',
1807 'FileCache' => '1.04_01',
1808 'I18N::LangTags' => '0.33',
1809 'I18N::LangTags::Detect'=> '1.03',
1810 'List::Util' => '1.14',
1811 'Locale::Constants' => '2.07',
1812 'Locale::Country' => '2.07',
1813 'Locale::Currency' => '2.07',
1814 'Locale::Language' => '2.07',
1815 'Locale::Maketext' => '1.09',
1816 'Locale::Script' => '2.07',
1817 'Net::Cmd' => '2.26',
1818 'Net::FTP' => '2.75',
1819 'Net::NNTP' => '2.23',
1820 'Net::POP3' => '2.28',
1821 'Net::SMTP' => '2.29',
1822 'Net::Time' => '2.10',
1823 'Pod::Checker' => '1.42',
1824 'Pod::Find' => '0.2401',
1825 'Pod::LaTeX' => '0.56',
1826 'Pod::ParseUtils' => '1.2',
1827 'Pod::Perldoc' => '3.13',
1829 'Scalar::Util' => '1.14',
1831 'Storable' => '2.13',
1832 'Term::Cap' => '1.09',
1834 'Test::Harness' => '2.42',
1835 'Text::ParseWords' => '3.22',
1836 'Text::Wrap' => '2001.09292',
1837 'Time::Local' => '1.10',
1838 'Unicode::Collate' => '0.40',
1839 'Unicode::Normalize' => '0.30',
1840 'XS::APItest' => '0.04',
1841 'autouse' => '1.04',
1843 'charnames' => '1.04',
1844 'diagnostics' => '1.13',
1845 'encoding' => '2.00',
1846 'threads' => '1.05',
1853 delta_from => 5.008005,
1857 'B::Concise' => '0.64',
1858 'B::Debug' => '1.02',
1859 'B::Deparse' => '0.69',
1860 'B::Lint' => '1.03',
1861 'B::Showlex' => '1.02',
1863 'DB_File' => '1.810',
1864 'Data::Dumper' => '2.121_02',
1865 'Devel::PPPort' => '3.03',
1866 'Devel::Peek' => '1.02',
1868 'Encode::Alias' => '2.02',
1869 'Encode::Encoding' => '2.02',
1870 'Encode::JP' => '2.01',
1871 'Encode::Unicode' => '2.02',
1872 'Exporter::Heavy' => '5.58',
1873 'ExtUtils::Constant' => '0.1401',
1874 'File::Spec' => '3.01',
1875 'File::Spec::Win32' => '1.5',
1876 'I18N::LangTags' => '0.35',
1877 'I18N::LangTags::List' => '0.35',
1878 'MIME::Base64' => '3.05',
1879 'MIME::QuotedPrint' => '3.03',
1880 'Math::BigFloat' => '1.47',
1881 'Math::BigInt' => '1.73',
1882 'Math::BigInt::Calc' => '0.43',
1883 'Math::BigRat' => '0.13',
1884 'Text::ParseWords' => '3.23',
1885 'Time::HiRes' => '1.65',
1886 'XS::APItest' => '0.05',
1887 'diagnostics' => '1.14',
1888 'encoding' => '2.01',
1890 'overload' => '1.02',
1896 delta_from => 5.008006,
1899 'B::Concise' => '0.65',
1900 'B::Deparse' => '0.7',
1901 'B::Disassembler' => '1.04',
1902 'B::Terse' => '1.03',
1903 'Benchmark' => '1.07',
1905 'CGI::Carp' => '1.29',
1906 'CGI::Cookie' => '1.25',
1908 'Carp::Heavy' => '1.04',
1909 'Class::ISA' => '0.33',
1911 'DB_File' => '1.811',
1912 'Data::Dumper' => '2.121_04',
1913 'Devel::DProf' => '20050310.00',
1914 'Devel::PPPort' => '3.06',
1916 'Digest::file' => '0.01',
1918 'Encode::Alias' => '2.03',
1919 'Errno' => '1.09_01',
1920 'ExtUtils::Constant' => '0.16',
1921 'ExtUtils::Constant::Base'=> '0.01',
1922 'ExtUtils::Constant::Utils'=> '0.01',
1923 'ExtUtils::Constant::XS'=> '0.01',
1924 'File::Find' => '1.09',
1925 'File::Glob' => '1.04',
1926 'File::Path' => '1.07',
1927 'File::Spec' => '3.05',
1928 'File::Temp' => '0.16',
1929 'FileCache' => '1.05',
1930 'IO::File' => '1.11',
1931 'IO::Socket::INET' => '1.28',
1932 'Math::BigFloat' => '1.51',
1933 'Math::BigInt' => '1.77',
1934 'Math::BigInt::Calc' => '0.47',
1935 'Math::BigInt::CalcEmu' => '0.05',
1936 'Math::BigRat' => '0.15',
1937 'Pod::Find' => '1.3',
1938 'Pod::Html' => '1.0503',
1939 'Pod::InputObjects' => '1.3',
1940 'Pod::LaTeX' => '0.58',
1941 'Pod::ParseUtils' => '1.3',
1942 'Pod::Parser' => '1.3',
1943 'Pod::Perldoc' => '3.14',
1944 'Pod::Select' => '1.3',
1945 'Pod::Usage' => '1.3',
1946 'SelectSaver' => '1.01',
1948 'Sys::Syslog' => '0.06',
1949 'Term::ANSIColor' => '1.09',
1950 'Term::Complete' => '1.402',
1951 'Test::Builder' => '0.22',
1952 'Test::Harness' => '2.48',
1953 'Test::Harness::Point' => '0.01',
1954 'Test::Harness::Straps' => '0.23',
1955 'Test::More' => '0.54',
1956 'Test::Simple' => '0.54',
1957 'Text::ParseWords' => '3.24',
1958 'Text::Wrap' => '2001.09293',
1959 'Tie::RefHash' => '1.32',
1960 'Time::HiRes' => '1.66',
1961 'Time::Local' => '1.11',
1962 'Unicode' => '4.1.0',
1963 'Unicode::Normalize' => '0.32',
1964 'Unicode::UCD' => '0.23',
1966 'XS::APItest' => '0.06',
1972 'constant' => '1.05',
1973 'overload' => '1.03',
1974 'threads::shared' => '0.93',
1979 'JPL::AutoLoader' => 1,
1981 'JPL::Compile' => 1,
1985 delta_from => 5.008007,
1987 'Attribute::Handlers' => '0.78_02',
1989 'B::Bblock' => '1.02_01',
1990 'B::Bytecode' => '1.01_01',
1991 'B::C' => '1.04_01',
1992 'B::CC' => '1.00_01',
1993 'B::Concise' => '0.66',
1994 'B::Debug' => '1.02_01',
1995 'B::Deparse' => '0.71',
1996 'B::Disassembler' => '1.05',
1997 'B::Terse' => '1.03_01',
1998 'ByteLoader' => '0.06',
2000 'CGI::Cookie' => '1.26',
2001 'CPAN' => '1.76_02',
2004 'DB_File' => '1.814',
2005 'Data::Dumper' => '2.121_08',
2006 'Devel::DProf' => '20050603.00',
2007 'Devel::PPPort' => '3.06_01',
2008 'Devel::Peek' => '1.03',
2010 'Digest::MD5' => '2.36',
2011 'Digest::file' => '1.00',
2012 'Dumpvalue' => '1.12',
2014 'Encode::Alias' => '2.04',
2015 'Encode::Config' => '2.01',
2016 'Encode::MIME::Header' => '2.01',
2017 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2018 'English' => '1.02',
2019 'ExtUtils::Command' => '1.09',
2020 'ExtUtils::Command::MM' => '0.05',
2021 'ExtUtils::Constant' => '0.17',
2022 'ExtUtils::Embed' => '1.26',
2023 'ExtUtils::Install' => '1.33',
2024 'ExtUtils::Liblist::Kid'=> '1.3',
2025 'ExtUtils::MM' => '0.05',
2026 'ExtUtils::MM_AIX' => '0.03',
2027 'ExtUtils::MM_Any' => '0.13',
2028 'ExtUtils::MM_BeOS' => '1.05',
2029 'ExtUtils::MM_Cygwin' => '1.08',
2030 'ExtUtils::MM_MacOS' => '1.08',
2031 'ExtUtils::MM_NW5' => '2.08',
2032 'ExtUtils::MM_OS2' => '1.05',
2033 'ExtUtils::MM_QNX' => '0.02',
2034 'ExtUtils::MM_Unix' => '1.50',
2035 'ExtUtils::MM_VMS' => '5.73',
2036 'ExtUtils::MM_VOS' => '0.02',
2037 'ExtUtils::MM_Win32' => '1.12',
2038 'ExtUtils::MM_Win95' => '0.04',
2039 'ExtUtils::MakeMaker' => '6.30',
2040 'ExtUtils::MakeMaker::Config'=> '0.02',
2041 'ExtUtils::Manifest' => '1.46',
2042 'File::Basename' => '2.74',
2043 'File::Copy' => '2.09',
2044 'File::Find' => '1.10',
2045 'File::Glob' => '1.05',
2046 'File::Path' => '1.08',
2047 'File::Spec' => '3.12',
2048 'File::Spec::Win32' => '1.6',
2049 'FileCache' => '1.06',
2050 'Filter::Simple' => '0.82',
2051 'FindBin' => '1.47',
2052 'GDBM_File' => '1.08',
2053 'Getopt::Long' => '2.35',
2055 'IO::Dir' => '1.05',
2056 'IO::File' => '1.13',
2057 'IO::Handle' => '1.25',
2058 'IO::Pipe' => '1.13',
2059 'IO::Poll' => '0.07',
2060 'IO::Seekable' => '1.10',
2061 'IO::Select' => '1.17',
2062 'IO::Socket' => '1.29',
2063 'IO::Socket::INET' => '1.29',
2064 'IO::Socket::UNIX' => '1.22',
2065 'IPC::Open2' => '1.02',
2066 'IPC::Open3' => '1.02',
2067 'List::Util' => '1.18',
2068 'MIME::Base64' => '3.07',
2069 'MIME::QuotedPrint' => '3.07',
2070 'Math::Complex' => '1.35',
2071 'Math::Trig' => '1.03',
2072 'NDBM_File' => '1.06',
2073 'ODBM_File' => '1.06',
2074 'OS2::PrfDB' => '0.04',
2075 'OS2::Process' => '1.02',
2076 'OS2::REXX' => '1.03',
2080 'PerlIO::encoding' => '0.09',
2081 'PerlIO::scalar' => '0.04',
2082 'PerlIO::via' => '0.03',
2083 'Pod::Checker' => '1.43',
2084 'Pod::Find' => '1.34',
2085 'Pod::Functions' => '1.03',
2086 'Pod::Html' => '1.0504',
2087 'Pod::ParseUtils' => '1.33',
2088 'Pod::Parser' => '1.32',
2089 'Pod::Usage' => '1.33',
2090 'SDBM_File' => '1.05',
2092 'Scalar::Util' => '1.18',
2094 'Storable' => '2.15',
2095 'Switch' => '2.10_01',
2096 'Sys::Syslog' => '0.13',
2097 'Term::ANSIColor' => '1.10',
2098 'Term::ReadLine' => '1.02',
2099 'Test::Builder' => '0.32',
2100 'Test::Builder::Module' => '0.02',
2101 'Test::Builder::Tester' => '1.02',
2102 'Test::Builder::Tester::Color'=> undef,
2103 'Test::Harness' => '2.56',
2104 'Test::Harness::Straps' => '0.26',
2105 'Test::More' => '0.62',
2106 'Test::Simple' => '0.62',
2107 'Text::Tabs' => '2005.0824',
2108 'Text::Wrap' => '2005.082401',
2109 'Tie::Hash' => '1.02',
2110 'Time::HiRes' => '1.86',
2111 'Unicode::Collate' => '0.52',
2112 'Unicode::UCD' => '0.24',
2113 'User::grent' => '1.01',
2114 'Win32' => '0.2601',
2115 'XS::APItest' => '0.08',
2116 'XS::Typemap' => '0.02',
2117 'XSLoader' => '0.06',
2119 'autouse' => '1.05',
2121 'charnames' => '1.05',
2122 'diagnostics' => '1.15',
2123 'encoding' => '2.02',
2127 'overload' => '1.04',
2129 'threads' => '1.07',
2130 'threads::shared' => '0.94',
2133 'warnings' => '1.05',
2134 'warnings::register' => '1.01',
2140 delta_from => 5.008008,
2142 'Attribute::Handlers' => '0.78_03',
2143 'AutoLoader' => '5.67',
2144 'AutoSplit' => '1.06',
2146 'B::Asmdata' => '1.02',
2147 'B::Assembler' => '0.08',
2149 'B::Concise' => '0.76',
2150 'B::Debug' => '1.05',
2151 'B::Deparse' => '0.87',
2152 'B::Lint' => '1.11',
2153 'B::Lint::Debug' => undef,
2154 'B::Terse' => '1.05',
2155 'Benchmark' => '1.1',
2157 'CGI::Carp' => '1.30_01',
2158 'CGI::Cookie' => '1.29',
2159 'CGI::Fast' => '1.07',
2160 'CGI::Util' => '1.5_01',
2162 'CPAN::Debug' => '5.5',
2163 'CPAN::DeferedCode' => '5.50',
2164 'CPAN::Distroprefs' => '6',
2165 'CPAN::FirstTime' => '5.5_01',
2166 'CPAN::HandleConfig' => '5.5',
2167 'CPAN::Kwalify' => '5.50',
2168 'CPAN::Nox' => '5.50',
2169 'CPAN::Queue' => '5.5',
2170 'CPAN::Tarzip' => '5.5',
2171 'CPAN::Version' => '5.5',
2173 'Carp::Heavy' => '1.10',
2175 'DBM_Filter' => '0.02',
2176 'DBM_Filter::compress' => '0.02',
2177 'DBM_Filter::encode' => '0.02',
2178 'DBM_Filter::int32' => '0.02',
2179 'DBM_Filter::null' => '0.02',
2180 'DBM_Filter::utf8' => '0.02',
2181 'DB_File' => '1.817',
2182 'Data::Dumper' => '2.121_17',
2183 'Devel::DProf' => '20080331.00',
2184 'Devel::InnerPackage' => '0.3',
2185 'Devel::PPPort' => '3.14',
2186 'Devel::Peek' => '1.04',
2188 'Digest::MD5' => '2.37',
2189 'DirHandle' => '1.02',
2190 'DynaLoader' => '1.09',
2192 'Encode::Alias' => '2.10',
2193 'Encode::Byte' => '2.03',
2194 'Encode::CJKConstants' => '2.02',
2195 'Encode::CN' => '2.02',
2196 'Encode::CN::HZ' => '2.05',
2197 'Encode::Config' => '2.05',
2198 'Encode::EBCDIC' => '2.02',
2199 'Encode::Encoder' => '2.01',
2200 'Encode::Encoding' => '2.05',
2201 'Encode::GSM0338' => '2.01',
2202 'Encode::Guess' => '2.02',
2203 'Encode::JP' => '2.03',
2204 'Encode::JP::H2Z' => '2.02',
2205 'Encode::JP::JIS7' => '2.04',
2206 'Encode::KR' => '2.02',
2207 'Encode::KR::2022_KR' => '2.02',
2208 'Encode::MIME::Header' => '2.05',
2209 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2210 'Encode::MIME::Name' => '1.01',
2211 'Encode::Symbol' => '2.02',
2212 'Encode::TW' => '2.02',
2213 'Encode::Unicode' => '2.05',
2214 'Encode::Unicode::UTF7' => '2.04',
2215 'English' => '1.03',
2217 'Exporter' => '5.63',
2218 'Exporter::Heavy' => '5.63',
2219 'ExtUtils::Command' => '1.15',
2220 'ExtUtils::Command::MM' => '6.48',
2221 'ExtUtils::Constant' => '0.21',
2222 'ExtUtils::Constant::Base'=> '0.04',
2223 'ExtUtils::Constant::ProxySubs'=> '0.06',
2224 'ExtUtils::Constant::Utils'=> '0.02',
2225 'ExtUtils::Constant::XS'=> '0.02',
2226 'ExtUtils::Embed' => '1.28',
2227 'ExtUtils::Install' => '1.50_01',
2228 'ExtUtils::Installed' => '1.43',
2229 'ExtUtils::Liblist' => '6.48',
2230 'ExtUtils::Liblist::Kid'=> '6.48',
2231 'ExtUtils::MM' => '6.48',
2232 'ExtUtils::MM_AIX' => '6.48',
2233 'ExtUtils::MM_Any' => '6.48',
2234 'ExtUtils::MM_BeOS' => '6.48',
2235 'ExtUtils::MM_Cygwin' => '6.48',
2236 'ExtUtils::MM_DOS' => '6.48',
2237 'ExtUtils::MM_Darwin' => '6.48',
2238 'ExtUtils::MM_MacOS' => '6.48',
2239 'ExtUtils::MM_NW5' => '6.48',
2240 'ExtUtils::MM_OS2' => '6.48',
2241 'ExtUtils::MM_QNX' => '6.48',
2242 'ExtUtils::MM_UWIN' => '6.48',
2243 'ExtUtils::MM_Unix' => '6.48',
2244 'ExtUtils::MM_VMS' => '6.48',
2245 'ExtUtils::MM_VOS' => '6.48',
2246 'ExtUtils::MM_Win32' => '6.48',
2247 'ExtUtils::MM_Win95' => '6.48',
2248 'ExtUtils::MY' => '6.48',
2249 'ExtUtils::MakeMaker' => '6.48',
2250 'ExtUtils::MakeMaker::Config'=> '6.48',
2251 'ExtUtils::MakeMaker::bytes'=> '6.48',
2252 'ExtUtils::MakeMaker::vmsish'=> '6.48',
2253 'ExtUtils::Manifest' => '1.55',
2254 'ExtUtils::Mkbootstrap' => '6.48',
2255 'ExtUtils::Mksymlists' => '6.48',
2256 'ExtUtils::Packlist' => '1.43',
2257 'ExtUtils::ParseXS' => '2.19',
2258 'ExtUtils::XSSymSet' => '1.1',
2259 'ExtUtils::testlib' => '6.48',
2262 'File::Basename' => '2.77',
2263 'File::CheckTree' => '4.4',
2264 'File::Compare' => '1.1005',
2265 'File::Copy' => '2.13',
2266 'File::DosGlob' => '1.01',
2267 'File::Find' => '1.13',
2268 'File::Glob' => '1.06',
2269 'File::Path' => '2.07_02',
2270 'File::Spec' => '3.29',
2271 'File::Spec::Cygwin' => '3.29',
2272 'File::Spec::Epoc' => '3.29',
2273 'File::Spec::Functions' => '3.29',
2274 'File::Spec::Mac' => '3.29',
2275 'File::Spec::OS2' => '3.29',
2276 'File::Spec::Unix' => '3.29',
2277 'File::Spec::VMS' => '3.29',
2278 'File::Spec::Win32' => '3.29',
2279 'File::Temp' => '0.20',
2280 'File::stat' => '1.01',
2281 'FileCache' => '1.07',
2282 'Filter::Simple' => '0.83',
2283 'Filter::Util::Call' => '1.07',
2284 'FindBin' => '1.49',
2285 'GDBM_File' => '1.09',
2286 'Getopt::Long' => '2.37',
2287 'Getopt::Std' => '1.06',
2288 'Hash::Util' => '0.06',
2290 'IO::Dir' => '1.06',
2291 'IO::File' => '1.14',
2292 'IO::Handle' => '1.27',
2293 'IO::Socket' => '1.30',
2294 'IO::Socket::INET' => '1.31',
2295 'IO::Socket::UNIX' => '1.23',
2296 'IPC::Msg' => '2.00',
2297 'IPC::Open2' => '1.03',
2298 'IPC::Open3' => '1.03',
2299 'IPC::Semaphore' => '2.00',
2300 'IPC::SharedMem' => '2.00',
2301 'IPC::SysV' => '2.00',
2302 'List::Util' => '1.19',
2303 'Locale::Maketext' => '1.13',
2304 'Locale::Maketext::Guts'=> '1.13',
2305 'Locale::Maketext::GutsLoader'=> '1.13',
2306 'Math::BigFloat' => '1.60',
2307 'Math::BigInt' => '1.89',
2308 'Math::BigInt::Calc' => '0.52',
2309 'Math::BigRat' => '0.22',
2310 'Math::Complex' => '1.54',
2311 'Math::Trig' => '1.18',
2312 'Module::CoreList' => '2.17',
2313 'Module::Pluggable' => '3.8',
2314 'Module::Pluggable::Object'=> '3.6',
2315 'NDBM_File' => '1.07',
2317 'Net::Cmd' => '2.29',
2318 'Net::Config' => '1.11',
2319 'Net::Domain' => '2.20',
2320 'Net::FTP' => '2.77',
2321 'Net::FTP::A' => '1.18',
2322 'Net::NNTP' => '2.24',
2323 'Net::POP3' => '2.29',
2324 'Net::Ping' => '2.35',
2325 'Net::SMTP' => '2.31',
2327 'ODBM_File' => '1.07',
2328 'OS2::DLL' => '1.03',
2329 'OS2::Process' => '1.03',
2330 'Opcode' => '1.0601',
2333 'PerlIO::encoding' => '0.11',
2334 'PerlIO::scalar' => '0.06',
2335 'PerlIO::via' => '0.05',
2336 'Pod::Html' => '1.09',
2337 'Pod::ParseUtils' => '1.35',
2338 'Pod::Parser' => '1.35',
2339 'Pod::Select' => '1.35',
2340 'Pod::Usage' => '1.35',
2341 'SDBM_File' => '1.06',
2343 'Scalar::Util' => '1.19',
2344 'SelfLoader' => '1.17',
2347 'Storable' => '2.19',
2349 'Sys::Syslog' => '0.27',
2350 'Sys::Syslog::win32::Win32'=> undef,
2351 'Term::ANSIColor' => '1.12',
2352 'Term::Cap' => '1.12',
2353 'Term::ReadLine' => '1.03',
2354 'Test::Builder' => '0.80',
2355 'Test::Builder::Module' => '0.80',
2356 'Test::Builder::Tester' => '1.13',
2357 'Test::Harness' => '2.64',
2358 'Test::Harness::Results'=> '0.01_01',
2359 'Test::Harness::Straps' => '0.26_01',
2360 'Test::Harness::Util' => '0.01',
2361 'Test::More' => '0.80',
2362 'Test::Simple' => '0.80',
2363 'Text::Balanced' => '1.98',
2364 'Text::ParseWords' => '3.27',
2365 'Text::Soundex' => '3.03',
2366 'Text::Tabs' => '2007.1117',
2367 'Text::Wrap' => '2006.1117',
2369 'Thread::Queue' => '2.11',
2370 'Thread::Semaphore' => '2.09',
2371 'Tie::Handle' => '4.2',
2372 'Tie::Hash' => '1.03',
2373 'Tie::Memoize' => '1.1',
2374 'Tie::RefHash' => '1.38',
2375 'Tie::Scalar' => '1.01',
2376 'Tie::StdHandle' => '4.2',
2377 'Time::HiRes' => '1.9715',
2378 'Time::Local' => '1.1901',
2379 'Time::gmtime' => '1.03',
2380 'Unicode' => '5.1.0',
2381 'Unicode::Normalize' => '1.02',
2382 'Unicode::UCD' => '0.25',
2383 'VMS::DCLsym' => '1.03',
2384 'VMS::Stdio' => '2.4',
2386 'Win32API::File' => '0.1001_01',
2387 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2388 'Win32CORE' => '0.02',
2389 'XS::APItest' => '0.15',
2390 'XS::Typemap' => '0.03',
2391 'XSLoader' => '0.10',
2392 'attributes' => '0.09',
2393 'autouse' => '1.06',
2399 'charnames' => '1.06',
2400 'constant' => '1.17',
2401 'diagnostics' => '1.16',
2402 'encoding' => '2.6_01',
2404 'filetest' => '1.02',
2408 'overload' => '1.06',
2410 'sigtrap' => '1.04',
2411 'threads' => '1.71',
2412 'threads::shared' => '1.27',
2414 'warnings' => '1.05_01',
2420 delta_from => 5.008002,
2424 'B::Concise' => '0.57',
2425 'B::Deparse' => '0.65',
2426 'DB_File' => '1.806',
2427 'Devel::PPPort' => '2.008',
2428 'English' => '1.02',
2430 'OS2::DLL' => '1.02',
2432 'Time::HiRes' => '1.51',
2433 'Unicode::Collate' => '0.28',
2434 'Unicode::Normalize' => '0.23',
2435 'XSLoader' => '0.03',
2436 'assertions' => '0.01',
2437 'assertions::activate' => '0.01',
2438 'overload' => '1.02',
2439 'version' => '0.29',
2445 delta_from => 5.008004,
2448 'B::Assembler' => '0.06',
2450 'B::Concise' => '0.59',
2451 'B::Debug' => '1.02',
2452 'B::Deparse' => '0.65',
2453 'DB_File' => '1.808_01',
2454 'Devel::PPPort' => '2.011_01',
2456 'DynaLoader' => '1.04',
2457 'English' => '1.02',
2458 'Exporter::Heavy' => '5.567',
2459 'ExtUtils::Command' => '1.07',
2460 'ExtUtils::Liblist::Kid'=> '1.3',
2461 'ExtUtils::MM_Any' => '0.0901',
2462 'ExtUtils::MM_Cygwin' => '1.07',
2463 'ExtUtils::MM_NW5' => '2.07_01',
2464 'ExtUtils::MM_Unix' => '1.45_01',
2465 'ExtUtils::MM_VMS' => '5.71_01',
2466 'ExtUtils::MM_Win32' => '1.10_01',
2467 'ExtUtils::MM_Win95' => '0.03',
2468 'ExtUtils::MakeMaker' => '6.21_02',
2469 'ExtUtils::Manifest' => '1.43',
2471 'Getopt::Long' => '2.3401',
2472 'IO::Handle' => '1.23',
2473 'IO::Pipe' => '1.122',
2474 'IPC::Open3' => '1.0105',
2475 'MIME::Base64' => '3.00_01',
2476 'MIME::QuotedPrint' => '3.00',
2477 'Memoize' => '1.01_01',
2478 'ODBM_File' => '1.04',
2481 'Storable' => '2.11',
2482 'Time::HiRes' => '1.56',
2483 'Time::Local' => '1.07_94',
2484 'UNIVERSAL' => '1.02',
2485 'Unicode' => '4.0.0',
2486 'Unicode::UCD' => '0.21',
2487 'XSLoader' => '0.03',
2488 'assertions' => '0.01',
2489 'assertions::activate' => '0.01',
2493 'overload' => '1.02',
2494 'threads' => '1.02',
2496 'version' => '0.36',
2502 delta_from => 5.008007,
2505 'B::Concise' => '0.64',
2506 'B::Deparse' => '0.69',
2507 'B::Disassembler' => '1.03',
2508 'B::Terse' => '1.02',
2510 'Config::Extensions' => '0.01',
2511 'Devel::DProf' => '20030813.00',
2512 'DynaLoader' => '1.07',
2514 'Encode::Alias' => '2.02',
2515 'English' => '1.03',
2516 'Exporter' => '5.59',
2517 'Exporter::Heavy' => '5.59',
2518 'ExtUtils::Command' => '1.07',
2519 'ExtUtils::Command::MM' => '0.03_01',
2520 'ExtUtils::Embed' => '1.26',
2521 'ExtUtils::Liblist::Kid'=> '1.3',
2522 'ExtUtils::MM_Any' => '0.10',
2523 'ExtUtils::MM_Cygwin' => '1.07',
2524 'ExtUtils::MM_MacOS' => '1.08',
2525 'ExtUtils::MM_NW5' => '2.07',
2526 'ExtUtils::MM_Unix' => '1.46_01',
2527 'ExtUtils::MM_VMS' => '5.71',
2528 'ExtUtils::MM_Win32' => '1.10',
2529 'ExtUtils::MM_Win95' => '0.03',
2530 'ExtUtils::MakeMaker' => '6.25',
2531 'ExtUtils::Manifest' => '1.44',
2533 'File::Path' => '1.06',
2534 'FileCache' => '1.04_01',
2535 'Getopt::Long' => '2.3401',
2536 'IO::File' => '1.10',
2537 'IO::Socket::INET' => '1.27',
2538 'Math::BigFloat' => '1.49',
2539 'Math::BigInt' => '1.75',
2540 'Math::BigInt::Calc' => '0.45',
2541 'Math::BigRat' => '0.14',
2542 'Memoize' => '1.01_01',
2543 'Module::CoreList' => '1.99',
2544 'NEXT' => '0.60_01',
2546 'Pod::Html' => '1.0502',
2547 'Scalar::Util' => '1.14_1',
2548 'Storable' => '2.14',
2550 'Test::Harness' => '2.46',
2551 'Test::Harness::Straps' => '0.20_01',
2552 'Text::Balanced' => '1.95_01',
2553 'Text::Wrap' => '2001.09292',
2554 'UNIVERSAL' => '1.02',
2555 'Unicode' => '4.0.1',
2556 'Unicode::Normalize' => '0.30',
2557 'Unicode::UCD' => '0.22',
2559 'XS::APItest' => '0.05',
2560 'XSLoader' => '0.03',
2561 'assertions' => '0.01',
2562 'assertions::activate' => '0.01',
2568 'encoding::warnings' => '0.05',
2571 'threads::shared' => '0.92',
2573 'version' => '0.42',
2574 'warnings' => '1.04',
2577 'Test::Harness::Point' => 1,
2581 delta_from => 5.008008,
2583 'Archive::Tar' => '1.26_01',
2584 'Archive::Tar::Constant'=> '0.02',
2585 'Archive::Tar::File' => '0.02',
2586 'AutoSplit' => '1.04_01',
2588 'B::Bblock' => '1.02',
2589 'B::Bytecode' => '1.01',
2592 'B::Concise' => '0.67',
2593 'B::Debug' => '1.02',
2594 'B::Deparse' => '0.73',
2595 'B::Lint' => '1.04',
2596 'B::Terse' => '1.03',
2598 'CPAN' => '1.83_58',
2599 'CPAN::Debug' => '4.44',
2600 'CPAN::FirstTime' => '4.50',
2601 'CPAN::HandleConfig' => '4.31',
2602 'CPAN::Nox' => '2.31',
2603 'CPAN::Tarzip' => '3.36',
2604 'CPAN::Version' => '2.55',
2606 'Carp::Heavy' => '1.05',
2607 'Compress::Zlib' => '2.000_07',
2608 'Compress::Zlib::Common'=> '2.000_07',
2609 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2610 'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2611 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2612 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2613 'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2614 'Compress::Zlib::FileConstants'=> '2.000_07',
2615 'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2616 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2617 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2618 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2619 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2620 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2621 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2622 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2623 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2624 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2625 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2626 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2627 'Compress::Zlib::ParseParameters'=> '2.000_07',
2628 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2629 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2630 'Config::Extensions' => '0.01',
2632 'Devel::PPPort' => '3.08',
2633 'Digest::SHA' => '5.32',
2634 'DirHandle' => '1.01',
2635 'DynaLoader' => '1.07',
2637 'Encode::CN::HZ' => '2.02',
2638 'Encode::MIME::Header' => '2.02',
2639 'English' => '1.04',
2640 'Exporter' => '5.59',
2641 'Exporter::Heavy' => '5.59',
2642 'ExtUtils::CBuilder' => '0.15',
2643 'ExtUtils::CBuilder::Base'=> '0.12',
2644 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2645 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2646 'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2647 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2648 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2649 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2650 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2651 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2652 'ExtUtils::Command::MM' => '0.05_01',
2653 'ExtUtils::Constant' => '0.2',
2654 'ExtUtils::Constant::Base'=> '0.02',
2655 'ExtUtils::Constant::ProxySubs'=> '0.01',
2656 'ExtUtils::Constant::XS'=> '0.02',
2657 'ExtUtils::MM_Any' => '0.13_01',
2658 'ExtUtils::MM_Unix' => '1.50_01',
2659 'ExtUtils::MakeMaker' => '6.30_01',
2660 'ExtUtils::ParseXS' => '2.15_02',
2662 'File::Compare' => '1.1005',
2663 'File::Spec' => '3.15',
2664 'File::Temp' => '0.16_01',
2665 'IO::File' => '1.13_01',
2666 'IO::Handle' => '1.26',
2667 'IO::Socket' => '1.29_01',
2668 'IO::Socket::INET' => '1.29_02',
2669 'IO::Socket::UNIX' => '1.22_01',
2670 'IO::Zlib' => '1.04_02',
2671 'Locale::Maketext' => '1.10_01',
2672 'Math::BigInt::FastCalc'=> '0.10',
2673 'Memoize' => '1.01_01',
2674 'Module::CoreList' => '2.02',
2675 'Moped::Msg' => '0.01',
2676 'NEXT' => '0.60_01',
2677 'Net::Cmd' => '2.26_01',
2678 'Net::Domain' => '2.19_01',
2679 'Net::Ping' => '2.31_04',
2682 'Pod::Escapes' => '1.04',
2683 'Pod::Man' => '2.04',
2684 'Pod::Perldoc' => '3.14_01',
2685 'Pod::Simple' => '3.04',
2686 'Pod::Simple::BlackBox' => undef,
2687 'Pod::Simple::Checker' => '2.02',
2688 'Pod::Simple::Debug' => undef,
2689 'Pod::Simple::DumpAsText'=> '2.02',
2690 'Pod::Simple::DumpAsXML'=> '2.02',
2691 'Pod::Simple::HTML' => '3.03',
2692 'Pod::Simple::HTMLBatch'=> '3.02',
2693 'Pod::Simple::HTMLLegacy'=> '5.01',
2694 'Pod::Simple::LinkSection'=> undef,
2695 'Pod::Simple::Methody' => '2.02',
2696 'Pod::Simple::Progress' => '1.01',
2697 'Pod::Simple::PullParser'=> '2.02',
2698 'Pod::Simple::PullParserEndToken'=> undef,
2699 'Pod::Simple::PullParserStartToken'=> undef,
2700 'Pod::Simple::PullParserTextToken'=> undef,
2701 'Pod::Simple::PullParserToken'=> '2.02',
2702 'Pod::Simple::RTF' => '2.02',
2703 'Pod::Simple::Search' => '3.04',
2704 'Pod::Simple::SimpleTree'=> '2.02',
2705 'Pod::Simple::Text' => '2.02',
2706 'Pod::Simple::TextContent'=> '2.02',
2707 'Pod::Simple::TiedOutFH'=> undef,
2708 'Pod::Simple::Transcode'=> undef,
2709 'Pod::Simple::TranscodeDumb'=> '2.02',
2710 'Pod::Simple::TranscodeSmart'=> undef,
2711 'Pod::Simple::XMLOutStream'=> '2.02',
2712 'Pod::Text' => '3.01',
2713 'Pod::Text::Color' => '2.01',
2714 'Pod::Text::Overstrike' => '2',
2715 'Pod::Text::Termcap' => '2.01',
2716 'Pod::Usage' => '1.33_01',
2717 'SelfLoader' => '1.0905',
2718 'Storable' => '2.15_02',
2719 'Test::Builder::Module' => '0.03',
2720 'Text::Balanced' => '1.95_01',
2721 'Tie::File' => '0.97_01',
2722 'UNIVERSAL' => '1.03',
2723 'XS::APItest' => '0.09',
2724 'assertions' => '0.02',
2725 'assertions::activate' => '0.02',
2726 'assertions::compat' => undef,
2727 'constant' => '1.07',
2728 'encoding::warnings' => '0.05',
2729 'feature' => '1.00',
2732 'version' => '0.53',
2738 delta_from => 5.009003,
2740 'Archive::Tar' => '1.30_01',
2741 'AutoLoader' => '5.61',
2743 'B::Bytecode' => '1.02',
2745 'B::Concise' => '0.69',
2746 'B::Deparse' => '0.76',
2747 'B::Lint' => '1.08',
2748 'Benchmark' => '1.08',
2750 'CGI::Cookie' => '1.27',
2751 'CGI::Fast' => '1.07',
2752 'CPAN' => '1.87_55',
2753 'CPAN::Debug' => '5.400561',
2754 'CPAN::FirstTime' => '5.400742',
2755 'CPAN::HandleConfig' => '5.400740',
2756 'CPAN::Nox' => '5.400561',
2757 'CPAN::Tarzip' => '5.400714',
2758 'CPAN::Version' => '5.400561',
2759 'Compress::Raw::Zlib' => '2.000_13',
2760 'Compress::Zlib' => '2.000_13',
2762 'Devel::PPPort' => '3.10',
2764 'Digest::SHA' => '5.43',
2765 'Encode' => '2.18_01',
2766 'Encode::Alias' => '2.06',
2767 'Encode::Byte' => '2.02',
2768 'Encode::CJKConstants' => '2.02',
2769 'Encode::CN' => '2.02',
2770 'Encode::CN::HZ' => '2.04',
2771 'Encode::Config' => '2.03',
2772 'Encode::EBCDIC' => '2.02',
2773 'Encode::Encoder' => '2.01',
2774 'Encode::Encoding' => '2.04',
2775 'Encode::Guess' => '2.02',
2776 'Encode::JP' => '2.03',
2777 'Encode::JP::H2Z' => '2.02',
2778 'Encode::JP::JIS7' => '2.02',
2779 'Encode::KR' => '2.02',
2780 'Encode::KR::2022_KR' => '2.02',
2781 'Encode::MIME::Header' => '2.04',
2782 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2783 'Encode::Symbol' => '2.02',
2784 'Encode::TW' => '2.02',
2785 'Encode::Unicode' => '2.03',
2786 'Encode::Unicode::UTF7' => '2.04',
2787 'ExtUtils::CBuilder' => '0.18',
2788 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2789 'ExtUtils::Constant::Base'=> '0.03',
2790 'ExtUtils::Constant::ProxySubs'=> '0.03',
2791 'ExtUtils::Install' => '1.41',
2792 'ExtUtils::Installed' => '1.41',
2793 'ExtUtils::MM_Any' => '0.13_02',
2794 'ExtUtils::MM_NW5' => '2.08_01',
2795 'ExtUtils::MM_Unix' => '1.5003',
2796 'ExtUtils::MM_VMS' => '5.73_03',
2797 'ExtUtils::MM_Win32' => '1.12_02',
2798 'ExtUtils::MM_Win95' => '0.04_01',
2799 'ExtUtils::MakeMaker' => '6.30_02',
2800 'ExtUtils::Manifest' => '1.46_01',
2801 'ExtUtils::Mkbootstrap' => '1.15_01',
2802 'ExtUtils::Mksymlists' => '1.19_01',
2803 'ExtUtils::Packlist' => '1.41',
2804 'File::Basename' => '2.75',
2805 'File::Find' => '1.11',
2806 'File::GlobMapper' => '0.000_02',
2807 'File::Spec' => '3.19',
2808 'FileCache' => '1.07',
2809 'Getopt::Long' => '2.3501',
2810 'Hash::Util' => '0.07',
2811 'Hash::Util::FieldHash' => '0.01',
2813 'IO::Compress::Adapter::Deflate'=> '2.000_13',
2814 'IO::Compress::Adapter::Identity'=> '2.000_13',
2815 'IO::Compress::Base' => '2.000_13',
2816 'IO::Compress::Base::Common'=> '2.000_13',
2817 'IO::Compress::Deflate' => '2.000_13',
2818 'IO::Compress::Gzip' => '2.000_13',
2819 'IO::Compress::Gzip::Constants'=> '2.000_13',
2820 'IO::Compress::RawDeflate'=> '2.000_13',
2821 'IO::Compress::Zip' => '2.000_13',
2822 'IO::Compress::Zip::Constants'=> '2.000_13',
2823 'IO::Compress::Zlib::Constants'=> '2.000_13',
2824 'IO::Compress::Zlib::Extra'=> '2.000_13',
2825 'IO::Dir' => '1.06',
2826 'IO::File' => '1.14',
2827 'IO::Handle' => '1.27',
2828 'IO::Socket' => '1.30_01',
2829 'IO::Socket::INET' => '1.31',
2830 'IO::Socket::UNIX' => '1.23',
2831 'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2832 'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2833 'IO::Uncompress::AnyInflate'=> '2.000_13',
2834 'IO::Uncompress::AnyUncompress'=> '2.000_13',
2835 'IO::Uncompress::Base' => '2.000_13',
2836 'IO::Uncompress::Gunzip'=> '2.000_13',
2837 'IO::Uncompress::Inflate'=> '2.000_13',
2838 'IO::Uncompress::RawInflate'=> '2.000_13',
2839 'IO::Uncompress::Unzip' => '2.000_13',
2840 'MIME::Base64' => '3.07_01',
2841 'Math::Complex' => '1.36',
2842 'Math::Trig' => '1.04',
2843 'Module::Build' => '0.2805',
2844 'Module::Build::Base' => undef,
2845 'Module::Build::Compat' => '0.03',
2846 'Module::Build::ConfigData'=> undef,
2847 'Module::Build::Cookbook'=> undef,
2848 'Module::Build::ModuleInfo'=> undef,
2849 'Module::Build::Notes' => undef,
2850 'Module::Build::PPMMaker'=> undef,
2851 'Module::Build::Platform::Amiga'=> undef,
2852 'Module::Build::Platform::Default'=> undef,
2853 'Module::Build::Platform::EBCDIC'=> undef,
2854 'Module::Build::Platform::MPEiX'=> undef,
2855 'Module::Build::Platform::MacOS'=> undef,
2856 'Module::Build::Platform::RiscOS'=> undef,
2857 'Module::Build::Platform::Unix'=> undef,
2858 'Module::Build::Platform::VMS'=> undef,
2859 'Module::Build::Platform::VOS'=> undef,
2860 'Module::Build::Platform::Windows'=> undef,
2861 'Module::Build::Platform::aix'=> undef,
2862 'Module::Build::Platform::cygwin'=> undef,
2863 'Module::Build::Platform::darwin'=> undef,
2864 'Module::Build::Platform::os2'=> undef,
2865 'Module::Build::PodParser'=> undef,
2866 'Module::Build::Version'=> '0',
2867 'Module::Build::YAML' => '0.50',
2868 'Module::CoreList' => '2.08',
2869 'Module::Load' => '0.10',
2870 'Module::Loaded' => '0.01',
2871 'Package::Constants' => '0.01',
2872 'Pod::Html' => '1.07',
2873 'Pod::Man' => '2.09',
2874 'Pod::Text' => '3.07',
2875 'Pod::Text::Color' => '2.03',
2876 'Pod::Text::Termcap' => '2.03',
2877 'SDBM_File' => '1.06',
2879 'Sys::Syslog' => '0.17',
2880 'Term::ANSIColor' => '1.11',
2881 'Test::Builder' => '0.33',
2882 'Test::Builder::Tester' => '1.04',
2883 'Test::Harness' => '2.62',
2884 'Test::Harness::Util' => '0.01',
2885 'Test::More' => '0.64',
2886 'Test::Simple' => '0.64',
2887 'Text::Balanced' => '1.98_01',
2888 'Text::ParseWords' => '3.25',
2889 'Text::Tabs' => '2007.071101',
2890 'Text::Wrap' => '2006.0711',
2891 'Tie::RefHash' => '1.34_01',
2892 'Time::HiRes' => '1.87',
2893 'Time::Local' => '1.13',
2894 'Time::gmtime' => '1.03',
2895 'UNIVERSAL' => '1.04',
2896 'Unicode::Normalize' => '1.01',
2897 'Win32API::File' => '0.1001',
2898 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2899 'assertions' => '0.03',
2900 'assertions::compat' => '0.02',
2901 'autouse' => '1.06',
2902 'diagnostics' => '1.16',
2903 'encoding' => '2.04',
2904 'encoding::warnings' => '0.10',
2905 'feature' => '1.01',
2907 'threads' => '1.38',
2908 'threads::shared' => '0.94_01',
2909 'version' => '0.67',
2912 'Compress::Zlib::Common'=> 1,
2913 'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2914 'Compress::Zlib::Compress::Zip::Constants'=> 1,
2915 'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2916 'Compress::Zlib::CompressPlugin::Identity'=> 1,
2917 'Compress::Zlib::File::GlobMapper'=> 1,
2918 'Compress::Zlib::FileConstants'=> 1,
2919 'Compress::Zlib::IO::Compress::Base'=> 1,
2920 'Compress::Zlib::IO::Compress::Deflate'=> 1,
2921 'Compress::Zlib::IO::Compress::Gzip'=> 1,
2922 'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2923 'Compress::Zlib::IO::Compress::Zip'=> 1,
2924 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2925 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2926 'Compress::Zlib::IO::Uncompress::Base'=> 1,
2927 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2928 'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2929 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2930 'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2931 'Compress::Zlib::ParseParameters'=> 1,
2932 'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2933 'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2937 delta_from => 5.009004,
2939 'Archive::Extract' => '0.22_01',
2940 'Archive::Tar' => '1.32',
2941 'Attribute::Handlers' => '0.78_06',
2942 'AutoLoader' => '5.63',
2943 'AutoSplit' => '1.05',
2945 'B::Concise' => '0.72',
2946 'B::Debug' => '1.05',
2947 'B::Deparse' => '0.82',
2948 'B::Lint' => '1.09',
2949 'B::Terse' => '1.05',
2950 'Benchmark' => '1.1',
2952 'CGI::Cookie' => '1.28',
2953 'CGI::Util' => '1.5_01',
2955 'CPAN::Debug' => '5.400955',
2956 'CPAN::FirstTime' => '5.401669',
2957 'CPAN::HandleConfig' => '5.401744',
2958 'CPAN::Kwalify' => '5.401418',
2959 'CPAN::Nox' => '5.400844',
2960 'CPAN::Queue' => '5.401704',
2961 'CPAN::Tarzip' => '5.401717',
2962 'CPAN::Version' => '5.401387',
2963 'CPANPLUS' => '0.81_01',
2964 'CPANPLUS::Backend' => undef,
2965 'CPANPLUS::Backend::RV' => undef,
2966 'CPANPLUS::Config' => undef,
2967 'CPANPLUS::Configure' => undef,
2968 'CPANPLUS::Configure::Setup'=> undef,
2969 'CPANPLUS::Dist' => undef,
2970 'CPANPLUS::Dist::Base' => '0.01',
2971 'CPANPLUS::Dist::Build' => '0.06_01',
2972 'CPANPLUS::Dist::Build::Constants'=> '0.01',
2973 'CPANPLUS::Dist::MM' => undef,
2974 'CPANPLUS::Dist::Sample'=> undef,
2975 'CPANPLUS::Error' => undef,
2976 'CPANPLUS::Internals' => '0.81_01',
2977 'CPANPLUS::Internals::Constants'=> '0.01',
2978 'CPANPLUS::Internals::Constants::Report'=> '0.01',
2979 'CPANPLUS::Internals::Extract'=> undef,
2980 'CPANPLUS::Internals::Fetch'=> undef,
2981 'CPANPLUS::Internals::Report'=> undef,
2982 'CPANPLUS::Internals::Search'=> undef,
2983 'CPANPLUS::Internals::Source'=> undef,
2984 'CPANPLUS::Internals::Utils'=> undef,
2985 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
2986 'CPANPLUS::Module' => undef,
2987 'CPANPLUS::Module::Author'=> undef,
2988 'CPANPLUS::Module::Author::Fake'=> undef,
2989 'CPANPLUS::Module::Checksums'=> undef,
2990 'CPANPLUS::Module::Fake'=> undef,
2991 'CPANPLUS::Module::Signature'=> undef,
2992 'CPANPLUS::Selfupdate' => undef,
2993 'CPANPLUS::Shell' => undef,
2994 'CPANPLUS::Shell::Classic'=> '0.0562',
2995 'CPANPLUS::Shell::Default'=> '0.81_01',
2996 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
2997 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
2998 'CPANPLUS::inc' => undef,
3000 'Carp::Heavy' => '1.07',
3001 'Compress::Raw::Zlib' => '2.005',
3002 'Compress::Zlib' => '2.005',
3004 'DBM_Filter' => '0.02',
3005 'DB_File' => '1.815',
3006 'Data::Dumper' => '2.121_13',
3007 'Devel::InnerPackage' => '0.3',
3008 'Devel::PPPort' => '3.11_01',
3009 'Digest::MD5' => '2.36_01',
3010 'Digest::SHA' => '5.44',
3011 'DynaLoader' => '1.08',
3013 'Encode::Alias' => '2.07',
3014 'Encode::Byte' => '2.03',
3015 'Encode::Config' => '2.04',
3016 'Encode::Encoding' => '2.05',
3017 'Encode::GSM0338' => '2.00',
3018 'Encode::JP::JIS7' => '2.03',
3019 'Encode::MIME::Header' => '2.05',
3020 'Encode::MIME::Name' => '1.01',
3021 'Encode::Unicode' => '2.05',
3023 'Exporter' => '5.60',
3024 'Exporter::Heavy' => '5.60',
3025 'ExtUtils::CBuilder' => '0.19',
3026 'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3027 'ExtUtils::Command' => '1.13',
3028 'ExtUtils::Command::MM' => '0.07',
3029 'ExtUtils::Constant::Base'=> '0.04',
3030 'ExtUtils::Install' => '1.41_01',
3031 'ExtUtils::Liblist' => '1.03',
3032 'ExtUtils::Liblist::Kid'=> '1.33',
3033 'ExtUtils::MM' => '0.07',
3034 'ExtUtils::MM_AIX' => '0.05',
3035 'ExtUtils::MM_Any' => '0.15',
3036 'ExtUtils::MM_BeOS' => '1.07',
3037 'ExtUtils::MM_Cygwin' => '1.1',
3038 'ExtUtils::MM_DOS' => '0.04',
3039 'ExtUtils::MM_MacOS' => '1.1',
3040 'ExtUtils::MM_NW5' => '2.1',
3041 'ExtUtils::MM_OS2' => '1.07',
3042 'ExtUtils::MM_QNX' => '0.04',
3043 'ExtUtils::MM_UWIN' => '0.04',
3044 'ExtUtils::MM_Unix' => '1.54_01',
3045 'ExtUtils::MM_VMS' => '5.76',
3046 'ExtUtils::MM_VOS' => '0.04',
3047 'ExtUtils::MM_Win32' => '1.15',
3048 'ExtUtils::MM_Win95' => '0.06',
3049 'ExtUtils::MY' => '0.03',
3050 'ExtUtils::MakeMaker' => '6.36',
3051 'ExtUtils::MakeMaker::Config'=> '0.04',
3052 'ExtUtils::MakeMaker::bytes'=> '0.03',
3053 'ExtUtils::MakeMaker::vmsish'=> '0.03',
3054 'ExtUtils::Manifest' => '1.51_01',
3055 'ExtUtils::Mkbootstrap' => '1.17',
3056 'ExtUtils::Mksymlists' => '1.21',
3057 'ExtUtils::ParseXS' => '2.18',
3058 'ExtUtils::XSSymSet' => '1.1',
3059 'ExtUtils::testlib' => '1.17',
3062 'File::Basename' => '2.76',
3063 'File::Copy' => '2.10',
3064 'File::Fetch' => '0.10',
3065 'File::Glob' => '1.06',
3066 'File::Path' => '2.01',
3067 'File::Spec' => '3.25',
3068 'File::Spec::Cygwin' => '1.1_01',
3069 'File::Spec::VMS' => '1.4_01',
3070 'File::Temp' => '0.18',
3071 'Filter::Util::Call' => '1.0602',
3072 'FindBin' => '1.49',
3073 'Getopt::Long' => '2.36',
3074 'Hash::Util::FieldHash' => '1.01',
3075 'IO::Compress::Adapter::Deflate'=> '2.005',
3076 'IO::Compress::Adapter::Identity'=> '2.005',
3077 'IO::Compress::Base' => '2.005',
3078 'IO::Compress::Base::Common'=> '2.005',
3079 'IO::Compress::Deflate' => '2.005',
3080 'IO::Compress::Gzip' => '2.005',
3081 'IO::Compress::Gzip::Constants'=> '2.005',
3082 'IO::Compress::RawDeflate'=> '2.005',
3083 'IO::Compress::Zip' => '2.005',
3084 'IO::Compress::Zip::Constants'=> '2.005',
3085 'IO::Compress::Zlib::Constants'=> '2.005',
3086 'IO::Compress::Zlib::Extra'=> '2.005',
3087 'IO::Uncompress::Adapter::Identity'=> '2.005',
3088 'IO::Uncompress::Adapter::Inflate'=> '2.005',
3089 'IO::Uncompress::AnyInflate'=> '2.005',
3090 'IO::Uncompress::AnyUncompress'=> '2.005',
3091 'IO::Uncompress::Base' => '2.005',
3092 'IO::Uncompress::Gunzip'=> '2.005',
3093 'IO::Uncompress::Inflate'=> '2.005',
3094 'IO::Uncompress::RawInflate'=> '2.005',
3095 'IO::Uncompress::Unzip' => '2.005',
3096 'IO::Zlib' => '1.05_01',
3097 'IPC::Cmd' => '0.36_01',
3098 'List::Util' => '1.19',
3099 'Locale::Maketext::Simple'=> '0.18',
3100 'Log::Message' => '0.01',
3101 'Log::Message::Config' => '0.01',
3102 'Log::Message::Handlers'=> undef,
3103 'Log::Message::Item' => undef,
3104 'Log::Message::Simple' => '0.0201',
3105 'Math::BigFloat' => '1.58',
3106 'Math::BigInt' => '1.87',
3107 'Math::BigInt::Calc' => '0.51',
3108 'Math::BigInt::FastCalc'=> '0.15_01',
3109 'Math::BigRat' => '0.19',
3110 'Math::Complex' => '1.37',
3111 'Memoize' => '1.01_02',
3112 'Module::Build' => '0.2808',
3113 'Module::Build::Config' => undef,
3114 'Module::Build::Version'=> '0.7203',
3115 'Module::CoreList' => '2.12',
3116 'Module::Load::Conditional'=> '0.16',
3117 'Module::Pluggable' => '3.6',
3118 'Module::Pluggable::Object'=> '3.6',
3119 'NDBM_File' => '1.07',
3120 'Net::Cmd' => '2.28',
3121 'Net::Config' => '1.11',
3122 'Net::Domain' => '2.20',
3123 'Net::FTP' => '2.77',
3124 'Net::FTP::A' => '1.18',
3125 'Net::NNTP' => '2.24',
3126 'Net::POP3' => '2.29',
3127 'Net::SMTP' => '2.31',
3128 'ODBM_File' => '1.07',
3129 'OS2::DLL' => '1.03',
3130 'Object::Accessor' => '0.32',
3133 'Params::Check' => '0.26',
3134 'PerlIO::encoding' => '0.10',
3135 'PerlIO::scalar' => '0.05',
3136 'PerlIO::via' => '0.04',
3137 'Pod::Html' => '1.08',
3138 'Pod::Man' => '2.12',
3139 'Pod::ParseUtils' => '1.35',
3140 'Pod::Parser' => '1.35',
3141 'Pod::Select' => '1.35',
3142 'Pod::Simple' => '3.05',
3143 'Pod::Text' => '3.08',
3144 'Pod::Usage' => '1.35',
3145 'Scalar::Util' => '1.19',
3146 'SelfLoader' => '1.11',
3147 'Shell' => '0.72_01',
3149 'Storable' => '2.16',
3151 'Sys::Syslog' => '0.18_01',
3152 'Term::ANSIColor' => '1.12',
3153 'Term::UI' => '0.14_01',
3154 'Term::UI::History' => undef,
3155 'Test::Builder' => '0.70',
3156 'Test::Builder::Module' => '0.68',
3157 'Test::Builder::Tester' => '1.07',
3158 'Test::Harness' => '2.64',
3159 'Test::Harness::Results'=> '0.01',
3160 'Test::More' => '0.70',
3161 'Test::Simple' => '0.70',
3162 'Text::Balanced' => '2.0.0',
3163 'Text::Soundex' => '3.02',
3164 'Text::Tabs' => '2007.1117',
3165 'Text::Wrap' => '2006.1117',
3167 'Tie::File' => '0.97_02',
3168 'Tie::Hash::NamedCapture'=> '0.06',
3169 'Tie::Memoize' => '1.1',
3170 'Tie::RefHash' => '1.37',
3171 'Time::HiRes' => '1.9707',
3172 'Time::Local' => '1.17',
3173 'Time::Piece' => '1.11_02',
3174 'Time::Seconds' => undef,
3175 'Unicode' => '5.0.0',
3176 'Unicode::Normalize' => '1.02',
3177 'Unicode::UCD' => '0.25',
3178 'VMS::DCLsym' => '1.03',
3180 'Win32API::File' => '0.1001_01',
3181 'Win32CORE' => '0.02',
3182 'XS::APItest' => '0.12',
3183 'XSLoader' => '0.08',
3184 'attributes' => '0.08',
3190 'charnames' => '1.06',
3191 'constant' => '1.10',
3192 'diagnostics' => '1.17',
3193 'encoding' => '2.06',
3194 'encoding::warnings' => '0.11',
3195 'feature' => '1.10',
3199 'overload' => '1.06',
3201 'sigtrap' => '1.04',
3204 'threads' => '1.63',
3205 'threads::shared' => '1.12',
3207 'version' => '0.7203',
3208 'warnings' => '1.06',
3212 'B::Assembler' => 1,
3217 'B::Disassembler' => 1,
3221 'Thread::Signal' => 1,
3222 'Thread::Specific' => 1,
3224 'assertions::activate' => 1,
3225 'assertions::compat' => 1,
3229 delta_from => 5.009005,
3231 'Archive::Extract' => '0.24',
3232 'Archive::Tar' => '1.38',
3233 'Attribute::Handlers' => '0.79',
3235 'B::Concise' => '0.74',