This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Dear CoreList: 5.8.2 *did* include DB_File.
[perl5.git] / dist / Module-CoreList / lib / Module / CoreList.pm
1 package Module::CoreList;
2 use strict;
3 use vars qw/$VERSION %released %version %families %upstream
4             %bug_tracker %deprecated/;
5 $VERSION = '2.56';
6
7 =head1 NAME
8
9 Module::CoreList - what modules shipped with versions of perl
10
11 =head1 SYNOPSIS
12
13  use Module::CoreList;
14
15  print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48
16
17  print Module::CoreList->first_release('File::Spec');         # prints 5.00405
18  print Module::CoreList->first_release_by_date('File::Spec'); # prints 5.005
19  print Module::CoreList->first_release('File::Spec', 0.82);   # prints 5.006001
20
21  print join ', ', Module::CoreList->find_modules(qr/Data/);
22     # prints 'Data::Dumper'
23  print join ', ', Module::CoreList->find_modules(qr/test::h.*::.*s/i, 5.008008);
24     # prints 'Test::Harness::Assert, Test::Harness::Straps'
25
26  print join ", ", @{ $Module::CoreList::families{5.005} };
27     # prints "5.005, 5.00503, 5.00504"
28
29 =head1 DESCRIPTION
30
31 Module::CoreList provides information on which core and dual-life modules shipped
32 with each version of L<perl>.
33
34 It provides a number of mechanisms for querying this information.
35
36 There is a utility called L<corelist> provided with this module
37 which is a convenient way of querying from the command-line.
38
39 There is a functional programming API available for programmers to query
40 information.
41
42 Programmers may also query the contained hash structures to find relevant
43 information.
44
45 =head1 FUNCTIONS API
46
47 These are the functions that are available, they may either be called as functions or class methods:
48
49   Module::CoreList::first_release('File::Spec'); # as a function
50
51   Module::CoreList->first_release('File::Spec'); # class method
52
53 =over
54
55 =item C<first_release( MODULE )>
56
57 Behaviour since version 2.11
58
59 Requires a MODULE name as an argument, returns the perl version when that module first
60 appeared in core as ordered by perl version number or undef ( in scalar context )
61 or an empty list ( in list context ) if that module is not in core.
62
63 =item C<first_release_by_date( MODULE )>
64
65 Requires a MODULE name as an argument, returns the perl version when that module first
66 appeared in core as ordered by release date or undef ( in scalar context )
67 or an empty list ( in list context ) if that module is not in core.
68
69 =item C<find_modules( REGEX, [ LIST OF PERLS ] )>
70
71 Takes a regex as an argument, returns a list of modules that match the regex given.
72 If only a regex is provided applies to all modules in all perl versions. Optionally
73 you may provide a list of perl versions to limit the regex search.
74
75 =item C<find_version( PERL_VERSION )>
76
77 Takes a perl version as an argument. Returns that perl version if it exists or C<undef>
78 otherwise.
79
80 =item C<is_deprecated( MODULE, PERL_VERSION )>
81
82 Available in version 2.22 and above.
83
84 Returns true if MODULE is marked as deprecated in PERL_VERSION.  If PERL_VERSION is
85 omitted, it defaults to the current version of Perl.
86
87 =item C<removed_from( MODULE )>
88
89 Available in version 2.32 and above
90
91 Takes a module name as an argument, returns the first perl version where that module
92 was removed from core. Returns undef if the given module was never in core or remains
93 in core.
94
95 =item C<removed_from_by_date( MODULE )>
96
97 Available in version 2.32 and above
98
99 Takes a module name as an argument, returns the first perl version by release date where that module
100 was removed from core. Returns undef if the given module was never in core or remains
101 in core.
102
103 =back
104
105 =head1 DATA STRUCTURES
106
107 These are the hash data structures that are available:
108
109 =over
110
111 =item C<%Module::CoreList::version>
112
113 A hash of hashes that is keyed on perl version as indicated
114 in $].  The second level hash is module => version pairs.
115
116 Note, it is possible for the version of a module to be unspecified,
117 whereby the value is C<undef>, so use C<exists $version{$foo}{$bar}> if
118 that's what you're testing for.
119
120 Starting with 2.10, the special module name C<Unicode> refers to the version of
121 the Unicode Character Database bundled with Perl.
122
123 =item C<%Module::CoreList::released>
124
125 Keyed on perl version this contains ISO
126 formatted versions of the release dates, as gleaned from L<perlhist>.
127
128 =item C<%Module::CoreList::families>
129
130 New, in 1.96, a hash that
131 clusters known perl releases by their major versions.
132
133 =item C<%Module::CoreList::deprecated>
134
135 A hash of hashes keyed on perl version and on module name.
136 If a module is defined it indicates that that module is
137 deprecated in that perl version and is scheduled for removal
138 from core at some future point.
139
140 =item C<%Module::CoreList::upstream>
141
142 A hash that contains information on where patches should be directed
143 for each core module.
144
145 UPSTREAM indicates where patches should go. C<undef> implies
146 that this hasn't been discussed for the module at hand.
147 C<blead> indicates that the copy of the module in the blead
148 sources is to be considered canonical, C<cpan> means that the
149 module on CPAN is to be patched first. C<first-come> means
150 that blead can be patched freely if it is in sync with the
151 latest release on CPAN.
152
153 =item C<%Module::CoreList::bug_tracker>
154
155 A hash that contains information on the appropriate bug tracker
156 for each core module.
157
158 BUGS is an email or url to post bug reports.  For modules with
159 UPSTREAM => 'blead', use perl5-porters@perl.org.  rt.cpan.org
160 appears to automatically provide a URL for CPAN modules; any value
161 given here overrides the default:
162 http://rt.cpan.org/Public/Dist/Display.html?Name=$ModuleName
163
164 =back
165
166 =head1 CAVEATS
167
168 Module::CoreList currently covers the 5.000, 5.001, 5.002, 5.003_07,
169 5.004, 5.004_05, 5.005, 5.005_03, 5.005_04, 5.6.0, 5.6.1, 5.6.2, 5.7.3,
170 5.8.0, 5.8.1, 5.8.2, 5.8.3, 5.8.4, 5.8.5, 5.8.6, 5.8.7, 5.8.8, 5.8.9,
171 5.9.0, 5.9.1, 5.9.2, 5.9.3, 5.9.4, 5.9.5, 5.10.0, 5.10.1, 5.11.0, 5.11.1,
172 5.11.2, 5.11.3, 5.11.4, 5.11.5, 5.12.0, 5.12.1, 5.12.2, 5.12.3, 5.12.4,
173 5.13.0, 5.13.1, 5.13.2, 5.13.3, 5.13.4, 5.13.5, 5.13.6, 5.13.7, 5.13.8,
174 5.13.9, 5.13.10, 5.13.11, 5.14.0, 5.14.1, 5.15.0, 5.15.1 and 5.15.2 releases of perl.
175
176 =head1 HISTORY
177
178 Moved to Changes file.
179
180 =head1 AUTHOR
181
182 Richard Clamp E<lt>richardc@unixbeard.netE<gt>
183
184 Currently maintained by the perl 5 porters E<lt>perl5-porters@perl.orgE<gt>.
185
186 =head1 LICENSE
187
188 Copyright (C) 2002-2009 Richard Clamp.  All Rights Reserved.
189
190 This module is free software; you can redistribute it and/or modify it
191 under the same terms as Perl itself.
192
193 =head1 SEE ALSO
194
195 L<corelist>, L<Module::Info>, L<perl>
196
197 =cut
198
199 my $dumpinc = 0;
200 sub import {
201     my $self = shift;
202     my $what = shift || '';
203     if ($what eq 'dumpinc') {
204         $dumpinc = 1;
205     }
206 }
207
208 END {
209     print "---INC---\n", join "\n" => keys %INC
210       if $dumpinc;
211 }
212
213
214 sub first_release_raw {
215     my $module = shift;
216     $module = shift if eval { $module->isa(__PACKAGE__) }
217       and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
218     my $version = shift;
219
220     my @perls = $version
221         ? grep { exists $version{$_}{ $module } &&
222                         $version{$_}{ $module } ge $version } keys %version
223         : grep { exists $version{$_}{ $module }             } keys %version;
224
225     return @perls;
226 }
227
228 sub first_release_by_date {
229     my @perls = &first_release_raw;
230     return unless @perls;
231     return (sort { $released{$a} cmp $released{$b} } @perls)[0];
232 }
233
234 sub first_release {
235     my @perls = &first_release_raw;
236     return unless @perls;
237     return (sort { $a cmp $b } @perls)[0];
238 }
239
240 sub find_modules {
241     my $regex = shift;
242     $regex = shift if eval { $regex->isa(__PACKAGE__) };
243     my @perls = @_;
244     @perls = keys %version unless @perls;
245
246     my %mods;
247     foreach (@perls) {
248         while (my ($k, $v) = each %{$version{$_}}) {
249             $mods{$k}++ if $k =~ $regex;
250         }
251     }
252     return sort keys %mods
253 }
254
255 sub find_version {
256     my $v = shift;
257     $v = shift if eval { $v->isa(__PACKAGE__) };
258     return $version{$v} if defined $version{$v};
259     return undef;
260 }
261
262 sub is_deprecated {
263     my $module = shift;
264     $module = shift if eval { $module->isa(__PACKAGE__) }
265       and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
266     my $perl_version = shift;
267     $perl_version ||= $];
268     return unless $module && exists $deprecated{$perl_version}{$module};
269     return $deprecated{$perl_version}{$module};
270 }
271
272 sub removed_from {
273   my @perls = &removed_raw;
274   return shift @perls;
275 }
276
277 sub removed_from_by_date {
278   my @perls = sort { $released{$a} cmp $released{$b} } &removed_raw;
279   return shift @perls;
280 }
281
282 sub removed_raw {
283   my $mod = shift;
284   $mod = shift if eval { $mod->isa(__PACKAGE__) }
285       and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
286   return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
287   my $last = pop @perls;
288   my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
289   return @removed;
290 }
291
292 # When things escaped.
293 # NB. If you put version numbers with trailing zeroes here, you
294 # should also add an alias for the numerical ($]) version; see
295 # just before the __END__ of this module.
296 %released = (
297     5.000    => '1994-10-17',
298     5.001    => '1995-03-14',
299     5.002    => '1996-02-29',
300     5.00307  => '1996-10-10',
301     5.004    => '1997-05-15',
302     5.005    => '1998-07-22',
303     5.00503  => '1999-03-28',
304     5.00405  => '1999-04-29',
305     5.006    => '2000-03-22',
306     5.006001 => '2001-04-08',
307     5.007003 => '2002-03-05',
308     5.008    => '2002-07-19',
309     5.008001 => '2003-09-25',
310     5.009    => '2003-10-27',
311     5.008002 => '2003-11-05',
312     5.006002 => '2003-11-15',
313     5.008003 => '2004-01-14',
314     5.00504  => '2004-02-23',
315     5.009001 => '2004-03-16',
316     5.008004 => '2004-04-21',
317     5.008005 => '2004-07-19',
318     5.008006 => '2004-11-27',
319     5.009002 => '2005-04-01',
320     5.008007 => '2005-05-30',
321     5.009003 => '2006-01-28',
322     5.008008 => '2006-01-31',
323     5.009004 => '2006-08-15',
324     5.009005 => '2007-07-07',
325     5.010000 => '2007-12-18',
326     5.008009 => '2008-12-14',
327     5.010001 => '2009-08-22',
328     5.011000 => '2009-10-02',
329     5.011001 => '2009-10-20',
330     5.011002 => '2009-11-20',
331     5.011003 => '2009-12-20',
332     5.011004 => '2010-01-20',
333     5.011005 => '2010-02-20',
334     5.012000 => '2010-04-12',
335     5.013000 => '2010-04-20',
336     5.012001 => '2010-05-16',
337     5.013001 => '2010-05-20',
338     5.013002 => '2010-06-22',
339     5.013003 => '2010-07-20',
340     5.013004 => '2010-08-20',
341     5.012002 => '2010-09-06',
342     5.013005 => '2010-09-19',
343     5.013006 => '2010-10-20',
344     5.013007 => '2010-11-20',
345     5.013008 => '2010-12-20',
346     5.012003 => '2011-01-21',
347     5.013009 => '2011-01-20',
348     5.013010 => '2011-02-20',
349     5.013011 => '2011-03-20',
350     5.014000 => '2011-05-14',
351     5.012004 => '2011-06-20',
352     5.014001 => '2011-06-16',
353     5.015000 => '2011-06-20',
354     5.015001 => '2011-07-20',
355     5.015002 => '2011-08-20',
356   );
357
358 for my $version ( sort { $a <=> $b } keys %released ) {
359     my $family = int ($version * 1000) / 1000;
360     push @{ $families{ $family }} , $version;
361 }
362
363
364 %version = (
365     5.000 => {
366         'AnyDBM_File'           => undef,  # lib/AnyDBM_File.pm
367         'AutoLoader'            => undef,  # lib/AutoLoader.pm
368         'AutoSplit'             => undef,  # lib/AutoSplit.pm
369         'Benchmark'             => undef,  # lib/Benchmark.pm
370         'Carp'                  => undef,  # lib/Carp.pm
371         'Cwd'                   => undef,  # lib/Cwd.pm
372         'DB_File'               => undef,  # ext/DB_File/DB_File.pm
373         'DynaLoader'            => undef,  # ext/DynaLoader/DynaLoader.pm
374         'English'               => undef,  # lib/English.pm
375         'Env'                   => undef,  # lib/Env.pm
376         'Exporter'              => undef,  # lib/Exporter.pm
377         'ExtUtils::MakeMaker'   => undef,  # lib/ExtUtils/MakeMaker.pm
378         'Fcntl'                 => undef,  # ext/Fcntl/Fcntl.pm
379         'File::Basename'        => undef,  # lib/File/Basename.pm
380         'File::CheckTree'       => undef,  # lib/File/CheckTree.pm
381         'File::Find'            => undef,  # lib/File/Find.pm
382         'FileHandle'            => undef,  # lib/FileHandle.pm
383         'GDBM_File'             => undef,  # ext/GDBM_File/GDBM_File.pm
384         'Getopt::Long'          => undef,  # lib/Getopt/Long.pm
385         'Getopt::Std'           => undef,  # lib/Getopt/Std.pm
386         'I18N::Collate'         => undef,  # lib/I18N/Collate.pm
387         'IPC::Open2'            => undef,  # lib/IPC/Open2.pm
388         'IPC::Open3'            => undef,  # lib/IPC/Open3.pm
389         'Math::BigFloat'        => undef,  # lib/Math/BigFloat.pm
390         'Math::BigInt'          => undef,  # lib/Math/BigInt.pm
391         'Math::Complex'         => undef,  # lib/Math/Complex.pm
392         'NDBM_File'             => undef,  # ext/NDBM_File/NDBM_File.pm
393         'Net::Ping'             => undef,  # lib/Net/Ping.pm
394         'ODBM_File'             => undef,  # ext/ODBM_File/ODBM_File.pm
395         'POSIX'                 => undef,  # ext/POSIX/POSIX.pm
396         'SDBM_File'             => undef,  # ext/SDBM_File/SDBM_File.pm
397         'Search::Dict'          => undef,  # lib/Search/Dict.pm
398         'Shell'                 => undef,  # lib/Shell.pm
399         'Socket'                => undef,  # ext/Socket/Socket.pm
400         'Sys::Hostname'         => undef,  # lib/Sys/Hostname.pm
401         'Sys::Syslog'           => undef,  # lib/Sys/Syslog.pm
402         'Term::Cap'             => undef,  # lib/Term/Cap.pm
403         'Term::Complete'        => undef,  # lib/Term/Complete.pm
404         'Test::Harness'         => undef,  # lib/Test/Harness.pm
405         'Text::Abbrev'          => undef,  # lib/Text/Abbrev.pm
406         'Text::ParseWords'      => undef,  # lib/Text/ParseWords.pm
407         'Text::Soundex'         => undef,  # lib/Text/Soundex.pm
408         'Text::Tabs'            => undef,  # lib/Text/Tabs.pm
409         'TieHash'               => undef,  # lib/TieHash.pm
410         'Time::Local'           => undef,  # lib/Time/Local.pm
411         'integer'               => undef,  # lib/integer.pm
412         'less'                  => undef,  # lib/less.pm
413         'sigtrap'               => undef,  # lib/sigtrap.pm
414         'strict'                => undef,  # lib/strict.pm
415         'subs'                  => undef,  # lib/subs.pm
416     },
417
418     5.001 => {
419         'AnyDBM_File'           => undef,  # lib/AnyDBM_File.pm
420         'AutoLoader'            => undef,  # lib/AutoLoader.pm
421         'AutoSplit'             => undef,  # lib/AutoSplit.pm
422         'Benchmark'             => undef,  # lib/Benchmark.pm
423         'Carp'                  => undef,  # lib/Carp.pm
424         'Cwd'                   => undef,  # lib/Cwd.pm
425         'DB_File'               => undef,  # ext/DB_File/DB_File.pm
426         'DynaLoader'            => undef,  # ext/DynaLoader/DynaLoader.pm
427         'English'               => undef,  # lib/English.pm
428         'Env'                   => undef,  # lib/Env.pm
429         'Exporter'              => undef,  # lib/Exporter.pm
430         'ExtUtils::Liblist'     => undef,  # lib/ExtUtils/Liblist.pm
431         'ExtUtils::MakeMaker'   => undef,  # lib/ExtUtils/MakeMaker.pm
432         'ExtUtils::Manifest'    => undef,  # lib/ExtUtils/Manifest.pm
433         'ExtUtils::Mkbootstrap' => undef,  # lib/ExtUtils/Mkbootstrap.pm
434         'Fcntl'                 => undef,  # ext/Fcntl/Fcntl.pm
435         'File::Basename'        => undef,  # lib/File/Basename.pm
436         'File::CheckTree'       => undef,  # lib/File/CheckTree.pm
437         'File::Find'            => undef,  # lib/File/Find.pm
438         'File::Path'            => undef,  # lib/File/Path.pm
439         'FileHandle'            => undef,  # lib/FileHandle.pm
440         'GDBM_File'             => undef,  # ext/GDBM_File/GDBM_File.pm
441         'Getopt::Long'          => undef,  # lib/Getopt/Long.pm
442         'Getopt::Std'           => undef,  # lib/Getopt/Std.pm
443         'I18N::Collate'         => undef,  # lib/I18N/Collate.pm
444         'IPC::Open2'            => undef,  # lib/IPC/Open2.pm
445         'IPC::Open3'            => undef,  # lib/IPC/Open3.pm
446         'Math::BigFloat'        => undef,  # lib/Math/BigFloat.pm
447         'Math::BigInt'          => undef,  # lib/Math/BigInt.pm
448         'Math::Complex'         => undef,  # lib/Math/Complex.pm
449         'NDBM_File'             => undef,  # ext/NDBM_File/NDBM_File.pm
450         'Net::Ping'             => undef,  # lib/Net/Ping.pm
451         'ODBM_File'             => undef,  # ext/ODBM_File/ODBM_File.pm
452         'POSIX'                 => undef,  # ext/POSIX/POSIX.pm
453         'SDBM_File'             => undef,  # ext/SDBM_File/SDBM_File.pm
454         'Search::Dict'          => undef,  # lib/Search/Dict.pm
455         'Shell'                 => undef,  # lib/Shell.pm
456         'Socket'                => undef,  # ext/Socket/Socket.pm
457         'SubstrHash'            => undef,  # lib/SubstrHash.pm
458         'Sys::Hostname'         => undef,  # lib/Sys/Hostname.pm
459         'Sys::Syslog'           => undef,  # lib/Sys/Syslog.pm
460         'Term::Cap'             => undef,  # lib/Term/Cap.pm
461         'Term::Complete'        => undef,  # lib/Term/Complete.pm
462         'Test::Harness'         => undef,  # lib/Test/Harness.pm
463         'Text::Abbrev'          => undef,  # lib/Text/Abbrev.pm
464         'Text::ParseWords'      => undef,  # lib/Text/ParseWords.pm
465         'Text::Soundex'         => undef,  # lib/Text/Soundex.pm
466         'Text::Tabs'            => undef,  # lib/Text/Tabs.pm
467         'TieHash'               => undef,  # lib/TieHash.pm
468         'Time::Local'           => undef,  # lib/Time/Local.pm
469         'integer'               => undef,  # lib/integer.pm
470         'less'                  => undef,  # lib/less.pm
471         'lib'                   => undef,  # lib/lib.pm
472         'sigtrap'               => undef,  # lib/sigtrap.pm
473         'strict'                => undef,  # lib/strict.pm
474         'subs'                  => undef,  # lib/subs.pm
475     },
476
477     5.002 => {
478         'AnyDBM_File'           => undef,  # lib/AnyDBM_File.pm
479         'AutoLoader'            => undef,  # lib/AutoLoader.pm
480         'AutoSplit'             => undef,  # lib/AutoSplit.pm
481         'Benchmark'             => undef,  # lib/Benchmark.pm
482         'Carp'                  => undef,  # lib/Carp.pm
483         'Cwd'                   => undef,  # lib/Cwd.pm
484         'DB_File'               => '1.01',  # ext/DB_File/DB_File.pm
485         'Devel::SelfStubber'    => '1.01',  # lib/Devel/SelfStubber.pm
486         'DirHandle'             => undef,  # lib/DirHandle.pm
487         'DynaLoader'            => '1.00',  # ext/DynaLoader/DynaLoader.pm
488         'English'               => undef,  # lib/English.pm
489         'Env'                   => undef,  # lib/Env.pm
490         'Exporter'              => undef,  # lib/Exporter.pm
491         'ExtUtils::Install'     => undef,  # lib/ExtUtils/Install.pm
492         'ExtUtils::Liblist'     => undef,  # lib/ExtUtils/Liblist.pm
493         'ExtUtils::MM_OS2'      => undef,  # lib/ExtUtils/MM_OS2.pm
494         'ExtUtils::MM_Unix'     => undef,  # lib/ExtUtils/MM_Unix.pm
495         'ExtUtils::MM_VMS'      => undef,  # lib/ExtUtils/MM_VMS.pm
496         'ExtUtils::MakeMaker'   => '5.21',  # lib/ExtUtils/MakeMaker.pm
497         'ExtUtils::Manifest'    => '1.22',  # lib/ExtUtils/Manifest.pm
498         'ExtUtils::Mkbootstrap' => undef,  # lib/ExtUtils/Mkbootstrap.pm
499         'ExtUtils::Mksymlists'  => '1.00',  # lib/ExtUtils/Mksymlists.pm
500         'Fcntl'                 => '1.00',  # ext/Fcntl/Fcntl.pm
501         'File::Basename'        => undef,  # lib/File/Basename.pm
502         'File::CheckTree'       => undef,  # lib/File/CheckTree.pm
503         'File::Copy'            => '1.5',  # lib/File/Copy.pm
504         'File::Find'            => undef,  # lib/File/Find.pm
505         'File::Path'            => '1.01',  # lib/File/Path.pm
506         'FileCache'             => undef,  # lib/FileCache.pm
507         'FileHandle'            => '1.00',  # ext/FileHandle/FileHandle.pm
508         'GDBM_File'             => '1.00',  # ext/GDBM_File/GDBM_File.pm
509         'Getopt::Long'          => '2.01',  # lib/Getopt/Long.pm
510         'Getopt::Std'           => undef,  # lib/Getopt/Std.pm
511         'I18N::Collate'         => undef,  # lib/I18N/Collate.pm
512         'IPC::Open2'            => undef,  # lib/IPC/Open2.pm
513         'IPC::Open3'            => undef,  # lib/IPC/Open3.pm
514         'Math::BigFloat'        => undef,  # lib/Math/BigFloat.pm
515         'Math::BigInt'          => undef,  # lib/Math/BigInt.pm
516         'Math::Complex'         => undef,  # lib/Math/Complex.pm
517         'NDBM_File'             => '1.00',  # ext/NDBM_File/NDBM_File.pm
518         'Net::Ping'             => '1',  # lib/Net/Ping.pm
519         'ODBM_File'             => '1.00',  # ext/ODBM_File/ODBM_File.pm
520         'POSIX'                 => '1.00',  # ext/POSIX/POSIX.pm
521         'Pod::Functions'        => undef,  # lib/Pod/Functions.pm
522         'Pod::Text'             => undef,  # lib/Pod/Text.pm
523         'SDBM_File'             => '1.00',  # ext/SDBM_File/SDBM_File.pm
524         'Safe'                  => '1.00',  # ext/Safe/Safe.pm
525         'Search::Dict'          => undef,  # lib/Search/Dict.pm
526         'SelectSaver'           => undef,  # lib/SelectSaver.pm
527         'SelfLoader'            => '1.06',  # lib/SelfLoader.pm
528         'Shell'                 => undef,  # lib/Shell.pm
529         'Socket'                => '1.5',  # ext/Socket/Socket.pm
530         'Symbol'                => undef,  # lib/Symbol.pm
531         'Sys::Hostname'         => undef,  # lib/Sys/Hostname.pm
532         'Sys::Syslog'           => undef,  # lib/Sys/Syslog.pm
533         'Term::Cap'             => undef,  # lib/Term/Cap.pm
534         'Term::Complete'        => undef,  # lib/Term/Complete.pm
535         'Term::ReadLine'        => undef,  # lib/Term/ReadLine.pm
536         'Test::Harness'         => '1.07',  # lib/Test/Harness.pm
537         'Text::Abbrev'          => undef,  # lib/Text/Abbrev.pm
538         'Text::ParseWords'      => undef,  # lib/Text/ParseWords.pm
539         'Text::Soundex'         => undef,  # lib/Text/Soundex.pm
540         'Text::Tabs'            => undef,  # lib/Text/Tabs.pm
541         'Text::Wrap'            => undef,  # lib/Text/Wrap.pm
542         'Tie::Hash'             => undef,  # lib/Tie/Hash.pm
543         'Tie::Scalar'           => undef,  # lib/Tie/Scalar.pm
544         'Tie::SubstrHash'       => undef,  # lib/Tie/SubstrHash.pm
545         'Time::Local'           => undef,  # lib/Time/Local.pm
546         'diagnostics'           => undef,  # lib/diagnostics.pm
547         'integer'               => undef,  # lib/integer.pm
548         'less'                  => undef,  # lib/less.pm
549         'lib'                   => undef,  # lib/lib.pm
550         'overload'              => undef,  # lib/overload.pm
551         'sigtrap'               => undef,  # lib/sigtrap.pm
552         'strict'                => undef,  # lib/strict.pm
553         'subs'                  => undef,  # lib/subs.pm
554         'vars'                  => undef,  # lib/vars.pm
555     },
556
557     5.00307 => {
558         'AnyDBM_File'           => undef, #./lib/AnyDBM_File.pm
559         'AutoLoader'            => undef, #./lib/AutoLoader.pm
560         'AutoSplit'             => undef, #./lib/AutoSplit.pm
561         'Benchmark'             => undef, #./lib/Benchmark.pm
562         'Carp'                  => undef, #./lib/Carp.pm
563         'Config'                => undef,
564         'Cwd'                   => undef, #./lib/Cwd.pm
565         'DB_File'               => '1.03', #./lib/DB_File.pm
566         'Devel::SelfStubber'    => '1.01', #./lib/Devel/SelfStubber.pm
567         'diagnostics'           => undef, #./lib/diagnostics.pm
568         'DirHandle'             => undef, #./lib/DirHandle.pm
569         'DynaLoader'            => '1.00', #./ext/DynaLoader/DynaLoader.pm
570         'English'               => undef, #./lib/English.pm
571         'Env'                   => undef, #./lib/Env.pm
572         'Exporter'              => undef, #./lib/Exporter.pm
573         'ExtUtils::Embed'       => '1.18', #./lib/ExtUtils/Embed.pm
574         'ExtUtils::Install'     => '1.15 ', #./lib/ExtUtils/Install.pm
575         'ExtUtils::Liblist'     => '1.20 ', #./lib/ExtUtils/Liblist.pm
576         'ExtUtils::MakeMaker'   => '5.38', #./lib/ExtUtils/MakeMaker.pm
577         'ExtUtils::Manifest'    => '1.27', #./lib/ExtUtils/Manifest.pm
578         'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
579         'ExtUtils::Mksymlists'  => '1.12 ', #./lib/ExtUtils/Mksymlists.pm
580         'ExtUtils::MM_OS2'      => undef, #./lib/ExtUtils/MM_OS2.pm
581         'ExtUtils::MM_Unix'     => '1.107 ', #./lib/ExtUtils/MM_Unix.pm
582         'ExtUtils::MM_VMS'      => undef, #./lib/ExtUtils/MM_VMS.pm
583         'ExtUtils::testlib'     => '1.11 ', #./lib/ExtUtils/testlib.pm
584         'Fatal'                 => undef, #./lib/Fatal.pm
585         'Fcntl'                 => '1.00', #./ext/Fcntl/Fcntl.pm
586         'File::Basename'        => '2.4', #./lib/File/Basename.pm
587         'File::CheckTree'       => undef, #./lib/File/CheckTree.pm
588         'File::Copy'            => '1.5', #./lib/File/Copy.pm
589         'File::Find'            => undef, #./lib/File/Find.pm
590         'File::Path'            => '1.01', #./lib/File/Path.pm
591         'FileCache'             => undef, #./lib/FileCache.pm
592         'FileHandle'            => '1.00', #./ext/FileHandle/FileHandle.pm
593         'FindBin'               => '1.04', #./lib/FindBin.pm
594         'GDBM_File'             => '1.00', #./ext/GDBM_File/GDBM_File.pm
595         'Getopt::Long'          => '2.04', #./lib/Getopt/Long.pm
596         'Getopt::Std'           => undef, #./lib/Getopt/Std.pm
597         'I18N::Collate'         => undef, #./lib/I18N/Collate.pm
598         'integer'               => undef, #./lib/integer.pm
599         'IO'                    => undef, #./ext/IO/IO.pm
600         'IO::File'              => '1.05', #./ext/IO/lib/IO/File.pm
601         'IO::Handle'            => '1.12', #./ext/IO/lib/IO/Handle.pm
602         'IO::Pipe'              => '1.07', #./ext/IO/lib/IO/Pipe.pm
603         'IO::Seekable'          => '1.05', #./ext/IO/lib/IO/Seekable.pm
604         'IO::Select'            => '1.09', #./ext/IO/lib/IO/Select.pm
605         'IO::Socket'            => '1.13', #./ext/IO/lib/IO/Socket.pm
606         'IPC::Open2'            => undef, #./lib/IPC/Open2.pm
607         'IPC::Open3'            => undef, #./lib/IPC/Open3.pm
608         'less'                  => undef, #./lib/less.pm
609         'lib'                   => undef, #./lib/lib.pm
610         'Math::BigFloat'        => undef, #./lib/Math/BigFloat.pm
611         'Math::BigInt'          => undef, #./lib/Math/BigInt.pm
612         'Math::Complex'         => undef, #./lib/Math/Complex.pm
613         'NDBM_File'             => '1.00', #./ext/NDBM_File/NDBM_File.pm
614         'Net::Ping'             => '1.01', #./lib/Net/Ping.pm
615         'ODBM_File'             => '1.00', #./ext/ODBM_File/ODBM_File.pm
616         'Opcode'                => '1.01', #./ext/Opcode/Opcode.pm
617         'ops'                   => undef, #./ext/Opcode/ops.pm
618         'OS2::ExtAttr'          => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
619         'OS2::PrfDB'            => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
620         'OS2::Process'          => undef, #./os2/OS2/Process/Process.pm
621         'OS2::REXX'             => undef, #./os2/OS2/REXX/REXX.pm
622         'overload'              => undef, #./lib/overload.pm
623         'Pod::Functions'        => undef, #./lib/Pod/Functions.pm
624         'Pod::Text'             => undef, #./lib/Pod/Text.pm
625         'POSIX'                 => '1.00', #./ext/POSIX/POSIX.pm
626         'Safe'                  => '2.06', #./ext/Opcode/Safe.pm
627         'SDBM_File'             => '1.00', #./ext/SDBM_File/SDBM_File.pm
628         'Search::Dict'          => undef, #./lib/Search/Dict.pm
629         'SelectSaver'           => undef, #./lib/SelectSaver.pm
630         'SelfLoader'            => '1.06', #./lib/SelfLoader.pm
631         'Shell'                 => undef, #./lib/Shell.pm
632         'sigtrap'               => '1.01', #./lib/sigtrap.pm
633         'Socket'                => '1.5', #./ext/Socket/Socket.pm
634         'strict'                => undef, #./lib/strict.pm
635         'subs'                  => undef, #./lib/subs.pm
636         'Symbol'                => undef, #./lib/Symbol.pm
637         'Sys::Hostname'         => undef, #./lib/Sys/Hostname.pm
638         'Sys::Syslog'           => undef, #./lib/Sys/Syslog.pm
639         'Term::Cap'             => undef, #./lib/Term/Cap.pm
640         'Term::Complete'        => undef, #./lib/Term/Complete.pm
641         'Term::ReadLine'        => undef, #./lib/Term/ReadLine.pm
642         'Test::Harness'         => '1.13', #./lib/Test/Harness.pm
643         'Text::Abbrev'          => undef, #./lib/Text/Abbrev.pm
644         'Text::ParseWords'      => undef, #./lib/Text/ParseWords.pm
645         'Text::Soundex'         => undef, #./lib/Text/Soundex.pm
646         'Text::Tabs'            => '96.051501', #./lib/Text/Tabs.pm
647         'Text::Wrap'            => '96.041801', #./lib/Text/Wrap.pm
648         'Tie::Hash'             => undef, #./lib/Tie/Hash.pm
649         'Tie::Scalar'           => undef, #./lib/Tie/Scalar.pm
650         'Tie::SubstrHash'       => undef, #./lib/Tie/SubstrHash.pm
651         'Time::Local'           => undef, #./lib/Time/Local.pm
652         'UNIVERSAL'             => undef, #./lib/UNIVERSAL.pm
653         'vars'                  => undef, #./lib/vars.pm
654         'VMS::Filespec'         => undef, #./vms/ext/Filespec.pm
655         'VMS::Stdio'            => '2.0', #./vms/ext/Stdio/Stdio.pm
656     },
657
658     5.004   => {
659         'AnyDBM_File'           => undef, #./lib/AnyDBM_File.pm
660         'AutoLoader'            => undef, #./lib/AutoLoader.pm
661         'AutoSplit'             => undef, #./lib/AutoSplit.pm
662         'autouse'               => '1.01', #./lib/autouse.pm
663         'Benchmark'             => undef, #./lib/Benchmark.pm
664         'blib'                  => undef, #./lib/blib.pm
665         'Bundle::CPAN'          => '0.02', #./lib/Bundle/CPAN.pm
666         'Carp'                  => undef, #./lib/Carp.pm
667         'CGI'                   => '2.36', #./lib/CGI.pm
668         'CGI::Apache'           => '1.01', #./lib/CGI/Apache.pm
669         'CGI::Carp'             => '1.06', #./lib/CGI/Carp.pm
670         'CGI::Fast'             => '1.00a', #./lib/CGI/Fast.pm
671         'CGI::Push'             => '1.00', #./lib/CGI/Push.pm
672         'CGI::Switch'           => '0.05', #./lib/CGI/Switch.pm
673         'Class::Struct'         => undef, #./lib/Class/Struct.pm
674         'Config'                => undef,
675         'constant'              => '1.00', #./lib/constant.pm
676         'CPAN'                  => '1.2401', #./lib/CPAN.pm
677         'CPAN::FirstTime'       => '1.18 ', #./lib/CPAN/FirstTime.pm
678         'CPAN::Nox'             => undef, #./lib/CPAN/Nox.pm
679         'Cwd'                   => '2.00', #./lib/Cwd.pm
680         'DB_File'               => '1.14', #./ext/DB_File/DB_File.pm
681         'Devel::SelfStubber'    => '1.01', #./lib/Devel/SelfStubber.pm
682         'diagnostics'           => undef, #./lib/diagnostics.pm
683         'DirHandle'             => undef, #./lib/DirHandle.pm
684         'DynaLoader'            => '1.02', #./ext/DynaLoader/DynaLoader.pm
685         'English'               => undef, #./lib/English.pm
686         'Env'                   => undef, #./lib/Env.pm
687         'Exporter'              => undef, #./lib/Exporter.pm
688         'ExtUtils::Command'     => '1.00', #./lib/ExtUtils/Command.pm
689         'ExtUtils::Embed'       => '1.2501', #./lib/ExtUtils/Embed.pm
690         'ExtUtils::Install'     => '1.16 ', #./lib/ExtUtils/Install.pm
691         'ExtUtils::Liblist'     => '1.2201 ', #./lib/ExtUtils/Liblist.pm
692         'ExtUtils::MakeMaker'   => '5.4002', #./lib/ExtUtils/MakeMaker.pm
693         'ExtUtils::Manifest'    => '1.33 ', #./lib/ExtUtils/Manifest.pm
694         'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
695         'ExtUtils::Mksymlists'  => '1.13 ', #./lib/ExtUtils/Mksymlists.pm
696         'ExtUtils::MM_OS2'      => undef, #./lib/ExtUtils/MM_OS2.pm
697         'ExtUtils::MM_Unix'     => '1.114 ', #./lib/ExtUtils/MM_Unix.pm
698         'ExtUtils::MM_VMS'      => undef, #./lib/ExtUtils/MM_VMS.pm
699         'ExtUtils::MM_Win32'    => undef, #./lib/ExtUtils/MM_Win32.pm
700         'ExtUtils::testlib'     => '1.11 ', #./lib/ExtUtils/testlib.pm
701         'ExtUtils::XSSymSet'    => '1.0', #./vms/ext/XSSymSet.pm
702         'Fcntl'                 => '1.03', #./ext/Fcntl/Fcntl.pm
703         'File::Basename'        => '2.5', #./lib/File/Basename.pm
704         'File::CheckTree'       => undef, #./lib/File/CheckTree.pm
705         'File::Compare'         => '1.1001', #./lib/File/Compare.pm
706         'File::Copy'            => '2.02', #./lib/File/Copy.pm
707         'File::Find'            => undef, #./lib/File/Find.pm
708         'File::Path'            => '1.04', #./lib/File/Path.pm
709         'File::stat'            => undef, #./lib/File/stat.pm
710         'FileCache'             => undef, #./lib/FileCache.pm
711         'FileHandle'            => '2.00', #./lib/FileHandle.pm
712         'FindBin'               => '1.04', #./lib/FindBin.pm
713         'GDBM_File'             => '1.00', #./ext/GDBM_File/GDBM_File.pm
714         'Getopt::Long'          => '2.10', #./lib/Getopt/Long.pm
715         'Getopt::Std'           => undef, #./lib/Getopt/Std.pm
716         'I18N::Collate'         => undef, #./lib/I18N/Collate.pm
717         'integer'               => undef, #./lib/integer.pm
718         'IO'                    => undef, #./ext/IO/IO.pm
719         'IO::File'              => '1.0602', #./ext/IO/lib/IO/File.pm
720         'IO::Handle'            => '1.1504', #./ext/IO/lib/IO/Handle.pm
721         'IO::Pipe'              => '1.0901', #./ext/IO/lib/IO/Pipe.pm
722         'IO::Seekable'          => '1.06', #./ext/IO/lib/IO/Seekable.pm
723         'IO::Select'            => '1.10', #./ext/IO/lib/IO/Select.pm
724         'IO::Socket'            => '1.1602', #./ext/IO/lib/IO/Socket.pm
725         'IPC::Open2'            => '1.01', #./lib/IPC/Open2.pm
726         'IPC::Open3'            => '1.0101', #./lib/IPC/Open3.pm
727         'less'                  => undef, #./lib/less.pm
728         'lib'                   => undef, #./lib/lib.pm
729         'locale'                => undef, #./lib/locale.pm
730         'Math::BigFloat'        => undef, #./lib/Math/BigFloat.pm
731         'Math::BigInt'          => undef, #./lib/Math/BigInt.pm
732         'Math::Complex'         => '1.01', #./lib/Math/Complex.pm
733         'Math::Trig'            => '1', #./lib/Math/Trig.pm
734         'NDBM_File'             => '1.00', #./ext/NDBM_File/NDBM_File.pm
735         'Net::hostent'          => undef, #./lib/Net/hostent.pm
736         'Net::netent'           => undef, #./lib/Net/netent.pm
737         'Net::Ping'             => '2.02', #./lib/Net/Ping.pm
738         'Net::protoent'         => undef, #./lib/Net/protoent.pm
739         'Net::servent'          => undef, #./lib/Net/servent.pm
740         'ODBM_File'             => '1.00', #./ext/ODBM_File/ODBM_File.pm
741         'Opcode'                => '1.04', #./ext/Opcode/Opcode.pm
742         'ops'                   => undef, #./ext/Opcode/ops.pm
743         'Safe'                  => '2.06', #./ext/Opcode/Safe.pm
744         'OS2::ExtAttr'          => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
745         'OS2::PrfDB'            => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
746         'OS2::Process'          => undef, #./os2/OS2/Process/Process.pm
747         'OS2::REXX'             => undef, #./os2/OS2/REXX/REXX.pm
748         'overload'              => undef, #./lib/overload.pm
749         'Pod::Functions'        => undef, #./lib/Pod/Functions.pm
750         'Pod::Html'             => undef, #./lib/Pod/Html.pm
751         'Pod::Text'             => '1.0203', #./lib/Pod/Text.pm
752         'POSIX'                 => '1.02', #./ext/POSIX/POSIX.pm
753         'SDBM_File'             => '1.00', #./ext/SDBM_File/SDBM_File.pm
754         'Search::Dict'          => undef, #./lib/Search/Dict.pm
755         'SelectSaver'           => undef, #./lib/SelectSaver.pm
756         'SelfLoader'            => '1.07', #./lib/SelfLoader.pm
757         'Shell'                 => undef, #./lib/Shell.pm
758         'sigtrap'               => '1.02', #./lib/sigtrap.pm
759         'Socket'                => '1.6', #./ext/Socket/Socket.pm
760         'strict'                => undef, #./lib/strict.pm
761         'subs'                  => undef, #./lib/subs.pm
762         'Symbol'                => '1.02', #./lib/Symbol.pm
763         'Sys::Hostname'         => undef, #./lib/Sys/Hostname.pm
764         'Sys::Syslog'           => undef, #./lib/Sys/Syslog.pm
765         'Term::Cap'             => undef, #./lib/Term/Cap.pm
766         'Term::Complete'        => undef, #./lib/Term/Complete.pm
767         'Term::ReadLine'        => undef, #./lib/Term/ReadLine.pm
768         'Test::Harness'         => '1.1502', #./lib/Test/Harness.pm
769         'Text::Abbrev'          => undef, #./lib/Text/Abbrev.pm
770         'Text::ParseWords'      => undef, #./lib/Text/ParseWords.pm
771         'Text::Soundex'         => undef, #./lib/Text/Soundex.pm
772         'Text::Tabs'            => '96.121201', #./lib/Text/Tabs.pm
773         'Text::Wrap'            => '97.011701', #./lib/Text/Wrap.pm
774         'Tie::Hash'             => undef, #./lib/Tie/Hash.pm
775         'Tie::RefHash'          => undef, #./lib/Tie/RefHash.pm
776         'Tie::Scalar'           => undef, #./lib/Tie/Scalar.pm
777         'Tie::SubstrHash'       => undef, #./lib/Tie/SubstrHash.pm
778         'Time::gmtime'          => '1.01', #./lib/Time/gmtime.pm
779         'Time::Local'           => undef, #./lib/Time/Local.pm
780         'Time::localtime'       => '1.01', #./lib/Time/localtime.pm
781         'Time::tm'              => undef, #./lib/Time/tm.pm
782         'UNIVERSAL'             => undef, #./lib/UNIVERSAL.pm
783         'User::grent'           => undef, #./lib/User/grent.pm
784         'User::pwent'           => undef, #./lib/User/pwent.pm
785         'vars'                  => undef, #./lib/vars.pm
786         'VMS::DCLsym'           => '1.01', #./vms/ext/DCLsym/DCLsym.pm
787         'VMS::Filespec'         => undef, #./vms/ext/Filespec.pm
788         'VMS::Stdio'            => '2.02', #./vms/ext/Stdio/Stdio.pm
789         'vmsish'                => undef, #./vms/ext/vmsish.pm
790     },
791
792     5.005   => {
793         'AnyDBM_File'           => undef, #./lib/AnyDBM_File.pm
794         'attrs'                 => '1.0', #./ext/attrs/attrs.pm
795         'AutoLoader'            => undef, #./lib/AutoLoader.pm
796         'AutoSplit'             => '1.0302', #./lib/AutoSplit.pm
797         'autouse'               => '1.01', #./lib/autouse.pm
798         'B'                     => undef, #./ext/B/B.pm
799         'B::Asmdata'            => undef, #./ext/B/B/Asmdata.pm
800         'B::Assembler'          => undef, #./ext/B/B/Assembler.pm
801         'B::Bblock'             => undef, #./ext/B/B/Bblock.pm
802         'B::Bytecode'           => undef, #./ext/B/B/Bytecode.pm
803         'B::C'                  => undef, #./ext/B/B/C.pm
804         'B::CC'                 => undef, #./ext/B/B/CC.pm
805         'B::Debug'              => undef, #./ext/B/B/Debug.pm
806         'B::Deparse'            => '0.56', #./ext/B/B/Deparse.pm
807         'B::Disassembler'       => undef, #./ext/B/B/Disassembler.pm
808         'B::Lint'               => undef, #./ext/B/B/Lint.pm
809         'B::Showlex'            => undef, #./ext/B/B/Showlex.pm
810         'B::Stackobj'           => undef, #./ext/B/B/Stackobj.pm
811         'B::Terse'              => undef, #./ext/B/B/Terse.pm
812         'B::Xref'               => undef, #./ext/B/B/Xref.pm
813         'base'                  => undef, #./lib/base.pm
814         'Benchmark'             => undef, #./lib/Benchmark.pm
815         'blib'                  => '1.00', #./lib/blib.pm
816         'Carp'                  => undef, #./lib/Carp.pm
817         'CGI'                   => '2.42', #./lib/CGI.pm
818         'CGI::Apache'           => '1.1', #./lib/CGI/Apache.pm
819         'CGI::Carp'             => '1.101', #./lib/CGI/Carp.pm
820         'CGI::Cookie'           => '1.06', #./lib/CGI/Cookie.pm
821         'CGI::Fast'             => '1.00a', #./lib/CGI/Fast.pm
822         'CGI::Push'             => '1.01', #./lib/CGI/Push.pm
823         'CGI::Switch'           => '0.06', #./lib/CGI/Switch.pm
824         'Class::Struct'         => undef, #./lib/Class/Struct.pm
825         'Config'                => undef,
826         'constant'              => '1.00', #./lib/constant.pm
827         'CPAN'                  => '1.3901', #./lib/CPAN.pm
828         'CPAN::FirstTime'       => '1.29 ', #./lib/CPAN/FirstTime.pm
829         'CPAN::Nox'             => undef, #./lib/CPAN/Nox.pm
830         'Cwd'                   => '2.01', #./lib/Cwd.pm
831         'Data::Dumper'          => '2.09', #./ext/Data/Dumper/Dumper.pm
832         'DB_File'               => '1.60', #./ext/DB_File/DB_File.pm
833         'Devel::SelfStubber'    => '1.01', #./lib/Devel/SelfStubber.pm
834         'DynaLoader'            => '1.03',
835         'diagnostics'           => undef, #./lib/diagnostics.pm
836         'DirHandle'             => undef, #./lib/DirHandle.pm
837         'English'               => undef, #./lib/English.pm
838         'Env'                   => undef, #./lib/Env.pm
839         'Exporter'              => undef, #./lib/Exporter.pm
840         'ExtUtils::Command'     => '1.01', #./lib/ExtUtils/Command.pm
841         'ExtUtils::Embed'       => '1.2505', #./lib/ExtUtils/Embed.pm
842         'ExtUtils::Install'     => '1.28 ', #./lib/ExtUtils/Install.pm
843         'ExtUtils::Installed'   => '0.02', #./lib/ExtUtils/Installed.pm
844         'ExtUtils::Liblist'     => '1.25 ', #./lib/ExtUtils/Liblist.pm
845         'ExtUtils::MakeMaker'   => '5.4301', #./lib/ExtUtils/MakeMaker.pm
846         'ExtUtils::Manifest'    => '1.33 ', #./lib/ExtUtils/Manifest.pm
847         'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
848         'ExtUtils::Mksymlists'  => '1.17 ', #./lib/ExtUtils/Mksymlists.pm
849         'ExtUtils::MM_OS2'      => undef, #./lib/ExtUtils/MM_OS2.pm
850         'ExtUtils::MM_Unix'     => '1.12601 ', #./lib/ExtUtils/MM_Unix.pm
851         'ExtUtils::MM_VMS'      => undef, #./lib/ExtUtils/MM_VMS.pm
852         'ExtUtils::MM_Win32'    => undef, #./lib/ExtUtils/MM_Win32.pm
853         'ExtUtils::Packlist'    => '0.03', #./lib/ExtUtils/Packlist.pm
854         'ExtUtils::testlib'     => '1.11 ', #./lib/ExtUtils/testlib.pm
855         'ExtUtils::XSSymSet'    => '1.0', #./vms/ext/XSSymSet.pm
856         'Fatal'                 => '1.02', #./lib/Fatal.pm
857         'Fcntl'                 => '1.03', #./ext/Fcntl/Fcntl.pm
858         'fields'                => '0.02', #./lib/fields.pm
859         'File::Basename'        => '2.6', #./lib/File/Basename.pm
860         'File::CheckTree'       => undef, #./lib/File/CheckTree.pm
861         'File::Compare'         => '1.1001', #./lib/File/Compare.pm
862         'File::Copy'            => '2.02', #./lib/File/Copy.pm
863         'File::DosGlob'         => undef, #./lib/File/DosGlob.pm
864         'File::Find'            => undef, #./lib/File/Find.pm
865         'File::Path'            => '1.0401', #./lib/File/Path.pm
866         'File::Spec'            => '0.6', #./lib/File/Spec.pm
867         'File::Spec::Mac'       => '1.0', #./lib/File/Spec/Mac.pm
868         'File::Spec::OS2'       => undef, #./lib/File/Spec/OS2.pm
869         'File::Spec::Unix'      => undef, #./lib/File/Spec/Unix.pm
870         'File::Spec::VMS'       => undef, #./lib/File/Spec/VMS.pm
871         'File::Spec::Win32'     => undef, #./lib/File/Spec/Win32.pm
872         'File::stat'            => undef, #./lib/File/stat.pm
873         'FileCache'             => undef, #./lib/FileCache.pm
874         'FileHandle'            => '2.00', #./lib/FileHandle.pm
875         'FindBin'               => '1.41', #./lib/FindBin.pm
876         'GDBM_File'             => '1.00', #./ext/GDBM_File/GDBM_File.pm
877         'Getopt::Long'          => '2.17', #./lib/Getopt/Long.pm
878         'Getopt::Std'           => undef, #./lib/Getopt/Std.pm
879         'I18N::Collate'         => undef, #./lib/I18N/Collate.pm
880         'integer'               => undef, #./lib/integer.pm
881         'IO'                    => undef, #./ext/IO/IO.pm
882         'IO::File'              => '1.06021', #./ext/IO/lib/IO/File.pm
883         'IO::Handle'            => '1.1505', #./ext/IO/lib/IO/Handle.pm
884         'IO::Pipe'              => '1.0901', #./ext/IO/lib/IO/Pipe.pm
885         'IO::Seekable'          => '1.06', #./ext/IO/lib/IO/Seekable.pm
886         'IO::Select'            => '1.10', #./ext/IO/lib/IO/Select.pm
887         'IO::Socket'            => '1.1603', #./ext/IO/lib/IO/Socket.pm
888         'IPC::Open2'            => '1.01', #./lib/IPC/Open2.pm
889         'IPC::Open3'            => '1.0102', #./lib/IPC/Open3.pm
890         'IPC::Msg'              => '1.00', #./ext/IPC/SysV/Msg.pm
891         'IPC::Semaphore'        => '1.00', #./ext/IPC/SysV/Semaphore.pm
892         'IPC::SysV'             => '1.03', #./ext/IPC/SysV/SysV.pm
893         'less'                  => undef, #./lib/less.pm
894         'lib'                   => undef, #./lib/lib.pm
895         'locale'                => undef, #./lib/locale.pm
896         'Math::BigFloat'        => undef, #./lib/Math/BigFloat.pm
897         'Math::BigInt'          => undef, #./lib/Math/BigInt.pm
898         'Math::Complex'         => '1.25', #./lib/Math/Complex.pm
899         'Math::Trig'            => '1', #./lib/Math/Trig.pm
900         'NDBM_File'             => '1.01', #./ext/NDBM_File/NDBM_File.pm
901         'Net::hostent'          => undef, #./lib/Net/hostent.pm
902         'Net::netent'           => undef, #./lib/Net/netent.pm
903         'Net::Ping'             => '2.02', #./lib/Net/Ping.pm
904         'Net::protoent'         => undef, #./lib/Net/protoent.pm
905         'Net::servent'          => undef, #./lib/Net/servent.pm
906         'O'                     => undef, #./ext/B/O.pm
907         'ODBM_File'             => '1.00', #./ext/ODBM_File/ODBM_File.pm
908         'Opcode'                => '1.04', #./ext/Opcode/Opcode.pm
909         'ops'                   => undef, #./ext/Opcode/ops.pm
910         'Safe'                  => '2.06', #./ext/Opcode/Safe.pm
911         'OS2::ExtAttr'          => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
912         'OS2::PrfDB'            => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
913         'OS2::Process'          => '0.2', #./os2/OS2/Process/Process.pm
914         'OS2::REXX'             => undef, #./os2/OS2/REXX/REXX.pm
915         'overload'              => undef, #./lib/overload.pm
916         'Pod::Functions'        => undef, #./lib/Pod/Functions.pm
917         'Pod::Html'             => '1.01', #./lib/Pod/Html.pm
918         'Pod::Text'             => '1.0203', #./lib/Pod/Text.pm
919         'POSIX'                 => '1.02', #./ext/POSIX/POSIX.pm
920         're'                    => '0.02', #./ext/re/re.pm
921         'SDBM_File'             => '1.00', #./ext/SDBM_File/SDBM_File.pm
922         'Search::Dict'          => undef, #./lib/Search/Dict.pm
923         'SelectSaver'           => undef, #./lib/SelectSaver.pm
924         'SelfLoader'            => '1.08', #./lib/SelfLoader.pm
925         'Shell'                 => undef, #./lib/Shell.pm
926         'sigtrap'               => '1.02', #./lib/sigtrap.pm
927         'Socket'                => '1.7', #./ext/Socket/Socket.pm
928         'strict'                => '1.01', #./lib/strict.pm
929         'subs'                  => undef, #./lib/subs.pm
930         'Symbol'                => '1.02', #./lib/Symbol.pm
931         'Sys::Hostname'         => undef, #./lib/Sys/Hostname.pm
932         'Sys::Syslog'           => undef, #./lib/Sys/Syslog.pm
933         'Term::Cap'             => undef, #./lib/Term/Cap.pm
934         'Term::Complete'        => undef, #./lib/Term/Complete.pm
935         'Term::ReadLine'        => undef, #./lib/Term/ReadLine.pm
936         'Test'                  => '1.04', #./lib/Test.pm
937         'Test::Harness'         => '1.1602', #./lib/Test/Harness.pm
938         'Text::Abbrev'          => undef, #./lib/Text/Abbrev.pm
939         'Text::ParseWords'      => '3.1', #./lib/Text/ParseWords.pm
940         'Text::Soundex'         => undef, #./lib/Text/Soundex.pm
941         'Text::Tabs'            => '96.121201', #./lib/Text/Tabs.pm
942         'Text::Wrap'            => '97.02', #./lib/Text/Wrap.pm
943         'Thread'                => '1.0', #./ext/Thread/Thread.pm
944         'Thread::Queue'         => undef, #./ext/Thread/Thread/Queue.pm
945         'Thread::Semaphore'     => undef, #./ext/Thread/Thread/Semaphore.pm
946         'Thread::Signal'        => undef, #./ext/Thread/Thread/Signal.pm
947         'Thread::Specific'      => undef, #./ext/Thread/Thread/Specific.pm
948         'Tie::Array'            => '1.00', #./lib/Tie/Array.pm
949         'Tie::Handle'           => undef, #./lib/Tie/Handle.pm
950         'Tie::Hash'             => undef, #./lib/Tie/Hash.pm
951         'Tie::RefHash'          => undef, #./lib/Tie/RefHash.pm
952         'Tie::Scalar'           => undef, #./lib/Tie/Scalar.pm
953         'Tie::SubstrHash'       => undef, #./lib/Tie/SubstrHash.pm
954         'Time::gmtime'          => '1.01', #./lib/Time/gmtime.pm
955         'Time::Local'           => undef, #./lib/Time/Local.pm
956         'Time::localtime'       => '1.01', #./lib/Time/localtime.pm
957         'Time::tm'              => undef, #./lib/Time/tm.pm
958         'UNIVERSAL'             => undef, #./lib/UNIVERSAL.pm
959         'User::grent'           => undef, #./lib/User/grent.pm
960         'User::pwent'           => undef, #./lib/User/pwent.pm
961         'vars'                  => undef, #./lib/vars.pm
962         'VMS::DCLsym'           => '1.01', #./vms/ext/DCLsym/DCLsym.pm
963         'VMS::Filespec'         => undef, #./vms/ext/Filespec.pm
964         'VMS::Stdio'            => '2.1', #./vms/ext/Stdio/Stdio.pm
965         'vmsish'                => undef, #./vms/ext/vmsish.pm
966     },
967
968     5.00503   => {
969         'AnyDBM_File'           => undef,
970         'attrs'                 => '1.0',
971         'AutoLoader'            => undef,
972         'AutoSplit'             => 1.0303,
973         'autouse'               => 1.01,
974         'B::Asmdata'            => undef,
975         'B::Assembler'          => undef,
976         'B::Bblock'             => undef,
977         'B::Bytecode'           => undef,
978         'B::C'                  => undef,
979         'B::CC'                 => undef,
980         'B::Debug'              => undef,
981         'B::Deparse'            => 0.56,
982         'B::Disassembler'       => undef,
983         'B::Lint'               => undef,
984         'B'                     => undef,
985         'B::Showlex'            => undef,
986         'B::Stackobj'           => undef,
987         'B::Terse'              => undef,
988         'B::Xref'               => undef,
989         'base'                  => undef,
990         'Benchmark'             => undef,
991         'blib'                  => '1.00',
992         'Carp'                  => undef,
993         'CGI'                   => 2.46,
994         'CGI::Apache'           => 1.1,
995         'CGI::Carp'             => 1.13,
996         'CGI::Cookie'           => 1.06,
997         'CGI::Fast'             => 1.01,
998         'CGI::Push'             => 1.01,
999         'CGI::Switch'           => 0.06,
1000         'Class::Struct'         => undef,
1001         'Config'                => undef,
1002         'constant'              => '1.00',
1003         'CPAN::FirstTime'       => 1.36 ,
1004         'CPAN'                  => 1.48,
1005         'CPAN::Nox'             => '1.00',
1006         'Cwd'                   => 2.01,
1007         'Data::Dumper'          => 2.101,
1008         'DB_File'               => 1.65,
1009         'Devel::SelfStubber'    => 1.01,
1010         'diagnostics'           => undef,
1011         'DirHandle'             => undef,
1012         'Dumpvalue'             => undef,
1013         'DynaLoader'            => 1.03,
1014         'English'               => undef,
1015         'Env'                   => undef,
1016         'Exporter'              => undef,
1017         'ExtUtils::Command'     => 1.01,
1018         'ExtUtils::Embed'       => 1.2505,
1019         'ExtUtils::Install'     => 1.28 ,
1020         'ExtUtils::Installed'   => 0.02,
1021         'ExtUtils::Liblist'     => 1.25 ,
1022         'ExtUtils::MakeMaker'   => 5.4302,
1023         'ExtUtils::Manifest'    => 1.33 ,
1024         'ExtUtils::Mkbootstrap' => 1.14 ,
1025         'ExtUtils::Mksymlists'  => 1.17 ,
1026         'ExtUtils::MM_OS2'      => undef,
1027         'ExtUtils::MM_Unix'     => 1.12602 ,
1028         'ExtUtils::MM_VMS'      => undef,
1029         'ExtUtils::MM_Win32'    => undef,
1030         'ExtUtils::Packlist'    => 0.03,
1031         'ExtUtils::testlib'     => 1.11 ,
1032         'ExtUtils::XSSymSet'    => '1.0',
1033         'Fatal'                 => 1.02,
1034         'Fcntl'                 => 1.03,
1035         'fields'                => 0.02,
1036         'File::Basename'        => 2.6,
1037         'File::CheckTree'       => undef,
1038         'File::Compare'         => 1.1001,
1039         'File::Copy'            => 2.02,
1040         'File::DosGlob'         => undef,
1041         'File::Find'            => undef,
1042         'File::Path'            => 1.0401,
1043         'File::Spec'            => 0.6,
1044         'File::Spec::Mac'       => '1.0',
1045         'File::Spec::OS2'       => undef,
1046         'File::Spec::Unix'      => undef,
1047         'File::Spec::VMS'       => undef,
1048         'File::Spec::Win32'     => undef,
1049         'File::stat'            => undef,
1050         'FileCache'             => undef,
1051         'FileHandle'            => '2.00',
1052         'FindBin'               => 1.42,
1053         'GDBM_File'             => '1.00',
1054         'Getopt::Long'          => 2.19,
1055         'Getopt::Std'           => 1.01,
1056         'I18N::Collate'         => undef,
1057         'integer'               => undef,
1058         'IO'                    => undef,
1059         'IO::File'              => 1.06021,
1060         'IO::Handle'            => 1.1505,
1061         'IO::Pipe'              => 1.0902,
1062         'IO::Seekable'          => 1.06,
1063         'IO::Select'            => '1.10',
1064         'IO::Socket'            => 1.1603,
1065         'IPC::Msg'              => '1.00',
1066         'IPC::Open2'            => 1.01,
1067         'IPC::Open3'            => 1.0103,
1068         'IPC::Semaphore'        => '1.00',
1069         'IPC::SysV'             => 1.03,
1070         'less'                  => undef,
1071         'lib'                   => undef,
1072         'locale'                => undef,
1073         'Math::BigFloat'        => undef,
1074         'Math::BigInt'          => undef,
1075         'Math::Complex'         => 1.26,
1076         'Math::Trig'            => 1,
1077         'NDBM_File'             => 1.01,
1078         'Net::hostent'          => undef,
1079         'Net::netent'           => undef,
1080         'Net::Ping'             => 2.02,
1081         'Net::protoent'         => undef,
1082         'Net::servent'          => undef,
1083         'O'                     => undef,
1084         'ODBM_File'             => '1.00',
1085         'Opcode'                => 1.04,
1086         'ops'                   => undef,
1087         'OS2::ExtAttr'          => 0.01,
1088         'OS2::PrfDB'            => 0.02,
1089         'OS2::Process'          => 0.2,
1090         'OS2::REXX'             => undef,
1091         'overload'              => undef,
1092         'Pod::Functions'        => undef,
1093         'Pod::Html'             => 1.01,
1094         'Pod::Text'             => 1.0203,
1095         'POSIX'                 => 1.02,
1096         're'                    => 0.02,
1097         'Safe'                  => 2.06,
1098         'SDBM_File'             => '1.00',
1099         'Search::Dict'          => undef,
1100         'SelectSaver'           => undef,
1101         'SelfLoader'            => 1.08,
1102         'Shell'                 => undef,
1103         'sigtrap'               => 1.02,
1104         'Socket'                => 1.7,
1105         'strict'                => 1.01,
1106         'subs'                  => undef,
1107         'Symbol'                => 1.02,
1108         'Sys::Hostname'         => undef,
1109         'Sys::Syslog'           => undef,
1110         'Term::Cap'             => undef,
1111         'Term::Complete'        => undef,
1112         'Term::ReadLine'        => undef,
1113         'Test'                  => 1.122,
1114         'Test::Harness'         => 1.1602,
1115         'Text::Abbrev'          => undef,
1116         'Text::ParseWords'      => 3.1,
1117         'Text::Soundex'         => undef,
1118         'Text::Tabs'            => 96.121201,
1119         'Text::Wrap'            => 98.112902,
1120         'Thread'                => '1.0',
1121         'Thread::Queue'         => undef,
1122         'Thread::Semaphore'     => undef,
1123         'Thread::Specific'      => undef,
1124         'Thread::Signal'        => undef,
1125         'Tie::Array'            => '1.00',
1126         'Tie::Handle'           => undef,
1127         'Tie::Hash'             => undef,
1128         'Tie::RefHash'          => undef,
1129         'Tie::Scalar'           => undef,
1130         'Tie::SubstrHash'       => undef,
1131         'Time::gmtime'          => 1.01,
1132         'Time::Local'           => undef,
1133         'Time::localtime'       => 1.01,
1134         'Time::tm'              => undef,
1135         'UNIVERSAL'             => undef,
1136         'User::grent'           => undef,
1137         'User::pwent'           => undef,
1138         'vars'                  => undef,
1139         'VMS::DCLsym'           => 1.01,
1140         'VMS::Filespec'         => undef,
1141         'VMS::Stdio'            => 2.1,
1142         'vmsish'                => undef,
1143     },
1144
1145     5.00405   => {
1146         'AnyDBM_File'           => undef, #./lib/AnyDBM_File.pm
1147         'attrs'                 => '0.1', #./lib/attrs.pm
1148         'AutoLoader'            => '5.56', #./lib/AutoLoader.pm
1149         'AutoSplit'             => '1.0303', #./lib/AutoSplit.pm
1150         'autouse'               => '1.01', #./lib/autouse.pm
1151         'base'                  => undef, #./lib/base.pm
1152         'Benchmark'             => undef, #./lib/Benchmark.pm
1153         'blib'                  => '1.00', #./lib/blib.pm
1154         'Bundle::CPAN'          => '0.03', #./lib/Bundle/CPAN.pm
1155         'Carp'                  => undef, #./lib/Carp.pm
1156         'CGI'                   => '2.42', #./lib/CGI.pm
1157         'CGI::Apache'           => '1.1', #./lib/CGI/Apache.pm
1158         'CGI::Carp'             => '1.10', #./lib/CGI/Carp.pm
1159         'CGI::Cookie'           => '1.06', #./lib/CGI/Cookie.pm
1160         'CGI::Fast'             => '1.00a', #./lib/CGI/Fast.pm
1161         'CGI::Push'             => '1.01', #./lib/CGI/Push.pm
1162         'CGI::Switch'           => '0.06', #./lib/CGI/Switch.pm
1163         'Class::Struct'         => undef, #./lib/Class/Struct.pm
1164         'Config'                => undef,
1165         'constant'              => '1.00', #./lib/constant.pm
1166         'CPAN'                  => '1.40', #./lib/CPAN.pm
1167         'CPAN::FirstTime'       => '1.30 ', #./lib/CPAN/FirstTime.pm
1168         'CPAN::Nox'             => undef, #./lib/CPAN/Nox.pm
1169         'Cwd'                   => '2.01', #./lib/Cwd.pm
1170         'DB_File'               => '1.15', #./ext/DB_File/DB_File.pm
1171         'Devel::SelfStubber'    => '1.01', #./lib/Devel/SelfStubber.pm
1172         'diagnostics'           => undef, #./lib/diagnostics.pm
1173         'DirHandle'             => undef, #./lib/DirHandle.pm
1174         'DynaLoader'            => '1.03',
1175         'English'               => undef, #./lib/English.pm
1176         'Env'                   => undef, #./lib/Env.pm
1177         'Exporter'              => undef, #./lib/Exporter.pm
1178         'ExtUtils::Command'     => '1.01', #./lib/ExtUtils/Command.pm
1179         'ExtUtils::Embed'       => '1.2505', #./lib/ExtUtils/Embed.pm
1180         'ExtUtils::Install'     => '1.28 ', #./lib/ExtUtils/Install.pm
1181         'ExtUtils::Liblist'     => '1.25 ', #./lib/ExtUtils/Liblist.pm
1182         'ExtUtils::MakeMaker'   => '5.42', #./lib/ExtUtils/MakeMaker.pm
1183         'ExtUtils::Manifest'    => '1.33 ', #./lib/ExtUtils/Manifest.pm
1184         'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm
1185         'ExtUtils::Mksymlists'  => '1.16 ', #./lib/ExtUtils/Mksymlists.pm
1186         'ExtUtils::MM_OS2'      => undef, #./lib/ExtUtils/MM_OS2.pm
1187         'ExtUtils::MM_Unix'     => '1.118 ', #./lib/ExtUtils/MM_Unix.pm
1188         'ExtUtils::MM_VMS'      => undef, #./lib/ExtUtils/MM_VMS.pm
1189         'ExtUtils::MM_Win32'    => undef, #./lib/ExtUtils/MM_Win32.pm
1190         'ExtUtils::testlib'     => '1.11 ', #./lib/ExtUtils/testlib.pm
1191         'ExtUtils::XSSymSet'    => '1.0', #./vms/ext/XSSymSet.pm
1192         'Fcntl'                 => '1.03', #./ext/Fcntl/Fcntl.pm
1193         'File::Basename'        => '2.6', #./lib/File/Basename.pm
1194         'File::CheckTree'       => undef, #./lib/File/CheckTree.pm
1195         'File::Compare'         => '1.1001', #./lib/File/Compare.pm
1196         'File::Copy'            => '2.02', #./lib/File/Copy.pm
1197         'File::DosGlob'         => undef, #./lib/File/DosGlob.pm
1198         'File::Find'            => undef, #./lib/File/Find.pm
1199         'File::Path'            => '1.0402', #./lib/File/Path.pm
1200         'File::Spec'            => '0.6', #./lib/File/Spec.pm
1201         'File::Spec::Mac'       => '1.0', #./lib/File/Spec/Mac.pm
1202         'File::Spec::OS2'       => undef, #./lib/File/Spec/OS2.pm
1203         'File::Spec::Unix'      => undef, #./lib/File/Spec/Unix.pm
1204         'File::Spec::VMS'       => undef, #./lib/File/Spec/VMS.pm
1205         'File::Spec::Win32'     => undef, #./lib/File/Spec/Win32.pm
1206         'File::stat'            => undef, #./lib/File/stat.pm
1207         'FileCache'             => undef, #./lib/FileCache.pm
1208         'FileHandle'            => '2.00', #./lib/FileHandle.pm
1209         'FindBin'               => '1.41', #./lib/FindBin.pm
1210         'GDBM_File'             => '1.00', #./ext/GDBM_File/GDBM_File.pm
1211         'Getopt::Long'          => '2.19', #./lib/Getopt/Long.pm
1212         'Getopt::Std'           => undef, #./lib/Getopt/Std.pm
1213         'I18N::Collate'         => undef, #./lib/I18N/Collate.pm
1214         'integer'               => undef, #./lib/integer.pm
1215         'IO'                    => undef, #./ext/IO/IO.pm
1216         'IO::File'              => '1.06021', #./ext/IO/lib/IO/File.pm
1217         'IO::Handle'            => '1.1504', #./ext/IO/lib/IO/Handle.pm
1218         'IO::Pipe'              => '1.0901', #./ext/IO/lib/IO/Pipe.pm
1219         'IO::Seekable'          => '1.06', #./ext/IO/lib/IO/Seekable.pm
1220         'IO::Select'            => '1.10', #./ext/IO/lib/IO/Select.pm
1221         'IO::Socket'            => '1.1603', #./ext/IO/lib/IO/Socket.pm
1222         'IPC::Open2'            => '1.01', #./lib/IPC/Open2.pm
1223         'IPC::Open3'            => '1.0103', #./lib/IPC/Open3.pm
1224         'less'                  => undef, #./lib/less.pm
1225         'lib'                   => undef, #./lib/lib.pm
1226         'locale'                => undef, #./lib/locale.pm
1227         'Math::BigFloat'        => undef, #./lib/Math/BigFloat.pm
1228         'Math::BigInt'          => undef, #./lib/Math/BigInt.pm
1229         'Math::Complex'         => '1.25', #./lib/Math/Complex.pm
1230         'Math::Trig'            => '1', #./lib/Math/Trig.pm
1231         'NDBM_File'             => '1.01', #./ext/NDBM_File/NDBM_File.pm
1232         'Net::hostent'          => undef, #./lib/Net/hostent.pm
1233         'Net::netent'           => undef, #./lib/Net/netent.pm
1234         'Net::Ping'             => '2.02', #./lib/Net/Ping.pm
1235         'Net::protoent'         => undef, #./lib/Net/protoent.pm
1236         'Net::servent'          => undef, #./lib/Net/servent.pm
1237         'ODBM_File'             => '1.00', #./ext/ODBM_File/ODBM_File.pm
1238         'Opcode'                => '1.04', #./ext/Opcode/Opcode.pm
1239         'ops'                   => undef, #./ext/Opcode/ops.pm
1240         'OS2::ExtAttr'          => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
1241         'OS2::PrfDB'            => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
1242         'OS2::Process'          => undef, #./os2/OS2/Process/Process.pm
1243         'OS2::REXX'             => undef, #./os2/OS2/REXX/REXX.pm
1244         'overload'              => undef, #./lib/overload.pm
1245         'Pod::Functions'        => undef, #./lib/Pod/Functions.pm
1246         'Pod::Html'             => '1.0101', #./lib/Pod/Html.pm
1247         'Pod::Text'             => '1.0204', #./lib/Pod/Text.pm
1248         'POSIX'                 => '1.02', #./ext/POSIX/POSIX.pm
1249         're'                    => undef, #./lib/re.pm
1250         'Safe'                  => '2.06', #./ext/Opcode/Safe.pm
1251         'SDBM_File'             => '1.00', #./ext/SDBM_File/SDBM_File.pm
1252         'Search::Dict'          => undef, #./lib/Search/Dict.pm
1253         'SelectSaver'           => undef, #./lib/SelectSaver.pm
1254         'SelfLoader'            => '1.08', #./lib/SelfLoader.pm
1255         'Shell'                 => undef, #./lib/Shell.pm
1256         'sigtrap'               => '1.02', #./lib/sigtrap.pm
1257         'Socket'                => '1.7', #./ext/Socket/Socket.pm
1258         'strict'                => '1.01', #./lib/strict.pm
1259         'subs'                  => undef, #./lib/subs.pm
1260         'Symbol'                => '1.02', #./lib/Symbol.pm
1261         'Sys::Hostname'         => undef, #./lib/Sys/Hostname.pm
1262         'Sys::Syslog'           => undef, #./lib/Sys/Syslog.pm
1263         'Term::Cap'             => undef, #./lib/Term/Cap.pm
1264         'Term::Complete'        => undef, #./lib/Term/Complete.pm
1265         'Term::ReadLine'        => undef, #./lib/Term/ReadLine.pm
1266         'Test'                  => '1.04', #./lib/Test.pm
1267         'Test::Harness'         => '1.1602', #./lib/Test/Harness.pm
1268         'Text::Abbrev'          => undef, #./lib/Text/Abbrev.pm
1269         'Text::ParseWords'      => '3.1001', #./lib/Text/ParseWords.pm
1270         'Text::Soundex'         => undef, #./lib/Text/Soundex.pm
1271         'Text::Tabs'            => '96.121201', #./lib/Text/Tabs.pm
1272         'Text::Wrap'            => '98.112902', #./lib/Text/Wrap.pm
1273         'Tie::Handle'           => undef, #./lib/Tie/Handle.pm
1274         'Tie::Hash'             => undef, #./lib/Tie/Hash.pm
1275         'Tie::RefHash'          => undef, #./lib/Tie/RefHash.pm
1276         'Tie::Scalar'           => undef, #./lib/Tie/Scalar.pm
1277         'Tie::SubstrHash'       => undef, #./lib/Tie/SubstrHash.pm
1278         'Time::gmtime'          => '1.01', #./lib/Time/gmtime.pm
1279         'Time::Local'           => undef, #./lib/Time/Local.pm
1280         'Time::localtime'       => '1.01', #./lib/Time/localtime.pm
1281         'Time::tm'              => undef, #./lib/Time/tm.pm
1282         'UNIVERSAL'             => undef, #./lib/UNIVERSAL.pm
1283         'User::grent'           => undef, #./lib/User/grent.pm
1284         'User::pwent'           => undef, #./lib/User/pwent.pm
1285         'vars'                  => undef, #./lib/vars.pm
1286         'VMS::DCLsym'           => '1.01', #./vms/ext/DCLsym/DCLsym.pm
1287         'VMS::Filespec'         => undef, #./vms/ext/Filespec.pm
1288         'VMS::Stdio'            => '2.02', #./vms/ext/Stdio/Stdio.pm
1289         'vmsish'                => undef, #./vms/ext/vmsish.pm
1290     },
1291
1292     5.00504 => {
1293         'AnyDBM_File'           => undef,  #lib/AnyDBM_File.pm
1294         'attrs'                 => '1.0',  #lib/attrs.pm
1295         'AutoLoader'            => undef,  #lib/AutoLoader.pm
1296         'AutoSplit'             => '1.0303',  #lib/AutoSplit.pm
1297         'autouse'               => '1.01',  #lib/autouse.pm
1298         'base'                  => undef,  #lib/base.pm
1299         'B::Asmdata'            => undef,  #lib/B/Asmdata.pm
1300         'B::Assembler'          => undef,  #lib/B/Assembler.pm
1301         'B::Bblock'             => undef,  #lib/B/Bblock.pm
1302         'B::Bytecode'           => undef,  #lib/B/Bytecode.pm
1303         'B::CC'                 => undef,  #lib/B/CC.pm
1304         'B::C'                  => undef,  #lib/B/C.pm
1305         'B::Debug'              => undef,  #lib/B/Debug.pm
1306         'B::Deparse'            => '0.56',  #lib/B/Deparse.pm
1307         'B::Disassembler'       => undef,  #lib/B/Disassembler.pm
1308         'Benchmark'             => undef,  #lib/Benchmark.pm
1309         'blib'                  => '1.00',  #lib/blib.pm
1310         'B::Lint'               => undef,  #lib/B/Lint.pm
1311         'B::Showlex'            => undef,  #lib/B/Showlex.pm
1312         'B::Stackobj'           => undef,  #lib/B/Stackobj.pm
1313         'B::Terse'              => undef,  #lib/B/Terse.pm
1314         'B'                     => undef,  #lib/B.pm
1315         'B::Xref'               => undef,  #lib/B/Xref.pm
1316         'Carp'                  => undef,  #lib/Carp.pm
1317         'CGI'                   => '2.46',  #lib/CGI.pm
1318         'CGI::Apache'           => '1.1',  #lib/CGI/Apache.pm
1319         'CGI::Carp'             => '1.13',  #lib/CGI/Carp.pm
1320         'CGI::Cookie'           => '1.06',  #lib/CGI/Cookie.pm
1321         'CGI::Fast'             => '1.01',  #lib/CGI/Fast.pm
1322         'CGI::Push'             => '1.01',  #lib/CGI/Push.pm
1323         'CGI::Switch'           => '0.06',  #lib/CGI/Switch.pm
1324         'Class::Struct'         => undef,  #lib/Class/Struct.pm
1325         'Config'                => undef,  #lib/Config.pm
1326         'constant'              => '1.00',  #lib/constant.pm
1327         'CPAN'                  => '1.48',  #lib/CPAN.pm
1328         'CPAN::FirstTime'       => '1.36 ',  #lib/CPAN/FirstTime.pm
1329         'CPAN::Nox'             => '1.00',  #lib/CPAN/Nox.pm
1330         'Cwd'                   => '2.01',  #lib/Cwd.pm
1331         'Data::Dumper'          => '2.101',  #lib/Data/Dumper.pm
1332         'DB_File'               => '1.807',  #lib/DB_File.pm
1333         'Devel::SelfStubber'    => '1.01',  #lib/Devel/SelfStubber.pm
1334         'diagnostics'           => undef,  #lib/diagnostics.pm
1335         'DirHandle'             => undef,  #lib/DirHandle.pm
1336         'Dumpvalue'             => undef,  #lib/Dumpvalue.pm
1337         'DynaLoader'            => '1.03',  #lib/DynaLoader.pm
1338         'English'               => undef,  #lib/English.pm
1339         'Env'                   => undef,  #lib/Env.pm
1340         'Errno'                 => '1.111',  #lib/Errno.pm
1341         'Exporter'              => undef,  #lib/Exporter.pm
1342         'ExtUtils::Command'     => '1.01',  #lib/ExtUtils/Command.pm
1343         'ExtUtils::Embed'       => '1.2505',  #lib/ExtUtils/Embed.pm
1344         'ExtUtils::Install'     => '1.28 ',  #lib/ExtUtils/Install.pm
1345         'ExtUtils::Installed'   => '0.02',  #lib/ExtUtils/Installed.pm
1346         'ExtUtils::Liblist'     => '1.25 ',  #lib/ExtUtils/Liblist.pm
1347         'ExtUtils::MakeMaker'   => '5.4302',  #lib/ExtUtils/MakeMaker.pm
1348         'ExtUtils::Manifest'    => '1.33 ',  #lib/ExtUtils/Manifest.pm
1349         'ExtUtils::Miniperl'    => undef,  #lib/ExtUtils/Miniperl.pm
1350         'ExtUtils::Mkbootstrap' => '1.14 ',  #lib/ExtUtils/Mkbootstrap.pm
1351         'ExtUtils::Mksymlists'  => '1.17 ',  #lib/ExtUtils/Mksymlists.pm
1352         'ExtUtils::MM_OS2'      => undef,  #lib/ExtUtils/MM_OS2.pm
1353         'ExtUtils::MM_Unix'     => '1.12602 ',  #lib/ExtUtils/MM_Unix.pm
1354         'ExtUtils::MM_VMS'      => undef,  #lib/ExtUtils/MM_VMS.pm
1355         'ExtUtils::MM_Win32'    => undef,  #lib/ExtUtils/MM_Win32.pm
1356         'ExtUtils::Packlist'    => '0.03',  #lib/ExtUtils/Packlist.pm
1357         'ExtUtils::testlib'     => '1.11 ',  #lib/ExtUtils/testlib.pm
1358         'ExtUtils::XSSymSet'    => '1.0',  #vms/ext/XSSymSet.pm
1359         'Fatal'                 => '1.02',  #lib/Fatal.pm
1360         'Fcntl'                 => '1.03',  #lib/Fcntl.pm
1361         'fields'                => '0.02',  #lib/fields.pm
1362         'File::Basename'        => '2.6',  #lib/File/Basename.pm
1363         'FileCache'             => undef,  #lib/FileCache.pm
1364         'File::CheckTree'       => undef,  #lib/File/CheckTree.pm
1365         'File::Compare'         => '1.1002',  #lib/File/Compare.pm
1366         'File::Copy'            => '2.02',  #lib/File/Copy.pm
1367         'File::DosGlob'         => undef,  #lib/File/DosGlob.pm
1368         'File::Find'            => undef,  #lib/File/Find.pm
1369         'FileHandle'            => '2.00',  #lib/FileHandle.pm
1370         'File::Path'            => '1.0401',  #lib/File/Path.pm
1371         'File::Spec'            => '0.8',  #lib/File/Spec.pm
1372         'File::Spec::Functions' => undef,  #lib/File/Spec/Functions.pm
1373         'File::Spec::Mac'       => undef,  #lib/File/Spec/Mac.pm
1374         'File::Spec::OS2'       => undef,  #lib/File/Spec/OS2.pm
1375         'File::Spec::Unix'      => undef,  #lib/File/Spec/Unix.pm
1376         'File::Spec::VMS'       => undef,  #lib/File/Spec/VMS.pm
1377         'File::Spec::Win32'     => undef,  #lib/File/Spec/Win32.pm
1378         'File::stat'            => undef,  #lib/File/stat.pm
1379         'FindBin'               => '1.42',  #lib/FindBin.pm
1380         'GDBM_File'             => '1.00',  #lib/GDBM_File.pm
1381         'Getopt::Long'          => '2.20',  #lib/Getopt/Long.pm
1382         'Getopt::Std'           => '1.01',  #lib/Getopt/Std.pm
1383         'I18N::Collate'         => undef,  #lib/I18N/Collate.pm
1384         'integer'               => undef,  #lib/integer.pm
1385         'IO::File'              => '1.06021',  #lib/IO/File.pm
1386         'IO::Handle'            => '1.1505',  #lib/IO/Handle.pm
1387         'IO::Pipe'              => '1.0902',  #lib/IO/Pipe.pm
1388         'IO::Seekable'          => '1.06',  #lib/IO/Seekable.pm
1389         'IO::Select'            => '1.10',  #lib/IO/Select.pm
1390         'IO::Socket'            => '1.1603',  #lib/IO/Socket.pm
1391         'IO'                    => undef,  #lib/IO.pm
1392         'IPC::Msg'              => '1.00',  #lib/IPC/Msg.pm
1393         'IPC::Open2'            => '1.01',  #lib/IPC/Open2.pm
1394         'IPC::Open3'            => '1.0103',  #lib/IPC/Open3.pm
1395         'IPC::Semaphore'        => '1.00',  #lib/IPC/Semaphore.pm
1396         'IPC::SysV'             => '1.03',  #lib/IPC/SysV.pm
1397         'less'                  => undef,  #lib/less.pm
1398         'lib'                   => undef,  #lib/lib.pm
1399         'locale'                => undef,  #lib/locale.pm
1400         'Math::BigFloat'        => undef,  #lib/Math/BigFloat.pm
1401         'Math::BigInt'          => undef,  #lib/Math/BigInt.pm
1402         'Math::Complex'         => '1.26',  #lib/Math/Complex.pm
1403         'Math::Trig'            => '1',  #lib/Math/Trig.pm
1404         'NDBM_File'             => '1.01',  #ext/NDBM_File/NDBM_File.pm
1405         'Net::hostent'          => undef,  #lib/Net/hostent.pm
1406         'Net::netent'           => undef,  #lib/Net/netent.pm
1407         'Net::Ping'             => '2.02',  #lib/Net/Ping.pm
1408         'Net::protoent'         => undef,  #lib/Net/protoent.pm
1409         'Net::servent'          => undef,  #lib/Net/servent.pm
1410         'ODBM_File'             => '1.00', #ext/ODBM_File/ODBM_File.pm
1411         'Opcode'                => '1.04',  #lib/Opcode.pm
1412         'ops'                   => undef,  #lib/ops.pm
1413         'O'                     => undef,  #lib/O.pm
1414         'OS2::ExtAttr'          => '0.01',  #os2/OS2/ExtAttr/ExtAttr.pm
1415         'OS2::PrfDB'            => '0.02',  #os2/OS2/PrfDB/PrfDB.pm
1416         'OS2::Process'          => '0.2',  #os2/OS2/Process/Process.pm
1417         'OS2::REXX'             => undef,  #os2/OS2/REXX/REXX.pm
1418         'overload'              => undef,  #lib/overload.pm
1419         'Pod::Functions'        => undef,  #lib/Pod/Functions.pm
1420         'Pod::Html'             => '1.02',  #lib/Pod/Html.pm
1421         'Pod::Text'             => '1.0203',  #lib/Pod/Text.pm
1422         'POSIX'                 => '1.02',  #lib/POSIX.pm
1423         're'                    => '0.02',  #lib/re.pm
1424         'Safe'                  => '2.06',  #lib/Safe.pm
1425         'SDBM_File'             => '1.00',  #lib/SDBM_File.pm
1426         'Search::Dict'          => undef,  #lib/Search/Dict.pm
1427         'SelectSaver'           => undef,  #lib/SelectSaver.pm
1428         'SelfLoader'            => '1.08',  #lib/SelfLoader.pm
1429         'Shell'                 => undef,  #lib/Shell.pm
1430         'sigtrap'               => '1.02',  #lib/sigtrap.pm
1431         'Socket'                => '1.7',  #lib/Socket.pm
1432         'strict'                => '1.01',  #lib/strict.pm
1433         'subs'                  => undef,  #lib/subs.pm
1434         'Symbol'                => '1.02',  #lib/Symbol.pm
1435         'Sys::Hostname'         => undef,  #lib/Sys/Hostname.pm
1436         'Sys::Syslog'           => undef,  #lib/Sys/Syslog.pm
1437         'Term::Cap'             => undef,  #lib/Term/Cap.pm
1438         'Term::Complete'        => undef,  #lib/Term/Complete.pm
1439         'Term::ReadLine'        => undef,  #lib/Term/ReadLine.pm
1440         'Test'                  => '1.122',  #lib/Test.pm
1441         'Test::Harness'         => '1.1602',  #lib/Test/Harness.pm
1442         'Text::Abbrev'          => undef,  #lib/Text/Abbrev.pm
1443         'Text::ParseWords'      => '3.1',  #lib/Text/ParseWords.pm
1444         'Text::Soundex'         => undef,  #lib/Text/Soundex.pm
1445         'Text::Tabs'            => '96.121201',  #lib/Text/Tabs.pm
1446         'Text::Wrap'            => '98.112902',  #lib/Text/Wrap.pm
1447         'Thread'                => '1.0',  #ext/Thread/Thread.pm
1448         'Thread::Queue'         => undef,  #ext/Thread/Thread/Queue.pm
1449         'Thread::Semaphore'     => undef,  #ext/Thread/Thread/Semaphore.pm
1450         'Thread::Signal'        => undef,  #ext/Thread/Thread/Signal.pm
1451         'Thread::Specific'      => undef,  #ext/Thread/Thread/Specific.pm
1452         'Tie::Array'            => '1.00',  #lib/Tie/Array.pm
1453         'Tie::Handle'           => undef,  #lib/Tie/Handle.pm
1454         'Tie::Hash'             => undef,  #lib/Tie/Hash.pm
1455         'Tie::RefHash'          => undef,  #lib/Tie/RefHash.pm
1456         'Tie::Scalar'           => undef,  #lib/Tie/Scalar.pm
1457         'Tie::SubstrHash'       => undef,  #lib/Tie/SubstrHash.pm
1458         'Time::gmtime'          => '1.01',  #lib/Time/gmtime.pm
1459         'Time::localtime'       => '1.01',  #lib/Time/localtime.pm
1460         'Time::Local'           => undef,  #lib/Time/Local.pm
1461         'Time::tm'              => undef,  #lib/Time/tm.pm
1462         'UNIVERSAL'             => undef,  #lib/UNIVERSAL.pm
1463         'User::grent'           => undef,  #lib/User/grent.pm
1464         'User::pwent'           => undef,  #lib/User/pwent.pm
1465         'vars'                  => undef,  #lib/vars.pm
1466         'VMS::DCLsym'           => '1.01',  #vms/ext/DCLsym/DCLsym.pm
1467         'VMS::Filespec'         => undef,  #vms/ext/Filespec.pm
1468         'VMS::Stdio'            => '2.1',  #vms/ext/Stdio/Stdio.pm
1469         'vmsish'                => undef,  #vms/ext/vmsish.pm
1470     },
1471
1472     5.006   => {
1473         'AnyDBM_File'           => undef, #./lib/AnyDBM_File.pm
1474         'AutoLoader'            => '5.57', #./lib/AutoLoader.pm
1475         'AutoSplit'             => '1.0305', #./lib/AutoSplit.pm
1476         'B'                     => undef, #./ext/B/B.pm
1477         'B::Asmdata'            => undef, #./ext/B/B/Asmdata.pm
1478         'B::Assembler'          => undef, #./ext/B/B/Assembler.pm
1479         'B::Bblock'             => undef, #./ext/B/B/Bblock.pm
1480         'B::Bytecode'           => undef, #./ext/B/B/Bytecode.pm
1481         'B::C'                  => undef, #./ext/B/B/C.pm
1482         'B::CC'                 => undef, #./ext/B/B/CC.pm
1483         'B::Debug'              => undef, #./ext/B/B/Debug.pm
1484         'B::Deparse'            => '0.59', #./ext/B/B/Deparse.pm
1485         'B::Disassembler'       => undef, #./ext/B/B/Disassembler.pm
1486         'B::Lint'               => undef, #./ext/B/B/Lint.pm
1487         'B::Showlex'            => undef, #./ext/B/B/Showlex.pm
1488         'B::Stackobj'           => undef, #./ext/B/B/Stackobj.pm
1489         'B::Stash'              => undef, #./ext/B/B/Stash.pm
1490         'B::Terse'              => undef, #./ext/B/B/Terse.pm
1491         'B::Xref'               => undef, #./ext/B/B/Xref.pm
1492         'Benchmark'             => '1', #./lib/Benchmark.pm
1493         'ByteLoader'            => '0.03', #./ext/ByteLoader/ByteLoader.pm
1494         'CGI'                   => '2.56', #./lib/CGI.pm
1495         'CGI::Apache'           => undef, #./lib/CGI/Apache.pm
1496         'CGI::Carp'             => '1.14', #./lib/CGI/Carp.pm
1497         'CGI::Cookie'           => '1.12', #./lib/CGI/Cookie.pm
1498         'CGI::Fast'             => '1.02', #./lib/CGI/Fast.pm
1499         'CGI::Pretty'           => '1.03', #./lib/CGI/Pretty.pm
1500         'CGI::Push'             => '1.01', #./lib/CGI/Push.pm
1501         'CGI::Switch'           => undef, #./lib/CGI/Switch.pm
1502         'CPAN'                  => '1.52', #./lib/CPAN.pm
1503         'CPAN::FirstTime'       => '1.38 ', #./lib/CPAN/FirstTime.pm
1504         'CPAN::Nox'             => '1.00', #./lib/CPAN/Nox.pm
1505         'Carp'                  => undef, #./lib/Carp.pm
1506         'Carp::Heavy'           => undef, #./lib/Carp/Heavy.pm
1507         'Class::Struct'         => '0.58', #./lib/Class/Struct.pm
1508         'Config'                => undef,
1509         'Cwd'                   => '2.02', #./lib/Cwd.pm
1510         'DB'                    => '1.0', #./lib/DB.pm
1511         'DB_File'               => '1.72', #./ext/DB_File/DB_File.pm
1512         'Data::Dumper'          => '2.101', #./ext/Data/Dumper/Dumper.pm
1513         'Devel::DProf'          => '20000000.00_00', #./ext/Devel/DProf/DProf.pm
1514         'Devel::Peek'           => '1.00_01', #./ext/Devel/Peek/Peek.pm
1515         'Devel::SelfStubber'    => '1.01', #./lib/Devel/SelfStubber.pm
1516         'DirHandle'             => undef, #./lib/DirHandle.pm
1517         'Dumpvalue'             => undef, #./lib/Dumpvalue.pm
1518         'DynaLoader'            => '1.04',
1519         'English'               => undef, #./lib/English.pm
1520         'Env'                   => undef, #./lib/Env.pm
1521         'Exporter'              => '5.562', #./lib/Exporter.pm
1522         'Exporter::Heavy'       => undef, #./lib/Exporter/Heavy.pm
1523         'ExtUtils::Command'     => '1.01', #./lib/ExtUtils/Command.pm
1524         'ExtUtils::Embed'       => '1.2505', #./lib/ExtUtils/Embed.pm
1525         'ExtUtils::Install'     => '1.28 ', #./lib/ExtUtils/Install.pm
1526         'ExtUtils::Installed'   => '0.02', #./lib/ExtUtils/Installed.pm
1527         'ExtUtils::Liblist'     => '1.25 ', #./lib/ExtUtils/Liblist.pm
1528         'ExtUtils::MM_Cygwin'   => undef, #./lib/ExtUtils/MM_Cygwin.pm
1529         'ExtUtils::MM_OS2'      => undef, #./lib/ExtUtils/MM_OS2.pm
1530         'ExtUtils::MM_Unix'     => '1.12603 ', #./lib/ExtUtils/MM_Unix.pm
1531         'ExtUtils::MM_VMS'      => undef, #./lib/ExtUtils/MM_VMS.pm
1532         'ExtUtils::MM_Win32'    => undef, #./lib/ExtUtils/MM_Win32.pm
1533         'ExtUtils::MakeMaker'   => '5.45', #./lib/ExtUtils/MakeMaker.pm
1534         'ExtUtils::Manifest'    => '1.33 ', #./lib/ExtUtils/Manifest.pm
1535         'ExtUtils::Miniperl'    => undef,
1536         'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm
1537         'ExtUtils::Mksymlists'  => '1.17 ', #./lib/ExtUtils/Mksymlists.pm
1538         'ExtUtils::Packlist'    => '0.03', #./lib/ExtUtils/Packlist.pm
1539         'ExtUtils::XSSymSet'    => '1.0', #./vms/ext/XSSymSet.pm
1540         'ExtUtils::testlib'     => '1.11 ', #./lib/ExtUtils/testlib.pm
1541         'Fatal'                 => '1.02', #./lib/Fatal.pm
1542         'Fcntl'                 => '1.03', #./ext/Fcntl/Fcntl.pm
1543         'File::Basename'        => '2.6', #./lib/File/Basename.pm
1544         'File::CheckTree'       => undef, #./lib/File/CheckTree.pm
1545         'File::Compare'         => '1.1002', #./lib/File/Compare.pm
1546         'File::Copy'            => '2.03', #./lib/File/Copy.pm
1547         'File::DosGlob'         => undef, #./lib/File/DosGlob.pm
1548         'File::Find'            => undef, #./lib/File/Find.pm
1549         'File::Glob'            => '0.991', #./ext/File/Glob/Glob.pm
1550         'File::Path'            => '1.0403', #./lib/File/Path.pm
1551         'File::Spec'            => '0.8', #./lib/File/Spec.pm
1552         'File::Spec::Functions' => undef, #./lib/File/Spec/Functions.pm
1553         'File::Spec::Mac'       => undef, #./lib/File/Spec/Mac.pm
1554         'File::Spec::OS2'       => undef, #./lib/File/Spec/OS2.pm
1555         'File::Spec::Unix'      => undef, #./lib/File/Spec/Unix.pm
1556         'File::Spec::VMS'       => undef, #./lib/File/Spec/VMS.pm
1557         'File::Spec::Win32'     => undef, #./lib/File/Spec/Win32.pm
1558         'File::stat'            => undef, #./lib/File/stat.pm
1559         'FileCache'             => undef, #./lib/FileCache.pm
1560         'FileHandle'            => '2.00', #./lib/FileHandle.pm
1561         'FindBin'               => '1.42', #./lib/FindBin.pm
1562         'GDBM_File'             => '1.03', #./ext/GDBM_File/GDBM_File.pm
1563         'Getopt::Long'          => '2.23', #./lib/Getopt/Long.pm
1564         'Getopt::Std'           => '1.02', #./lib/Getopt/Std.pm
1565         'I18N::Collate'         => undef, #./lib/I18N/Collate.pm
1566         'IO'                    => '1.20', #./ext/IO/IO.pm
1567         'IO::Dir'               => '1.03', #./ext/IO/lib/IO/Dir.pm
1568         'IO::File'              => '1.08', #./ext/IO/lib/IO/File.pm
1569         'IO::Handle'            => '1.21', #./ext/IO/lib/IO/Handle.pm
1570         'IO::Pipe'              => '1.121', #./ext/IO/lib/IO/Pipe.pm
1571         'IO::Poll'              => '0.01', #./ext/IO/lib/IO/Poll.pm
1572         'IO::Seekable'          => '1.08', #./ext/IO/lib/IO/Seekable.pm
1573         'IO::Select'            => '1.14', #./ext/IO/lib/IO/Select.pm
1574         'IO::Socket'            => '1.26', #./ext/IO/lib/IO/Socket.pm
1575         'IO::Socket::INET'      => '1.25', #./ext/IO/lib/IO/Socket/INET.pm
1576         'IO::Socket::UNIX'      => '1.20', #./ext/IO/lib/IO/Socket/UNIX.pm
1577         'IPC::Open2'            => '1.01', #./lib/IPC/Open2.pm
1578         'IPC::Open3'            => '1.0103', #./lib/IPC/Open3.pm
1579         'IPC::Msg'              => '1.00', #./ext/IPC/SysV/Msg.pm
1580         'IPC::Semaphore'        => '1.00', #./ext/IPC/SysV/Semaphore.pm
1581         'IPC::SysV'             => '1.03', #./ext/IPC/SysV/SysV.pm
1582         'JNI'                   => '0.01', #./jpl/JNI/JNI.pm
1583         'JPL::AutoLoader'       => undef, #./jpl/JPL/AutoLoader.pm
1584         'JPL::Class'            => undef, #./jpl/JPL/Class.pm
1585         'JPL::Compile'          => undef, #./jpl/JPL/Compile.pm
1586         'Math::BigFloat'        => undef, #./lib/Math/BigFloat.pm
1587         'Math::BigInt'          => undef, #./lib/Math/BigInt.pm
1588         'Math::Complex'         => '1.26', #./lib/Math/Complex.pm
1589         'Math::Trig'            => '1', #./lib/Math/Trig.pm
1590         'NDBM_File'             => '1.03', #./ext/NDBM_File/NDBM_File.pm
1591         'Net::Ping'             => '2.02', #./lib/Net/Ping.pm
1592         'Net::hostent'          => undef, #./lib/Net/hostent.pm
1593         'Net::netent'           => undef, #./lib/Net/netent.pm
1594         'Net::protoent'         => undef, #./lib/Net/protoent.pm
1595         'Net::servent'          => undef, #./lib/Net/servent.pm
1596         'O'                     => undef, #./ext/B/O.pm
1597         'ODBM_File'             => '1.02', #./ext/ODBM_File/ODBM_File.pm
1598         'OS2::ExtAttr'          => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
1599         'OS2::PrfDB'            => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
1600         'OS2::Process'          => '0.2', #./os2/OS2/Process/Process.pm
1601         'OS2::REXX'             => undef, #./os2/OS2/REXX/REXX.pm
1602         'OS2::DLL'              => undef, #./os2/OS2/REXX/DLL/DLL.pm
1603         'Opcode'                => '1.04', #./ext/Opcode/Opcode.pm
1604         'POSIX'                 => '1.03', #./ext/POSIX/POSIX.pm
1605         'Pod::Checker'          => '1.098', #./lib/Pod/Checker.pm
1606         'Pod::Find'             => '0.12', #./lib/Pod/Find.pm
1607         'Pod::Functions'        => undef, #./lib/Pod/Functions.pm
1608         'Pod::Html'             => '1.03', #./lib/Pod/Html.pm
1609         'Pod::InputObjects'     => '1.12', #./lib/Pod/InputObjects.pm
1610         'Pod::Man'              => '1.02', #./lib/Pod/Man.pm
1611         'Pod::ParseUtils'       => '0.2', #./lib/Pod/ParseUtils.pm
1612         'Pod::Parser'           => '1.12', #./lib/Pod/Parser.pm
1613         'Pod::Plainer'          => '0.01', #./lib/Pod/Plainer.pm
1614         'Pod::Select'           => '1.12', #./lib/Pod/Select.pm
1615         'Pod::Text'             => '2.03', #./lib/Pod/Text.pm
1616         'Pod::Text::Color'      => '0.05', #./lib/Pod/Text/Color.pm
1617         'Pod::Text::Termcap'    => '0.04', #./lib/Pod/Text/Termcap.pm
1618         'Pod::Usage'            => '1.12', #./lib/Pod/Usage.pm
1619         'SDBM_File'             => '1.02', #./ext/SDBM_File/SDBM_File.pm
1620         'Safe'                  => '2.06', #./ext/Opcode/Safe.pm
1621         'Search::Dict'          => undef, #./lib/Search/Dict.pm
1622         'SelectSaver'           => undef, #./lib/SelectSaver.pm
1623         'SelfLoader'            => '1.0901', #./lib/SelfLoader.pm
1624         'Shell'                 => '0.2', #./lib/Shell.pm
1625         'Socket'                => '1.72', #./ext/Socket/Socket.pm
1626         'Symbol'                => '1.02', #./lib/Symbol.pm
1627         'Sys::Hostname'         => '1.1', #./ext/Sys/Hostname/Hostname.pm
1628         'Sys::Syslog'           => '0.01', #./ext/Sys/Syslog/Syslog.pm
1629         'Term::ANSIColor'       => '1.01', #./lib/Term/ANSIColor.pm
1630         'Term::Cap'             => undef, #./lib/Term/Cap.pm
1631         'Term::Complete'        => undef, #./lib/Term/Complete.pm
1632         'Term::ReadLine'        => undef, #./lib/Term/ReadLine.pm
1633         'Test'                  => '1.13', #./lib/Test.pm
1634         'Test::Harness'         => '1.1604', #./lib/Test/Harness.pm
1635         'Text::Abbrev'          => undef, #./lib/Text/Abbrev.pm
1636         'Text::ParseWords'      => '3.2', #./lib/Text/ParseWords.pm
1637         'Text::Soundex'         => '1.0', #./lib/Text/Soundex.pm
1638         'Text::Tabs'            => '98.112801', #./lib/Text/Tabs.pm
1639         'Text::Wrap'            => '98.112902', #./lib/Text/Wrap.pm
1640         'Thread'                => '1.0', #./ext/Thread/Thread.pm
1641         'Thread::Queue'         => undef, #./ext/Thread/Thread/Queue.pm
1642         'Thread::Semaphore'     => undef, #./ext/Thread/Thread/Semaphore.pm
1643         'Thread::Signal'        => undef, #./ext/Thread/Thread/Signal.pm
1644         'Thread::Specific'      => undef, #./ext/Thread/Thread/Specific.pm
1645         'Tie::Array'            => '1.01', #./lib/Tie/Array.pm
1646         'Tie::Handle'           => '1.0', #./lib/Tie/Handle.pm
1647         'Tie::Hash'             => undef, #./lib/Tie/Hash.pm
1648         'Tie::RefHash'          => undef, #./lib/Tie/RefHash.pm
1649         'Tie::Scalar'           => undef, #./lib/Tie/Scalar.pm
1650         'Tie::SubstrHash'       => undef, #./lib/Tie/SubstrHash.pm
1651         'Time::Local'           => undef, #./lib/Time/Local.pm
1652         'Time::gmtime'          => '1.01', #./lib/Time/gmtime.pm
1653         'Time::localtime'       => '1.01', #./lib/Time/localtime.pm
1654         'Time::tm'              => undef, #./lib/Time/tm.pm
1655         'UNIVERSAL'             => undef, #./lib/UNIVERSAL.pm
1656         'User::grent'           => undef, #./lib/User/grent.pm
1657         'User::pwent'           => undef, #./lib/User/pwent.pm
1658         'VMS::DCLsym'           => '1.01', #./vms/ext/DCLsym/DCLsym.pm
1659         'VMS::Filespec'         => undef, #./vms/ext/Filespec.pm
1660         'VMS::Stdio'            => '2.2', #./vms/ext/Stdio/Stdio.pm
1661         'XSLoader'              => '0.01',
1662         'attributes'            => '0.03', #./lib/attributes.pm
1663         'attrs'                 => '1.0', #./ext/attrs/attrs.pm
1664         'autouse'               => '1.02', #./lib/autouse.pm
1665         'base'                  => '1.01', #./lib/base.pm
1666         'blib'                  => '1.00', #./lib/blib.pm
1667         'bytes'                 => undef, #./lib/bytes.pm
1668         'charnames'             => undef, #./lib/charnames.pm
1669         'constant'              => '1.02', #./lib/constant.pm
1670         'diagnostics'           => '1.0', #./lib/diagnostics.pm
1671         'fields'                => '1.01', #./lib/fields.pm
1672         'filetest'              => undef, #./lib/filetest.pm
1673         'integer'               => undef, #./lib/integer.pm
1674         'less'                  => undef, #./lib/less.pm
1675         'lib'                   => '0.5564', #./lib/lib.pm
1676         'locale'                => undef, #./lib/locale.pm
1677         'open'                  => undef, #./lib/open.pm
1678         'ops'                   => undef, #./ext/Opcode/ops.pm
1679         'overload'              => undef, #./lib/overload.pm
1680         're'                    => '0.02', #./ext/re/re.pm
1681         'sigtrap'               => '1.02', #./lib/sigtrap.pm
1682         'strict'                => '1.01', #./lib/strict.pm
1683         'subs'                  => undef, #./lib/subs.pm
1684         'utf8'                  => undef, #./lib/utf8.pm
1685         'vars'                  => undef, #./lib/vars.pm
1686         'vmsish'                => undef, #./vms/ext/vmsish.pm
1687         'warnings'              => undef, #./lib/warnings.pm
1688         'warnings::register'    => undef, #./lib/warnings/register.pm
1689     },
1690
1691     5.006001   => {
1692         'AnyDBM_File'           => undef,
1693         'attributes'            => 0.03,
1694         'attrs'                 => '1.0',
1695         'AutoLoader'            => 5.58,
1696         'AutoSplit'             => 1.0305,
1697         'autouse'               => 1.02,
1698         'B::Asmdata'            => undef,
1699         'B::Assembler'          => 0.02,
1700         'B::Bblock'             => undef,
1701         'B::Bytecode'           => undef,
1702         'B::C'                  => undef,
1703         'B::CC'                 => undef,
1704         'B::Concise'            => 0.51,
1705         'B::Debug'              => undef,
1706         'B::Deparse'            => 0.6,
1707         'B::Disassembler'       => undef,
1708         'B::Lint'               => undef,
1709         'B'                     => undef,
1710         'B::Showlex'            => undef,
1711         'B::Stackobj'           => undef,
1712         'B::Stash'              => undef,
1713         'B::Terse'              => undef,
1714         'B::Xref'               => undef,
1715         'base'                  => 1.01,
1716         'Benchmark'             => 1,
1717         'blib'                  => '1.00',
1718         'ByteLoader'            => 0.04,
1719         'bytes'                 => undef,
1720         'Carp'                  => undef,
1721         'Carp::Heavy'           => undef,
1722         'CGI'                   => 2.752,
1723         'CGI::Apache'           => undef,
1724         'CGI::Carp'             => '1.20',
1725         'CGI::Cookie'           => 1.18,
1726         'CGI::Fast'             => 1.02,
1727         'CGI::Pretty'           => 1.05,
1728         'CGI::Push'             => 1.04,
1729         'CGI::Switch'           => undef,
1730         'CGI::Util'             => 1.1,
1731         'charnames'             => undef,
1732         'Class::Struct'         => 0.59,
1733         'Config'                => undef,
1734         'constant'              => 1.02,
1735         'CPAN::FirstTime'       => 1.53 ,
1736         'CPAN'                  => '1.59_54',
1737         'CPAN::Nox'             => '1.00',
1738         'Cwd'                   => 2.04,
1739         'Data::Dumper'          => 2.102,
1740         'DB'                    => '1.0',
1741         'DB_File'               => 1.75,
1742         'Devel::DProf'          => '20000000.00_00',
1743         'Devel::Peek'           => '1.00_01',
1744         'Devel::SelfStubber'    => 1.01,
1745         'diagnostics'           => '1.0', # really v1.0, but that causes breakage
1746         'DirHandle'             => undef,
1747         'Dumpvalue'             => undef,
1748         'DynaLoader'            => 1.04,
1749         'English'               => undef,
1750         'Env'                   => undef,
1751         'Exporter'              => 5.562,
1752         'Exporter::Heavy'       => undef,
1753         'ExtUtils::Command'     => 1.01,
1754         'ExtUtils::Embed'       => 1.2505,
1755         'ExtUtils::Install'     => 1.28 ,
1756         'ExtUtils::Installed'   => 0.02,
1757         'ExtUtils::Liblist'     => 1.26 ,
1758         'ExtUtils::MakeMaker'   => 5.45,
1759         'ExtUtils::Manifest'    => 1.33 ,
1760         'ExtUtils::Miniperl'    => undef,
1761         'ExtUtils::Mkbootstrap' => 1.14 ,
1762         'ExtUtils::Mksymlists'  => 1.17 ,
1763         'ExtUtils::MM_Cygwin'   => undef,
1764         'ExtUtils::MM_OS2'      => undef,
1765         'ExtUtils::MM_Unix'     => 1.12603 ,
1766         'ExtUtils::MM_VMS'      => undef,
1767         'ExtUtils::MM_Win32'    => undef,
1768         'ExtUtils::Packlist'    => 0.03,
1769         'ExtUtils::testlib'     => 1.11 ,
1770         'ExtUtils::XSSymSet'    => '1.0',
1771         'Fatal'                 => 1.02,
1772         'Fcntl'                 => 1.03,
1773         'fields'                => 1.01,
1774         'File::Basename'        => 2.6,
1775         'File::CheckTree'       => undef,
1776         'File::Compare'         => 1.1002,
1777         'File::Copy'            => 2.03,
1778         'File::DosGlob'         => undef,
1779         'File::Find'            => undef,
1780         'File::Glob'            => 0.991,
1781         'File::Path'            => 1.0404,
1782         'File::Spec'            => 0.82,
1783         'File::Spec::Epoc'      => undef,
1784         'File::Spec::Functions' => 1.1,
1785         'File::Spec::Mac'       => 1.2,
1786         'File::Spec::OS2'       => 1.1,
1787         'File::Spec::Unix'      => 1.2,
1788         'File::Spec::VMS'       => 1.1,
1789         'File::Spec::Win32'     => 1.2,
1790         'File::stat'            => undef,
1791         'File::Temp'            => 0.12,
1792         'FileCache'             => undef,
1793         'FileHandle'            => '2.00',
1794         'filetest'              => undef,
1795         'FindBin'               => 1.42,
1796         'GDBM_File'             => 1.05,
1797         'Getopt::Long'          => 2.25,
1798         'Getopt::Std'           => 1.02,
1799         'I18N::Collate'         => undef,
1800         'integer'               => undef,
1801         'IO'                    => '1.20',
1802         'IO::Dir'               => 1.03,
1803         'IO::File'              => 1.08,
1804         'IO::Handle'            => 1.21,
1805         'IO::Pipe'              => 1.121,
1806         'IO::Poll'              => 0.05,
1807         'IO::Seekable'          => 1.08,
1808         'IO::Select'            => 1.14,
1809         'IO::Socket'            => 1.26,
1810         'IO::Socket::INET'      => 1.25,
1811         'IO::Socket::UNIX'      => '1.20',
1812         'IPC::Msg'              => '1.00',
1813         'IPC::Open2'            => 1.01,
1814         'IPC::Open3'            => 1.0103,
1815         'IPC::Semaphore'        => '1.00',
1816         'IPC::SysV'             => 1.03,
1817         'JNI'                   => 0.1,
1818         'JPL::AutoLoader'       => undef,
1819         'JPL::Class'            => undef,
1820         'JPL::Compile'          => undef,
1821         'less'                  => undef,
1822         'lib'                   => 0.5564,
1823         'locale'                => undef,
1824         'Math::BigFloat'        => 0.02,
1825         'Math::BigInt'          => 0.01,
1826         'Math::Complex'         => 1.31,
1827         'Math::Trig'            => 1,
1828         'NDBM_File'             => 1.04,
1829         'Net::hostent'          => undef,
1830         'Net::netent'           => undef,
1831         'Net::Ping'             => 2.02,
1832         'Net::protoent'         => undef,
1833         'Net::servent'          => undef,
1834         'O'                     => undef,
1835         'ODBM_File'             => 1.03,
1836         'Opcode'                => 1.04,
1837         'open'                  => undef,
1838         'ops'                   => undef,
1839         'OS2::DLL'              => undef,
1840         'OS2::ExtAttr'          => 0.01,
1841         'OS2::PrfDB'            => 0.02,
1842         'OS2::Process'          => 0.2,
1843         'OS2::REXX'             => '1.00',
1844         'overload'              => undef,
1845         'Pod::Checker'          => 1.2,
1846         'Pod::Find'             => 0.21,
1847         'Pod::Functions'        => undef,
1848         'Pod::Html'             => 1.03,
1849         'Pod::LaTeX'            => 0.53,
1850         'Pod::Man'              => 1.15,
1851         'Pod::InputObjects'     => 1.13,
1852         'Pod::Parser'           => 1.13,
1853         'Pod::ParseUtils'       => 0.22,
1854         'Pod::Plainer'          => 0.01,
1855         'Pod::Select'           => 1.13,
1856         'Pod::Text'             => 2.08,
1857         'Pod::Text::Color'      => 0.06,
1858         'Pod::Text::Overstrike' => 1.01,
1859         'Pod::Text::Termcap'    => 1,
1860         'Pod::Usage'            => 1.14,
1861         'POSIX'                 => 1.03,
1862         're'                    => 0.02,
1863         'Safe'                  => 2.06,
1864         'SDBM_File'             => 1.03,
1865         'Search::Dict'          => undef,
1866         'SelectSaver'           => undef,
1867         'SelfLoader'            => 1.0902,
1868         'Shell'                 => 0.3,
1869         'sigtrap'               => 1.02,
1870         'Socket'                => 1.72,
1871         'strict'                => 1.01,
1872         'subs'                  => undef,
1873         'Symbol'                => 1.02,
1874         'Sys::Hostname'         => 1.1,
1875         'Sys::Syslog'           => 0.01,
1876         'Term::ANSIColor'       => 1.03,
1877         'Term::Cap'             => undef,
1878         'Term::Complete'        => undef,
1879         'Term::ReadLine'        => undef,
1880         'Test'                  => 1.15,
1881         'Test::Harness'         => 1.1604,
1882         'Text::Abbrev'          => undef,
1883         'Text::ParseWords'      => 3.2,
1884         'Text::Soundex'         => '1.0',
1885         'Text::Tabs'            => 98.112801,
1886         'Text::Wrap'            => 2001.0131,
1887         'Thread'                => '1.0',
1888         'Thread::Queue'         => undef,
1889         'Thread::Semaphore'     => undef,
1890         'Thread::Signal'        => undef,
1891         'Thread::Specific'      => undef,
1892         'Tie::Array'            => 1.01,
1893         'Tie::Handle'           => '4.0',
1894         'Tie::Hash'             => undef,
1895         'Tie::RefHash'          => 1.3,
1896         'Tie::Scalar'           => undef,
1897         'Tie::SubstrHash'       => undef,
1898         'Time::gmtime'          => 1.01,
1899         'Time::Local'           => undef,
1900         'Time::localtime'       => 1.01,
1901         'Time::tm'              => undef,
1902         'UNIVERSAL'             => undef,
1903         'User::grent'           => undef,
1904         'User::pwent'           => undef,
1905         'utf8'                  => undef,
1906         'vars'                  => undef,
1907         'VMS::DCLsym'           => 1.01,
1908         'VMS::Filespec'         => undef,
1909         'VMS::Stdio'            => 2.2,
1910         'vmsish'                => undef,
1911         'warnings'              => undef,
1912         'warnings::register'    => undef,
1913         'XSLoader'              => '0.01',
1914     },
1915
1916     5.006002 => {
1917         'AnyDBM_File'           => undef,  #lib/AnyDBM_File.pm
1918         'attributes'            => '0.03',  #lib/attributes.pm
1919         'attrs'                 => '1.0',  #lib/attrs.pm
1920         'AutoLoader'            => '5.58',  #lib/AutoLoader.pm
1921         'AutoSplit'             => '1.0305',  #lib/AutoSplit.pm
1922         'autouse'               => '1.02',  #lib/autouse.pm
1923         'B'                     => undef,  #lib/B.pm
1924         'B::Asmdata'            => undef,  #lib/B/Asmdata.pm
1925         'B::Assembler'          => '0.02',  #lib/B/Assembler.pm
1926         'B::Bblock'             => undef,  #lib/B/Bblock.pm
1927         'B::Bytecode'           => undef,  #lib/B/Bytecode.pm
1928         'B::C'                  => undef,  #lib/B/C.pm
1929         'B::CC'                 => undef,  #lib/B/CC.pm
1930         'B::Concise'            => '0.51',  #lib/B/Concise.pm
1931         'B::Debug'              => undef,  #lib/B/Debug.pm
1932         'B::Deparse'            => '0.6',  #lib/B/Deparse.pm
1933         'B::Disassembler'       => undef,  #lib/B/Disassembler.pm
1934         'B::Lint'               => undef,  #lib/B/Lint.pm
1935         'B::Showlex'            => undef,  #lib/B/Showlex.pm
1936        'B::Stackobj'           => undef,  #lib/B/Stackobj.pm
1937         'B::Stash'              => undef,  #lib/B/Stash.pm
1938         'B::Terse'              => undef,  #lib/B/Terse.pm
1939         'B::Xref'               => undef,  #lib/B/Xref.pm
1940         'base'                  => '1.01',  #lib/base.pm
1941         'Benchmark'             => '1',  #lib/Benchmark.pm
1942         'blib'                  => '1.00',  #lib/blib.pm
1943         'ByteLoader'            => '0.04',  #lib/ByteLoader.pm
1944         'bytes'                 => undef,  #lib/bytes.pm
1945         'Carp'                  => undef,  #lib/Carp.pm
1946         'Carp::Heavy'           => undef,  #lib/Carp/Heavy.pm
1947         'CGI'                   => '2.752',  #lib/CGI.pm
1948         'CGI::Apache'           => undef,  #lib/CGI/Apache.pm
1949         'CGI::Carp'             => '1.20',  #lib/CGI/Carp.pm
1950         'CGI::Cookie'           => '1.18',  #lib/CGI/Cookie.pm
1951         'CGI::Fast'             => '1.02',  #lib/CGI/Fast.pm
1952         'CGI::Pretty'           => '1.05',  #lib/CGI/Pretty.pm
1953         'CGI::Push'             => '1.04',  #lib/CGI/Push.pm
1954         'CGI::Switch'           => undef,  #lib/CGI/Switch.pm
1955         'CGI::Util'             => '1.1',  #lib/CGI/Util.pm
1956         'charnames'             => undef,  #lib/charnames.pm
1957         'Class::Struct'         => '0.59',  #lib/Class/Struct.pm
1958         'Config'                => undef,  #lib/Config.pm
1959         'constant'              => '1.02',  #lib/constant.pm
1960         'CPAN'                  => '1.59_54',  #lib/CPAN.pm
1961         'CPAN::FirstTime'       => '1.53 ',  #lib/CPAN/FirstTime.pm
1962         'CPAN::Nox'             => '1.00',  #lib/CPAN/Nox.pm
1963         'Cwd'                   => '2.04', #lib/Cwd.pm
1964         'Data::Dumper'          => '2.121', #lib/Data/Dumper.pm
1965         'DB'                    => '1.0', #lib/DB.pm
1966         'DB_File'               => '1.806', #lib/DB_File.pm
1967         'Devel::DProf'          => '20000000.00_00', #lib/Devel/DProf.pm
1968         'Devel::Peek'           => '1.00_01', #lib/Devel/Peek.pm
1969         'Devel::SelfStubber'    => '1.01', #lib/Devel/SelfStubber.pm
1970         'diagnostics'           => '1.0', #lib/diagnostics.pm
1971         'DirHandle'             => undef, #lib/DirHandle.pm
1972         'Dumpvalue'             => undef, #lib/Dumpvalue.pm
1973         'DynaLoader'            => '1.04', #lib/DynaLoader.pm
1974         'English'               => undef, #lib/English.pm
1975         'Env'                   => undef, #lib/Env.pm
1976         'Errno'                 => '1.111', #lib/Errno.pm
1977         'Exporter'              => '5.562', #lib/Exporter.pm
1978         'Exporter::Heavy'       => undef, #lib/Exporter/Heavy.pm
1979         'ExtUtils::Command'     => '1.05', #lib/ExtUtils/Command.pm
1980         'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
1981         'ExtUtils::Embed'       => '1.2505', #lib/ExtUtils/Embed.pm
1982         'ExtUtils::Install'     => '1.32', #lib/ExtUtils/Install.pm
1983         'ExtUtils::Installed'   => '0.08', #lib/ExtUtils/Installed.pm
1984         'ExtUtils::Liblist'     => '1.01', #lib/ExtUtils/Liblist.pm
1985         'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm
1986         'ExtUtils::MakeMaker'   => '6.17', #lib/ExtUtils/MakeMaker.pm
1987         'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
1988         'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
1989         'ExtUtils::Manifest'    => '1.42', #lib/ExtUtils/Manifest.pm
1990         'ExtUtils::Miniperl'    => undef, #lib/ExtUtils/Miniperl.pm
1991         'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
1992         'ExtUtils::Mksymlists'  => '1.19', #lib/ExtUtils/Mksymlists.pm
1993         'ExtUtils::MM'          => '0.04', #lib/ExtUtils/MM.pm
1994         'ExtUtils::MM_Any'      => '0.07', #lib/ExtUtils/MM_Any.pm
1995         'ExtUtils::MM_BeOS'     => '1.04', #lib/ExtUtils/MM_BeOS.pm
1996         'ExtUtils::MM_Cygwin'   => '1.06', #lib/ExtUtils/MM_Cygwin.pm
1997         'ExtUtils::MM_DOS'      => '0.02', #lib/ExtUtils/MM_DOS.pm
1998         'ExtUtils::MM_MacOS'    => '1.07', #lib/ExtUtils/MM_MacOS.pm
1999         'ExtUtils::MM_NW5'      => '2.06', #lib/ExtUtils/MM_NW5.pm
2000         'ExtUtils::MM_OS2'      => '1.04', #lib/ExtUtils/MM_OS2.pm
2001         'ExtUtils::MM_Unix'     => '1.42', #lib/ExtUtils/MM_Unix.pm
2002         'ExtUtils::MM_UWIN'     => '0.02', #lib/ExtUtils/MM_UWIN.pm
2003         'ExtUtils::MM_VMS'      => '5.70', #lib/ExtUtils/MM_VMS.pm
2004         'ExtUtils::MM_Win32'    => '1.09', #lib/ExtUtils/MM_Win32.pm
2005         'ExtUtils::MM_Win95'    => '0.03', #lib/ExtUtils/MM_Win95.pm
2006         'ExtUtils::MY'          => '0.01', #lib/ExtUtils/MY.pm
2007         'ExtUtils::Packlist'    => '0.04', #lib/ExtUtils/Packlist.pm
2008         'ExtUtils::testlib'     => '1.15', #lib/ExtUtils/testlib.pm
2009         'ExtUtils::XSSymSet'    => '1.0',  #vms/ext/XSSymSet.pm
2010         'Fatal'                 => '1.02', #lib/Fatal.pm
2011         'Fcntl'                 => '1.03', #lib/Fcntl.pm
2012         'fields'                => '1.01', #lib/fields.pm
2013         'File::Basename'        => '2.6', #lib/File/Basename.pm
2014         'File::CheckTree'       => undef, #lib/File/CheckTree.pm
2015         'File::Compare'         => '1.1002', #lib/File/Compare.pm
2016         'File::Copy'            => '2.03', #lib/File/Copy.pm
2017         'File::DosGlob'         => undef, #lib/File/DosGlob.pm
2018         'File::Find'            => undef, #lib/File/Find.pm
2019         'File::Glob'            => '0.991', #lib/File/Glob.pm
2020         'File::Path'            => '1.0404', #lib/File/Path.pm
2021         'File::Spec'            => '0.86', #lib/File/Spec.pm
2022         'File::Spec::Cygwin'    => '1.1', #lib/File/Spec/Cygwin.pm
2023         'File::Spec::Epoc'      => '1.1', #lib/File/Spec/Epoc.pm
2024         'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
2025         'File::Spec::Mac'       => '1.4', #lib/File/Spec/Mac.pm
2026         'File::Spec::OS2'       => '1.2', #lib/File/Spec/OS2.pm
2027         'File::Spec::Unix'      => '1.5', #lib/File/Spec/Unix.pm
2028         'File::Spec::VMS'       => '1.4', #lib/File/Spec/VMS.pm
2029         'File::Spec::Win32'     => '1.4', #lib/File/Spec/Win32.pm
2030         'File::stat'            => undef, #lib/File/stat.pm
2031         'File::Temp'            => '0.14', #lib/File/Temp.pm
2032         'FileCache'             => undef, #lib/FileCache.pm
2033         'FileHandle'            => '2.00', #lib/FileHandle.pm
2034         'filetest'              => undef, #lib/filetest.pm
2035         'FindBin'               => '1.42', #lib/FindBin.pm
2036         'GDBM_File'             => '1.05', #ext/GDBM_File/GDBM_File.pm
2037         'Getopt::Long'          => '2.25', #lib/Getopt/Long.pm
2038         'Getopt::Std'           => '1.02', #lib/Getopt/Std.pm
2039         'I18N::Collate'         => undef, #lib/I18N/Collate.pm
2040         'if'                    => '0.03', #lib/if.pm
2041         'integer'               => undef, #lib/integer.pm
2042         'IO'                    => '1.20', #lib/IO.pm
2043         'IO::Dir'               => '1.03', #lib/IO/Dir.pm
2044         'IO::File'              => '1.08', #lib/IO/File.pm
2045         'IO::Handle'            => '1.21', #lib/IO/Handle.pm
2046         'IO::Pipe'              => '1.121', #lib/IO/Pipe.pm
2047         'IO::Poll'              => '0.05', #lib/IO/Poll.pm
2048         'IO::Seekable'          => '1.08', #lib/IO/Seekable.pm
2049         'IO::Select'            => '1.14', #lib/IO/Select.pm
2050         'IO::Socket'            => '1.26', #lib/IO/Socket.pm
2051         'IO::Socket::INET'      => '1.25', #lib/IO/Socket/INET.pm
2052         'IO::Socket::UNIX'      => '1.20', #lib/IO/Socket/UNIX.pm
2053         'IPC::Msg'              => '1.00', #lib/IPC/Msg.pm
2054         'IPC::Open2'            => '1.01', #lib/IPC/Open2.pm
2055         'IPC::Open3'            => '1.0103', #lib/IPC/Open3.pm
2056         'IPC::Semaphore'        => '1.00', #lib/IPC/Semaphore.pm
2057         'IPC::SysV'             => '1.03', #lib/IPC/SysV.pm
2058         'JNI'                   => '0.1', #jpl/JNI/JNI.pm
2059         'JPL::AutoLoader'       => undef, #jpl/JPL/AutoLoader.pm
2060         'JPL::Class'            => undef, #jpl/JPL/Class.pm
2061         'JPL::Compile'          => undef, #jpl/JPL/Compile.pm
2062         'less'                  => undef, #lib/less.pm
2063         'lib'                   => '0.5564', #lib/lib.pm
2064         'locale'                => undef, #lib/locale.pm
2065         'Math::BigFloat'        => '0.02', #lib/Math/BigFloat.pm
2066         'Math::BigInt'          => '0.01', #lib/Math/BigInt.pm
2067         'Math::Complex'         => '1.31', #lib/Math/Complex.pm
2068         'Math::Trig'            => '1', #lib/Math/Trig.pm
2069         'NDBM_File'             => '1.04',  #ext/NDBM_File/NDBM_File.pm
2070         'Net::hostent'          => undef, #lib/Net/hostent.pm
2071         'Net::netent'           => undef, #lib/Net/netent.pm
2072         'Net::Ping'             => '2.02', #lib/Net/Ping.pm
2073         'Net::protoent'         => undef, #lib/Net/protoent.pm
2074         'Net::servent'          => undef, #lib/Net/servent.pm
2075         'O'                     => undef, #lib/O.pm
2076         'ODBM_File'             => '1.03', #ext/ODBM_File/ODBM_File.pm
2077         'Opcode'                => '1.04', #lib/Opcode.pm
2078         'open'                  => undef, #lib/open.pm
2079         'ops'                   => '1.00', #lib/ops.pm
2080         'OS2::DLL'              => undef, #os2/OS2/REXX/DLL/DLL.pm
2081         'OS2::ExtAttr'          => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm
2082         'OS2::PrfDB'            => '0.02', #os2/OS2/PrfDB/PrfDB.pm
2083         'OS2::Process'          => '0.2', #os2/OS2/Process/Process.pm
2084         'OS2::REXX'             => '1.00', #os2/OS2/REXX/REXX.pm
2085         'overload'              => undef, #lib/overload.pm
2086         'Pod::Checker'          => '1.2', #lib/Pod/Checker.pm
2087         'Pod::Find'             => '0.21', #lib/Pod/Find.pm
2088         'Pod::Functions'        => undef, #lib/Pod/Functions.pm
2089         'Pod::Html'             => '1.03', #lib/Pod/Html.pm
2090         'Pod::InputObjects'     => '1.13', #lib/Pod/InputObjects.pm
2091         'Pod::LaTeX'            => '0.53', #lib/Pod/LaTeX.pm
2092         'Pod::Man'              => '1.15', #lib/Pod/Man.pm
2093         'Pod::Parser'           => '1.13', #lib/Pod/Parser.pm
2094         'Pod::ParseUtils'       => '0.22', #lib/Pod/ParseUtils.pm
2095         'Pod::Plainer'          => '0.01', #lib/Pod/Plainer.pm
2096         'Pod::Select'           => '1.13', #lib/Pod/Select.pm
2097         'Pod::Text'             => '2.08', #lib/Pod/Text.pm
2098         'Pod::Text::Color'      => '0.06', #lib/Pod/Text/Color.pm
2099         'Pod::Text::Overstrike' => '1.01', #lib/Pod/Text/Overstrike.pm
2100         'Pod::Text::Termcap'    => '1', #lib/Pod/Text/Termcap.pm
2101         'Pod::Usage'            => '1.14', #lib/Pod/Usage.pm
2102         'POSIX'                 => '1.03', #lib/POSIX.pm
2103         're'                    => '0.02', #lib/re.pm
2104         'Safe'                  => '2.10', #lib/Safe.pm
2105         'SDBM_File'             => '1.03', #lib/SDBM_File.pm
2106         'Search::Dict'          => undef, #lib/Search/Dict.pm
2107         'SelectSaver'           => undef, #lib/SelectSaver.pm
2108         'SelfLoader'            => '1.0902', #lib/SelfLoader.pm
2109         'Shell'                 => '0.3', #lib/Shell.pm
2110         'sigtrap'               => '1.02', #lib/sigtrap.pm
2111         'Socket'                => '1.72', #lib/Socket.pm
2112         'strict'                => '1.01', #lib/strict.pm
2113         'subs'                  => undef, #lib/subs.pm
2114         'Symbol'                => '1.02', #lib/Symbol.pm
2115         'Sys::Hostname'         => '1.1', #lib/Sys/Hostname.pm
2116         'Sys::Syslog'           => '0.01', #lib/Sys/Syslog.pm
2117         'Term::ANSIColor'       => '1.03', #lib/Term/ANSIColor.pm
2118         'Term::Cap'             => undef, #lib/Term/Cap.pm
2119         'Term::Complete'        => undef, #lib/Term/Complete.pm
2120         'Term::ReadLine'        => undef, #lib/Term/ReadLine.pm
2121         'Test'                  => '1.24', #lib/Test.pm
2122         'Test::Builder'         => '0.17', #lib/Test/Builder.pm
2123         'Test::Harness'         => '2.30', #lib/Test/Harness.pm
2124         'Test::Harness::Assert' => '0.01', #lib/Test/Harness/Assert.pm
2125         'Test::Harness::Iterator'=> '0.01', #lib/Test/Harness/Iterator.pm
2126         'Test::Harness::Straps' => '0.15', #lib/Test/Harness/Straps.pm
2127         'Test::More'            => '0.47', #lib/Test/More.pm
2128         'Test::Simple'          => '0.47', #lib/Test/Simple.pm
2129         'Text::Abbrev'          => undef, #lib/Text/Abbrev.pm
2130         'Text::ParseWords'      => '3.2', #lib/Text/ParseWords.pm
2131         'Text::Soundex'         => '1.0', #lib/Text/Soundex.pm
2132         'Text::Tabs'            => '98.112801', #lib/Text/Tabs.pm
2133         'Text::Wrap'            => '2001.0131', #lib/Text/Wrap.pm
2134         'Thread'                => '1.0', #ext/Thread/Thread.pm
2135         'Thread::Queue'         => undef, #ext/Thread/Thread/Queue.pm
2136         'Thread::Semaphore'     => undef, #ext/Thread/Thread/Semaphore.pm
2137         'Thread::Signal'        => undef, #ext/Thread/Thread/Signal.pm
2138         'Thread::Specific'      => undef, #ext/Thread/Thread/Specific.pm
2139         'Tie::Array'            => '1.01', #lib/Tie/Array.pm
2140         'Tie::Handle'           => '4.0', #lib/Tie/Handle.pm
2141         'Tie::Hash'             => undef, #lib/Tie/Hash.pm
2142         'Tie::RefHash'          => '1.3', #lib/Tie/RefHash.pm
2143         'Tie::Scalar'           => undef, #lib/Tie/Scalar.pm
2144         'Tie::SubstrHash'       => undef, #lib/Tie/SubstrHash.pm
2145         'Time::gmtime'          => '1.01', #lib/Time/gmtime.pm
2146         'Time::Local'           => undef, #lib/Time/Local.pm
2147         'Time::localtime'       => '1.01', #lib/Time/localtime.pm
2148         'Time::tm'              => undef, #lib/Time/tm.pm
2149         'Unicode'               => '3.0.1', # lib/unicore/version
2150         'UNIVERSAL'             => undef, #lib/UNIVERSAL.pm
2151         'User::grent'           => undef, #lib/User/grent.pm
2152         'User::pwent'           => undef, #lib/User/pwent.pm
2153         'utf8'                  => undef, #lib/utf8.pm
2154         'vars'                  => undef, #lib/vars.pm
2155         'VMS::DCLsym'           => '1.01', #vms/ext/DCLsym/DCLsym.pm
2156         'VMS::Filespec'         => undef, #vms/ext/Filespec.pm
2157         'VMS::Stdio'            => '2.2', #vms/ext/Stdio/Stdio.pm
2158         'vmsish'                => undef, #vms/ext/vmsish.pm
2159         'warnings'              => undef, #lib/warnings.pm
2160         'warnings::register'    => undef, #lib/warnings/register.pm
2161         'XSLoader'              => '0.01', #lib/XSLoader.pm
2162     },
2163
2164     5.007003   => {
2165         'AnyDBM_File'           => '1.00',
2166         'Attribute::Handlers'   => '0.76',
2167         'attributes'            => '0.04_01',
2168         'attrs'                 => '1.01',
2169         'AutoLoader'            => '5.59',
2170         'AutoSplit'             => '1.0307',
2171         'autouse'               => '1.03',
2172         'B::Asmdata'            => '1.00',
2173         'B::Assembler'          => '0.04',
2174         'B::Bblock'             => '1.00',
2175         'B::Bytecode'           => '1.00',
2176         'B::C'                  => '1.01',
2177         'B::CC'                 => '1.00',
2178         'B::Concise'            => '0.52',
2179         'B::Debug'              => '1.00',
2180         'B::Deparse'            => '0.63',
2181         'B::Disassembler'       => '1.01',
2182         'B::Lint'               => '1.00',
2183         'B'                     => '1.00',
2184         'B::Showlex'            => '1.00',
2185         'B::Stackobj'           => '1.00',
2186         'B::Stash'              => '1.00',
2187         'B::Terse'              => '1.00',
2188         'B::Xref'               => '1.00',
2189         'base'                  => '1.02',
2190         'Benchmark'             => '1.04',
2191         'blib'                  => '1.01',
2192         'ByteLoader'            => '0.04',
2193         'bytes'                 => '1.00',
2194         'Carp'                  => '1.01',
2195         'Carp::Heavy'           => undef,
2196         'CGI'                   => '2.80',
2197         'CGI::Apache'           => '1.00',
2198         'CGI::Carp'             => '1.22',
2199         'CGI::Cookie'           => '1.20',
2200         'CGI::Fast'             => '1.04',
2201         'CGI::Pretty'           => '1.05_00',
2202         'CGI::Push'             => '1.04',
2203         'CGI::Switch'           => '1.00',
2204         'CGI::Util'             => '1.3',
2205         'charnames'             => '1.01',
2206         'Class::ISA'            => '0.32',
2207         'Class::Struct'         => '0.61',
2208         'Config'                => undef,
2209         'constant'              => '1.04',
2210         'CPAN::FirstTime'       => '1.54 ',
2211         'CPAN'                  => '1.59_56',
2212         'CPAN::Nox'             => '1.00_01',
2213         'Cwd'                   => '2.06',
2214         'Data::Dumper'          => '2.12',
2215         'DB'                    => '1.0',
2216         'DB_File'               => '1.804',
2217         'Devel::DProf'          => '20000000.00_01',
2218         'Devel::Peek'           => '1.00_03',
2219         'Devel::PPPort'         => '2.0002',
2220         'Devel::SelfStubber'    => '1.03',
2221         'diagnostics'           => '1.1',
2222         'Digest'                => '1.00',
2223         'Digest::MD5'           => '2.16',
2224         'DirHandle'             => '1.00',
2225         'Dumpvalue'             => '1.10',
2226         'DynaLoader'            => 1.04,
2227         'Encode'                => '0.40',
2228         'Encode::CN'            => '0.02',
2229         'Encode::CN::HZ'        => undef,
2230         'Encode::Encoding'      => '0.02',
2231         'Encode::Internal'      => '0.30',
2232         'Encode::iso10646_1'    => '0.30',
2233         'Encode::JP'            => '0.02',
2234         'Encode::JP::Constants' => '1.02',
2235         'Encode::JP::H2Z'       => '0.77',
2236         'Encode::JP::ISO_2022_JP' => undef,
2237         'Encode::JP::JIS'       => undef,
2238         'Encode::JP::Tr'        => '0.77',
2239         'Encode::KR'            => '0.02',
2240         'Encode::Tcl'           => '1.01',
2241         'Encode::Tcl::Escape'   => '1.01',
2242         'Encode::Tcl::Extended' => '1.01',
2243         'Encode::Tcl::HanZi'    => '1.01',
2244         'Encode::Tcl::Table'    => '1.01',
2245         'Encode::TW'            => '0.02',
2246         'Encode::Unicode'       => '0.30',
2247         'Encode::usc2_le'       => '0.30',
2248         'Encode::utf8'          => '0.30',
2249         'Encode::XS'            => '0.40',
2250         'encoding'              => '1.00',
2251         'English'               => '1.00',
2252         'Env'                   => '1.00',
2253         'Exporter'              => '5.566',
2254         'Exporter::Heavy'       => '5.562',
2255         'ExtUtils::Command'     => '1.02',
2256         'ExtUtils::Constant'    => '0.11',
2257         'ExtUtils::Embed'       => '1.250601',
2258         'ExtUtils::Install'     => '1.29',
2259         'ExtUtils::Installed'   => '0.04',
2260         'ExtUtils::Liblist'     => '1.2701',
2261         'ExtUtils::MakeMaker'   => '5.48_03',
2262         'ExtUtils::Manifest'    => '1.35',
2263         'ExtUtils::Miniperl'    => undef,
2264         'ExtUtils::Mkbootstrap' => '1.1401',
2265         'ExtUtils::Mksymlists'  => '1.18',
2266         'ExtUtils::MM_BeOS'     => '1.00',
2267         'ExtUtils::MM_Cygwin'   => '1.00',
2268         'ExtUtils::MM_OS2'      => '1.00',
2269         'ExtUtils::MM_Unix'     => '1.12607',
2270         'ExtUtils::MM_VMS'      => '5.56',
2271         'ExtUtils::MM_Win32'    => '1.00_02',
2272         'ExtUtils::Packlist'    => '0.04',
2273         'ExtUtils::testlib'     => '1.1201',
2274         'ExtUtils::XSSymSet'    => '1.0',
2275         'Fatal'                 => '1.03',
2276         'Fcntl'                 => '1.04',
2277         'fields'                => '1.02',
2278         'File::Basename'        => '2.71',
2279         'File::CheckTree'       => '4.1',
2280         'File::Compare'         => '1.1003',
2281         'File::Copy'            => '2.05',
2282         'File::DosGlob'         => '1.00',
2283         'File::Find'            => '1.04',
2284         'File::Glob'            => '1.01',
2285         'File::Path'            => '1.05',
2286         'File::Spec'            => '0.83',
2287         'File::Spec::Cygwin'    => '1.0',
2288         'File::Spec::Epoc'      => '1.00',
2289         'File::Spec::Functions' => '1.2',
2290         'File::Spec::Mac'       => '1.3',
2291         'File::Spec::OS2'       => '1.1',
2292         'File::Spec::Unix'      => '1.4',
2293         'File::Spec::VMS'       => '1.2',
2294         'File::Spec::Win32'     => '1.3',
2295         'File::stat'            => '1.00',
2296         'File::Temp'            => '0.13',
2297         'FileCache'             => '1.00',
2298         'FileHandle'            => '2.01',
2299         'filetest'              => '1.00',
2300         'Filter::Simple'        => '0.77',
2301         'Filter::Util::Call'    => '1.06',
2302         'FindBin'               => '1.43',
2303         'GDBM_File'             => '1.06',
2304         'Getopt::Long'          => '2.28',
2305         'Getopt::Std'           => '1.03',
2306         'I18N::Collate'         => '1.00',
2307         'I18N::Langinfo'        => '0.01',
2308         'I18N::LangTags'        => '0.27',
2309         'I18N::LangTags::List'  => '0.25',
2310         'if'                    => '0.01',
2311         'integer'               => '1.00',
2312         'IO'                    => '1.20',
2313         'IO::Dir'               => '1.03_00',
2314         'IO::File'              => '1.09',
2315         'IO::Handle'            => '1.21_00',
2316         'IO::Pipe'              => '1.122',
2317         'IO::Poll'              => '0.06',
2318         'IO::Seekable'          => '1.08_00',
2319         'IO::Select'            => '1.15',
2320         'IO::Socket'            => '1.27',
2321         'IO::Socket::INET'      => '1.26',
2322         'IO::Socket::UNIX'      => '1.20_00',
2323         'IPC::Msg'              => '1.00_00',
2324         'IPC::Open2'            => '1.01',
2325         'IPC::Open3'            => '1.0104',
2326         'IPC::Semaphore'        => '1.00_00',
2327         'IPC::SysV'             => '1.03_00',
2328         'JNI'                   => '0.1',
2329         'JPL::AutoLoader'       => undef,
2330         'JPL::Class'            => undef,
2331         'JPL::Compile'          => undef,
2332         'less'                  => '0.01',
2333         'lib'                   => '0.5564',
2334         'List::Util'            => '1.06_00',
2335         'locale'                => '1.00',
2336         'Locale::Constants'     => '2.01',
2337         'Locale::Country'       => '2.01',
2338         'Locale::Currency'      => '2.01',
2339         'Locale::Language'      => '2.01',
2340         'Locale::Maketext'      => '1.03',
2341         'Locale::Script'        => '2.01',
2342         'Math::BigFloat'        => '1.30',
2343         'Math::BigInt'          => '1.54',
2344         'Math::BigInt::Calc'    => '0.25',
2345         'Math::Complex'         => '1.34',
2346         'Math::Trig'            => '1.01',
2347         'Memoize'               => '0.66',
2348         'Memoize::AnyDBM_File'  => '0.65',
2349         'Memoize::Expire'       => '0.66',
2350         'Memoize::ExpireFile'   => '0.65',
2351         'Memoize::ExpireTest'   => '0.65',
2352         'Memoize::NDBM_File'    => '0.65',
2353         'Memoize::SDBM_File'    => '0.65',
2354         'Memoize::Storable'     => '0.65',
2355         'MIME::Base64'          => '2.12',
2356         'MIME::QuotedPrint'     => '2.03',
2357         'NDBM_File'             => '1.04',
2358         'Net::Cmd'              => '2.21',
2359         'Net::Config'           => '1.10',
2360         'Net::Domain'           => '2.17',
2361         'Net::FTP'              => '2.64',
2362         'Net::FTP::A'           => '1.15',
2363         'Net::FTP::dataconn'    => '0.10',
2364         'Net::FTP::E'           => '0.01',
2365         'Net::FTP::I'           => '1.12',
2366         'Net::FTP::L'           => '0.01',
2367         'Net::hostent'          => '1.00',
2368         'Net::netent'           => '1.00',
2369         'Net::Netrc'            => '2.12',
2370         'Net::NNTP'             => '2.21',
2371         'Net::Ping'             => '2.12',
2372         'Net::POP3'             => '2.23',
2373         'Net::protoent'         => '1.00',
2374         'Net::servent'          => '1.00',
2375         'Net::SMTP'             => '2.21',
2376         'Net::Time'             => '2.09',
2377         'NEXT'                  => '0.50',
2378         'O'                     => '1.00',
2379         'ODBM_File'             => '1.03',
2380         'Opcode'                => '1.05',
2381         'open'                  => '1.01',
2382         'ops'                   => '1.00',
2383         'OS2::DLL'              => '1.00',
2384         'OS2::ExtAttr'          => '0.01',
2385         'OS2::PrfDB'            => '0.02',
2386         'OS2::Process'          => '1.0',
2387         'OS2::REXX'             => '1.01',
2388         'overload'              => '1.00',
2389         'PerlIO'                => '1.00',
2390         'PerlIO::Scalar'        => '0.01',
2391         'PerlIO::Via'           => '0.01',
2392         'Pod::Checker'          => '1.3',
2393         'Pod::Find'             => '0.22',
2394         'Pod::Functions'        => '1.01',
2395         'Pod::Html'             => '1.04',
2396         'Pod::LaTeX'            => '0.54',
2397         'Pod::Man'              => '1.32',
2398         'Pod::InputObjects'     => '1.13',
2399         'Pod::ParseLink'        => '1.05',
2400         'Pod::Parser'           => '1.13',
2401         'Pod::ParseUtils'       => '0.22',
2402         'Pod::Plainer'          => '0.01',
2403         'Pod::Select'           => '1.13',
2404         'Pod::Text'             => '2.18',
2405         'Pod::Text::Color'      => '1.03',
2406         'Pod::Text::Overstrike' => '1.08',
2407         'Pod::Text::Termcap'    => '1.09',
2408         'Pod::Usage'            => '1.14',
2409         'POSIX'                 => '1.05',
2410         're'                    => '0.03',
2411         'Safe'                  => '2.07',
2412         'Scalar::Util'          => undef,
2413         'SDBM_File'             => '1.03',
2414         'Search::Dict'          => '1.02',
2415         'SelectSaver'           => '1.00',
2416         'SelfLoader'            => '1.0903',
2417         'Shell'                 => '0.4',
2418         'sigtrap'               => '1.02',
2419         'Socket'                => '1.75',
2420         'sort'                  => '1.00',
2421         'Storable'              => '1.015',
2422         'strict'                => '1.02',
2423         'subs'                  => '1.00',
2424         'Switch'                => '2.06',
2425         'Symbol'                => '1.04',
2426         'Sys::Hostname'         => '1.1',
2427         'Sys::Syslog'           => '0.02',
2428         'Term::ANSIColor'       => '1.04',
2429         'Term::Cap'             => '1.07',
2430         'Term::Complete'        => '1.4',
2431         'Term::ReadLine'        => '1.00',
2432         'Test'                  => '1.18',
2433         'Test::Builder'         => '0.11',
2434         'Test::Harness'         => '2.01',
2435         'Test::Harness::Assert' => '0.01',
2436         'Test::Harness::Iterator'=> '0.01',
2437         'Test::Harness::Straps' => '0.08',
2438         'Test::More'            => '0.41',
2439         'Test::Simple'          => '0.41',
2440         'Text::Abbrev'          => '1.00',
2441         'Text::Balanced'        => '1.89',
2442         'Text::ParseWords'      => '3.21',
2443         'Text::Soundex'         => '1.01',
2444         'Text::Tabs'            => '98.112801',
2445         'Text::Wrap'            => '2001.0929',
2446         'Thread'                => '2.00',
2447         'Thread::Queue'         => '1.00',
2448         'Thread::Semaphore'     => '1.00',
2449         'Thread::Signal'        => '1.00',
2450         'Thread::Specific'      => '1.00',
2451         'threads'               => '0.05',
2452         'threads::shared'       => '0.90',
2453         'Tie::Array'            => '1.02',
2454         'Tie::File'             => '0.17',
2455         'Tie::Hash'             => '1.00',
2456         'Tie::Handle'           => '4.1',
2457         'Tie::Memoize'          => '1.0',
2458         'Tie::RefHash'          => '1.3_00',
2459         'Tie::Scalar'           => '1.00',
2460         'Tie::SubstrHash'       => '1.00',
2461         'Time::gmtime'          => '1.02',
2462         'Time::HiRes'           => '1.20_00',
2463         'Time::Local'           => '1.04',
2464         'Time::localtime'       => '1.02',
2465         'Time::tm'              => '1.00',
2466         'Unicode::Collate'      => '0.10',
2467         'Unicode::Normalize'    => '0.14',
2468         'Unicode::UCD'          => '0.2',
2469         'UNIVERSAL'             => '1.00',
2470         'User::grent'           => '1.00',
2471         'User::pwent'           => '1.00',
2472         'utf8'                  => '1.00',
2473         'vars'                  => '1.01',
2474         'VMS::DCLsym'           => '1.02',
2475         'VMS::Filespec'         => '1.1',
2476         'VMS::Stdio'            => '2.3',
2477         'vmsish'                => '1.00',
2478         'warnings'              => '1.00',
2479         'warnings::register'    => '1.00',
2480         'XS::Typemap'           => '0.01',
2481         'XSLoader'              => '0.01',
2482     },
2483
2484     5.008   => {
2485         'AnyDBM_File'           => '1.00', #./lib/AnyDBM_File.pm
2486         'Attribute::Handlers'   => '0.77', #./lib/Attribute/Handlers.pm
2487         'attributes'            => '0.05', #./lib/attributes.pm
2488         'attrs'                 => '1.01', #./ext/attrs/attrs.pm
2489         'AutoLoader'            => '5.59', #./lib/AutoLoader.pm
2490         'AutoSplit'             => '1.0307', #./lib/AutoSplit.pm
2491         'autouse'               => '1.03', #./lib/autouse.pm
2492         'B'                     => '1.01', #./ext/B/B.pm
2493         'B::Asmdata'            => '1.00', #./ext/B/B/Asmdata.pm
2494         'B::Assembler'          => '0.04', #./ext/B/B/Assembler.pm
2495         'B::Bblock'             => '1.00', #./ext/B/B/Bblock.pm
2496         'B::Bytecode'           => '1.00', #./ext/B/B/Bytecode.pm
2497         'B::C'                  => '1.01', #./ext/B/B/C.pm
2498         'B::CC'                 => '1.00', #./ext/B/B/CC.pm
2499         'B::Concise'            => '0.52', #./ext/B/B/Concise.pm
2500         'B::Debug'              => '1.00', #./ext/B/B/Debug.pm
2501         'B::Deparse'            => '0.63', #./ext/B/B/Deparse.pm
2502         'B::Disassembler'       => '1.01', #./ext/B/B/Disassembler.pm
2503         'B::Lint'               => '1.01', #./ext/B/B/Lint.pm
2504         'B::Showlex'            => '1.00', #./ext/B/B/Showlex.pm
2505         'B::Stackobj'           => '1.00', #./ext/B/B/Stackobj.pm
2506         'B::Stash'              => '1.00', #./ext/B/B/Stash.pm
2507         'B::Terse'              => '1.00', #./ext/B/B/Terse.pm
2508         'B::Xref'               => '1.01', #./ext/B/B/Xref.pm
2509         'base'                  => '1.03', #./lib/base.pm
2510         'Benchmark'             => '1.04', #./lib/Benchmark.pm
2511         'bigint'                => '0.02', #./lib/bigint.pm
2512         'bignum'                => '0.11', #./lib/bignum.pm
2513         'bigrat'                => '0.04', #./lib/bigrat.pm
2514         'blib'                  => '1.02', #./lib/blib.pm
2515         'ByteLoader'            => '0.04', #./ext/ByteLoader/ByteLoader.pm
2516         'bytes'                 => '1.00', #./lib/bytes.pm
2517         'Carp'                  => '1.01', #./lib/Carp.pm
2518         'Carp::Heavy'           => 'undef', #./lib/Carp/Heavy.pm
2519         'CGI'                   => '2.81', #./lib/CGI.pm
2520         'CGI::Apache'           => '1.00', #./lib/CGI/Apache.pm
2521         'CGI::Carp'             => '1.23', #./lib/CGI/Carp.pm
2522         'CGI::Cookie'           => '1.20', #./lib/CGI/Cookie.pm
2523         'CGI::Fast'             => '1.04', #./lib/CGI/Fast.pm
2524         'CGI::Pretty'           => '1.05_00', #./lib/CGI/Pretty.pm
2525         'CGI::Push'             => '1.04', #./lib/CGI/Push.pm
2526         'CGI::Switch'           => '1.00', #./lib/CGI/Switch.pm
2527         'CGI::Util'             => '1.3', #./lib/CGI/Util.pm
2528         'charnames'             => '1.01', #./lib/charnames.pm
2529         'Class::ISA'            => '0.32', #./lib/Class/ISA.pm
2530         'Class::Struct'         => '0.61', #./lib/Class/Struct.pm
2531         'constant'              => '1.04', #./lib/constant.pm
2532         'Config'                => undef,
2533         'CPAN'                  => '1.61', #./lib/CPAN.pm
2534         'CPAN::FirstTime'       => '1.56 ', #./lib/CPAN/FirstTime.pm
2535         'CPAN::Nox'             => '1.02', #./lib/CPAN/Nox.pm
2536         'Cwd'                   => '2.06', #./lib/Cwd.pm
2537         'Data::Dumper'          => '2.12', #./ext/Data/Dumper/Dumper.pm
2538         'DB'                    => '1.0', #./lib/DB.pm
2539         'DB_File'               => '1.804', #./ext/DB_File/DB_File.pm
2540         'Devel::DProf'          => '20000000.00_01', #./ext/Devel/DProf/DProf.pm
2541         'Devel::Peek'           => '1.00_03', #./ext/Devel/Peek/Peek.pm
2542         'Devel::PPPort'         => '2.0002', #./ext/Devel/PPPort/PPPort.pm
2543         'Devel::SelfStubber'    => '1.03', #./lib/Devel/SelfStubber.pm
2544         'diagnostics'           => '1.1', #./lib/diagnostics.pm
2545         'Digest'                => '1.00', #./lib/Digest.pm
2546         'Digest::MD5'           => '2.20', #./ext/Digest/MD5/MD5.pm
2547         'DirHandle'             => '1.00', #./lib/DirHandle.pm
2548         'Dumpvalue'             => '1.11', #./lib/Dumpvalue.pm
2549         'DynaLoader'            => '1.04',
2550         'Encode'                => '1.75', #./ext/Encode/Encode.pm
2551         'Encode::Alias'         => '1.32', #./ext/Encode/lib/Encode/Alias.pm
2552         'Encode::Byte'          => '1.22', #./ext/Encode/Byte/Byte.pm
2553         'Encode::CJKConstants'  => '1.00', #./ext/Encode/lib/Encode/CJKConstants.pm
2554         'Encode::CN'            => '1.24', #./ext/Encode/CN/CN.pm
2555         'Encode::CN::HZ'        => '1.04', #./ext/Encode/lib/Encode/CN/HZ.pm
2556         'Encode::Config'        => '1.06', #./ext/Encode/lib/Encode/Config.pm
2557         'Encode::EBCDIC'        => '1.21', #./ext/Encode/EBCDIC/EBCDIC.pm
2558         'Encode::Encoder'       => '0.05', #./ext/Encode/lib/Encode/Encoder.pm
2559         'Encode::Encoding'      => '1.30', #./ext/Encode/lib/Encode/Encoding.pm
2560         'Encode::Guess'         => '1.06', #./ext/Encode/lib/Encode/Guess.pm
2561         'Encode::JP::H2Z'       => '1.02', #./ext/Encode/lib/Encode/JP/H2Z.pm
2562         'Encode::JP::JIS7'      => '1.08', #./ext/Encode/lib/Encode/JP/JIS7.pm
2563         'Encode::JP'            => '1.25', #./ext/Encode/JP/JP.pm
2564         'Encode::KR'            => '1.22', #./ext/Encode/KR/KR.pm
2565         'Encode::KR::2022_KR'   => '1.05', #./ext/Encode/lib/Encode/KR/2022_KR.pm
2566         'Encode::MIME::Header'  => '1.05', #./ext/Encode/lib/Encode/MIME/Header.pm
2567         'Encode::Symbol'        => '1.22', #./ext/Encode/Symbol/Symbol.pm
2568         'Encode::TW'            => '1.26', #./ext/Encode/TW/TW.pm
2569         'Encode::Unicode'       => '1.37', #./ext/Encode/Unicode/Unicode.pm
2570         'encoding'              => '1.35', #./ext/Encode/encoding.pm
2571         'English'               => '1.00', #./lib/English.pm
2572         'Env'                   => '1.00', #./lib/Env.pm
2573         'Exporter'              => '5.566', #./lib/Exporter.pm
2574         'Exporter::Heavy'       => '5.566', #./lib/Exporter/Heavy.pm
2575         'ExtUtils::Command'     => '1.04', #./lib/ExtUtils/Command.pm
2576         'ExtUtils::Command::MM' => '0.01', #./lib/ExtUtils/Command/MM.pm
2577         'ExtUtils::Constant'    => '0.12', #./lib/ExtUtils/Constant.pm
2578         'ExtUtils::Embed'       => '1.250601', #./lib/ExtUtils/Embed.pm
2579         'ExtUtils::Install'     => '1.29', #./lib/ExtUtils/Install.pm
2580         'ExtUtils::Installed'   => '0.06', #./lib/ExtUtils/Installed.pm
2581         'ExtUtils::Liblist'     => '1.00', #./lib/ExtUtils/Liblist.pm
2582         'ExtUtils::Liblist::Kid'=> '1.29', #./lib/ExtUtils/Liblist/Kid.pm
2583         'ExtUtils::MakeMaker'   => '6.03', #./lib/ExtUtils/MakeMaker.pm
2584         'ExtUtils::Manifest'    => '1.38', #./lib/ExtUtils/Manifest.pm
2585         'ExtUtils::Miniperl'    => undef,
2586         'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm
2587         'ExtUtils::Mksymlists'  => '1.19', #./lib/ExtUtils/Mksymlists.pm
2588         'ExtUtils::MM'          => '0.04', #./lib/ExtUtils/MM.pm
2589         'ExtUtils::MM_Any'      => '0.04', #./lib/ExtUtils/MM_Any.pm
2590         'ExtUtils::MM_BeOS'     => '1.03', #./lib/ExtUtils/MM_BeOS.pm
2591         'ExtUtils::MM_Cygwin'   => '1.04', #./lib/ExtUtils/MM_Cygwin.pm
2592         'ExtUtils::MM_DOS'      => '0.01', #./lib/ExtUtils/MM_DOS.pm
2593         'ExtUtils::MM_MacOS'    => '1.03', #./lib/ExtUtils/MM_MacOS.pm
2594         'ExtUtils::MM_NW5'      => '2.05', #./lib/ExtUtils/MM_NW5.pm
2595         'ExtUtils::MM_OS2'      => '1.03', #./lib/ExtUtils/MM_OS2.pm
2596         'ExtUtils::MM_Unix'     => '1.33', #./lib/ExtUtils/MM_Unix.pm
2597         'ExtUtils::MM_UWIN'     => '0.01', #./lib/ExtUtils/MM_UWIN.pm
2598         'ExtUtils::MM_VMS'      => '5.65', #./lib/ExtUtils/MM_VMS.pm
2599         'ExtUtils::MM_Win32'    => '1.05', #./lib/ExtUtils/MM_Win32.pm
2600         'ExtUtils::MM_Win95'    => '0.02', #./lib/ExtUtils/MM_Win95.pm
2601         'ExtUtils::MY'          => '0.01', #./lib/ExtUtils/MY.pm
2602         'ExtUtils::Packlist'    => '0.04', #./lib/ExtUtils/Packlist.pm
2603         'ExtUtils::testlib'     => '1.15', #./lib/ExtUtils/testlib.pm
2604         'ExtUtils::XSSymSet'    => '1.0', #./vms/ext/XSSymSet.pm
2605         'Fatal'                 => '1.03', #./lib/Fatal.pm
2606         'Fcntl'                 => '1.04', #./ext/Fcntl/Fcntl.pm
2607         'fields'                => '1.02', #./lib/fields.pm
2608         'File::Basename'        => '2.71', #./lib/File/Basename.pm
2609         'File::CheckTree'       => '4.2', #./lib/File/CheckTree.pm
2610         'File::Compare'         => '1.1003', #./lib/File/Compare.pm
2611         'File::Copy'            => '2.05', #./lib/File/Copy.pm
2612         'File::DosGlob'         => '1.00', #./lib/File/DosGlob.pm
2613         'File::Find'            => '1.04', #./lib/File/Find.pm
2614         'File::Glob'            => '1.01', #./ext/File/Glob/Glob.pm
2615         'File::Path'            => '1.05', #./lib/File/Path.pm
2616         'File::Spec'            => '0.83', #./lib/File/Spec.pm
2617         'File::Spec::Cygwin'    => '1.0', #./lib/File/Spec/Cygwin.pm
2618         'File::Spec::Epoc'      => '1.00', #./lib/File/Spec/Epoc.pm
2619         'File::Spec::Functions' => '1.2', #./lib/File/Spec/Functions.pm
2620         'File::Spec::Mac'       => '1.3', #./lib/File/Spec/Mac.pm
2621         'File::Spec::OS2'       => '1.1', #./lib/File/Spec/OS2.pm
2622         'File::Spec::Unix'      => '1.4', #./lib/File/Spec/Unix.pm
2623         'File::Spec::VMS'       => '1.2', #./lib/File/Spec/VMS.pm
2624         'File::Spec::Win32'     => '1.3', #./lib/File/Spec/Win32.pm
2625         'File::stat'            => '1.00', #./lib/File/stat.pm
2626         'File::Temp'            => '0.13', #./lib/File/Temp.pm
2627         'FileCache'             => '1.021', #./lib/FileCache.pm
2628         'FileHandle'            => '2.01', #./lib/FileHandle.pm
2629         'filetest'              => '1.00', #./lib/filetest.pm
2630         'Filter::Simple'        => '0.78', #./lib/Filter/Simple.pm
2631         'Filter::Util::Call'    => '1.06', #./ext/Filter/Util/Call/Call.pm
2632         'FindBin'               => '1.43', #./lib/FindBin.pm
2633         'GDBM_File'             => '1.06', #./ext/GDBM_File/GDBM_File.pm
2634         'Getopt::Long'          => '2.32', #./lib/Getopt/Long.pm
2635         'Getopt::Std'           => '1.03', #./lib/Getopt/Std.pm
2636         'Hash::Util'            => '0.04', #./lib/Hash/Util.pm
2637         'I18N::Collate'         => '1.00', #./lib/I18N/Collate.pm
2638         'I18N::Langinfo'        => '0.01', #./ext/I18N/Langinfo/Langinfo.pm
2639         'I18N::LangTags'        => '0.27', #./lib/I18N/LangTags.pm
2640         'I18N::LangTags::List'  => '0.25', #./lib/I18N/LangTags/List.pm
2641         'if'                    => '0.01', #./lib/if.pm
2642         'integer'               => '1.00', #./lib/integer.pm
2643         'IO'                    => '1.20', #./ext/IO/IO.pm
2644         'IO::Dir'               => '1.03_00', #./ext/IO/lib/IO/Dir.pm
2645         'IO::File'              => '1.09', #./ext/IO/lib/IO/File.pm
2646         'IO::Handle'            => '1.21_00', #./ext/IO/lib/IO/Handle.pm
2647         'IO::Pipe'              => '1.122', #./ext/IO/lib/IO/Pipe.pm
2648         'IO::Poll'              => '0.06', #./ext/IO/lib/IO/Poll.pm
2649         'IO::Seekable'          => '1.08_00', #./ext/IO/lib/IO/Seekable.pm
2650         'IO::Select'            => '1.15', #./ext/IO/lib/IO/Select.pm
2651         'IO::Socket'            => '1.27', #./ext/IO/lib/IO/Socket.pm
2652         'IO::Socket::INET'      => '1.26', #./ext/IO/lib/IO/Socket/INET.pm
2653         'IO::Socket::UNIX'      => '1.20_00', #./ext/IO/lib/IO/Socket/UNIX.pm
2654         'IPC::Open2'            => '1.01', #./lib/IPC/Open2.pm
2655         'IPC::Open3'            => '1.0104', #./lib/IPC/Open3.pm
2656         'IPC::Msg'              => '1.00_00', #./ext/IPC/SysV/Msg.pm
2657         'IPC::Semaphore'        => '1.00_00', #./ext/IPC/SysV/Semaphore.pm
2658         'IPC::SysV'             => '1.03_00', #./ext/IPC/SysV/SysV.pm
2659         'JNI'                   => '0.1', #./jpl/JNI/JNI.pm
2660         'JPL::AutoLoader'       => undef, #./jpl/JPL/AutoLoader.pm
2661         'JPL::Class'            => undef, #./jpl/JPL/Class.pm
2662         'JPL::Compile'          => undef, #./jpl/JPL/Compile.pm
2663         'less'                  => '0.01', #./lib/less.pm
2664         'lib'                   => '0.5564',
2665         'List::Util'            => '1.07_00', #./ext/List/Util/lib/List/Util.pm
2666         'locale'                => '1.00', #./lib/locale.pm
2667         'Locale::Constants'     => '2.01', #./lib/Locale/Constants.pm
2668         'Locale::Country'       => '2.04', #./lib/Locale/Country.pm
2669         'Locale::Currency'      => '2.01', #./lib/Locale/Currency.pm
2670         'Locale::Language'      => '2.01', #./lib/Locale/Language.pm
2671         'Locale::Maketext'      => '1.03', #./lib/Locale/Maketext.pm
2672         'Locale::Script'        => '2.01', #./lib/Locale/Script.pm
2673         'Math::BigFloat'        => '1.35', #./lib/Math/BigFloat.pm
2674         'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm
2675         'Math::BigInt'          => '1.60', #./lib/Math/BigInt.pm
2676         'Math::BigInt::Calc'    => '0.30', #./lib/Math/BigInt/Calc.pm
2677         'Math::BigInt::Trace'   => '0.01', #./lib/Math/BigInt/Trace.pm
2678         'Math::BigRat'          => '0.07', #./lib/Math/BigRat.pm
2679         'Math::Complex'         => '1.34', #./lib/Math/Complex.pm
2680         'Math::Trig'            => '1.01', #./lib/Math/Trig.pm
2681         'Memoize'               => '1.01', #./lib/Memoize.pm
2682         'Memoize::AnyDBM_File'  => '0.65', #./lib/Memoize/AnyDBM_File.pm
2683         'Memoize::Expire'       => '1.00', #./lib/Memoize/Expire.pm
2684         'Memoize::ExpireFile'   => '1.01', #./lib/Memoize/ExpireFile.pm
2685         'Memoize::ExpireTest'   => '0.65', #./lib/Memoize/ExpireTest.pm
2686         'Memoize::NDBM_File'    => '0.65', #./lib/Memoize/NDBM_File.pm
2687         'Memoize::SDBM_File'    => '0.65', #./lib/Memoize/SDBM_File.pm
2688         'Memoize::Storable'     => '0.65', #./lib/Memoize/Storable.pm
2689         'MIME::Base64'          => '2.12', #./ext/MIME/Base64/Base64.pm
2690         'MIME::QuotedPrint'     => '2.03', #./ext/MIME/Base64/QuotedPrint.pm
2691         'NDBM_File'             => '1.04', #./ext/NDBM_File/NDBM_File.pm
2692         'Net::Cmd'              => '2.21', #./lib/Net/Cmd.pm
2693         'Net::Config'           => '1.10', #./lib/Net/Config.pm
2694         'Net::Domain'           => '2.17', #./lib/Net/Domain.pm
2695         'Net::FTP'              => '2.65', #./lib/Net/FTP.pm
2696         'Net::FTP::A'           => '1.15', #./lib/Net/FTP/A.pm
2697         'Net::FTP::dataconn'    => '0.11', #./lib/Net/FTP/dataconn.pm
2698         'Net::FTP::E'           => '0.01', #./lib/Net/FTP/E.pm
2699         'Net::FTP::I'           => '1.12', #./lib/Net/FTP/I.pm
2700         'Net::FTP::L'           => '0.01', #./lib/Net/FTP/L.pm
2701         'Net::hostent'          => '1.00', #./lib/Net/hostent.pm
2702         'Net::netent'           => '1.00', #./lib/Net/netent.pm
2703         'Net::Netrc'            => '2.12', #./lib/Net/Netrc.pm
2704         'Net::NNTP'             => '2.21', #./lib/Net/NNTP.pm
2705         'Net::Ping'             => '2.19', #./lib/Net/Ping.pm
2706         'Net::POP3'             => '2.23', #./lib/Net/POP3.pm
2707         'Net::protoent'         => '1.00', #./lib/Net/protoent.pm
2708         'Net::servent'          => '1.00', #./lib/Net/servent.pm
2709         'Net::SMTP'             => '2.24', #./lib/Net/SMTP.pm
2710         'Net::Time'             => '2.09', #./lib/Net/Time.pm
2711         'NEXT'                  => '0.50', #./lib/NEXT.pm
2712         'O'                     => '1.00', #./ext/B/O.pm
2713         'ODBM_File'             => '1.03', #./ext/ODBM_File/ODBM_File.pm
2714         'Opcode'                => '1.05', #./ext/Opcode/Opcode.pm
2715         'open'                  => '1.01', #./lib/open.pm
2716         'ops'                   => '1.00', #./ext/Opcode/ops.pm
2717         'OS2::DLL'              => '1.00', #./os2/OS2/REXX/DLL/DLL.pm
2718         'OS2::ExtAttr'          => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
2719         'OS2::PrfDB'            => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
2720         'OS2::Process'          => '1.0', #./os2/OS2/Process/Process.pm
2721         'OS2::REXX'             => '1.01', #./os2/OS2/REXX/REXX.pm
2722         'overload'              => '1.00', #./lib/overload.pm
2723         'PerlIO'                => '1.01', #./lib/PerlIO.pm
2724         'PerlIO::encoding'      => '0.06', #./ext/PerlIO/encoding/encoding.pm
2725         'PerlIO::scalar'        => '0.01', #./ext/PerlIO/scalar/scalar.pm
2726         'PerlIO::via'           => '0.01', #./ext/PerlIO/via/via.pm
2727         'PerlIO::via::QuotedPrint'=> '0.04', #./lib/PerlIO/via/QuotedPrint.pm
2728         'Pod::Checker'          => '1.3', #./lib/Pod/Checker.pm
2729         'Pod::Find'             => '0.22', #./lib/Pod/Find.pm
2730         'Pod::Functions'        => '1.01', #./lib/Pod/Functions.pm
2731         'Pod::Html'             => '1.04', #./lib/Pod/Html.pm
2732         'Pod::InputObjects'     => '1.13', #./lib/Pod/InputObjects.pm
2733         'Pod::LaTeX'            => '0.54', #./lib/Pod/LaTeX.pm
2734         'Pod::Man'              => '1.33', #./lib/Pod/Man.pm
2735         'Pod::ParseLink'        => '1.05', #./lib/Pod/ParseLink.pm
2736         'Pod::Parser'           => '1.13', #./lib/Pod/Parser.pm
2737         'Pod::ParseUtils'       => '0.22', #./lib/Pod/ParseUtils.pm
2738         'Pod::Plainer'          => '0.01', #./lib/Pod/Plainer.pm
2739         'Pod::Select'           => '1.13', #./lib/Pod/Select.pm
2740         'Pod::Text'             => '2.19', #./lib/Pod/Text.pm
2741         'Pod::Text::Color'      => '1.03', #./lib/Pod/Text/Color.pm
2742         'Pod::Text::Overstrike' => '1.08', #./lib/Pod/Text/Overstrike.pm
2743         'Pod::Text::Termcap'    => '1.09', #./lib/Pod/Text/Termcap.pm
2744         'Pod::Usage'            => '1.14', #./lib/Pod/Usage.pm
2745         'POSIX'                 => '1.05', #./ext/POSIX/POSIX.pm
2746         're'                    => '0.03', #./ext/re/re.pm
2747         'Safe'                  => '2.07', #./ext/Opcode/Safe.pm
2748         'Scalar::Util'          => 'undef', #./ext/List/Util/lib/Scalar/Util.pm
2749         'SDBM_File'             => '1.03', #./ext/SDBM_File/SDBM_File.pm
2750         'Search::Dict'          => '1.02', #./lib/Search/Dict.pm
2751         'SelectSaver'           => '1.00', #./lib/SelectSaver.pm
2752         'SelfLoader'            => '1.0903', #./lib/SelfLoader.pm
2753         'Shell'                 => '0.4', #./lib/Shell.pm
2754         'sigtrap'               => '1.02', #./lib/sigtrap.pm
2755         'Socket'                => '1.75', #./ext/Socket/Socket.pm
2756         'sort'                  => '1.01', #./lib/sort.pm
2757         'Storable'              => '2.04', #./ext/Storable/Storable.pm
2758         'strict'                => '1.02', #./lib/strict.pm
2759         'subs'                  => '1.00', #./lib/subs.pm
2760         'Switch'                => '2.09', #./lib/Switch.pm
2761         'Symbol'                => '1.04', #./lib/Symbol.pm
2762         'Sys::Hostname'         => '1.1', #./ext/Sys/Hostname/Hostname.pm
2763         'Sys::Syslog'           => '0.03', #./ext/Sys/Syslog/Syslog.pm
2764         'Term::ANSIColor'       => '1.04', #./lib/Term/ANSIColor.pm
2765         'Term::Cap'             => '1.07', #./lib/Term/Cap.pm
2766         'Term::Complete'        => '1.4', #./lib/Term/Complete.pm
2767         'Term::ReadLine'        => '1.00', #./lib/Term/ReadLine.pm
2768         'Test'                  => '1.20', #./lib/Test.pm
2769         'Test::Builder'         => '0.15', #./lib/Test/Builder.pm
2770         'Test::Harness'         => '2.26', #./lib/Test/Harness.pm
2771         'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm
2772         'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm
2773         'Test::Harness::Straps' => '0.14', #./lib/Test/Harness/Straps.pm
2774         'Test::More'            => '0.45', #./lib/Test/More.pm
2775         'Test::Simple'          => '0.45', #./lib/Test/Simple.pm
2776         'Text::Abbrev'          => '1.00', #./lib/Text/Abbrev.pm
2777         'Text::Balanced'        => '1.89', #./lib/Text/Balanced.pm
2778         'Text::ParseWords'      => '3.21', #./lib/Text/ParseWords.pm
2779         'Text::Soundex'         => '1.01', #./lib/Text/Soundex.pm
2780         'Text::Tabs'            => '98.112801', #./lib/Text/Tabs.pm
2781         'Text::Wrap'            => '2001.0929', #./lib/Text/Wrap.pm
2782         'Thread'                => '2.00', #./lib/Thread.pm
2783         'Thread::Queue'         => '2.00', #./lib/Thread/Queue.pm
2784         'Thread::Semaphore'     => '2.00', #./lib/Thread/Semaphore.pm
2785         'Thread::Signal'        => '1.00', #./ext/Thread/Thread/Signal.pm
2786         'Thread::Specific'      => '1.00', #./ext/Thread/Thread/Specific.pm
2787         'threads'               => '0.99', #./ext/threads/threads.pm
2788         'threads::shared'       => '0.90', #./ext/threads/shared/shared.pm
2789         'Tie::Array'            => '1.02', #./lib/Tie/Array.pm
2790         'Tie::File'             => '0.93', #./lib/Tie/File.pm
2791         'Tie::Handle'           => '4.1', #./lib/Tie/Handle.pm
2792         'Tie::Hash'             => '1.00', #./lib/Tie/Hash.pm
2793         'Tie::Memoize'          => '1.0', #./lib/Tie/Memoize.pm
2794         'Tie::RefHash'          => '1.30', #./lib/Tie/RefHash.pm
2795         'Tie::Scalar'           => '1.00', #./lib/Tie/Scalar.pm
2796         'Tie::SubstrHash'       => '1.00', #./lib/Tie/SubstrHash.pm
2797         'Time::gmtime'          => '1.02', #./lib/Time/gmtime.pm
2798         'Time::HiRes'           => '1.20_00', #./ext/Time/HiRes/HiRes.pm
2799         'Time::Local'           => '1.04', #./lib/Time/Local.pm
2800         'Time::localtime'       => '1.02', #./lib/Time/localtime.pm
2801         'Time::tm'              => '1.00', #./lib/Time/tm.pm
2802         'Unicode'               => '3.2.0', # lib/unicore/version
2803         'Unicode::Collate'      => '0.12', #./lib/Unicode/Collate.pm
2804         'Unicode::Normalize'    => '0.17', #./ext/Unicode/Normalize/Normalize.pm
2805         'Unicode::UCD'          => '0.2', #./lib/Unicode/UCD.pm
2806         'UNIVERSAL'             => '1.00', #./lib/UNIVERSAL.pm
2807         'User::grent'           => '1.00', #./lib/User/grent.pm
2808         'User::pwent'           => '1.00', #./lib/User/pwent.pm
2809         'utf8'                  => '1.00', #./lib/utf8.pm
2810         'vars'                  => '1.01', #./lib/vars.pm
2811         'VMS::DCLsym'           => '1.02', #./vms/ext/DCLsym/DCLsym.pm
2812         'VMS::Filespec'         => '1.1', #./vms/ext/Filespec.pm
2813         'VMS::Stdio'            => '2.3', #./vms/ext/Stdio/Stdio.pm
2814         'vmsish'                => '1.00', #./lib/vmsish.pm
2815         'warnings'              => '1.00', #./lib/warnings.pm
2816         'warnings::register'    => '1.00', #./lib/warnings/register.pm
2817         'XS::APItest'           => '0.01', #./ext/XS/APItest/APItest.pm
2818         'XS::Typemap'           => '0.01', #./ext/XS/Typemap/Typemap.pm
2819         'XSLoader'              => '0.01',
2820     },
2821
2822     5.008001 => {
2823         'AnyDBM_File'           => '1.00', #./lib/AnyDBM_File.pm
2824         'Attribute::Handlers'   => '0.78', #./lib/Attribute/Handlers.pm
2825         'attributes'            => '0.06', #./lib/attributes.pm
2826         'attrs'                 => '1.01', #./lib/attrs.pm
2827         'AutoLoader'            => '5.60', #./lib/AutoLoader.pm
2828         'AutoSplit'             => '1.04', #./lib/AutoSplit.pm
2829         'autouse'               => '1.03', #./lib/autouse.pm
2830         'B'                     => '1.02', #./lib/B.pm
2831         'B::Asmdata'            => '1.01', #./lib/B/Asmdata.pm
2832         'B::Assembler'          => '0.06', #./lib/B/Assembler.pm
2833         'B::Bblock'             => '1.02', #./lib/B/Bblock.pm
2834         'B::Bytecode'           => '1.01', #./lib/B/Bytecode.pm
2835         'B::C'                  => '1.02', #./lib/B/C.pm
2836         'B::CC'                 => '1.00', #./lib/B/CC.pm
2837         'B::Concise'            => '0.56', #./lib/B/Concise.pm
2838         'B::Debug'              => '1.01', #./lib/B/Debug.pm
2839         'B::Deparse'            => '0.64', #./lib/B/Deparse.pm
2840         'B::Disassembler'       => '1.03', #./lib/B/Disassembler.pm
2841         'B::Lint'               => '1.02', #./lib/B/Lint.pm
2842         'B::Showlex'            => '1.00', #./lib/B/Showlex.pm
2843         'B::Stackobj'           => '1.00', #./lib/B/Stackobj.pm
2844         'B::Stash'              => '1.00', #./lib/B/Stash.pm
2845         'B::Terse'              => '1.02', #./lib/B/Terse.pm
2846         'B::Xref'               => '1.01', #./lib/B/Xref.pm
2847         'base'                  => '2.03', #./lib/base.pm
2848         'Benchmark'             => '1.051', #./lib/Benchmark.pm
2849         'bigint'                => '0.04', #./lib/bigint.pm
2850         'bignum'                => '0.14', #./lib/bignum.pm
2851         'bigrat'                => '0.06', #./lib/bigrat.pm
2852         'blib'                  => '1.02', #./lib/blib.pm
2853         'ByteLoader'            => '0.05', #./lib/ByteLoader.pm
2854         'bytes'                 => '1.01', #./lib/bytes.pm
2855         'Carp'                  => '1.01', #./lib/Carp.pm
2856         'Carp::Heavy'           => '1.01', #./lib/Carp/Heavy.pm
2857         'CGI'                   => '3.00', #./lib/CGI.pm
2858         'CGI::Apache'           => '1.00', #./lib/CGI/Apache.pm
2859         'CGI::Carp'             => '1.26', #./lib/CGI/Carp.pm
2860         'CGI::Cookie'           => '1.24', #./lib/CGI/Cookie.pm
2861         'CGI::Fast'             => '1.041', #./lib/CGI/Fast.pm
2862         'CGI::Pretty'           => '1.07_00', #./lib/CGI/Pretty.pm
2863         'CGI::Push'             => '1.04', #./lib/CGI/Push.pm
2864         'CGI::Switch'           => '1.00', #./lib/CGI/Switch.pm
2865         'CGI::Util'             => '1.31', #./lib/CGI/Util.pm
2866         'charnames'             => '1.02', #./lib/charnames.pm
2867         'Class::ISA'            => '0.32', #./lib/Class/ISA.pm
2868         'Class::Struct'         => '0.63', #./lib/Class/Struct.pm
2869         'Config'                => undef, #./lib/Config.pm
2870         'constant'              => '1.04', #./lib/constant.pm
2871         'CPAN'                  => '1.76_01', #./lib/CPAN.pm
2872         'CPAN::FirstTime'       => '1.60 ', #./lib/CPAN/FirstTime.pm
2873         'CPAN::Nox'             => '1.03', #./lib/CPAN/Nox.pm
2874         'Cwd'                   => '2.08', #./lib/Cwd.pm
2875         'Data::Dumper'          => '2.121', #./lib/Data/Dumper.pm
2876         'DB'                    => '1.0', #./lib/DB.pm
2877         'DB_File'               => '1.806', #./lib/DB_File.pm
2878         'Devel::DProf'          => '20030813.00', #./lib/Devel/DProf.pm
2879         'Devel::Peek'           => '1.01', #./lib/Devel/Peek.pm
2880         'Devel::PPPort'         => '2.007', #./lib/Devel/PPPort.pm
2881         'Devel::SelfStubber'    => '1.03', #./lib/Devel/SelfStubber.pm
2882         'diagnostics'           => '1.11', #./lib/diagnostics.pm
2883         'Digest'                => '1.02', #./lib/Digest.pm
2884         'Digest::MD5'           => '2.27', #./lib/Digest/MD5.pm
2885         'DirHandle'             => '1.00', #./lib/DirHandle.pm
2886         'Dumpvalue'             => '1.11', #./lib/Dumpvalue.pm
2887         'DynaLoader'            => '1.04', #./lib/DynaLoader.pm
2888         'Encode'                => '1.9801', #./lib/Encode.pm
2889         'Encode::Alias'         => '1.38', #./lib/Encode/Alias.pm
2890         'Encode::Byte'          => '1.23', #./lib/Encode/Byte.pm
2891         'Encode::CJKConstants'  => '1.02', #./lib/Encode/CJKConstants.pm
2892         'Encode::CN'            => '1.24', #./lib/Encode/CN.pm
2893         'Encode::CN::HZ'        => '1.05', #./lib/Encode/CN/HZ.pm
2894         'Encode::Config'        => '1.07', #./lib/Encode/Config.pm
2895         'Encode::EBCDIC'        => '1.21', #./lib/Encode/EBCDIC.pm
2896         'Encode::Encoder'       => '0.07', #./lib/Encode/Encoder.pm
2897         'Encode::Encoding'      => '1.33', #./lib/Encode/Encoding.pm
2898         'Encode::Guess'         => '1.09', #./lib/Encode/Guess.pm
2899         'Encode::JP'            => '1.25', #./lib/Encode/JP.pm
2900         'Encode::JP::H2Z'       => '1.02', #./lib/Encode/JP/H2Z.pm
2901         'Encode::JP::JIS7'      => '1.12', #./lib/Encode/JP/JIS7.pm
2902         'Encode::KR'            => '1.23', #./lib/Encode/KR.pm
2903         'Encode::KR::2022_KR'   => '1.06', #./lib/Encode/KR/2022_KR.pm
2904         'Encode::MIME::Header'  => '1.09', #./lib/Encode/MIME/Header.pm
2905         'Encode::Symbol'        => '1.22', #./lib/Encode/Symbol.pm
2906         'Encode::TW'            => '1.26', #./lib/Encode/TW.pm
2907         'Encode::Unicode'       => '1.40', #./lib/Encode/Unicode.pm
2908         'Encode::Unicode::UTF7' => '0.02', #./lib/Encode/Unicode/UTF7.pm
2909         'encoding'              => '1.47', #./lib/encoding.pm
2910         'English'               => '1.01', #./lib/English.pm
2911         'Env'                   => '1.00', #./lib/Env.pm
2912         'Errno'                 => '1.09_00', #./lib/Errno.pm
2913         'Exporter'              => '5.567', #./lib/Exporter.pm
2914         'Exporter::Heavy'       => '5.567', #./lib/Exporter/Heavy.pm
2915         'ExtUtils::Command'     => '1.05', #./lib/ExtUtils/Command.pm
2916         'ExtUtils::Command::MM' => '0.03', #./lib/ExtUtils/Command/MM.pm
2917         'ExtUtils::Constant'    => '0.14', #./lib/ExtUtils/Constant.pm
2918         'ExtUtils::Embed'       => '1.250601', #./lib/ExtUtils/Embed.pm
2919         'ExtUtils::Install'     => '1.32', #./lib/ExtUtils/Install.pm
2920         'ExtUtils::Installed'   => '0.08', #./lib/ExtUtils/Installed.pm
2921         'ExtUtils::Liblist'     => '1.01', #./lib/ExtUtils/Liblist.pm
2922         'ExtUtils::Liblist::Kid'=> '1.3', #./lib/ExtUtils/Liblist/Kid.pm
2923         'ExtUtils::MakeMaker'   => '6.17', #./lib/ExtUtils/MakeMaker.pm
2924         'ExtUtils::MakeMaker::bytes'=> '0.01', #./lib/ExtUtils/MakeMaker/bytes.pm
2925         'ExtUtils::MakeMaker::vmsish'=> '0.01', #./lib/ExtUtils/MakeMaker/vmsish.pm
2926         'ExtUtils::Manifest'    => '1.42', #./lib/ExtUtils/Manifest.pm
2927         'ExtUtils::Miniperl'    => undef, #./lib/ExtUtils/Miniperl.pm
2928         'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm
2929         'ExtUtils::Mksymlists'  => '1.19', #./lib/ExtUtils/Mksymlists.pm
2930         'ExtUtils::MM'          => '0.04', #./lib/ExtUtils/MM.pm
2931         'ExtUtils::MM_Any'      => '0.07', #./lib/ExtUtils/MM_Any.pm
2932         'ExtUtils::MM_BeOS'     => '1.04', #./lib/ExtUtils/MM_BeOS.pm
2933         'ExtUtils::MM_Cygwin'   => '1.06', #./lib/ExtUtils/MM_Cygwin.pm
2934         'ExtUtils::MM_DOS'      => '0.02', #./lib/ExtUtils/MM_DOS.pm
2935         'ExtUtils::MM_MacOS'    => '1.07', #./lib/ExtUtils/MM_MacOS.pm
2936         'ExtUtils::MM_NW5'      => '2.06', #./lib/ExtUtils/MM_NW5.pm
2937         'ExtUtils::MM_OS2'      => '1.04', #./lib/ExtUtils/MM_OS2.pm
2938         'ExtUtils::MM_Unix'     => '1.42', #./lib/ExtUtils/MM_Unix.pm
2939         'ExtUtils::MM_UWIN'     => '0.02', #./lib/ExtUtils/MM_UWIN.pm
2940         'ExtUtils::MM_VMS'      => '5.70', #./lib/ExtUtils/MM_VMS.pm
2941         'ExtUtils::MM_Win32'    => '1.09', #./lib/ExtUtils/MM_Win32.pm
2942         'ExtUtils::MM_Win95'    => '0.03', #./lib/ExtUtils/MM_Win95.pm
2943         'ExtUtils::MY'          => '0.01', #./lib/ExtUtils/MY.pm
2944         'ExtUtils::Packlist'    => '0.04', #./lib/ExtUtils/Packlist.pm
2945         'ExtUtils::testlib'     => '1.15', #./lib/ExtUtils/testlib.pm
2946         'ExtUtils::XSSymSet'    => '1.0',  #./vms/ext/XSSymSet.pm
2947         'Fatal'                 => '1.03', #./lib/Fatal.pm
2948         'Fcntl'                 => '1.05', #./lib/Fcntl.pm
2949         'fields'                => '2.03', #./lib/fields.pm
2950         'File::Basename'        => '2.72', #./lib/File/Basename.pm
2951         'File::CheckTree'       => '4.2', #./lib/File/CheckTree.pm
2952         'File::Compare'         => '1.1003', #./lib/File/Compare.pm
2953         'File::Copy'            => '2.06', #./lib/File/Copy.pm
2954         'File::DosGlob'         => '1.00', #./lib/File/DosGlob.pm
2955         'File::Find'            => '1.05', #./lib/File/Find.pm
2956         'File::Glob'            => '1.02', #./lib/File/Glob.pm
2957         'File::Path'            => '1.06', #./lib/File/Path.pm
2958         'File::Spec'            => '0.86', #./lib/File/Spec.pm
2959         'File::Spec::Cygwin'    => '1.1', #./lib/File/Spec/Cygwin.pm
2960         'File::Spec::Epoc'      => '1.1', #./lib/File/Spec/Epoc.pm
2961         'File::Spec::Functions' => '1.3', #./lib/File/Spec/Functions.pm
2962         'File::Spec::Mac'       => '1.4', #./lib/File/Spec/Mac.pm
2963         'File::Spec::OS2'       => '1.2', #./lib/File/Spec/OS2.pm
2964         'File::Spec::Unix'      => '1.5', #./lib/File/Spec/Unix.pm
2965         'File::Spec::VMS'       => '1.4', #./lib/File/Spec/VMS.pm
2966         'File::Spec::Win32'     => '1.4', #./lib/File/Spec/Win32.pm
2967         'File::stat'            => '1.00', #./lib/File/stat.pm
2968         'File::Temp'            => '0.14', #./lib/File/Temp.pm
2969         'FileCache'             => '1.03', #./lib/FileCache.pm
2970         'FileHandle'            => '2.01', #./lib/FileHandle.pm
2971         'filetest'              => '1.01', #./lib/filetest.pm
2972         'Filter::Simple'        => '0.78', #./lib/Filter/Simple.pm
2973         'Filter::Util::Call'    => '1.0601', #./lib/Filter/Util/Call.pm
2974         'FindBin'               => '1.43', #./lib/FindBin.pm
2975         'GDBM_File'             => '1.07', #./ext/GDBM_File/GDBM_File.pm
2976         'Getopt::Long'          => '2.34', #./lib/Getopt/Long.pm
2977         'Getopt::Std'           => '1.04', #./lib/Getopt/Std.pm
2978         'Hash::Util'            => '0.05', #./lib/Hash/Util.pm
2979         'I18N::Collate'         => '1.00', #./lib/I18N/Collate.pm
2980         'I18N::Langinfo'        => '0.02', #./lib/I18N/Langinfo.pm
2981         'I18N::LangTags'        => '0.28', #./lib/I18N/LangTags.pm
2982         'I18N::LangTags::List'  => '0.26', #./lib/I18N/LangTags/List.pm
2983         'if'                    => '0.03', #./lib/if.pm
2984         'integer'               => '1.00', #./lib/integer.pm
2985         'IO'                    => '1.21', #./lib/IO.pm
2986         'IO::Dir'               => '1.04', #./lib/IO/Dir.pm
2987         'IO::File'              => '1.10', #./lib/IO/File.pm
2988         'IO::Handle'            => '1.23', #./lib/IO/Handle.pm
2989         'IO::Pipe'              => '1.122', #./lib/IO/Pipe.pm
2990         'IO::Poll'              => '0.06', #./lib/IO/Poll.pm
2991         'IO::Seekable'          => '1.09', #./lib/IO/Seekable.pm
2992         'IO::Select'            => '1.16', #./lib/IO/Select.pm
2993         'IO::Socket'            => '1.28', #./lib/IO/Socket.pm
2994         'IO::Socket::INET'      => '1.27', #./lib/IO/Socket/INET.pm
2995         'IO::Socket::UNIX'      => '1.21', #./lib/IO/Socket/UNIX.pm
2996         'IPC::Msg'              => '1.02', #./lib/IPC/Msg.pm
2997         'IPC::Open2'            => '1.01', #./lib/IPC/Open2.pm
2998         'IPC::Open3'            => '1.0105', #./lib/IPC/Open3.pm
2999         'IPC::Semaphore'        => '1.02', #./lib/IPC/Semaphore.pm
3000         'IPC::SysV'             => '1.04', #./lib/IPC/SysV.pm
3001         'JNI'                   => '0.2', #./jpl/JNI/JNI.pm
3002         'JPL::AutoLoader'       => undef, #./jpl/JPL/AutoLoader.pm
3003         'JPL::Class'            => undef, #./jpl/JPL/Class.pm
3004         'JPL::Compile'          => undef, #./jpl/JPL/Compile.pm
3005         'less'                  => '0.01', #./lib/less.pm
3006         'lib'                   => '0.5565', #./lib/lib.pm
3007         'List::Util'            => '1.13', #./lib/List/Util.pm
3008         'locale'                => '1.00', #./lib/locale.pm
3009         'Locale::Constants'     => '2.01', #./lib/Locale/Constants.pm
3010         'Locale::Country'       => '2.61', #./lib/Locale/Country.pm
3011         'Locale::Currency'      => '2.21', #./lib/Locale/Currency.pm
3012         'Locale::Language'      => '2.21', #./lib/Locale/Language.pm
3013         'Locale::Maketext'      => '1.06', #./lib/Locale/Maketext.pm
3014         'Locale::Maketext::Guts'=> undef, #./lib/Locale/Maketext/Guts.pm
3015         'Locale::Maketext::GutsLoader'=> undef, #./lib/Locale/Maketext/GutsLoader.pm
3016         'Locale::Script'        => '2.21', #./lib/Locale/Script.pm
3017         'Math::BigFloat'        => '1.40', #./lib/Math/BigFloat.pm
3018         'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm
3019         'Math::BigInt'          => '1.66', #./lib/Math/BigInt.pm
3020         'Math::BigInt::Calc'    => '0.36', #./lib/Math/BigInt/Calc.pm
3021         'Math::BigInt::Scalar'  => '0.11', #./lib/Math/BigInt/Scalar.pm
3022         'Math::BigInt::Trace'   => '0.01', #./lib/Math/BigInt/Trace.pm
3023         'Math::BigRat'          => '0.10', #./lib/Math/BigRat.pm
3024         'Math::Complex'         => '1.34', #./lib/Math/Complex.pm
3025         'Math::Trig'            => '1.02', #./lib/Math/Trig.pm
3026         'Memoize'               => '1.01', #./lib/Memoize.pm
3027         'Memoize::AnyDBM_File'  => '0.65', #./lib/Memoize/AnyDBM_File.pm
3028         'Memoize::Expire'       => '1.00', #./lib/Memoize/Expire.pm
3029         'Memoize::ExpireFile'   => '1.01', #./lib/Memoize/ExpireFile.pm
3030         'Memoize::ExpireTest'   => '0.65', #./lib/Memoize/ExpireTest.pm
3031         'Memoize::NDBM_File'    => '0.65', #./lib/Memoize/NDBM_File.pm
3032         'Memoize::SDBM_File'    => '0.65', #./lib/Memoize/SDBM_File.pm
3033         'Memoize::Storable'     => '0.65', #./lib/Memoize/Storable.pm
3034         'MIME::Base64'          => '2.20', #./lib/MIME/Base64.pm
3035         'MIME::QuotedPrint'     => '2.20', #./lib/MIME/QuotedPrint.pm
3036         'NDBM_File'             => '1.05', #./ext/NDBM_File/NDBM_File.pm
3037         'Net::Cmd'              => '2.24', #./lib/Net/Cmd.pm
3038         'Net::Config'           => '1.10', #./lib/Net/Config.pm
3039         'Net::Domain'           => '2.18', #./lib/Net/Domain.pm
3040         'Net::FTP'              => '2.71', #./lib/Net/FTP.pm
3041         'Net::FTP::A'           => '1.16', #./lib/Net/FTP/A.pm
3042         'Net::FTP::dataconn'    => '0.11', #./lib/Net/FTP/dataconn.pm
3043         'Net::FTP::E'           => '0.01', #./lib/Net/FTP/E.pm
3044         'Net::FTP::I'           => '1.12', #./lib/Net/FTP/I.pm
3045         'Net::FTP::L'           => '0.01', #./lib/Net/FTP/L.pm
3046         'Net::hostent'          => '1.01', #./lib/Net/hostent.pm
3047         'Net::netent'           => '1.00', #./lib/Net/netent.pm
3048         'Net::Netrc'            => '2.12', #./lib/Net/Netrc.pm
3049         'Net::NNTP'             => '2.22', #./lib/Net/NNTP.pm
3050         'Net::Ping'             => '2.31', #./lib/Net/Ping.pm
3051         'Net::POP3'             => '2.24', #./lib/Net/POP3.pm
3052         'Net::protoent'         => '1.00', #./lib/Net/protoent.pm
3053         'Net::servent'          => '1.01', #./lib/Net/servent.pm
3054         'Net::SMTP'             => '2.26', #./lib/Net/SMTP.pm
3055         'Net::Time'             => '2.09', #./lib/Net/Time.pm
3056         'NEXT'                  => '0.60', #./lib/NEXT.pm
3057         'O'                     => '1.00', #./lib/O.pm
3058         'ODBM_File'             => '1.04', #./ext/ODBM_File/ODBM_File.pm
3059         'Opcode'                => '1.05', #./lib/Opcode.pm
3060         'open'                  => '1.02', #./lib/open.pm
3061         'ops'                   => '1.00', #./lib/ops.pm
3062         'OS2::ExtAttr'          => '0.02', #./os2/OS2/ExtAttr/ExtAttr.pm
3063         'OS2::PrfDB'            => '0.03', #./os2/OS2/PrfDB/PrfDB.pm
3064         'OS2::Process'          => '1.01', #./os2/OS2/Process/Process.pm
3065         'OS2::DLL'              => '1.01', #./os2/OS2/REXX/DLL/DLL.pm
3066         'OS2::REXX'             => '1.02', #./os2/OS2/REXX/REXX.pm
3067         'overload'              => '1.01', #./lib/overload.pm
3068         'PerlIO'                => '1.02', #./lib/PerlIO.pm
3069         'PerlIO::encoding'      => '0.07', #./lib/PerlIO/encoding.pm
3070         'PerlIO::scalar'        => '0.02', #./lib/PerlIO/scalar.pm
3071         'PerlIO::via'           => '0.02', #./lib/PerlIO/via.pm
3072         'PerlIO::via::QuotedPrint'=> '0.05', #./lib/PerlIO/via/QuotedPrint.pm
3073         'Pod::Checker'          => '1.41', #./lib/Pod/Checker.pm
3074         'Pod::Find'             => '0.24', #./lib/Pod/Find.pm
3075         'Pod::Functions'        => '1.02', #./lib/Pod/Functions.pm
3076         'Pod::Html'             => '1.0501', #./lib/Pod/Html.pm
3077         'Pod::InputObjects'     => '1.14', #./lib/Pod/InputObjects.pm
3078         'Pod::LaTeX'            => '0.55', #./lib/Pod/LaTeX.pm
3079         'Pod::Man'              => '1.37', #./lib/Pod/Man.pm
3080         'Pod::ParseLink'        => '1.06', #./lib/Pod/ParseLink.pm
3081         'Pod::Parser'           => '1.13', #./lib/Pod/Parser.pm
3082         'Pod::ParseUtils'       => '0.3', #./lib/Pod/ParseUtils.pm
3083         'Pod::Perldoc'          => '3.10', #./lib/Pod/Perldoc.pm
3084         'Pod::Perldoc::BaseTo'  => undef, #./lib/Pod/Perldoc/BaseTo.pm
3085         'Pod::Perldoc::GetOptsOO'=> undef, #./lib/Pod/Perldoc/GetOptsOO.pm
3086         'Pod::Perldoc::ToChecker'=> undef, #./lib/Pod/Perldoc/ToChecker.pm
3087         'Pod::Perldoc::ToMan'   => undef, #./lib/Pod/Perldoc/ToMan.pm
3088         'Pod::Perldoc::ToNroff' => undef, #./lib/Pod/Perldoc/ToNroff.pm
3089         'Pod::Perldoc::ToPod'   => undef, #./lib/Pod/Perldoc/ToPod.pm
3090         'Pod::Perldoc::ToRtf'   => undef, #./lib/Pod/Perldoc/ToRtf.pm
3091         'Pod::Perldoc::ToText'  => undef, #./lib/Pod/Perldoc/ToText.pm
3092         'Pod::Perldoc::ToTk'    => 'undef', #./lib/Pod/Perldoc/ToTk.pm
3093         'Pod::Perldoc::ToXml'   => undef, #./lib/Pod/Perldoc/ToXml.pm
3094         'Pod::Plainer'          => '0.01', #./lib/Pod/Plainer.pm
3095         'Pod::PlainText'        => '2.01', #./lib/Pod/PlainText.pm
3096         'Pod::Select'           => '1.13', #./lib/Pod/Select.pm
3097         'Pod::Text'             => '2.21', #./lib/Pod/Text.pm
3098         'Pod::Text::Color'      => '1.04', #./lib/Pod/Text/Color.pm
3099         'Pod::Text::Overstrike' => '1.1', #./lib/Pod/Text/Overstrike.pm
3100         'Pod::Text::Termcap'    => '1.11', #./lib/Pod/Text/Termcap.pm
3101         'Pod::Usage'            => '1.16', #./lib/Pod/Usage.pm
3102         'POSIX'                 => '1.06', #./lib/POSIX.pm
3103         're'                    => '0.04', #./lib/re.pm
3104         'Safe'                  => '2.10', #./lib/Safe.pm
3105         'Scalar::Util'          => '1.13', #./lib/Scalar/Util.pm
3106         'SDBM_File'             => '1.04', #./lib/SDBM_File.pm
3107         'Search::Dict'          => '1.02', #./lib/Search/Dict.pm
3108         'SelectSaver'           => '1.00', #./lib/SelectSaver.pm
3109         'SelfLoader'            => '1.0904', #./lib/SelfLoader.pm
3110         'Shell'                 => '0.5', #./lib/Shell.pm
3111         'sigtrap'               => '1.02', #./lib/sigtrap.pm
3112         'Socket'                => '1.76', #./lib/Socket.pm
3113         'sort'                  => '1.02', #./lib/sort.pm
3114         'Storable'              => '2.08', #./lib/Storable.pm
3115         'strict'                => '1.03', #./lib/strict.pm
3116         'subs'                  => '1.00', #./lib/subs.pm
3117         'Switch'                => '2.10', #./lib/Switch.pm
3118         'Symbol'                => '1.05', #./lib/Symbol.pm
3119         'Sys::Hostname'         => '1.11', #./lib/Sys/Hostname.pm
3120         'Sys::Syslog'           => '0.04', #./lib/Sys/Syslog.pm
3121         'Term::ANSIColor'       => '1.07', #./lib/Term/ANSIColor.pm
3122         'Term::Cap'             => '1.08', #./lib/Term/Cap.pm
3123         'Term::Complete'        => '1.401', #./lib/Term/Complete.pm
3124         'Term::ReadLine'        => '1.01', #./lib/Term/ReadLine.pm
3125         'Test'                  => '1.24', #./lib/Test.pm
3126         'Test::Builder'         => '0.17', #./lib/Test/Builder.pm
3127         'Test::Harness'         => '2.30', #./lib/Test/Harness.pm
3128         'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm
3129         'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm
3130         'Test::Harness::Straps' => '0.15', #./lib/Test/Harness/Straps.pm
3131         'Test::More'            => '0.47', #./lib/Test/More.pm
3132         'Test::Simple'          => '0.47', #./lib/Test/Simple.pm
3133         'Text::Abbrev'          => '1.01', #./lib/Text/Abbrev.pm
3134         'Text::Balanced'        => '1.95', #./lib/Text/Balanced.pm
3135         'Text::ParseWords'      => '3.21', #./lib/Text/ParseWords.pm
3136         'Text::Soundex'         => '1.01', #./lib/Text/Soundex.pm
3137         'Text::Tabs'            => '98.112801', #./lib/Text/Tabs.pm
3138         'Text::Wrap'            => '2001.09291', #./lib/Text/Wrap.pm
3139         'Thread'                => '2.00', #./lib/Thread.pm
3140         'Thread::Queue'         => '2.00', #./lib/Thread/Queue.pm
3141         'Thread::Semaphore'     => '2.01', #./lib/Thread/Semaphore.pm
3142         'Thread::Signal'        => '1.00', #./ext/Thread/Thread/Signal.pm
3143         'Thread::Specific'      => '1.00', #./ext/Thread/Thread/Specific.pm
3144         'threads'               => '1.00', #./lib/threads.pm
3145         'threads::shared'       => '0.91', #./lib/threads/shared.pm
3146         'Tie::Array'            => '1.03', #./lib/Tie/Array.pm
3147         'Tie::File'             => '0.97', #./lib/Tie/File.pm
3148         'Tie::Handle'           => '4.1', #./lib/Tie/Handle.pm
3149         'Tie::Hash'             => '1.00', #./lib/Tie/Hash.pm
3150         'Tie::Memoize'          => '1.0', #./lib/Tie/Memoize.pm
3151         'Tie::RefHash'          => '1.31', #./lib/Tie/RefHash.pm
3152         'Tie::Scalar'           => '1.00', #./lib/Tie/Scalar.pm
3153         'Tie::SubstrHash'       => '1.00', #./lib/Tie/SubstrHash.pm
3154         'Time::gmtime'          => '1.02', #./lib/Time/gmtime.pm
3155         'Time::HiRes'           => '1.51', #./lib/Time/HiRes.pm
3156         'Time::Local'           => '1.07', #./lib/Time/Local.pm
3157         'Time::localtime'       => '1.02', #./lib/Time/localtime.pm
3158         'Time::tm'              => '1.00', #./lib/Time/tm.pm
3159         'Unicode'               => '4.0.0', # lib/unicore/version
3160         'Unicode::Collate'      => '0.28', #./lib/Unicode/Collate.pm
3161         'Unicode::Normalize'    => '0.23', #./lib/Unicode/Normalize.pm
3162         'Unicode::UCD'          => '0.21', #./lib/Unicode/UCD.pm
3163         'UNIVERSAL'             => '1.01', #./lib/UNIVERSAL.pm
3164         'User::grent'           => '1.00', #./lib/User/grent.pm
3165         'User::pwent'           => '1.00', #./lib/User/pwent.pm
3166         'utf8'                  => '1.02', #./lib/utf8.pm
3167         'vars'                  => '1.01', #./lib/vars.pm
3168         'VMS::DCLsym'           => '1.02', #./vms/ext/DCLsym/DCLsym.pm
3169         'VMS::Filespec'         => '1.11', #./vms/ext/Filespec.pm
3170         'VMS::Stdio'            => '2.3', #./vms/ext/Stdio/Stdio.pm
3171         'vmsish'                => '1.01', #./lib/vmsish.pm
3172         'warnings'              => '1.03', #./lib/warnings.pm
3173         'warnings::register'    => '1.00', #./lib/warnings/register.pm
3174         'XS::APItest'           => '0.02', #./lib/XS/APItest.pm
3175         'XS::Typemap'           => '0.01', #./lib/XS/Typemap.pm
3176         'XSLoader'              => '0.02', #./lib/XSLoader.pm
3177     },
3178
3179     5.008002 => {
3180         'AnyDBM_File' => '1.00',  #AnyDBM_File.pm
3181         'Attribute::Handlers' => 0.78, #Attribute\Handlers.pm
3182<