Name Date Size #Lines LOC

..--

lib/Module/H--26,13325,741

t/H--339225

ChangesH A D28-Jan-202517.5 KiB897632

MANIFESTH A D13-Feb-2019326 1918

Makefile.PLH A D08-Jul-20231.2 KiB5043

READMEH A D24-Sep-20101.1 KiB5730

corelistH A D01-Mar-202114.9 KiB575288

identify-dependenciesH A D13-Feb-2019657 2921

README

1README for Module::CoreList 2.20
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
57