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