"Fossies" - the Fresh Open Source Software Archive 
Member "perl-5.32.1/dist/Module-CoreList/README" (18 Dec 2020, 1080 Bytes) of package /linux/misc/perl-5.32.1.tar.xz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 README for Module::CoreList 2.20
2
3 =head1 NAME
4
5 Module::CoreList - what modules shipped with versions of perl
6
7 =head1 SYNOPSIS
8
9 use Module::CoreList;
10
11 print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48
12
13 print Module::CoreList->first_release('File::Spec'); # prints 5.00503
14 print Module::CoreList->first_release('File::Spec', 0.82); # prints 5.006001
15
16 print join ", ", @{ $Module::CoreList::families{5.005} };
17 # prints "5.005, 5.00503, 5.00504"
18
19
20 =head1 DEPENDENCIES
21
22 This module has external dependencies on the following modules:
23
24 Test::More
25
26 =head1 INSTALLATION
27
28 perl Makefile.PL
29 make
30 make test
31
32 and if all goes well
33
34 make install
35
36 =head1 HISTORY
37
38 See the F<Changes> file.
39
40 =head1 AUTHOR
41
42 Richard Clamp E<lt>richardc@unixbeard.netE<gt>
43
44 Currently maintained by the perl 5 porters E<lt>perl5-porters@perl.orgE<gt>.
45
46 =head1 COPYRIGHT
47
48 Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.
49
50 This module is free software; you can redistribute it and/or modify it
51 under the same terms as Perl itself.
52
53 =head1 SEE ALSO
54
55 L<Module::Info>, L<perl>
56