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