This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Create new perldelta
[perl5.git] / dist / Module-CoreList / README
CommitLineData
2a61b338 1README for Module::CoreList 2.20
3a02dfe7
RGS
2
3=head1 NAME
4
5Module::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
22This 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
32and if all goes well
33
34 make install
35
36=head1 HISTORY
37
38See the F<Changes> file.
39
40=head1 AUTHOR
41
42Richard Clamp E<lt>richardc@unixbeard.netE<gt>
43
44Currently maintained by the perl 5 porters E<lt>perl5-porters@perl.orgE<gt>.
45
46=head1 COPYRIGHT
47
48Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.
49
50This module is free software; you can redistribute it and/or modify it
51under the same terms as Perl itself.
52
53=head1 SEE ALSO
54
55L<Module::Info>, L<perl>
56