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