Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cpan::perl::releases(3pm) [debian man page]

CPAN::Perl::Releases(3pm)				User Contributed Perl Documentation				 CPAN::Perl::Releases(3pm)

NAME
CPAN::Perl::Releases - Mapping Perl releases on CPAN to the location of the tarballs VERSION
version 0.60 SYNOPSIS
use CPAN::Perl::Releases qw[perl_tarballs]; my $perl = '5.14.0'; my $hashref = perl_tarballs( $perl ); print "Location: ", $_, " " for values %{ $hashref }; DESCRIPTION
CPAN::Perl::Releases is a module that contains the mappings of all "perl" releases that have been uploaded to CPAN to the "authors/id/" path that the tarballs reside in. This is static data, but newer versions of this module will be made available as new releases of "perl" are uploaded to CPAN. FUNCTIONS
"perl_tarballs" Takes one parameter, a "perl" version to search for. Returns an hashref on success or "undef" otherwise. The returned hashref will have a key/value for each type of tarball. A key of "tar.gz" indicates the location of a gzipped tar file and "tar.bz2" of a bzip2'd tar file. The values will be the relative path under "authors/id/" on CPAN where the indicated tarball will be located. perl_tarballs( '5.14.0' ); Returns a hashref like: { "tar.bz2" => "J/JE/JESSE/perl-5.14.0.tar.bz2", "tar.gz" => "J/JE/JESSE/perl-5.14.0.tar.gz" } Not all "perl" releases had "tar.bz2", but only a "tar.gz". SEE ALSO
<http://www.cpan.org/src/5.0/> <http://search.cpan.org/faq.html#Is_there_a_API?> AUTHOR
Chris Williams <chris@bingosnet.co.uk> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Chris Williams. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-20 CPAN::Perl::Releases(3pm)

Check Out this Related Man Page

CPANINJECT(1p)						User Contributed Perl Documentation					    CPANINJECT(1p)

NAME
cpaninject - Inject a distribution for installation via the CPAN shell SYNOPSIS
# Add the distribution cpaninject myperlmodule.tar.gz # And then install it from the cpan shell cpan> install LOCAL/myperlmodule.tar.gz DESCRIPTION
cpaninject is a small front-end application for the CPAN::Inject module. It takes any arbitrary Perl distribution tarball (open source or otherwise) and injects it into the local CPAN file cache, smoothing some metadata files to make it look as if it came from CPAN. It makes use the officially blessed "Reserved Local CPAN Author" id "LOCAL" as the author the distributions are added under. To use the program, just run cpaninject mytarball.tar.gz to add it, then the CPAN shell to install it (with full automatic recursive dependency installation). The key here being the recursive dependency installation, which you are now able to do even for installing non-CPAN modules. This simplifies the installation process a little, and makes things easier on someone that just wants to install a single commercial or non-CPAN Perl module that might have a dozen or more CPAN dependencies. SUPPORT
All bugs should be filed via the bug tracker at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CPAN-Inject> For other issues, or commercial enhancement and support, contact the author AUTHOR
Adam Kennedy <adamk@cpan.org> SEE ALSO
CPAN::Mini::Inject COPYRIGHT
Copyright 2006 - 2011 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. perl v5.10.1 2011-01-05 CPANINJECT(1p)
Man Page