Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

minicpan(1p) [debian man page]

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

NAME
minicpan - uses CPAN::Mini to create or update a local mirror VERSION
version 1.111008 SYNOPSIS
minicpan [options] Options -l LOCAL - where is the local minicpan? (required) -r REMOTE - where is the remote cpan mirror? (required) -d 0### - permissions (numeric) to use when creating directories -f - check all directories, even if indices are unchanged -p - mirror perl, ponie, and parrot distributions --debug - run in debug mode (print even banal messages) -q - run in quiet mode (don't print status) -qq - run in silent mode (don't even print warnings) -c CLASS - what class to use to mirror (default: CPAN::Mini) -C FILE - what config file to use (default: ~/.minicpanrc) -h - print help and exit -v - print version and exit -x - build an exact mirror, getting even normally disallowed files -t SEC - timeout in sec. Defaults to 180 sec --offline - operate in offline mode (generally: do nothing) --log-level - provide a log level; instead of --debug, -q, or -qq DESCRIPTION
This simple shell script just updates (or creates) a miniature CPAN mirror as described in CPAN::Mini. CONFIGURATION FILE
By default, "minicpan" will read a configuration file to get configuration information. The file is a simple set of names and values, as in the following example: local: /home/rjbs/mirrors/minicpan/ remote: http://your.favorite.cpan/cpan/ exact_mirror: 1 "minicpan" tries to find a configuration file through the following process. It takes the first defined it finds: o Use the value specified by "-C" on the command line o Use the value in the "CPAN_MINI_CONFIG" environment variable o Use ~/.minicpanrc o Use CPAN/Mini/minicpan.conf If the selected file does not exist, "minicpan" does not keep looking. You can override this process with a "config_file" method in your subclass. See "CPAN::Mini" for a full listing of available options. TO DO
Improve command-line options. SEE ALSO
Randal Schwartz's original article, which can be found here: http://www.stonehenge.com/merlyn/LinuxMag/col42.html AUTHORS
o Ricardo SIGNES <rjbs@cpan.org> o Randal Schwartz <merlyn@stonehenge.com> COPYRIGHT AND LICENSE
This software is copyright (c) 2004 by Ricardo SIGNES. 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 2011-12-23 MINICPAN(1p)

Check Out this Related Man Page

CPAN::Meta::Feature(3)					User Contributed Perl Documentation				    CPAN::Meta::Feature(3)

NAME
CPAN::Meta::Feature - an optional feature provided by a CPAN distribution VERSION
version 2.133380 DESCRIPTION
A CPAN::Meta::Feature object describes an optional feature offered by a CPAN distribution and specified in the distribution's META.json (or META.yml) file. For the most part, this class will only be used when operating on the result of the "feature" or "features" methods on a CPAN::Meta object. METHODS
new my $feature = CPAN::Meta::Feature->new( $identifier => \%spec ); This returns a new Feature object. The %spec argument to the constructor should be the same as the value of the "optional_feature" entry in the distmeta. It must contain entries for "description" and "prereqs". identifier This method returns the feature's identifier. description This method returns the feature's long description. prereqs This method returns the feature's prerequisites as a CPAN::Meta::Prereqs object. BUGS
Please report any bugs or feature using the CPAN Request Tracker. Bugs can be submitted through the web interface at <http://rt.cpan.org/Dist/Display.html?Queue=CPAN-Meta> When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. AUTHORS
o David Golden <dagolden@cpan.org> o Ricardo Signes <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by David Golden and Ricardo Signes. 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.18.2 2013-12-03 CPAN::Meta::Feature(3)
Man Page