The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Module::CoreList - what modules shipped with versions of perl

SYNOPSIS

 use Module::CoreList;

 print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48

 print Module::CoreList->first_release('File::Spec');       # prints 5.00503
 print Module::CoreList->first_release('File::Spec', 0.82); # prints 5.006001

 print join ", ", @{ $Module::CoreList::families{5.005} };
    # prints "5.005, 5.00503, 5.00504"

DEPENDENCIES

This module has external dependencies on the following modules:

 Test::More

INSTALLATION

 perl Makefile.PL
 make
 make test

and if all goes well

 make install

HISTORY

What changed over the last 3 revisions

2.02 Tuesday 31th May, 2005
        Include data for perl 5.8.7
2.01 Sunday 24th April, 2005
        Allow to specify several modules on the corelist command-line
        (Yves Orton)
        Add a %patchlevel hash to get perforce patchlevels corresponding to
        released versions
2.00 Sunday 10th April, 2005
        Data from Sebastien Aperghis-Tramoni for perl 5.00{0,1,2}.

AUTHOR

Richard Clamp <richardc@unixbeard.net>

COPYRIGHT

Copyright (C) 2002-2005 Richard Clamp. All Rights Reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Module::Info, perl