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.20151120';
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 => '????-??-??',
291 for my $version ( sort { $a <=> $b } keys %released ) {
292 my $family = int ($version * 1000) / 1000;
293 push @{ $families{ $family }} , $version;
299 'AnyDBM_File' => undef,
300 'AutoLoader' => undef,
301 'AutoSplit' => undef,
302 'Benchmark' => undef,
306 'DynaLoader' => undef,
310 'ExtUtils::MakeMaker' => undef,
312 'File::Basename' => undef,
313 'File::CheckTree' => undef,
314 'File::Find' => undef,
315 'FileHandle' => undef,
316 'GDBM_File' => undef,
317 'Getopt::Long' => undef,
318 'Getopt::Std' => undef,
319 'I18N::Collate' => undef,
320 'IPC::Open2' => undef,
321 'IPC::Open3' => undef,
322 'Math::BigFloat' => undef,
323 'Math::BigInt' => undef,
324 'Math::Complex' => undef,
325 'NDBM_File' => undef,
326 'Net::Ping' => undef,
327 'ODBM_File' => undef,
329 'SDBM_File' => undef,
330 'Search::Dict' => undef,
333 'Sys::Hostname' => undef,
334 'Sys::Syslog' => undef,
335 'Term::Cap' => undef,
336 'Term::Complete' => undef,
337 'Test::Harness' => undef,
338 'Text::Abbrev' => undef,
339 'Text::ParseWords' => undef,
340 'Text::Soundex' => undef,
341 'Text::Tabs' => undef,
343 'Time::Local' => undef,
356 'ExtUtils::Liblist' => undef,
357 'ExtUtils::Manifest' => undef,
358 'ExtUtils::Mkbootstrap' => undef,
359 'File::Path' => undef,
360 'SubstrHash' => undef,
370 'Devel::SelfStubber' => '1.01',
371 'DirHandle' => undef,
372 'DynaLoader' => '1.00',
373 'ExtUtils::Install' => undef,
374 'ExtUtils::MM_OS2' => undef,
375 'ExtUtils::MM_Unix' => undef,
376 'ExtUtils::MM_VMS' => undef,
377 'ExtUtils::MakeMaker' => '5.21',
378 'ExtUtils::Manifest' => '1.22',
379 'ExtUtils::Mksymlists' => '1.00',
381 'File::Copy' => '1.5',
382 'File::Path' => '1.01',
383 'FileCache' => undef,
384 'FileHandle' => '1.00',
385 'GDBM_File' => '1.00',
386 'Getopt::Long' => '2.01',
387 'NDBM_File' => '1.00',
389 'ODBM_File' => '1.00',
391 'Pod::Functions' => undef,
392 'Pod::Text' => undef,
393 'SDBM_File' => '1.00',
395 'SelectSaver' => undef,
396 'SelfLoader' => '1.06',
399 'Term::ReadLine' => undef,
400 'Test::Harness' => '1.07',
401 'Text::Wrap' => undef,
402 'Tie::Hash' => undef,
403 'Tie::Scalar' => undef,
404 'Tie::SubstrHash' => undef,
405 'diagnostics' => undef,
419 'ExtUtils::Embed' => '1.18',
420 'ExtUtils::Install' => '1.15',
421 'ExtUtils::Liblist' => '1.20',
422 'ExtUtils::MM_Unix' => '1.107',
423 'ExtUtils::MakeMaker' => '5.38',
424 'ExtUtils::Manifest' => '1.27',
425 'ExtUtils::Mkbootstrap' => '1.13',
426 'ExtUtils::Mksymlists' => '1.12',
427 'ExtUtils::testlib' => '1.11',
429 'File::Basename' => '2.4',
431 'Getopt::Long' => '2.04',
433 'IO::File' => '1.05',
434 'IO::Handle' => '1.12',
435 'IO::Pipe' => '1.07',
436 'IO::Seekable' => '1.05',
437 'IO::Select' => '1.09',
438 'IO::Socket' => '1.13',
439 'Net::Ping' => '1.01',
440 'OS2::ExtAttr' => '0.01',
441 'OS2::PrfDB' => '0.02',
442 'OS2::Process' => undef,
443 'OS2::REXX' => undef,
446 'Test::Harness' => '1.13',
447 'Text::Tabs' => '96.051501',
448 'Text::Wrap' => '96.041801',
449 'UNIVERSAL' => undef,
450 'VMS::Filespec' => undef,
451 'VMS::Stdio' => '2.0',
459 delta_from => 5.00307,
461 'Bundle::CPAN' => '0.02',
463 'CGI::Apache' => '1.01',
464 'CGI::Carp' => '1.06',
465 'CGI::Fast' => '1.00a',
466 'CGI::Push' => '1.00',
467 'CGI::Switch' => '0.05',
469 'CPAN::FirstTime' => '1.18',
470 'CPAN::Nox' => undef,
471 'Class::Struct' => undef,
474 'DynaLoader' => '1.02',
475 'ExtUtils::Command' => '1.00',
476 'ExtUtils::Embed' => '1.2501',
477 'ExtUtils::Install' => '1.16',
478 'ExtUtils::Liblist' => '1.2201',
479 'ExtUtils::MM_Unix' => '1.114',
480 'ExtUtils::MM_Win32' => undef,
481 'ExtUtils::MakeMaker' => '5.4002',
482 'ExtUtils::Manifest' => '1.33',
483 'ExtUtils::Mksymlists' => '1.13',
484 'ExtUtils::XSSymSet' => '1.0',
486 'File::Basename' => '2.5',
487 'File::Compare' => '1.1001',
488 'File::Copy' => '2.02',
489 'File::Path' => '1.04',
490 'File::stat' => undef,
491 'FileHandle' => '2.00',
492 'Getopt::Long' => '2.10',
493 'IO::File' => '1.0602',
494 'IO::Handle' => '1.1504',
495 'IO::Pipe' => '1.0901',
496 'IO::Seekable' => '1.06',
497 'IO::Select' => '1.10',
498 'IO::Socket' => '1.1602',
499 'IPC::Open2' => '1.01',
500 'IPC::Open3' => '1.0101',
501 'Math::Complex' => '1.01',
503 'Net::Ping' => '2.02',
504 'Net::hostent' => undef,
505 'Net::netent' => undef,
506 'Net::protoent' => undef,
507 'Net::servent' => undef,
510 'Pod::Html' => undef,
511 'Pod::Text' => '1.0203',
512 'SelfLoader' => '1.07',
515 'Test::Harness' => '1.1502',
516 'Text::Tabs' => '96.121201',
517 'Text::Wrap' => '97.011701',
518 'Tie::RefHash' => undef,
519 'Time::gmtime' => '1.01',
520 'Time::localtime' => '1.01',
522 'User::grent' => undef,
523 'User::pwent' => undef,
524 'VMS::DCLsym' => '1.01',
525 'VMS::Stdio' => '2.02',
528 'constant' => '1.00',
540 'AutoLoader' => '5.56',
541 'AutoSplit' => '1.0303',
542 'Bundle::CPAN' => '0.03',
544 'CGI::Apache' => '1.1',
545 'CGI::Carp' => '1.10',
546 'CGI::Cookie' => '1.06',
547 'CGI::Push' => '1.01',
548 'CGI::Switch' => '0.06',
550 'CPAN::FirstTime' => '1.30',
553 'DynaLoader' => '1.03',
554 'ExtUtils::Command' => '1.01',
555 'ExtUtils::Embed' => '1.2505',
556 'ExtUtils::Install' => '1.28',
557 'ExtUtils::Liblist' => '1.25',
558 'ExtUtils::MM_Unix' => '1.118',
559 'ExtUtils::MakeMaker' => '5.42',
560 'ExtUtils::Mkbootstrap' => '1.14',
561 'ExtUtils::Mksymlists' => '1.16',
562 'File::Basename' => '2.6',
563 'File::DosGlob' => undef,
564 'File::Path' => '1.0402',
565 'File::Spec' => '0.6',
566 'File::Spec::Mac' => '1.0',
567 'File::Spec::OS2' => undef,
568 'File::Spec::Unix' => undef,
569 'File::Spec::VMS' => undef,
570 'File::Spec::Win32' => undef,
572 'Getopt::Long' => '2.19',
573 'IO::File' => '1.06021',
574 'IO::Socket' => '1.1603',
575 'IPC::Open3' => '1.0103',
576 'Math::Complex' => '1.25',
577 'NDBM_File' => '1.01',
578 'Pod::Html' => '1.0101',
579 'Pod::Text' => '1.0204',
580 'SelfLoader' => '1.08',
583 'Test::Harness' => '1.1602',
584 'Text::ParseWords' => '3.1001',
585 'Text::Wrap' => '98.112902',
586 'Tie::Handle' => undef,
597 delta_from => 5.00405,
599 'AutoLoader' => undef,
600 'AutoSplit' => '1.0302',
602 'B::Asmdata' => undef,
603 'B::Assembler' => undef,
604 'B::Bblock' => undef,
605 'B::Bytecode' => undef,
609 'B::Deparse' => '0.56',
610 'B::Disassembler' => undef,
612 'B::Showlex' => undef,
613 'B::Stackobj' => undef,
616 'CGI::Carp' => '1.101',
618 'CPAN::FirstTime' => '1.29',
620 'Data::Dumper' => '2.09',
622 'ExtUtils::Installed' => '0.02',
623 'ExtUtils::MM_Unix' => '1.12601',
624 'ExtUtils::MakeMaker' => '5.4301',
625 'ExtUtils::Mkbootstrap' => '1.13',
626 'ExtUtils::Mksymlists' => '1.17',
627 'ExtUtils::Packlist' => '0.03',
629 'File::Path' => '1.0401',
630 'Getopt::Long' => '2.17',
631 'IO::Handle' => '1.1505',
632 'IPC::Msg' => '1.00',
633 'IPC::Open3' => '1.0102',
634 'IPC::Semaphore' => '1.00',
635 'IPC::SysV' => '1.03',
637 'OS2::Process' => '0.2',
638 'Pod::Html' => '1.01',
639 'Pod::Text' => '1.0203',
640 'Text::ParseWords' => '3.1',
641 'Text::Wrap' => '97.02',
643 'Thread::Queue' => undef,
644 'Thread::Semaphore' => undef,
645 'Thread::Signal' => undef,
646 'Thread::Specific' => undef,
647 'Tie::Array' => '1.00',
648 'VMS::Stdio' => '2.1',
660 'AutoSplit' => '1.0303',
662 'CGI::Carp' => '1.13',
663 'CGI::Fast' => '1.01',
665 'CPAN::FirstTime' => '1.36',
666 'CPAN::Nox' => '1.00',
668 'Data::Dumper' => '2.101',
669 'Dumpvalue' => undef,
671 'ExtUtils::Install' => '1.28',
672 'ExtUtils::Liblist' => '1.25',
673 'ExtUtils::MM_Unix' => '1.12602',
674 'ExtUtils::MakeMaker' => '5.4302',
675 'ExtUtils::Manifest' => '1.33',
676 'ExtUtils::Mkbootstrap' => '1.14',
677 'ExtUtils::Mksymlists' => '1.17',
678 'ExtUtils::testlib' => '1.11',
680 'Getopt::Long' => '2.19',
681 'Getopt::Std' => '1.01',
682 'IO::Pipe' => '1.0902',
683 'IPC::Open3' => '1.0103',
684 'Math::Complex' => '1.26',
686 'Text::Wrap' => '98.112902',
692 delta_from => 5.00503,
694 'CPAN::FirstTime' => '1.36',
695 'DB_File' => '1.807',
696 'ExtUtils::Install' => '1.28',
697 'ExtUtils::Liblist' => '1.25',
698 'ExtUtils::MM_Unix' => '1.12602',
699 'ExtUtils::Manifest' => '1.33',
700 'ExtUtils::Miniperl' => undef,
701 'ExtUtils::Mkbootstrap' => '1.14',
702 'ExtUtils::Mksymlists' => '1.17',
703 'ExtUtils::testlib' => '1.11',
704 'File::Compare' => '1.1002',
705 'File::Spec' => '0.8',
706 'File::Spec::Functions' => undef,
707 'File::Spec::Mac' => undef,
708 'Getopt::Long' => '2.20',
709 'Pod::Html' => '1.02',
715 delta_from => 5.00504,
717 'AutoLoader' => '5.57',
718 'AutoSplit' => '1.0305',
719 'B::Deparse' => '0.59',
722 'ByteLoader' => '0.03',
724 'CGI::Apache' => undef,
725 'CGI::Carp' => '1.14',
726 'CGI::Cookie' => '1.12',
727 'CGI::Fast' => '1.02',
728 'CGI::Pretty' => '1.03',
729 'CGI::Switch' => undef,
731 'CPAN::FirstTime' => '1.38',
732 'Carp::Heavy' => undef,
733 'Class::Struct' => '0.58',
737 'Devel::DProf' => '20000000.00_00',
738 'Devel::Peek' => '1.00_01',
739 'DynaLoader' => '1.04',
740 'Exporter' => '5.562',
741 'Exporter::Heavy' => undef,
742 'ExtUtils::MM_Cygwin' => undef,
743 'ExtUtils::MM_Unix' => '1.12603',
744 'ExtUtils::MakeMaker' => '5.45',
745 'File::Copy' => '2.03',
746 'File::Glob' => '0.991',
747 'File::Path' => '1.0403',
748 'GDBM_File' => '1.03',
749 'Getopt::Long' => '2.23',
750 'Getopt::Std' => '1.02',
753 'IO::File' => '1.08',
754 'IO::Handle' => '1.21',
755 'IO::Pipe' => '1.121',
756 'IO::Poll' => '0.01',
757 'IO::Seekable' => '1.08',
758 'IO::Select' => '1.14',
759 'IO::Socket' => '1.26',
760 'IO::Socket::INET' => '1.25',
761 'IO::Socket::UNIX' => '1.20',
763 'JPL::AutoLoader' => undef,
764 'JPL::Class' => undef,
765 'JPL::Compile' => undef,
766 'NDBM_File' => '1.03',
767 'ODBM_File' => '1.02',
770 'Pod::Checker' => '1.098',
771 'Pod::Find' => '0.12',
772 'Pod::Html' => '1.03',
773 'Pod::InputObjects' => '1.12',
774 'Pod::Man' => '1.02',
775 'Pod::ParseUtils' => '0.2',
776 'Pod::Parser' => '1.12',
777 'Pod::Plainer' => '0.01',
778 'Pod::Select' => '1.12',
779 'Pod::Text' => '2.03',
780 'Pod::Text::Color' => '0.05',
781 'Pod::Text::Termcap' => '0.04',
782 'Pod::Usage' => '1.12',
783 'SDBM_File' => '1.02',
784 'SelfLoader' => '1.0901',
787 'Sys::Hostname' => '1.1',
788 'Sys::Syslog' => '0.01',
789 'Term::ANSIColor' => '1.01',
791 'Test::Harness' => '1.1604',
792 'Text::ParseWords' => '3.2',
793 'Text::Soundex' => '1.0',
794 'Text::Tabs' => '98.112801',
795 'Tie::Array' => '1.01',
796 'Tie::Handle' => '1.0',
797 'VMS::Stdio' => '2.2',
798 'XSLoader' => '0.01',
799 'attributes' => '0.03',
803 'charnames' => undef,
804 'constant' => '1.02',
805 'diagnostics' => '1.0',
812 'warnings::register' => undef,
820 'AutoLoader' => '5.58',
821 'B::Assembler' => '0.02',
822 'B::Concise' => '0.51',
823 'B::Deparse' => '0.6',
824 'ByteLoader' => '0.04',
826 'CGI::Carp' => '1.20',
827 'CGI::Cookie' => '1.18',
828 'CGI::Pretty' => '1.05',
829 'CGI::Push' => '1.04',
830 'CGI::Util' => '1.1',
832 'CPAN::FirstTime' => '1.53',
833 'Class::Struct' => '0.59',
836 'Data::Dumper' => '2.102',
837 'ExtUtils::Install' => '1.28',
838 'ExtUtils::Liblist' => '1.26',
839 'ExtUtils::MM_Unix' => '1.12603',
840 'ExtUtils::Manifest' => '1.33',
841 'ExtUtils::Mkbootstrap' => '1.14',
842 'ExtUtils::Mksymlists' => '1.17',
843 'ExtUtils::testlib' => '1.11',
844 'File::Path' => '1.0404',
845 'File::Spec' => '0.82',
846 'File::Spec::Epoc' => undef,
847 'File::Spec::Functions' => '1.1',
848 'File::Spec::Mac' => '1.2',
849 'File::Spec::OS2' => '1.1',
850 'File::Spec::Unix' => '1.2',
851 'File::Spec::VMS' => '1.1',
852 'File::Spec::Win32' => '1.2',
853 'File::Temp' => '0.12',
854 'GDBM_File' => '1.05',
855 'Getopt::Long' => '2.25',
856 'IO::Poll' => '0.05',
858 'Math::BigFloat' => '0.02',
859 'Math::BigInt' => '0.01',
860 'Math::Complex' => '1.31',
861 'NDBM_File' => '1.04',
862 'ODBM_File' => '1.03',
863 'OS2::REXX' => '1.00',
864 'Pod::Checker' => '1.2',
865 'Pod::Find' => '0.21',
866 'Pod::InputObjects' => '1.13',
867 'Pod::LaTeX' => '0.53',
868 'Pod::Man' => '1.15',
869 'Pod::ParseUtils' => '0.22',
870 'Pod::Parser' => '1.13',
871 'Pod::Select' => '1.13',
872 'Pod::Text' => '2.08',
873 'Pod::Text::Color' => '0.06',
874 'Pod::Text::Overstrike' => '1.01',
875 'Pod::Text::Termcap' => '1',
876 'Pod::Usage' => '1.14',
877 'SDBM_File' => '1.03',
878 'SelfLoader' => '1.0902',
880 'Term::ANSIColor' => '1.03',
882 'Text::Wrap' => '2001.0131',
883 'Tie::Handle' => '4.0',
884 'Tie::RefHash' => '1.3',
890 delta_from => 5.006001,
892 'CPAN::FirstTime' => '1.53',
893 'DB_File' => '1.806',
894 'Data::Dumper' => '2.121',
895 'ExtUtils::Command' => '1.05',
896 'ExtUtils::Command::MM' => '0.03',
897 'ExtUtils::Install' => '1.32',
898 'ExtUtils::Installed' => '0.08',
899 'ExtUtils::Liblist' => '1.01',
900 'ExtUtils::Liblist::Kid'=> '1.3',
901 'ExtUtils::MM' => '0.04',
902 'ExtUtils::MM_Any' => '0.07',
903 'ExtUtils::MM_BeOS' => '1.04',
904 'ExtUtils::MM_Cygwin' => '1.06',
905 'ExtUtils::MM_DOS' => '0.02',
906 'ExtUtils::MM_MacOS' => '1.07',
907 'ExtUtils::MM_NW5' => '2.06',
908 'ExtUtils::MM_OS2' => '1.04',
909 'ExtUtils::MM_UWIN' => '0.02',
910 'ExtUtils::MM_Unix' => '1.42',
911 'ExtUtils::MM_VMS' => '5.70',
912 'ExtUtils::MM_Win32' => '1.09',
913 'ExtUtils::MM_Win95' => '0.03',
914 'ExtUtils::MY' => '0.01',
915 'ExtUtils::MakeMaker' => '6.17',
916 'ExtUtils::MakeMaker::bytes'=> '0.01',
917 'ExtUtils::MakeMaker::vmsish'=> '0.01',
918 'ExtUtils::Manifest' => '1.42',
919 'ExtUtils::Mkbootstrap' => '1.15',
920 'ExtUtils::Mksymlists' => '1.19',
921 'ExtUtils::Packlist' => '0.04',
922 'ExtUtils::testlib' => '1.15',
923 'File::Spec' => '0.86',
924 'File::Spec::Cygwin' => '1.1',
925 'File::Spec::Epoc' => '1.1',
926 'File::Spec::Functions' => '1.3',
927 'File::Spec::Mac' => '1.4',
928 'File::Spec::OS2' => '1.2',
929 'File::Spec::Unix' => '1.5',
930 'File::Spec::VMS' => '1.4',
931 'File::Spec::Win32' => '1.4',
932 'File::Temp' => '0.14',
935 'Test::Builder' => '0.17',
936 'Test::Harness' => '2.30',
937 'Test::Harness::Assert' => '0.01',
938 'Test::Harness::Iterator'=> '0.01',
939 'Test::Harness::Straps' => '0.15',
940 'Test::More' => '0.47',
941 'Test::Simple' => '0.47',
942 'Unicode' => '3.0.1',
950 delta_from => 5.006001,
952 'AnyDBM_File' => '1.00',
953 'Attribute::Handlers' => '0.76',
954 'AutoLoader' => '5.59',
955 'AutoSplit' => '1.0307',
957 'B::Asmdata' => '1.00',
958 'B::Assembler' => '0.04',
959 'B::Bblock' => '1.00',
960 'B::Bytecode' => '1.00',
963 'B::Concise' => '0.52',
964 'B::Debug' => '1.00',
965 'B::Deparse' => '0.63',
966 'B::Disassembler' => '1.01',
968 'B::Showlex' => '1.00',
969 'B::Stackobj' => '1.00',
970 'B::Stash' => '1.00',
971 'B::Terse' => '1.00',
973 'Benchmark' => '1.04',
975 'CGI::Apache' => '1.00',
976 'CGI::Carp' => '1.22',
977 'CGI::Cookie' => '1.20',
978 'CGI::Fast' => '1.04',
979 'CGI::Pretty' => '1.05_00',
980 'CGI::Switch' => '1.00',
981 'CGI::Util' => '1.3',
983 'CPAN::FirstTime' => '1.54',
984 'CPAN::Nox' => '1.00_01',
986 'Carp::Heavy' => '1.01',
987 'Class::ISA' => '0.32',
988 'Class::Struct' => '0.61',
990 'DB_File' => '1.804',
991 'Data::Dumper' => '2.12',
992 'Devel::DProf' => '20000000.00_01',
993 'Devel::PPPort' => '2.0002',
994 'Devel::Peek' => '1.00_03',
995 'Devel::SelfStubber' => '1.03',
997 'Digest::MD5' => '2.16',
998 'DirHandle' => '1.00',
999 'Dumpvalue' => '1.10',
1001 'Encode::CN' => '0.02',
1002 'Encode::CN::HZ' => undef,
1003 'Encode::Encoding' => '0.02',
1004 'Encode::Internal' => '0.30',
1005 'Encode::JP' => '0.02',
1006 'Encode::JP::Constants' => '1.02',
1007 'Encode::JP::H2Z' => '0.77',
1008 'Encode::JP::ISO_2022_JP'=> undef,
1009 'Encode::JP::JIS' => undef,
1010 'Encode::JP::Tr' => '0.77',
1011 'Encode::KR' => '0.02',
1012 'Encode::TW' => '0.02',
1013 'Encode::Tcl' => '1.01',
1014 'Encode::Tcl::Escape' => '1.01',
1015 'Encode::Tcl::Extended' => '1.01',
1016 'Encode::Tcl::HanZi' => '1.01',
1017 'Encode::Tcl::Table' => '1.01',
1018 'Encode::Unicode' => '0.30',
1019 'Encode::XS' => '0.40',
1020 'Encode::iso10646_1' => '0.30',
1021 'Encode::usc2_le' => '0.30',
1022 'Encode::utf8' => '0.30',
1023 'English' => '1.00',
1025 'Exporter' => '5.566',
1026 'Exporter::Heavy' => '5.562',
1027 'ExtUtils::Command' => '1.02',
1028 'ExtUtils::Constant' => '0.11',
1029 'ExtUtils::Embed' => '1.250601',
1030 'ExtUtils::Install' => '1.29',
1031 'ExtUtils::Installed' => '0.04',
1032 'ExtUtils::Liblist' => '1.2701',
1033 'ExtUtils::MM_BeOS' => '1.00',
1034 'ExtUtils::MM_Cygwin' => '1.00',
1035 'ExtUtils::MM_OS2' => '1.00',
1036 'ExtUtils::MM_Unix' => '1.12607',
1037 'ExtUtils::MM_VMS' => '5.56',
1038 'ExtUtils::MM_Win32' => '1.00_02',
1039 'ExtUtils::MakeMaker' => '5.48_03',
1040 'ExtUtils::Manifest' => '1.35',
1041 'ExtUtils::Mkbootstrap' => '1.1401',
1042 'ExtUtils::Mksymlists' => '1.18',
1043 'ExtUtils::Packlist' => '0.04',
1044 'ExtUtils::testlib' => '1.1201',
1047 'File::Basename' => '2.71',
1048 'File::CheckTree' => '4.1',
1049 'File::Compare' => '1.1003',
1050 'File::Copy' => '2.05',
1051 'File::DosGlob' => '1.00',
1052 'File::Find' => '1.04',
1053 'File::Glob' => '1.01',
1054 'File::Path' => '1.05',
1055 'File::Spec' => '0.83',
1056 'File::Spec::Cygwin' => '1.0',
1057 'File::Spec::Epoc' => '1.00',
1058 'File::Spec::Functions' => '1.2',
1059 'File::Spec::Mac' => '1.3',
1060 'File::Spec::Unix' => '1.4',
1061 'File::Spec::VMS' => '1.2',
1062 'File::Spec::Win32' => '1.3',
1063 'File::Temp' => '0.13',
1064 'File::stat' => '1.00',
1065 'FileCache' => '1.00',
1066 'FileHandle' => '2.01',
1067 'Filter::Simple' => '0.77',
1068 'Filter::Util::Call' => '1.06',
1069 'FindBin' => '1.43',
1070 'GDBM_File' => '1.06',
1071 'Getopt::Long' => '2.28',
1072 'Getopt::Std' => '1.03',
1073 'I18N::Collate' => '1.00',
1074 'I18N::LangTags' => '0.27',
1075 'I18N::LangTags::List' => '0.25',
1076 'I18N::Langinfo' => '0.01',
1077 'IO::Dir' => '1.03_00',
1078 'IO::File' => '1.09',
1079 'IO::Handle' => '1.21_00',
1080 'IO::Pipe' => '1.122',
1081 'IO::Poll' => '0.06',
1082 'IO::Seekable' => '1.08_00',
1083 'IO::Select' => '1.15',
1084 'IO::Socket' => '1.27',
1085 'IO::Socket::INET' => '1.26',
1086 'IO::Socket::UNIX' => '1.20_00',
1087 'IPC::Msg' => '1.00_00',
1088 'IPC::Open3' => '1.0104',
1089 'IPC::Semaphore' => '1.00_00',
1090 'IPC::SysV' => '1.03_00',
1091 'List::Util' => '1.06_00',
1092 'Locale::Constants' => '2.01',
1093 'Locale::Country' => '2.01',
1094 'Locale::Currency' => '2.01',
1095 'Locale::Language' => '2.01',
1096 'Locale::Maketext' => '1.03',
1097 'Locale::Script' => '2.01',
1098 'MIME::Base64' => '2.12',
1099 'MIME::QuotedPrint' => '2.03',
1100 'Math::BigFloat' => '1.30',
1101 'Math::BigInt' => '1.54',
1102 'Math::BigInt::Calc' => '0.25',
1103 'Math::Complex' => '1.34',
1104 'Math::Trig' => '1.01',
1105 'Memoize' => '0.66',
1106 'Memoize::AnyDBM_File' => '0.65',
1107 'Memoize::Expire' => '0.66',
1108 'Memoize::ExpireFile' => '0.65',
1109 'Memoize::ExpireTest' => '0.65',
1110 'Memoize::NDBM_File' => '0.65',
1111 'Memoize::SDBM_File' => '0.65',
1112 'Memoize::Storable' => '0.65',
1114 'Net::Cmd' => '2.21',
1115 'Net::Config' => '1.10',
1116 'Net::Domain' => '2.17',
1117 'Net::FTP' => '2.64',
1118 'Net::FTP::A' => '1.15',
1119 'Net::FTP::E' => '0.01',
1120 'Net::FTP::I' => '1.12',
1121 'Net::FTP::L' => '0.01',
1122 'Net::FTP::dataconn' => '0.10',
1123 'Net::NNTP' => '2.21',
1124 'Net::Netrc' => '2.12',
1125 'Net::POP3' => '2.23',
1126 'Net::Ping' => '2.12',
1127 'Net::SMTP' => '2.21',
1128 'Net::Time' => '2.09',
1129 'Net::hostent' => '1.00',
1130 'Net::netent' => '1.00',
1131 'Net::protoent' => '1.00',
1132 'Net::servent' => '1.00',
1134 'OS2::DLL' => '1.00',
1135 'OS2::Process' => '1.0',
1136 'OS2::REXX' => '1.01',
1140 'PerlIO::Scalar' => '0.01',
1141 'PerlIO::Via' => '0.01',
1142 'Pod::Checker' => '1.3',
1143 'Pod::Find' => '0.22',
1144 'Pod::Functions' => '1.01',
1145 'Pod::Html' => '1.04',
1146 'Pod::LaTeX' => '0.54',
1147 'Pod::Man' => '1.32',
1148 'Pod::ParseLink' => '1.05',
1149 'Pod::Text' => '2.18',
1150 'Pod::Text::Color' => '1.03',
1151 'Pod::Text::Overstrike' => '1.08',
1152 'Pod::Text::Termcap' => '1.09',
1154 'Scalar::Util' => '1.06_00',
1155 'Search::Dict' => '1.02',
1156 'SelectSaver' => '1.00',
1157 'SelfLoader' => '1.0903',
1160 'Storable' => '1.015',
1163 'Sys::Syslog' => '0.02',
1164 'Term::ANSIColor' => '1.04',
1165 'Term::Cap' => '1.07',
1166 'Term::Complete' => '1.4',
1167 'Term::ReadLine' => '1.00',
1169 'Test::Builder' => '0.11',
1170 'Test::Harness' => '2.01',
1171 'Test::Harness::Assert' => '0.01',
1172 'Test::Harness::Iterator'=> '0.01',
1173 'Test::Harness::Straps' => '0.08',
1174 'Test::More' => '0.41',
1175 'Test::Simple' => '0.41',
1176 'Text::Abbrev' => '1.00',
1177 'Text::Balanced' => '1.89',
1178 'Text::ParseWords' => '3.21',
1179 'Text::Soundex' => '1.01',
1180 'Text::Wrap' => '2001.0929',
1182 'Thread::Queue' => '1.00',
1183 'Thread::Semaphore' => '1.00',
1184 'Thread::Signal' => '1.00',
1185 'Thread::Specific' => '1.00',
1186 'Tie::Array' => '1.02',
1187 'Tie::File' => '0.17',
1188 'Tie::Handle' => '4.1',
1189 'Tie::Hash' => '1.00',
1190 'Tie::Memoize' => '1.0',
1191 'Tie::RefHash' => '1.3_00',
1192 'Tie::Scalar' => '1.00',
1193 'Tie::SubstrHash' => '1.00',
1194 'Time::HiRes' => '1.20_00',
1195 'Time::Local' => '1.04',
1196 'Time::gmtime' => '1.02',
1197 'Time::localtime' => '1.02',
1198 'Time::tm' => '1.00',
1199 'UNIVERSAL' => '1.00',
1200 'Unicode::Collate' => '0.10',
1201 'Unicode::Normalize' => '0.14',
1202 'Unicode::UCD' => '0.2',
1203 'User::grent' => '1.00',
1204 'User::pwent' => '1.00',
1205 'VMS::DCLsym' => '1.02',
1206 'VMS::Filespec' => '1.1',
1207 'VMS::Stdio' => '2.3',
1208 'XS::Typemap' => '0.01',
1209 'attributes' => '0.04_01',
1211 'autouse' => '1.03',
1215 'charnames' => '1.01',
1216 'constant' => '1.04',
1217 'diagnostics' => '1.1',
1218 'encoding' => '1.00',
1220 'filetest' => '1.00',
1222 'integer' => '1.00',
1227 'overload' => '1.00',
1232 'threads' => '0.05',
1233 'threads::shared' => '0.90',
1237 'warnings' => '1.00',
1238 'warnings::register' => '1.00',
1244 delta_from => 5.007003,
1246 'Attribute::Handlers' => '0.77',
1248 'B::Lint' => '1.01',
1249 'B::Xref' => '1.01',
1251 'CGI::Carp' => '1.23',
1253 'CPAN::FirstTime' => '1.56',
1254 'CPAN::Nox' => '1.02',
1255 'Digest::MD5' => '2.20',
1256 'Dumpvalue' => '1.11',
1258 'Encode::Alias' => '1.32',
1259 'Encode::Byte' => '1.22',
1260 'Encode::CJKConstants' => '1.00',
1261 'Encode::CN' => '1.24',
1262 'Encode::CN::HZ' => '1.04',
1263 'Encode::Config' => '1.06',
1264 'Encode::EBCDIC' => '1.21',
1265 'Encode::Encoder' => '0.05',
1266 'Encode::Encoding' => '1.30',
1267 'Encode::Guess' => '1.06',
1268 'Encode::JP' => '1.25',
1269 'Encode::JP::H2Z' => '1.02',
1270 'Encode::JP::JIS7' => '1.08',
1271 'Encode::KR' => '1.22',
1272 'Encode::KR::2022_KR' => '1.05',
1273 'Encode::MIME::Header' => '1.05',
1274 'Encode::Symbol' => '1.22',
1275 'Encode::TW' => '1.26',
1276 'Encode::Unicode' => '1.37',
1277 'Exporter::Heavy' => '5.566',
1278 'ExtUtils::Command' => '1.04',
1279 'ExtUtils::Command::MM' => '0.01',
1280 'ExtUtils::Constant' => '0.12',
1281 'ExtUtils::Installed' => '0.06',
1282 'ExtUtils::Liblist' => '1.00',
1283 'ExtUtils::Liblist::Kid'=> '1.29',
1284 'ExtUtils::MM' => '0.04',
1285 'ExtUtils::MM_Any' => '0.04',
1286 'ExtUtils::MM_BeOS' => '1.03',
1287 'ExtUtils::MM_Cygwin' => '1.04',
1288 'ExtUtils::MM_DOS' => '0.01',
1289 'ExtUtils::MM_MacOS' => '1.03',
1290 'ExtUtils::MM_NW5' => '2.05',
1291 'ExtUtils::MM_OS2' => '1.03',
1292 'ExtUtils::MM_UWIN' => '0.01',
1293 'ExtUtils::MM_Unix' => '1.33',
1294 'ExtUtils::MM_VMS' => '5.65',
1295 'ExtUtils::MM_Win32' => '1.05',
1296 'ExtUtils::MM_Win95' => '0.02',
1297 'ExtUtils::MY' => '0.01',
1298 'ExtUtils::MakeMaker' => '6.03',
1299 'ExtUtils::Manifest' => '1.38',
1300 'ExtUtils::Mkbootstrap' => '1.15',
1301 'ExtUtils::Mksymlists' => '1.19',
1302 'ExtUtils::testlib' => '1.15',
1303 'File::CheckTree' => '4.2',
1304 'FileCache' => '1.021',
1305 'Filter::Simple' => '0.78',
1306 'Getopt::Long' => '2.32',
1307 'Hash::Util' => '0.04',
1308 'List::Util' => '1.07_00',
1309 'Locale::Country' => '2.04',
1310 'Math::BigFloat' => '1.35',
1311 'Math::BigFloat::Trace' => '0.01',
1312 'Math::BigInt' => '1.60',
1313 'Math::BigInt::Calc' => '0.30',
1314 'Math::BigInt::Trace' => '0.01',
1315 'Math::BigRat' => '0.07',
1316 'Memoize' => '1.01',
1317 'Memoize::Expire' => '1.00',
1318 'Memoize::ExpireFile' => '1.01',
1319 'Net::FTP' => '2.65',
1320 'Net::FTP::dataconn' => '0.11',
1321 'Net::Ping' => '2.19',
1322 'Net::SMTP' => '2.24',
1324 'PerlIO::encoding' => '0.06',
1325 'PerlIO::scalar' => '0.01',
1326 'PerlIO::via' => '0.01',
1327 'PerlIO::via::QuotedPrint'=> '0.04',
1328 'Pod::Man' => '1.33',
1329 'Pod::Text' => '2.19',
1330 'Scalar::Util' => '1.07_00',
1331 'Storable' => '2.04',
1333 'Sys::Syslog' => '0.03',
1335 'Test::Builder' => '0.15',
1336 'Test::Harness' => '2.26',
1337 'Test::Harness::Straps' => '0.14',
1338 'Test::More' => '0.45',
1339 'Test::Simple' => '0.45',
1340 'Thread::Queue' => '2.00',
1341 'Thread::Semaphore' => '2.00',
1342 'Tie::File' => '0.93',
1343 'Tie::RefHash' => '1.30',
1344 'Unicode' => '3.2.0',
1345 'Unicode::Collate' => '0.12',
1346 'Unicode::Normalize' => '0.17',
1347 'XS::APItest' => '0.01',
1348 'attributes' => '0.05',
1354 'encoding' => '1.35',
1356 'threads' => '0.99',
1359 'Encode::Internal' => 1,
1360 'Encode::JP::Constants' => 1,
1361 'Encode::JP::ISO_2022_JP'=> 1,
1362 'Encode::JP::JIS' => 1,
1363 'Encode::JP::Tr' => 1,
1365 'Encode::Tcl::Escape' => 1,
1366 'Encode::Tcl::Extended' => 1,
1367 'Encode::Tcl::HanZi' => 1,
1368 'Encode::Tcl::Table' => 1,
1370 'Encode::iso10646_1' => 1,
1371 'Encode::usc2_le' => 1,
1372 'Encode::utf8' => 1,
1373 'PerlIO::Scalar' => 1,
1378 delta_from => 5.008,
1380 'Attribute::Handlers' => '0.78',
1381 'AutoLoader' => '5.60',
1382 'AutoSplit' => '1.04',
1384 'B::Asmdata' => '1.01',
1385 'B::Assembler' => '0.06',
1386 'B::Bblock' => '1.02',
1387 'B::Bytecode' => '1.01',
1389 'B::Concise' => '0.56',
1390 'B::Debug' => '1.01',
1391 'B::Deparse' => '0.64',
1392 'B::Disassembler' => '1.03',
1393 'B::Lint' => '1.02',
1394 'B::Terse' => '1.02',
1395 'Benchmark' => '1.051',
1396 'ByteLoader' => '0.05',
1398 'CGI::Carp' => '1.26',
1399 'CGI::Cookie' => '1.24',
1400 'CGI::Fast' => '1.041',
1401 'CGI::Pretty' => '1.07_00',
1402 'CGI::Util' => '1.31',
1403 'CPAN' => '1.76_01',
1404 'CPAN::FirstTime' => '1.60',
1405 'CPAN::Nox' => '1.03',
1406 'Class::Struct' => '0.63',
1408 'DB_File' => '1.806',
1409 'Data::Dumper' => '2.121',
1410 'Devel::DProf' => '20030813.00',
1411 'Devel::PPPort' => '2.007',
1412 'Devel::Peek' => '1.01',
1414 'Digest::MD5' => '2.27',
1415 'Encode' => '1.9801',
1416 'Encode::Alias' => '1.38',
1417 'Encode::Byte' => '1.23',
1418 'Encode::CJKConstants' => '1.02',
1419 'Encode::CN::HZ' => '1.05',
1420 'Encode::Config' => '1.07',
1421 'Encode::Encoder' => '0.07',
1422 'Encode::Encoding' => '1.33',
1423 'Encode::Guess' => '1.09',
1424 'Encode::JP::JIS7' => '1.12',
1425 'Encode::KR' => '1.23',
1426 'Encode::KR::2022_KR' => '1.06',
1427 'Encode::MIME::Header' => '1.09',
1428 'Encode::Unicode' => '1.40',
1429 'Encode::Unicode::UTF7' => '0.02',
1430 'English' => '1.01',
1431 'Errno' => '1.09_00',
1432 'Exporter' => '5.567',
1433 'Exporter::Heavy' => '5.567',
1434 'ExtUtils::Command' => '1.05',
1435 'ExtUtils::Command::MM' => '0.03',
1436 'ExtUtils::Constant' => '0.14',
1437 'ExtUtils::Install' => '1.32',
1438 'ExtUtils::Installed' => '0.08',
1439 'ExtUtils::Liblist' => '1.01',
1440 'ExtUtils::Liblist::Kid'=> '1.3',
1441 'ExtUtils::MM_Any' => '0.07',
1442 'ExtUtils::MM_BeOS' => '1.04',
1443 'ExtUtils::MM_Cygwin' => '1.06',
1444 'ExtUtils::MM_DOS' => '0.02',
1445 'ExtUtils::MM_MacOS' => '1.07',
1446 'ExtUtils::MM_NW5' => '2.06',
1447 'ExtUtils::MM_OS2' => '1.04',
1448 'ExtUtils::MM_UWIN' => '0.02',
1449 'ExtUtils::MM_Unix' => '1.42',
1450 'ExtUtils::MM_VMS' => '5.70',
1451 'ExtUtils::MM_Win32' => '1.09',
1452 'ExtUtils::MM_Win95' => '0.03',
1453 'ExtUtils::MakeMaker' => '6.17',
1454 'ExtUtils::MakeMaker::bytes'=> '0.01',
1455 'ExtUtils::MakeMaker::vmsish'=> '0.01',
1456 'ExtUtils::Manifest' => '1.42',
1458 'File::Basename' => '2.72',
1459 'File::Copy' => '2.06',
1460 'File::Find' => '1.05',
1461 'File::Glob' => '1.02',
1462 'File::Path' => '1.06',
1463 'File::Spec' => '0.86',
1464 'File::Spec::Cygwin' => '1.1',
1465 'File::Spec::Epoc' => '1.1',
1466 'File::Spec::Functions' => '1.3',
1467 'File::Spec::Mac' => '1.4',
1468 'File::Spec::OS2' => '1.2',
1469 'File::Spec::Unix' => '1.5',
1470 'File::Spec::VMS' => '1.4',
1471 'File::Spec::Win32' => '1.4',
1472 'File::Temp' => '0.14',
1473 'FileCache' => '1.03',
1474 'Filter::Util::Call' => '1.0601',
1475 'GDBM_File' => '1.07',
1476 'Getopt::Long' => '2.34',
1477 'Getopt::Std' => '1.04',
1478 'Hash::Util' => '0.05',
1479 'I18N::LangTags' => '0.28',
1480 'I18N::LangTags::List' => '0.26',
1481 'I18N::Langinfo' => '0.02',
1483 'IO::Dir' => '1.04',
1484 'IO::File' => '1.10',
1485 'IO::Handle' => '1.23',
1486 'IO::Seekable' => '1.09',
1487 'IO::Select' => '1.16',
1488 'IO::Socket' => '1.28',
1489 'IO::Socket::INET' => '1.27',
1490 'IO::Socket::UNIX' => '1.21',
1491 'IPC::Msg' => '1.02',
1492 'IPC::Open3' => '1.0105',
1493 'IPC::Semaphore' => '1.02',
1494 'IPC::SysV' => '1.04',
1496 'List::Util' => '1.13',
1497 'Locale::Country' => '2.61',
1498 'Locale::Currency' => '2.21',
1499 'Locale::Language' => '2.21',
1500 'Locale::Maketext' => '1.06',
1501 'Locale::Maketext::Guts'=> undef,
1502 'Locale::Maketext::GutsLoader'=> undef,
1503 'Locale::Script' => '2.21',
1504 'MIME::Base64' => '2.20',
1505 'MIME::QuotedPrint' => '2.20',
1506 'Math::BigFloat' => '1.40',
1507 'Math::BigInt' => '1.66',
1508 'Math::BigInt::Calc' => '0.36',
1509 'Math::BigInt::Scalar' => '0.11',
1510 'Math::BigRat' => '0.10',
1511 'Math::Trig' => '1.02',
1512 'NDBM_File' => '1.05',
1514 'Net::Cmd' => '2.24',
1515 'Net::Domain' => '2.18',
1516 'Net::FTP' => '2.71',
1517 'Net::FTP::A' => '1.16',
1518 'Net::NNTP' => '2.22',
1519 'Net::POP3' => '2.24',
1520 'Net::Ping' => '2.31',
1521 'Net::SMTP' => '2.26',
1522 'Net::hostent' => '1.01',
1523 'Net::servent' => '1.01',
1524 'ODBM_File' => '1.04',
1525 'OS2::DLL' => '1.01',
1526 'OS2::ExtAttr' => '0.02',
1527 'OS2::PrfDB' => '0.03',
1528 'OS2::Process' => '1.01',
1529 'OS2::REXX' => '1.02',
1532 'PerlIO::encoding' => '0.07',
1533 'PerlIO::scalar' => '0.02',
1534 'PerlIO::via' => '0.02',
1535 'PerlIO::via::QuotedPrint'=> '0.05',
1536 'Pod::Checker' => '1.41',
1537 'Pod::Find' => '0.24',
1538 'Pod::Functions' => '1.02',
1539 'Pod::Html' => '1.0501',
1540 'Pod::InputObjects' => '1.14',
1541 'Pod::LaTeX' => '0.55',
1542 'Pod::Man' => '1.37',
1543 'Pod::ParseLink' => '1.06',
1544 'Pod::ParseUtils' => '0.3',
1545 'Pod::Perldoc' => '3.10',
1546 'Pod::Perldoc::BaseTo' => undef,
1547 'Pod::Perldoc::GetOptsOO'=> undef,
1548 'Pod::Perldoc::ToChecker'=> undef,
1549 'Pod::Perldoc::ToMan' => undef,
1550 'Pod::Perldoc::ToNroff' => undef,
1551 'Pod::Perldoc::ToPod' => undef,
1552 'Pod::Perldoc::ToRtf' => undef,
1553 'Pod::Perldoc::ToText' => undef,
1554 'Pod::Perldoc::ToTk' => undef,
1555 'Pod::Perldoc::ToXml' => undef,
1556 'Pod::PlainText' => '2.01',
1557 'Pod::Text' => '2.21',
1558 'Pod::Text::Color' => '1.04',
1559 'Pod::Text::Overstrike' => '1.1',
1560 'Pod::Text::Termcap' => '1.11',
1561 'Pod::Usage' => '1.16',
1562 'SDBM_File' => '1.04',
1564 'Scalar::Util' => '1.13',
1565 'SelfLoader' => '1.0904',
1568 'Storable' => '2.08',
1571 'Sys::Hostname' => '1.11',
1572 'Sys::Syslog' => '0.04',
1573 'Term::ANSIColor' => '1.07',
1574 'Term::Cap' => '1.08',
1575 'Term::Complete' => '1.401',
1576 'Term::ReadLine' => '1.01',
1578 'Test::Builder' => '0.17',
1579 'Test::Harness' => '2.30',
1580 'Test::Harness::Straps' => '0.15',
1581 'Test::More' => '0.47',
1582 'Test::Simple' => '0.47',
1583 'Text::Abbrev' => '1.01',
1584 'Text::Balanced' => '1.95',
1585 'Text::Wrap' => '2001.09291',
1586 'Thread::Semaphore' => '2.01',
1587 'Tie::Array' => '1.03',
1588 'Tie::File' => '0.97',
1589 'Tie::RefHash' => '1.31',
1590 'Time::HiRes' => '1.51',
1591 'Time::Local' => '1.07',
1592 'UNIVERSAL' => '1.01',
1593 'Unicode' => '4.0.0',
1594 'Unicode::Collate' => '0.28',
1595 'Unicode::Normalize' => '0.23',
1596 'Unicode::UCD' => '0.21',
1597 'VMS::Filespec' => '1.11',
1598 'XS::APItest' => '0.02',
1599 'XSLoader' => '0.02',
1600 'attributes' => '0.06',
1606 'charnames' => '1.02',
1607 'diagnostics' => '1.11',
1608 'encoding' => '1.47',
1610 'filetest' => '1.01',
1614 'overload' => '1.01',
1618 'threads' => '1.00',
1619 'threads::shared' => '0.91',
1622 'warnings' => '1.03',
1628 delta_from => 5.008001,
1630 'DB_File' => '1.807',
1631 'Devel::PPPort' => '2.009',
1632 'Digest::MD5' => '2.30',
1633 'I18N::LangTags' => '0.29',
1634 'I18N::LangTags::List' => '0.29',
1635 'MIME::Base64' => '2.21',
1636 'MIME::QuotedPrint' => '2.21',
1637 'Net::Domain' => '2.19',
1638 'Net::FTP' => '2.72',
1639 'Pod::Perldoc' => '3.11',
1640 'Time::HiRes' => '1.52',
1641 'Unicode::Collate' => '0.30',
1642 'Unicode::Normalize' => '0.25',
1648 delta_from => 5.008002,
1650 'Benchmark' => '1.052',
1652 'CGI::Carp' => '1.27',
1653 'CGI::Fast' => '1.05',
1654 'CGI::Pretty' => '1.08',
1655 'CGI::Util' => '1.4',
1657 'DB_File' => '1.808',
1658 'Devel::PPPort' => '2.011',
1660 'Digest::MD5' => '2.33',
1661 'Digest::base' => '1.00',
1663 'Exporter' => '5.57',
1664 'File::CheckTree' => '4.3',
1665 'File::Copy' => '2.07',
1666 'File::Find' => '1.06',
1667 'File::Spec' => '0.87',
1668 'FindBin' => '1.44',
1669 'Getopt::Std' => '1.05',
1670 'Math::BigFloat' => '1.42',
1671 'Math::BigInt' => '1.68',
1672 'Math::BigInt::Calc' => '0.38',
1673 'Math::BigInt::CalcEmu' => '0.02',
1674 'OS2::DLL' => '1.02',
1677 'PerlIO::via::QuotedPrint'=> '0.06',
1678 'Pod::Html' => '1.0502',
1679 'Pod::Parser' => '1.14',
1680 'Pod::Perldoc' => '3.12',
1681 'Pod::PlainText' => '2.02',
1682 'Storable' => '2.09',
1683 'Test::Harness' => '2.40',
1684 'Test::Harness::Assert' => '0.02',
1685 'Test::Harness::Iterator'=> '0.02',
1686 'Test::Harness::Straps' => '0.19',
1687 'Tie::Hash' => '1.01',
1688 'Unicode::Collate' => '0.33',
1689 'Unicode::Normalize' => '0.28',
1690 'XS::APItest' => '0.03',
1692 'diagnostics' => '1.12',
1693 'encoding' => '1.48',
1694 'threads' => '1.01',
1695 'threads::shared' => '0.92',
1698 'Math::BigInt::Scalar' => 1,
1702 delta_from => 5.008003,
1704 'Attribute::Handlers' => '0.78_01',
1705 'B::Assembler' => '0.07',
1706 'B::Concise' => '0.60',
1707 'B::Deparse' => '0.66',
1708 'Benchmark' => '1.06',
1712 'DBM_Filter' => '0.01',
1713 'DBM_Filter::compress' => '0.01',
1714 'DBM_Filter::encode' => '0.01',
1715 'DBM_Filter::int32' => '0.01',
1716 'DBM_Filter::null' => '0.01',
1717 'DBM_Filter::utf8' => '0.01',
1719 'DynaLoader' => '1.05',
1720 'Encode' => '1.99_01',
1721 'Encode::CN::HZ' => '1.0501',
1722 'Exporter' => '5.58',
1723 'Exporter::Heavy' => '5.57',
1724 'ExtUtils::Liblist::Kid'=> '1.3001',
1725 'ExtUtils::MM_NW5' => '2.07_02',
1726 'ExtUtils::MM_Win95' => '0.0301',
1727 'File::Find' => '1.07',
1728 'IO::Handle' => '1.24',
1729 'IO::Pipe' => '1.123',
1730 'IPC::Open3' => '1.0106',
1731 'Locale::Maketext' => '1.08',
1732 'MIME::Base64' => '3.01',
1733 'MIME::QuotedPrint' => '3.01',
1734 'Math::BigFloat' => '1.44',
1735 'Math::BigInt' => '1.70',
1736 'Math::BigInt::Calc' => '0.40',
1737 'Math::BigInt::CalcEmu' => '0.04',
1738 'Math::BigRat' => '0.12',
1739 'ODBM_File' => '1.05',
1743 'Storable' => '2.12',
1744 'Sys::Syslog' => '0.05',
1745 'Term::ANSIColor' => '1.08',
1746 'Time::HiRes' => '1.59',
1747 'Unicode' => '4.0.1',
1748 'Unicode::UCD' => '0.22',
1753 'charnames' => '1.03',
1755 'threads' => '1.03',
1762 delta_from => 5.008004,
1764 'B::Concise' => '0.61',
1765 'B::Deparse' => '0.67',
1767 'CGI::Carp' => '1.28',
1768 'CGI::Util' => '1.5',
1770 'Carp::Heavy' => '1.03',
1772 'DB_File' => '1.809',
1775 'Encode::Alias' => '2.00',
1776 'Encode::Byte' => '2.00',
1777 'Encode::CJKConstants' => '2.00',
1778 'Encode::CN' => '2.00',
1779 'Encode::CN::HZ' => '2.01',
1780 'Encode::Config' => '2.00',
1781 'Encode::EBCDIC' => '2.00',
1782 'Encode::Encoder' => '2.00',
1783 'Encode::Encoding' => '2.00',
1784 'Encode::Guess' => '2.00',
1785 'Encode::JP' => '2.00',
1786 'Encode::JP::H2Z' => '2.00',
1787 'Encode::JP::JIS7' => '2.00',
1788 'Encode::KR' => '2.00',
1789 'Encode::KR::2022_KR' => '2.00',
1790 'Encode::MIME::Header' => '2.00',
1791 'Encode::Symbol' => '2.00',
1792 'Encode::TW' => '2.00',
1793 'Encode::Unicode' => '2.00',
1794 'Encode::Unicode::UTF7' => '2.01',
1795 'File::Basename' => '2.73',
1796 'File::Copy' => '2.08',
1797 'File::Glob' => '1.03',
1798 'FileCache' => '1.04_01',
1799 'I18N::LangTags' => '0.33',
1800 'I18N::LangTags::Detect'=> '1.03',
1801 'List::Util' => '1.14',
1802 'Locale::Constants' => '2.07',
1803 'Locale::Country' => '2.07',
1804 'Locale::Currency' => '2.07',
1805 'Locale::Language' => '2.07',
1806 'Locale::Maketext' => '1.09',
1807 'Locale::Script' => '2.07',
1808 'Net::Cmd' => '2.26',
1809 'Net::FTP' => '2.75',
1810 'Net::NNTP' => '2.23',
1811 'Net::POP3' => '2.28',
1812 'Net::SMTP' => '2.29',
1813 'Net::Time' => '2.10',
1814 'Pod::Checker' => '1.42',
1815 'Pod::Find' => '0.2401',
1816 'Pod::LaTeX' => '0.56',
1817 'Pod::ParseUtils' => '1.2',
1818 'Pod::Perldoc' => '3.13',
1820 'Scalar::Util' => '1.14',
1822 'Storable' => '2.13',
1823 'Term::Cap' => '1.09',
1825 'Test::Harness' => '2.42',
1826 'Text::ParseWords' => '3.22',
1827 'Text::Wrap' => '2001.09292',
1828 'Time::Local' => '1.10',
1829 'Unicode::Collate' => '0.40',
1830 'Unicode::Normalize' => '0.30',
1831 'XS::APItest' => '0.04',
1832 'autouse' => '1.04',
1834 'charnames' => '1.04',
1835 'diagnostics' => '1.13',
1836 'encoding' => '2.00',
1837 'threads' => '1.05',
1844 delta_from => 5.008005,
1848 'B::Concise' => '0.64',
1849 'B::Debug' => '1.02',
1850 'B::Deparse' => '0.69',
1851 'B::Lint' => '1.03',
1852 'B::Showlex' => '1.02',
1854 'DB_File' => '1.810',
1855 'Data::Dumper' => '2.121_02',
1856 'Devel::PPPort' => '3.03',
1857 'Devel::Peek' => '1.02',
1859 'Encode::Alias' => '2.02',
1860 'Encode::Encoding' => '2.02',
1861 'Encode::JP' => '2.01',
1862 'Encode::Unicode' => '2.02',
1863 'Exporter::Heavy' => '5.58',
1864 'ExtUtils::Constant' => '0.1401',
1865 'File::Spec' => '3.01',
1866 'File::Spec::Win32' => '1.5',
1867 'I18N::LangTags' => '0.35',
1868 'I18N::LangTags::List' => '0.35',
1869 'MIME::Base64' => '3.05',
1870 'MIME::QuotedPrint' => '3.03',
1871 'Math::BigFloat' => '1.47',
1872 'Math::BigInt' => '1.73',
1873 'Math::BigInt::Calc' => '0.43',
1874 'Math::BigRat' => '0.13',
1875 'Text::ParseWords' => '3.23',
1876 'Time::HiRes' => '1.65',
1877 'XS::APItest' => '0.05',
1878 'diagnostics' => '1.14',
1879 'encoding' => '2.01',
1881 'overload' => '1.02',
1887 delta_from => 5.008006,
1890 'B::Concise' => '0.65',
1891 'B::Deparse' => '0.7',
1892 'B::Disassembler' => '1.04',
1893 'B::Terse' => '1.03',
1894 'Benchmark' => '1.07',
1896 'CGI::Carp' => '1.29',
1897 'CGI::Cookie' => '1.25',
1899 'Carp::Heavy' => '1.04',
1900 'Class::ISA' => '0.33',
1902 'DB_File' => '1.811',
1903 'Data::Dumper' => '2.121_04',
1904 'Devel::DProf' => '20050310.00',
1905 'Devel::PPPort' => '3.06',
1907 'Digest::file' => '0.01',
1909 'Encode::Alias' => '2.03',
1910 'Errno' => '1.09_01',
1911 'ExtUtils::Constant' => '0.16',
1912 'ExtUtils::Constant::Base'=> '0.01',
1913 'ExtUtils::Constant::Utils'=> '0.01',
1914 'ExtUtils::Constant::XS'=> '0.01',
1915 'File::Find' => '1.09',
1916 'File::Glob' => '1.04',
1917 'File::Path' => '1.07',
1918 'File::Spec' => '3.05',
1919 'File::Temp' => '0.16',
1920 'FileCache' => '1.05',
1921 'IO::File' => '1.11',
1922 'IO::Socket::INET' => '1.28',
1923 'Math::BigFloat' => '1.51',
1924 'Math::BigInt' => '1.77',
1925 'Math::BigInt::Calc' => '0.47',
1926 'Math::BigInt::CalcEmu' => '0.05',
1927 'Math::BigRat' => '0.15',
1928 'Pod::Find' => '1.3',
1929 'Pod::Html' => '1.0503',
1930 'Pod::InputObjects' => '1.3',
1931 'Pod::LaTeX' => '0.58',
1932 'Pod::ParseUtils' => '1.3',
1933 'Pod::Parser' => '1.3',
1934 'Pod::Perldoc' => '3.14',
1935 'Pod::Select' => '1.3',
1936 'Pod::Usage' => '1.3',
1937 'SelectSaver' => '1.01',
1939 'Sys::Syslog' => '0.06',
1940 'Term::ANSIColor' => '1.09',
1941 'Term::Complete' => '1.402',
1942 'Test::Builder' => '0.22',
1943 'Test::Harness' => '2.48',
1944 'Test::Harness::Point' => '0.01',
1945 'Test::Harness::Straps' => '0.23',
1946 'Test::More' => '0.54',
1947 'Test::Simple' => '0.54',
1948 'Text::ParseWords' => '3.24',
1949 'Text::Wrap' => '2001.09293',
1950 'Tie::RefHash' => '1.32',
1951 'Time::HiRes' => '1.66',
1952 'Time::Local' => '1.11',
1953 'Unicode' => '4.1.0',
1954 'Unicode::Normalize' => '0.32',
1955 'Unicode::UCD' => '0.23',
1957 'XS::APItest' => '0.06',
1963 'constant' => '1.05',
1964 'overload' => '1.03',
1965 'threads::shared' => '0.93',
1970 'JPL::AutoLoader' => 1,
1972 'JPL::Compile' => 1,
1976 delta_from => 5.008007,
1978 'Attribute::Handlers' => '0.78_02',
1980 'B::Bblock' => '1.02_01',
1981 'B::Bytecode' => '1.01_01',
1982 'B::C' => '1.04_01',
1983 'B::CC' => '1.00_01',
1984 'B::Concise' => '0.66',
1985 'B::Debug' => '1.02_01',
1986 'B::Deparse' => '0.71',
1987 'B::Disassembler' => '1.05',
1988 'B::Terse' => '1.03_01',
1989 'ByteLoader' => '0.06',
1991 'CGI::Cookie' => '1.26',
1992 'CPAN' => '1.76_02',
1995 'DB_File' => '1.814',
1996 'Data::Dumper' => '2.121_08',
1997 'Devel::DProf' => '20050603.00',
1998 'Devel::PPPort' => '3.06_01',
1999 'Devel::Peek' => '1.03',
2001 'Digest::MD5' => '2.36',
2002 'Digest::file' => '1.00',
2003 'Dumpvalue' => '1.12',
2005 'Encode::Alias' => '2.04',
2006 'Encode::Config' => '2.01',
2007 'Encode::MIME::Header' => '2.01',
2008 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2009 'English' => '1.02',
2010 'ExtUtils::Command' => '1.09',
2011 'ExtUtils::Command::MM' => '0.05',
2012 'ExtUtils::Constant' => '0.17',
2013 'ExtUtils::Embed' => '1.26',
2014 'ExtUtils::Install' => '1.33',
2015 'ExtUtils::Liblist::Kid'=> '1.3',
2016 'ExtUtils::MM' => '0.05',
2017 'ExtUtils::MM_AIX' => '0.03',
2018 'ExtUtils::MM_Any' => '0.13',
2019 'ExtUtils::MM_BeOS' => '1.05',
2020 'ExtUtils::MM_Cygwin' => '1.08',
2021 'ExtUtils::MM_MacOS' => '1.08',
2022 'ExtUtils::MM_NW5' => '2.08',
2023 'ExtUtils::MM_OS2' => '1.05',
2024 'ExtUtils::MM_QNX' => '0.02',
2025 'ExtUtils::MM_Unix' => '1.50',
2026 'ExtUtils::MM_VMS' => '5.73',
2027 'ExtUtils::MM_VOS' => '0.02',
2028 'ExtUtils::MM_Win32' => '1.12',
2029 'ExtUtils::MM_Win95' => '0.04',
2030 'ExtUtils::MakeMaker' => '6.30',
2031 'ExtUtils::MakeMaker::Config'=> '0.02',
2032 'ExtUtils::Manifest' => '1.46',
2033 'File::Basename' => '2.74',
2034 'File::Copy' => '2.09',
2035 'File::Find' => '1.10',
2036 'File::Glob' => '1.05',
2037 'File::Path' => '1.08',
2038 'File::Spec' => '3.12',
2039 'File::Spec::Win32' => '1.6',
2040 'FileCache' => '1.06',
2041 'Filter::Simple' => '0.82',
2042 'FindBin' => '1.47',
2043 'GDBM_File' => '1.08',
2044 'Getopt::Long' => '2.35',
2046 'IO::Dir' => '1.05',
2047 'IO::File' => '1.13',
2048 'IO::Handle' => '1.25',
2049 'IO::Pipe' => '1.13',
2050 'IO::Poll' => '0.07',
2051 'IO::Seekable' => '1.10',
2052 'IO::Select' => '1.17',
2053 'IO::Socket' => '1.29',
2054 'IO::Socket::INET' => '1.29',
2055 'IO::Socket::UNIX' => '1.22',
2056 'IPC::Open2' => '1.02',
2057 'IPC::Open3' => '1.02',
2058 'List::Util' => '1.18',
2059 'MIME::Base64' => '3.07',
2060 'MIME::QuotedPrint' => '3.07',
2061 'Math::Complex' => '1.35',
2062 'Math::Trig' => '1.03',
2063 'NDBM_File' => '1.06',
2064 'ODBM_File' => '1.06',
2065 'OS2::PrfDB' => '0.04',
2066 'OS2::Process' => '1.02',
2067 'OS2::REXX' => '1.03',
2071 'PerlIO::encoding' => '0.09',
2072 'PerlIO::scalar' => '0.04',
2073 'PerlIO::via' => '0.03',
2074 'Pod::Checker' => '1.43',
2075 'Pod::Find' => '1.34',
2076 'Pod::Functions' => '1.03',
2077 'Pod::Html' => '1.0504',
2078 'Pod::ParseUtils' => '1.33',
2079 'Pod::Parser' => '1.32',
2080 'Pod::Usage' => '1.33',
2081 'SDBM_File' => '1.05',
2083 'Scalar::Util' => '1.18',
2085 'Storable' => '2.15',
2086 'Switch' => '2.10_01',
2087 'Sys::Syslog' => '0.13',
2088 'Term::ANSIColor' => '1.10',
2089 'Term::ReadLine' => '1.02',
2090 'Test::Builder' => '0.32',
2091 'Test::Builder::Module' => '0.02',
2092 'Test::Builder::Tester' => '1.02',
2093 'Test::Builder::Tester::Color'=> undef,
2094 'Test::Harness' => '2.56',
2095 'Test::Harness::Straps' => '0.26',
2096 'Test::More' => '0.62',
2097 'Test::Simple' => '0.62',
2098 'Text::Tabs' => '2005.0824',
2099 'Text::Wrap' => '2005.082401',
2100 'Tie::Hash' => '1.02',
2101 'Time::HiRes' => '1.86',
2102 'Unicode::Collate' => '0.52',
2103 'Unicode::UCD' => '0.24',
2104 'User::grent' => '1.01',
2105 'Win32' => '0.2601',
2106 'XS::APItest' => '0.08',
2107 'XS::Typemap' => '0.02',
2108 'XSLoader' => '0.06',
2110 'autouse' => '1.05',
2112 'charnames' => '1.05',
2113 'diagnostics' => '1.15',
2114 'encoding' => '2.02',
2118 'overload' => '1.04',
2120 'threads' => '1.07',
2121 'threads::shared' => '0.94',
2124 'warnings' => '1.05',
2125 'warnings::register' => '1.01',
2131 delta_from => 5.008008,
2133 'Attribute::Handlers' => '0.78_03',
2134 'AutoLoader' => '5.67',
2135 'AutoSplit' => '1.06',
2137 'B::Asmdata' => '1.02',
2138 'B::Assembler' => '0.08',
2140 'B::Concise' => '0.76',
2141 'B::Debug' => '1.05',
2142 'B::Deparse' => '0.87',
2143 'B::Lint' => '1.11',
2144 'B::Lint::Debug' => undef,
2145 'B::Terse' => '1.05',
2146 'Benchmark' => '1.1',
2148 'CGI::Carp' => '1.30_01',
2149 'CGI::Cookie' => '1.29',
2150 'CGI::Fast' => '1.07',
2151 'CGI::Util' => '1.5_01',
2153 'CPAN::Debug' => '5.5',
2154 'CPAN::DeferedCode' => '5.50',
2155 'CPAN::Distroprefs' => '6',
2156 'CPAN::FirstTime' => '5.5_01',
2157 'CPAN::HandleConfig' => '5.5',
2158 'CPAN::Kwalify' => '5.50',
2159 'CPAN::Nox' => '5.50',
2160 'CPAN::Queue' => '5.5',
2161 'CPAN::Tarzip' => '5.5',
2162 'CPAN::Version' => '5.5',
2164 'Carp::Heavy' => '1.10',
2166 'DBM_Filter' => '0.02',
2167 'DBM_Filter::compress' => '0.02',
2168 'DBM_Filter::encode' => '0.02',
2169 'DBM_Filter::int32' => '0.02',
2170 'DBM_Filter::null' => '0.02',
2171 'DBM_Filter::utf8' => '0.02',
2172 'DB_File' => '1.817',
2173 'Data::Dumper' => '2.121_17',
2174 'Devel::DProf' => '20080331.00',
2175 'Devel::InnerPackage' => '0.3',
2176 'Devel::PPPort' => '3.14',
2177 'Devel::Peek' => '1.04',
2179 'Digest::MD5' => '2.37',
2180 'DirHandle' => '1.02',
2181 'DynaLoader' => '1.09',
2183 'Encode::Alias' => '2.10',
2184 'Encode::Byte' => '2.03',
2185 'Encode::CJKConstants' => '2.02',
2186 'Encode::CN' => '2.02',
2187 'Encode::CN::HZ' => '2.05',
2188 'Encode::Config' => '2.05',
2189 'Encode::EBCDIC' => '2.02',
2190 'Encode::Encoder' => '2.01',
2191 'Encode::Encoding' => '2.05',
2192 'Encode::GSM0338' => '2.01',
2193 'Encode::Guess' => '2.02',
2194 'Encode::JP' => '2.03',
2195 'Encode::JP::H2Z' => '2.02',
2196 'Encode::JP::JIS7' => '2.04',
2197 'Encode::KR' => '2.02',
2198 'Encode::KR::2022_KR' => '2.02',
2199 'Encode::MIME::Header' => '2.05',
2200 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2201 'Encode::MIME::Name' => '1.01',
2202 'Encode::Symbol' => '2.02',
2203 'Encode::TW' => '2.02',
2204 'Encode::Unicode' => '2.05',
2205 'Encode::Unicode::UTF7' => '2.04',
2206 'English' => '1.03',
2208 'Exporter' => '5.63',
2209 'Exporter::Heavy' => '5.63',
2210 'ExtUtils::Command' => '1.15',
2211 'ExtUtils::Command::MM' => '6.48',
2212 'ExtUtils::Constant' => '0.21',
2213 'ExtUtils::Constant::Base'=> '0.04',
2214 'ExtUtils::Constant::ProxySubs'=> '0.06',
2215 'ExtUtils::Constant::Utils'=> '0.02',
2216 'ExtUtils::Constant::XS'=> '0.02',
2217 'ExtUtils::Embed' => '1.28',
2218 'ExtUtils::Install' => '1.50_01',
2219 'ExtUtils::Installed' => '1.43',
2220 'ExtUtils::Liblist' => '6.48',
2221 'ExtUtils::Liblist::Kid'=> '6.48',
2222 'ExtUtils::MM' => '6.48',
2223 'ExtUtils::MM_AIX' => '6.48',
2224 'ExtUtils::MM_Any' => '6.48',
2225 'ExtUtils::MM_BeOS' => '6.48',
2226 'ExtUtils::MM_Cygwin' => '6.48',
2227 'ExtUtils::MM_DOS' => '6.48',
2228 'ExtUtils::MM_Darwin' => '6.48',
2229 'ExtUtils::MM_MacOS' => '6.48',
2230 'ExtUtils::MM_NW5' => '6.48',
2231 'ExtUtils::MM_OS2' => '6.48',
2232 'ExtUtils::MM_QNX' => '6.48',
2233 'ExtUtils::MM_UWIN' => '6.48',
2234 'ExtUtils::MM_Unix' => '6.48',
2235 'ExtUtils::MM_VMS' => '6.48',
2236 'ExtUtils::MM_VOS' => '6.48',
2237 'ExtUtils::MM_Win32' => '6.48',
2238 'ExtUtils::MM_Win95' => '6.48',
2239 'ExtUtils::MY' => '6.48',
2240 'ExtUtils::MakeMaker' => '6.48',
2241 'ExtUtils::MakeMaker::Config'=> '6.48',
2242 'ExtUtils::MakeMaker::bytes'=> '6.48',
2243 'ExtUtils::MakeMaker::vmsish'=> '6.48',
2244 'ExtUtils::Manifest' => '1.55',
2245 'ExtUtils::Mkbootstrap' => '6.48',
2246 'ExtUtils::Mksymlists' => '6.48',
2247 'ExtUtils::Packlist' => '1.43',
2248 'ExtUtils::ParseXS' => '2.19',
2249 'ExtUtils::XSSymSet' => '1.1',
2250 'ExtUtils::testlib' => '6.48',
2253 'File::Basename' => '2.77',
2254 'File::CheckTree' => '4.4',
2255 'File::Compare' => '1.1005',
2256 'File::Copy' => '2.13',
2257 'File::DosGlob' => '1.01',
2258 'File::Find' => '1.13',
2259 'File::Glob' => '1.06',
2260 'File::Path' => '2.07_02',
2261 'File::Spec' => '3.29',
2262 'File::Spec::Cygwin' => '3.29',
2263 'File::Spec::Epoc' => '3.29',
2264 'File::Spec::Functions' => '3.29',
2265 'File::Spec::Mac' => '3.29',
2266 'File::Spec::OS2' => '3.29',
2267 'File::Spec::Unix' => '3.29',
2268 'File::Spec::VMS' => '3.29',
2269 'File::Spec::Win32' => '3.29',
2270 'File::Temp' => '0.20',
2271 'File::stat' => '1.01',
2272 'FileCache' => '1.07',
2273 'Filter::Simple' => '0.83',
2274 'Filter::Util::Call' => '1.07',
2275 'FindBin' => '1.49',
2276 'GDBM_File' => '1.09',
2277 'Getopt::Long' => '2.37',
2278 'Getopt::Std' => '1.06',
2279 'Hash::Util' => '0.06',
2281 'IO::Dir' => '1.06',
2282 'IO::File' => '1.14',
2283 'IO::Handle' => '1.27',
2284 'IO::Socket' => '1.30',
2285 'IO::Socket::INET' => '1.31',
2286 'IO::Socket::UNIX' => '1.23',
2287 'IPC::Msg' => '2.00',
2288 'IPC::Open2' => '1.03',
2289 'IPC::Open3' => '1.03',
2290 'IPC::Semaphore' => '2.00',
2291 'IPC::SharedMem' => '2.00',
2292 'IPC::SysV' => '2.00',
2293 'List::Util' => '1.19',
2294 'Locale::Maketext' => '1.13',
2295 'Locale::Maketext::Guts'=> '1.13',
2296 'Locale::Maketext::GutsLoader'=> '1.13',
2297 'Math::BigFloat' => '1.60',
2298 'Math::BigInt' => '1.89',
2299 'Math::BigInt::Calc' => '0.52',
2300 'Math::BigRat' => '0.22',
2301 'Math::Complex' => '1.54',
2302 'Math::Trig' => '1.18',
2303 'Module::CoreList' => '2.17',
2304 'Module::Pluggable' => '3.8',
2305 'Module::Pluggable::Object'=> '3.6',
2306 'NDBM_File' => '1.07',
2308 'Net::Cmd' => '2.29',
2309 'Net::Config' => '1.11',
2310 'Net::Domain' => '2.20',
2311 'Net::FTP' => '2.77',
2312 'Net::FTP::A' => '1.18',
2313 'Net::NNTP' => '2.24',
2314 'Net::POP3' => '2.29',
2315 'Net::Ping' => '2.35',
2316 'Net::SMTP' => '2.31',
2318 'ODBM_File' => '1.07',
2319 'OS2::DLL' => '1.03',
2320 'OS2::Process' => '1.03',
2321 'Opcode' => '1.0601',
2324 'PerlIO::encoding' => '0.11',
2325 'PerlIO::scalar' => '0.06',
2326 'PerlIO::via' => '0.05',
2327 'Pod::Html' => '1.09',
2328 'Pod::ParseUtils' => '1.35',
2329 'Pod::Parser' => '1.35',
2330 'Pod::Select' => '1.35',
2331 'Pod::Usage' => '1.35',
2332 'SDBM_File' => '1.06',
2334 'Scalar::Util' => '1.19',
2335 'SelfLoader' => '1.17',
2338 'Storable' => '2.19',
2340 'Sys::Syslog' => '0.27',
2341 'Sys::Syslog::win32::Win32'=> undef,
2342 'Term::ANSIColor' => '1.12',
2343 'Term::Cap' => '1.12',
2344 'Term::ReadLine' => '1.03',
2345 'Test::Builder' => '0.80',
2346 'Test::Builder::Module' => '0.80',
2347 'Test::Builder::Tester' => '1.13',
2348 'Test::Harness' => '2.64',
2349 'Test::Harness::Results'=> '0.01_01',
2350 'Test::Harness::Straps' => '0.26_01',
2351 'Test::Harness::Util' => '0.01',
2352 'Test::More' => '0.80',
2353 'Test::Simple' => '0.80',
2354 'Text::Balanced' => '1.98',
2355 'Text::ParseWords' => '3.27',
2356 'Text::Soundex' => '3.03',
2357 'Text::Tabs' => '2007.1117',
2358 'Text::Wrap' => '2006.1117',
2360 'Thread::Queue' => '2.11',
2361 'Thread::Semaphore' => '2.09',
2362 'Tie::Handle' => '4.2',
2363 'Tie::Hash' => '1.03',
2364 'Tie::Memoize' => '1.1',
2365 'Tie::RefHash' => '1.38',
2366 'Tie::Scalar' => '1.01',
2367 'Tie::StdHandle' => '4.2',
2368 'Time::HiRes' => '1.9715',
2369 'Time::Local' => '1.1901',
2370 'Time::gmtime' => '1.03',
2371 'Unicode' => '5.1.0',
2372 'Unicode::Normalize' => '1.02',
2373 'Unicode::UCD' => '0.25',
2374 'VMS::DCLsym' => '1.03',
2375 'VMS::Stdio' => '2.4',
2377 'Win32API::File' => '0.1001_01',
2378 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2379 'Win32CORE' => '0.02',
2380 'XS::APItest' => '0.15',
2381 'XS::Typemap' => '0.03',
2382 'XSLoader' => '0.10',
2383 'attributes' => '0.09',
2384 'autouse' => '1.06',
2390 'charnames' => '1.06',
2391 'constant' => '1.17',
2392 'diagnostics' => '1.16',
2393 'encoding' => '2.6_01',
2395 'filetest' => '1.02',
2399 'overload' => '1.06',
2401 'sigtrap' => '1.04',
2402 'threads' => '1.71',
2403 'threads::shared' => '1.27',
2405 'warnings' => '1.05_01',
2411 delta_from => 5.008002,
2415 'B::Concise' => '0.57',
2416 'B::Deparse' => '0.65',
2417 'DB_File' => '1.806',
2418 'Devel::PPPort' => '2.008',
2419 'English' => '1.02',
2421 'OS2::DLL' => '1.02',
2423 'Time::HiRes' => '1.51',
2424 'Unicode::Collate' => '0.28',
2425 'Unicode::Normalize' => '0.23',
2426 'XSLoader' => '0.03',
2427 'assertions' => '0.01',
2428 'assertions::activate' => '0.01',
2429 'overload' => '1.02',
2430 'version' => '0.29',
2436 delta_from => 5.008004,
2439 'B::Assembler' => '0.06',
2441 'B::Concise' => '0.59',
2442 'B::Debug' => '1.02',
2443 'B::Deparse' => '0.65',
2444 'DB_File' => '1.808_01',
2445 'Devel::PPPort' => '2.011_01',
2447 'DynaLoader' => '1.04',
2448 'English' => '1.02',
2449 'Exporter::Heavy' => '5.567',
2450 'ExtUtils::Command' => '1.07',
2451 'ExtUtils::Liblist::Kid'=> '1.3',
2452 'ExtUtils::MM_Any' => '0.0901',
2453 'ExtUtils::MM_Cygwin' => '1.07',
2454 'ExtUtils::MM_NW5' => '2.07_01',
2455 'ExtUtils::MM_Unix' => '1.45_01',
2456 'ExtUtils::MM_VMS' => '5.71_01',
2457 'ExtUtils::MM_Win32' => '1.10_01',
2458 'ExtUtils::MM_Win95' => '0.03',
2459 'ExtUtils::MakeMaker' => '6.21_02',
2460 'ExtUtils::Manifest' => '1.43',
2462 'Getopt::Long' => '2.3401',
2463 'IO::Handle' => '1.23',
2464 'IO::Pipe' => '1.122',
2465 'IPC::Open3' => '1.0105',
2466 'MIME::Base64' => '3.00_01',
2467 'MIME::QuotedPrint' => '3.00',
2468 'Memoize' => '1.01_01',
2469 'ODBM_File' => '1.04',
2472 'Storable' => '2.11',
2473 'Time::HiRes' => '1.56',
2474 'Time::Local' => '1.07_94',
2475 'UNIVERSAL' => '1.02',
2476 'Unicode' => '4.0.0',
2477 'Unicode::UCD' => '0.21',
2478 'XSLoader' => '0.03',
2479 'assertions' => '0.01',
2480 'assertions::activate' => '0.01',
2484 'overload' => '1.02',
2485 'threads' => '1.02',
2487 'version' => '0.36',
2493 delta_from => 5.008007,
2496 'B::Concise' => '0.64',
2497 'B::Deparse' => '0.69',
2498 'B::Disassembler' => '1.03',
2499 'B::Terse' => '1.02',
2501 'Config::Extensions' => '0.01',
2502 'Devel::DProf' => '20030813.00',
2503 'DynaLoader' => '1.07',
2505 'Encode::Alias' => '2.02',
2506 'English' => '1.03',
2507 'Exporter' => '5.59',
2508 'Exporter::Heavy' => '5.59',
2509 'ExtUtils::Command' => '1.07',
2510 'ExtUtils::Command::MM' => '0.03_01',
2511 'ExtUtils::Embed' => '1.26',
2512 'ExtUtils::Liblist::Kid'=> '1.3',
2513 'ExtUtils::MM_Any' => '0.10',
2514 'ExtUtils::MM_Cygwin' => '1.07',
2515 'ExtUtils::MM_MacOS' => '1.08',
2516 'ExtUtils::MM_NW5' => '2.07',
2517 'ExtUtils::MM_Unix' => '1.46_01',
2518 'ExtUtils::MM_VMS' => '5.71',
2519 'ExtUtils::MM_Win32' => '1.10',
2520 'ExtUtils::MM_Win95' => '0.03',
2521 'ExtUtils::MakeMaker' => '6.25',
2522 'ExtUtils::Manifest' => '1.44',
2524 'File::Path' => '1.06',
2525 'FileCache' => '1.04_01',
2526 'Getopt::Long' => '2.3401',
2527 'IO::File' => '1.10',
2528 'IO::Socket::INET' => '1.27',
2529 'Math::BigFloat' => '1.49',
2530 'Math::BigInt' => '1.75',
2531 'Math::BigInt::Calc' => '0.45',
2532 'Math::BigRat' => '0.14',
2533 'Memoize' => '1.01_01',
2534 'Module::CoreList' => '1.99',
2535 'NEXT' => '0.60_01',
2537 'Pod::Html' => '1.0502',
2538 'Scalar::Util' => '1.14_1',
2539 'Storable' => '2.14',
2541 'Test::Harness' => '2.46',
2542 'Test::Harness::Straps' => '0.20_01',
2543 'Text::Balanced' => '1.95_01',
2544 'Text::Wrap' => '2001.09292',
2545 'UNIVERSAL' => '1.02',
2546 'Unicode' => '4.0.1',
2547 'Unicode::Normalize' => '0.30',
2548 'Unicode::UCD' => '0.22',
2550 'XS::APItest' => '0.05',
2551 'XSLoader' => '0.03',
2552 'assertions' => '0.01',
2553 'assertions::activate' => '0.01',
2559 'encoding::warnings' => '0.05',
2562 'threads::shared' => '0.92',
2564 'version' => '0.42',
2565 'warnings' => '1.04',
2568 'Test::Harness::Point' => 1,
2572 delta_from => 5.008008,
2574 'Archive::Tar' => '1.26_01',
2575 'Archive::Tar::Constant'=> '0.02',
2576 'Archive::Tar::File' => '0.02',
2577 'AutoSplit' => '1.04_01',
2579 'B::Bblock' => '1.02',
2580 'B::Bytecode' => '1.01',
2583 'B::Concise' => '0.67',
2584 'B::Debug' => '1.02',
2585 'B::Deparse' => '0.73',
2586 'B::Lint' => '1.04',
2587 'B::Terse' => '1.03',
2589 'CPAN' => '1.83_58',
2590 'CPAN::Debug' => '4.44',
2591 'CPAN::FirstTime' => '4.50',
2592 'CPAN::HandleConfig' => '4.31',
2593 'CPAN::Nox' => '2.31',
2594 'CPAN::Tarzip' => '3.36',
2595 'CPAN::Version' => '2.55',
2597 'Carp::Heavy' => '1.05',
2598 'Compress::Zlib' => '2.000_07',
2599 'Compress::Zlib::Common'=> '2.000_07',
2600 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2601 'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2602 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2603 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2604 'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2605 'Compress::Zlib::FileConstants'=> '2.000_07',
2606 'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2607 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2608 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2609 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2610 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2611 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2612 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2613 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2614 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2615 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2616 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2617 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2618 'Compress::Zlib::ParseParameters'=> '2.000_07',
2619 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2620 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2621 'Config::Extensions' => '0.01',
2623 'Devel::PPPort' => '3.08',
2624 'Digest::SHA' => '5.32',
2625 'DirHandle' => '1.01',
2626 'DynaLoader' => '1.07',
2628 'Encode::CN::HZ' => '2.02',
2629 'Encode::MIME::Header' => '2.02',
2630 'English' => '1.04',
2631 'Exporter' => '5.59',
2632 'Exporter::Heavy' => '5.59',
2633 'ExtUtils::CBuilder' => '0.15',
2634 'ExtUtils::CBuilder::Base'=> '0.12',
2635 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2636 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2637 'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2638 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2639 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2640 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2641 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2642 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2643 'ExtUtils::Command::MM' => '0.05_01',
2644 'ExtUtils::Constant' => '0.2',
2645 'ExtUtils::Constant::Base'=> '0.02',
2646 'ExtUtils::Constant::ProxySubs'=> '0.01',
2647 'ExtUtils::Constant::XS'=> '0.02',
2648 'ExtUtils::MM_Any' => '0.13_01',
2649 'ExtUtils::MM_Unix' => '1.50_01',
2650 'ExtUtils::MakeMaker' => '6.30_01',
2651 'ExtUtils::ParseXS' => '2.15_02',
2653 'File::Compare' => '1.1005',
2654 'File::Spec' => '3.15',
2655 'File::Temp' => '0.16_01',
2656 'IO::File' => '1.13_01',
2657 'IO::Handle' => '1.26',
2658 'IO::Socket' => '1.29_01',
2659 'IO::Socket::INET' => '1.29_02',
2660 'IO::Socket::UNIX' => '1.22_01',
2661 'IO::Zlib' => '1.04_02',
2662 'Locale::Maketext' => '1.10_01',
2663 'Math::BigInt::FastCalc'=> '0.10',
2664 'Memoize' => '1.01_01',
2665 'Module::CoreList' => '2.02',
2666 'Moped::Msg' => '0.01',
2667 'NEXT' => '0.60_01',
2668 'Net::Cmd' => '2.26_01',
2669 'Net::Domain' => '2.19_01',
2670 'Net::Ping' => '2.31_04',
2673 'Pod::Escapes' => '1.04',
2674 'Pod::Man' => '2.04',
2675 'Pod::Perldoc' => '3.14_01',
2676 'Pod::Simple' => '3.04',
2677 'Pod::Simple::BlackBox' => undef,
2678 'Pod::Simple::Checker' => '2.02',
2679 'Pod::Simple::Debug' => undef,
2680 'Pod::Simple::DumpAsText'=> '2.02',
2681 'Pod::Simple::DumpAsXML'=> '2.02',
2682 'Pod::Simple::HTML' => '3.03',
2683 'Pod::Simple::HTMLBatch'=> '3.02',
2684 'Pod::Simple::HTMLLegacy'=> '5.01',
2685 'Pod::Simple::LinkSection'=> undef,
2686 'Pod::Simple::Methody' => '2.02',
2687 'Pod::Simple::Progress' => '1.01',
2688 'Pod::Simple::PullParser'=> '2.02',
2689 'Pod::Simple::PullParserEndToken'=> undef,
2690 'Pod::Simple::PullParserStartToken'=> undef,
2691 'Pod::Simple::PullParserTextToken'=> undef,
2692 'Pod::Simple::PullParserToken'=> '2.02',
2693 'Pod::Simple::RTF' => '2.02',
2694 'Pod::Simple::Search' => '3.04',
2695 'Pod::Simple::SimpleTree'=> '2.02',
2696 'Pod::Simple::Text' => '2.02',
2697 'Pod::Simple::TextContent'=> '2.02',
2698 'Pod::Simple::TiedOutFH'=> undef,
2699 'Pod::Simple::Transcode'=> undef,
2700 'Pod::Simple::TranscodeDumb'=> '2.02',
2701 'Pod::Simple::TranscodeSmart'=> undef,
2702 'Pod::Simple::XMLOutStream'=> '2.02',
2703 'Pod::Text' => '3.01',
2704 'Pod::Text::Color' => '2.01',
2705 'Pod::Text::Overstrike' => '2',
2706 'Pod::Text::Termcap' => '2.01',
2707 'Pod::Usage' => '1.33_01',
2708 'SelfLoader' => '1.0905',
2709 'Storable' => '2.15_02',
2710 'Test::Builder::Module' => '0.03',
2711 'Text::Balanced' => '1.95_01',
2712 'Tie::File' => '0.97_01',
2713 'UNIVERSAL' => '1.03',
2714 'XS::APItest' => '0.09',
2715 'assertions' => '0.02',
2716 'assertions::activate' => '0.02',
2717 'assertions::compat' => undef,
2718 'constant' => '1.07',
2719 'encoding::warnings' => '0.05',
2720 'feature' => '1.00',
2723 'version' => '0.53',
2729 delta_from => 5.009003,
2731 'Archive::Tar' => '1.30_01',
2732 'AutoLoader' => '5.61',
2734 'B::Bytecode' => '1.02',
2736 'B::Concise' => '0.69',
2737 'B::Deparse' => '0.76',
2738 'B::Lint' => '1.08',
2739 'Benchmark' => '1.08',
2741 'CGI::Cookie' => '1.27',
2742 'CGI::Fast' => '1.07',
2743 'CPAN' => '1.87_55',
2744 'CPAN::Debug' => '5.400561',
2745 'CPAN::FirstTime' => '5.400742',
2746 'CPAN::HandleConfig' => '5.400740',
2747 'CPAN::Nox' => '5.400561',
2748 'CPAN::Tarzip' => '5.400714',
2749 'CPAN::Version' => '5.400561',
2750 'Compress::Raw::Zlib' => '2.000_13',
2751 'Compress::Zlib' => '2.000_13',
2753 'Devel::PPPort' => '3.10',
2755 'Digest::SHA' => '5.43',
2756 'Encode' => '2.18_01',
2757 'Encode::Alias' => '2.06',
2758 'Encode::Byte' => '2.02',
2759 'Encode::CJKConstants' => '2.02',
2760 'Encode::CN' => '2.02',
2761 'Encode::CN::HZ' => '2.04',
2762 'Encode::Config' => '2.03',
2763 'Encode::EBCDIC' => '2.02',
2764 'Encode::Encoder' => '2.01',
2765 'Encode::Encoding' => '2.04',
2766 'Encode::Guess' => '2.02',
2767 'Encode::JP' => '2.03',
2768 'Encode::JP::H2Z' => '2.02',
2769 'Encode::JP::JIS7' => '2.02',
2770 'Encode::KR' => '2.02',
2771 'Encode::KR::2022_KR' => '2.02',
2772 'Encode::MIME::Header' => '2.04',
2773 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2774 'Encode::Symbol' => '2.02',
2775 'Encode::TW' => '2.02',
2776 'Encode::Unicode' => '2.03',
2777 'Encode::Unicode::UTF7' => '2.04',
2778 'ExtUtils::CBuilder' => '0.18',
2779 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2780 'ExtUtils::Constant::Base'=> '0.03',
2781 'ExtUtils::Constant::ProxySubs'=> '0.03',
2782 'ExtUtils::Install' => '1.41',
2783 'ExtUtils::Installed' => '1.41',
2784 'ExtUtils::MM_Any' => '0.13_02',
2785 'ExtUtils::MM_NW5' => '2.08_01',
2786 'ExtUtils::MM_Unix' => '1.5003',
2787 'ExtUtils::MM_VMS' => '5.73_03',
2788 'ExtUtils::MM_Win32' => '1.12_02',
2789 'ExtUtils::MM_Win95' => '0.04_01',
2790 'ExtUtils::MakeMaker' => '6.30_02',
2791 'ExtUtils::Manifest' => '1.46_01',
2792 'ExtUtils::Mkbootstrap' => '1.15_01',
2793 'ExtUtils::Mksymlists' => '1.19_01',
2794 'ExtUtils::Packlist' => '1.41',
2795 'File::Basename' => '2.75',
2796 'File::Find' => '1.11',
2797 'File::GlobMapper' => '0.000_02',
2798 'File::Spec' => '3.19',
2799 'FileCache' => '1.07',
2800 'Getopt::Long' => '2.3501',
2801 'Hash::Util' => '0.07',
2802 'Hash::Util::FieldHash' => '0.01',
2804 'IO::Compress::Adapter::Deflate'=> '2.000_13',
2805 'IO::Compress::Adapter::Identity'=> '2.000_13',
2806 'IO::Compress::Base' => '2.000_13',
2807 'IO::Compress::Base::Common'=> '2.000_13',
2808 'IO::Compress::Deflate' => '2.000_13',
2809 'IO::Compress::Gzip' => '2.000_13',
2810 'IO::Compress::Gzip::Constants'=> '2.000_13',
2811 'IO::Compress::RawDeflate'=> '2.000_13',
2812 'IO::Compress::Zip' => '2.000_13',
2813 'IO::Compress::Zip::Constants'=> '2.000_13',
2814 'IO::Compress::Zlib::Constants'=> '2.000_13',
2815 'IO::Compress::Zlib::Extra'=> '2.000_13',
2816 'IO::Dir' => '1.06',
2817 'IO::File' => '1.14',
2818 'IO::Handle' => '1.27',
2819 'IO::Socket' => '1.30_01',
2820 'IO::Socket::INET' => '1.31',
2821 'IO::Socket::UNIX' => '1.23',
2822 'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2823 'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2824 'IO::Uncompress::AnyInflate'=> '2.000_13',
2825 'IO::Uncompress::AnyUncompress'=> '2.000_13',
2826 'IO::Uncompress::Base' => '2.000_13',
2827 'IO::Uncompress::Gunzip'=> '2.000_13',
2828 'IO::Uncompress::Inflate'=> '2.000_13',
2829 'IO::Uncompress::RawInflate'=> '2.000_13',
2830 'IO::Uncompress::Unzip' => '2.000_13',
2831 'MIME::Base64' => '3.07_01',
2832 'Math::Complex' => '1.36',
2833 'Math::Trig' => '1.04',
2834 'Module::Build' => '0.2805',
2835 'Module::Build::Base' => undef,
2836 'Module::Build::Compat' => '0.03',
2837 'Module::Build::ConfigData'=> undef,
2838 'Module::Build::Cookbook'=> undef,
2839 'Module::Build::ModuleInfo'=> undef,
2840 'Module::Build::Notes' => undef,
2841 'Module::Build::PPMMaker'=> undef,
2842 'Module::Build::Platform::Amiga'=> undef,
2843 'Module::Build::Platform::Default'=> undef,
2844 'Module::Build::Platform::EBCDIC'=> undef,
2845 'Module::Build::Platform::MPEiX'=> undef,
2846 'Module::Build::Platform::MacOS'=> undef,
2847 'Module::Build::Platform::RiscOS'=> undef,
2848 'Module::Build::Platform::Unix'=> undef,
2849 'Module::Build::Platform::VMS'=> undef,
2850 'Module::Build::Platform::VOS'=> undef,
2851 'Module::Build::Platform::Windows'=> undef,
2852 'Module::Build::Platform::aix'=> undef,
2853 'Module::Build::Platform::cygwin'=> undef,
2854 'Module::Build::Platform::darwin'=> undef,
2855 'Module::Build::Platform::os2'=> undef,
2856 'Module::Build::PodParser'=> undef,
2857 'Module::Build::Version'=> '0',
2858 'Module::Build::YAML' => '0.50',
2859 'Module::CoreList' => '2.08',
2860 'Module::Load' => '0.10',
2861 'Module::Loaded' => '0.01',
2862 'Package::Constants' => '0.01',
2863 'Pod::Html' => '1.07',
2864 'Pod::Man' => '2.09',
2865 'Pod::Text' => '3.07',
2866 'Pod::Text::Color' => '2.03',
2867 'Pod::Text::Termcap' => '2.03',
2868 'SDBM_File' => '1.06',
2870 'Sys::Syslog' => '0.17',
2871 'Term::ANSIColor' => '1.11',
2872 'Test::Builder' => '0.33',
2873 'Test::Builder::Tester' => '1.04',
2874 'Test::Harness' => '2.62',
2875 'Test::Harness::Util' => '0.01',
2876 'Test::More' => '0.64',
2877 'Test::Simple' => '0.64',
2878 'Text::Balanced' => '1.98_01',
2879 'Text::ParseWords' => '3.25',
2880 'Text::Tabs' => '2007.071101',
2881 'Text::Wrap' => '2006.0711',
2882 'Tie::RefHash' => '1.34_01',
2883 'Time::HiRes' => '1.87',
2884 'Time::Local' => '1.13',
2885 'Time::gmtime' => '1.03',
2886 'UNIVERSAL' => '1.04',
2887 'Unicode::Normalize' => '1.01',
2888 'Win32API::File' => '0.1001',
2889 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2890 'assertions' => '0.03',
2891 'assertions::compat' => '0.02',
2892 'autouse' => '1.06',
2893 'diagnostics' => '1.16',
2894 'encoding' => '2.04',
2895 'encoding::warnings' => '0.10',
2896 'feature' => '1.01',
2898 'threads' => '1.38',
2899 'threads::shared' => '0.94_01',
2900 'version' => '0.67',
2903 'Compress::Zlib::Common'=> 1,
2904 'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2905 'Compress::Zlib::Compress::Zip::Constants'=> 1,
2906 'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2907 'Compress::Zlib::CompressPlugin::Identity'=> 1,
2908 'Compress::Zlib::File::GlobMapper'=> 1,
2909 'Compress::Zlib::FileConstants'=> 1,
2910 'Compress::Zlib::IO::Compress::Base'=> 1,
2911 'Compress::Zlib::IO::Compress::Deflate'=> 1,
2912 'Compress::Zlib::IO::Compress::Gzip'=> 1,
2913 'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2914 'Compress::Zlib::IO::Compress::Zip'=> 1,
2915 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2916 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2917 'Compress::Zlib::IO::Uncompress::Base'=> 1,
2918 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2919 'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2920 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2921 'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2922 'Compress::Zlib::ParseParameters'=> 1,
2923 'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2924 'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2928 delta_from => 5.009004,
2930 'Archive::Extract' => '0.22_01',
2931 'Archive::Tar' => '1.32',
2932 'Attribute::Handlers' => '0.78_06',
2933 'AutoLoader' => '5.63',
2934 'AutoSplit' => '1.05',
2936 'B::Concise' => '0.72',
2937 'B::Debug' => '1.05',
2938 'B::Deparse' => '0.82',
2939 'B::Lint' => '1.09',
2940 'B::Terse' => '1.05',
2941 'Benchmark' => '1.1',
2943 'CGI::Cookie' => '1.28',
2944 'CGI::Util' => '1.5_01',
2946 'CPAN::Debug' => '5.400955',
2947 'CPAN::FirstTime' => '5.401669',
2948 'CPAN::HandleConfig' => '5.401744',
2949 'CPAN::Kwalify' => '5.401418',
2950 'CPAN::Nox' => '5.400844',
2951 'CPAN::Queue' => '5.401704',
2952 'CPAN::Tarzip' => '5.401717',
2953 'CPAN::Version' => '5.401387',
2954 'CPANPLUS' => '0.81_01',
2955 'CPANPLUS::Backend' => undef,
2956 'CPANPLUS::Backend::RV' => undef,
2957 'CPANPLUS::Config' => undef,
2958 'CPANPLUS::Configure' => undef,
2959 'CPANPLUS::Configure::Setup'=> undef,
2960 'CPANPLUS::Dist' => undef,
2961 'CPANPLUS::Dist::Base' => '0.01',
2962 'CPANPLUS::Dist::Build' => '0.06_01',
2963 'CPANPLUS::Dist::Build::Constants'=> '0.01',
2964 'CPANPLUS::Dist::MM' => undef,
2965 'CPANPLUS::Dist::Sample'=> undef,
2966 'CPANPLUS::Error' => undef,
2967 'CPANPLUS::Internals' => '0.81_01',
2968 'CPANPLUS::Internals::Constants'=> '0.01',
2969 'CPANPLUS::Internals::Constants::Report'=> '0.01',
2970 'CPANPLUS::Internals::Extract'=> undef,
2971 'CPANPLUS::Internals::Fetch'=> undef,
2972 'CPANPLUS::Internals::Report'=> undef,
2973 'CPANPLUS::Internals::Search'=> undef,
2974 'CPANPLUS::Internals::Source'=> undef,
2975 'CPANPLUS::Internals::Utils'=> undef,
2976 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
2977 'CPANPLUS::Module' => undef,
2978 'CPANPLUS::Module::Author'=> undef,
2979 'CPANPLUS::Module::Author::Fake'=> undef,
2980 'CPANPLUS::Module::Checksums'=> undef,
2981 'CPANPLUS::Module::Fake'=> undef,
2982 'CPANPLUS::Module::Signature'=> undef,
2983 'CPANPLUS::Selfupdate' => undef,
2984 'CPANPLUS::Shell' => undef,
2985 'CPANPLUS::Shell::Classic'=> '0.0562',
2986 'CPANPLUS::Shell::Default'=> '0.81_01',
2987 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
2988 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
2989 'CPANPLUS::inc' => undef,
2991 'Carp::Heavy' => '1.07',
2992 'Compress::Raw::Zlib' => '2.005',
2993 'Compress::Zlib' => '2.005',
2995 'DBM_Filter' => '0.02',
2996 'DB_File' => '1.815',
2997 'Data::Dumper' => '2.121_13',
2998 'Devel::InnerPackage' => '0.3',
2999 'Devel::PPPort' => '3.11_01',
3000 'Digest::MD5' => '2.36_01',
3001 'Digest::SHA' => '5.44',
3002 'DynaLoader' => '1.08',
3004 'Encode::Alias' => '2.07',
3005 'Encode::Byte' => '2.03',
3006 'Encode::Config' => '2.04',
3007 'Encode::Encoding' => '2.05',
3008 'Encode::GSM0338' => '2.00',
3009 'Encode::JP::JIS7' => '2.03',
3010 'Encode::MIME::Header' => '2.05',
3011 'Encode::MIME::Name' => '1.01',
3012 'Encode::Unicode' => '2.05',
3014 'Exporter' => '5.60',
3015 'Exporter::Heavy' => '5.60',
3016 'ExtUtils::CBuilder' => '0.19',
3017 'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3018 'ExtUtils::Command' => '1.13',
3019 'ExtUtils::Command::MM' => '0.07',
3020 'ExtUtils::Constant::Base'=> '0.04',
3021 'ExtUtils::Install' => '1.41_01',
3022 'ExtUtils::Liblist' => '1.03',
3023 'ExtUtils::Liblist::Kid'=> '1.33',
3024 'ExtUtils::MM' => '0.07',
3025 'ExtUtils::MM_AIX' => '0.05',
3026 'ExtUtils::MM_Any' => '0.15',
3027 'ExtUtils::MM_BeOS' => '1.07',
3028 'ExtUtils::MM_Cygwin' => '1.1',
3029 'ExtUtils::MM_DOS' => '0.04',
3030 'ExtUtils::MM_MacOS' => '1.1',
3031 'ExtUtils::MM_NW5' => '2.1',
3032 'ExtUtils::MM_OS2' => '1.07',
3033 'ExtUtils::MM_QNX' => '0.04',
3034 'ExtUtils::MM_UWIN' => '0.04',
3035 'ExtUtils::MM_Unix' => '1.54_01',
3036 'ExtUtils::MM_VMS' => '5.76',
3037 'ExtUtils::MM_VOS' => '0.04',
3038 'ExtUtils::MM_Win32' => '1.15',
3039 'ExtUtils::MM_Win95' => '0.06',
3040 'ExtUtils::MY' => '0.03',
3041 'ExtUtils::MakeMaker' => '6.36',
3042 'ExtUtils::MakeMaker::Config'=> '0.04',
3043 'ExtUtils::MakeMaker::bytes'=> '0.03',
3044 'ExtUtils::MakeMaker::vmsish'=> '0.03',
3045 'ExtUtils::Manifest' => '1.51_01',
3046 'ExtUtils::Mkbootstrap' => '1.17',
3047 'ExtUtils::Mksymlists' => '1.21',
3048 'ExtUtils::ParseXS' => '2.18',
3049 'ExtUtils::XSSymSet' => '1.1',
3050 'ExtUtils::testlib' => '1.17',
3053 'File::Basename' => '2.76',
3054 'File::Copy' => '2.10',
3055 'File::Fetch' => '0.10',
3056 'File::Glob' => '1.06',
3057 'File::Path' => '2.01',
3058 'File::Spec' => '3.25',
3059 'File::Spec::Cygwin' => '1.1_01',
3060 'File::Spec::VMS' => '1.4_01',
3061 'File::Temp' => '0.18',
3062 'Filter::Util::Call' => '1.0602',
3063 'FindBin' => '1.49',
3064 'Getopt::Long' => '2.36',
3065 'Hash::Util::FieldHash' => '1.01',
3066 'IO::Compress::Adapter::Deflate'=> '2.005',
3067 'IO::Compress::Adapter::Identity'=> '2.005',
3068 'IO::Compress::Base' => '2.005',
3069 'IO::Compress::Base::Common'=> '2.005',
3070 'IO::Compress::Deflate' => '2.005',
3071 'IO::Compress::Gzip' => '2.005',
3072 'IO::Compress::Gzip::Constants'=> '2.005',
3073 'IO::Compress::RawDeflate'=> '2.005',
3074 'IO::Compress::Zip' => '2.005',
3075 'IO::Compress::Zip::Constants'=> '2.005',
3076 'IO::Compress::Zlib::Constants'=> '2.005',
3077 'IO::Compress::Zlib::Extra'=> '2.005',
3078 'IO::Uncompress::Adapter::Identity'=> '2.005',
3079 'IO::Uncompress::Adapter::Inflate'=> '2.005',
3080 'IO::Uncompress::AnyInflate'=> '2.005',
3081 'IO::Uncompress::AnyUncompress'=> '2.005',
3082 'IO::Uncompress::Base' => '2.005',
3083 'IO::Uncompress::Gunzip'=> '2.005',
3084 'IO::Uncompress::Inflate'=> '2.005',
3085 'IO::Uncompress::RawInflate'=> '2.005',
3086 'IO::Uncompress::Unzip' => '2.005',
3087 'IO::Zlib' => '1.05_01',
3088 'IPC::Cmd' => '0.36_01',
3089 'List::Util' => '1.19',
3090 'Locale::Maketext::Simple'=> '0.18',
3091 'Log::Message' => '0.01',
3092 'Log::Message::Config' => '0.01',
3093 'Log::Message::Handlers'=> undef,
3094 'Log::Message::Item' => undef,
3095 'Log::Message::Simple' => '0.0201',
3096 'Math::BigFloat' => '1.58',
3097 'Math::BigInt' => '1.87',
3098 'Math::BigInt::Calc' => '0.51',
3099 'Math::BigInt::FastCalc'=> '0.15_01',
3100 'Math::BigRat' => '0.19',
3101 'Math::Complex' => '1.37',
3102 'Memoize' => '1.01_02',
3103 'Module::Build' => '0.2808',
3104 'Module::Build::Config' => undef,
3105 'Module::Build::Version'=> '0.7203',
3106 'Module::CoreList' => '2.12',
3107 'Module::Load::Conditional'=> '0.16',
3108 'Module::Pluggable' => '3.6',
3109 'Module::Pluggable::Object'=> '3.6',
3110 'NDBM_File' => '1.07',
3111 'Net::Cmd' => '2.28',
3112 'Net::Config' => '1.11',
3113 'Net::Domain' => '2.20',
3114 'Net::FTP' => '2.77',
3115 'Net::FTP::A' => '1.18',
3116 'Net::NNTP' => '2.24',
3117 'Net::POP3' => '2.29',
3118 'Net::SMTP' => '2.31',
3119 'ODBM_File' => '1.07',
3120 'OS2::DLL' => '1.03',
3121 'Object::Accessor' => '0.32',
3124 'Params::Check' => '0.26',
3125 'PerlIO::encoding' => '0.10',
3126 'PerlIO::scalar' => '0.05',
3127 'PerlIO::via' => '0.04',
3128 'Pod::Html' => '1.08',
3129 'Pod::Man' => '2.12',
3130 'Pod::ParseUtils' => '1.35',
3131 'Pod::Parser' => '1.35',
3132 'Pod::Select' => '1.35',
3133 'Pod::Simple' => '3.05',
3134 'Pod::Text' => '3.08',
3135 'Pod::Usage' => '1.35',
3136 'Scalar::Util' => '1.19',
3137 'SelfLoader' => '1.11',
3138 'Shell' => '0.72_01',
3140 'Storable' => '2.16',
3142 'Sys::Syslog' => '0.18_01',
3143 'Term::ANSIColor' => '1.12',
3144 'Term::UI' => '0.14_01',
3145 'Term::UI::History' => undef,
3146 'Test::Builder' => '0.70',
3147 'Test::Builder::Module' => '0.68',
3148 'Test::Builder::Tester' => '1.07',
3149 'Test::Harness' => '2.64',
3150 'Test::Harness::Results'=> '0.01',
3151 'Test::More' => '0.70',
3152 'Test::Simple' => '0.70',
3153 'Text::Balanced' => '2.0.0',
3154 'Text::Soundex' => '3.02',
3155 'Text::Tabs' => '2007.1117',
3156 'Text::Wrap' => '2006.1117',
3158 'Tie::File' => '0.97_02',
3159 'Tie::Hash::NamedCapture'=> '0.06',
3160 'Tie::Memoize' => '1.1',
3161 'Tie::RefHash' => '1.37',
3162 'Time::HiRes' => '1.9707',
3163 'Time::Local' => '1.17',
3164 'Time::Piece' => '1.11_02',
3165 'Time::Seconds' => undef,
3166 'Unicode' => '5.0.0',
3167 'Unicode::Normalize' => '1.02',
3168 'Unicode::UCD' => '0.25',
3169 'VMS::DCLsym' => '1.03',
3171 'Win32API::File' => '0.1001_01',
3172 'Win32CORE' => '0.02',
3173 'XS::APItest' => '0.12',
3174 'XSLoader' => '0.08',
3175 'attributes' => '0.08',
3181 'charnames' => '1.06',
3182 'constant' => '1.10',
3183 'diagnostics' => '1.17',
3184 'encoding' => '2.06',
3185 'encoding::warnings' => '0.11',
3186 'feature' => '1.10',
3190 'overload' => '1.06',
3192 'sigtrap' => '1.04',
3195 'threads' => '1.63',
3196 'threads::shared' => '1.12',
3198 'version' => '0.7203',
3199 'warnings' => '1.06',
3203 'B::Assembler' => 1,
3208 'B::Disassembler' => 1,
3212 'Thread::Signal' => 1,
3213 'Thread::Specific' => 1,
3215 'assertions::activate' => 1,
3216 'assertions::compat' => 1,
3220 delta_from => 5.009005,
3222 'Archive::Extract' => '0.24',
3223 'Archive::Tar' => '1.38',
3224 'Attribute::Handlers' => '0.79',
3226 'B::Concise' => '0.74',
3227 'B::Deparse' => '0.83',
3229 'CPAN::API::HOWTO' => undef,
3230 'CPAN::Debug' => '5.402212',
3231 'CPAN::DeferedCode' => '5.50',
3232 'CPAN::FirstTime' => '5.402229',