Ricardo Signes > CPAN-Mini-0.576 > CPAN::Mini

Download:
CPAN-Mini-0.576.tar.gz

Dependencies

Annotate this POD (1)

CPAN RT

New  3
Open  6
View Bugs
Report a bug
Module Version: 0.576   Source  

NAME ^

CPAN::Mini - create a minimal mirror of CPAN

VERSION ^

version 0.576

SYNOPSIS ^

(If you're not going to do something weird, you probably want to look at the minicpan command, instead.)

 use CPAN::Mini;

 CPAN::Mini->update_mirror(
   remote => "http://cpan.mirrors.comintern.su",
   local  => "/usr/share/mirrors/cpan",
   trace  => 1
 );

DESCRIPTION ^

CPAN::Mini provides a simple mechanism to build and update a minimal mirror of the CPAN on your local disk. It contains only those files needed to install the newest version of every distribution. Those files are:

METHODS ^

update_mirror

 CPAN::Mini->update_mirror(
   remote => "http://cpan.mirrors.comintern.su",
   local  => "/usr/share/mirrors/cpan",
   force  => 0,
   trace  => 1
 );

This is the only method that need be called from outside this module. It will update the local mirror with the files from the remote mirror.

If called as a class method, update_mirror creates an ephemeral CPAN::Mini object on which other methods are called. That object is used to store mirror location and state.

This method returns the number of files updated.

The following options are recognized:

new

  my $minicpan = CPAN::Mini->new;

This method constructs a new CPAN::Mini object. Its parameters are described above, under update_mirror.

mirror_indices

  $minicpan->mirror_indices;

This method updates the index files from the CPAN.

mirror_file

  $minicpan->mirror_file($path, $skip_if_present)

This method will mirror the given file from the remote to the local mirror, overwriting any existing file unless $skip_if_present is true.

file_allowed

  next unless $minicpan->file_allowed($filename);

This method returns true if the given file is allowed to exist in the local mirror, even if it isn't one of the required mirror files.

By default, only dot-files are allowed. If the exact_mirror option is true, all files are allowed.

clean_unmirrored

  $minicpan->clean_unmirrored;

This method looks through the local mirror's files. If it finds a file that neither belongs in the mirror nor is allowed (see the file_allowed method), clean_file is called on the file.

clean_file

  $minicpan->clean_file($filename);

This method, called by clean_unmirrored, deletes the named file. It returns true if the file is successfully unlinked. Otherwise, it returns false.

trace

  $minicpan->trace($message);

If the object is mirroring verbosely, this method will print messages sent to it.

read_config

  my %config = CPAN::Mini->read_config;

This routine returns a set of arguments that can be passed to CPAN::Mini's new or update_mirror methods. It will look for a file called .minicpanrc in the user's home directory as determined by File::HomeDir.

SEE ALSO ^

Randal Schwartz's original article on minicpan, here:

        http://www.stonehenge.com/merlyn/LinuxMag/col42.html

CPANPLUS::Backend, which provides the local_mirror method, which performs the same task as this module.

THANKS ^

Thanks to David Dyck for letting me know about my stupid documentation errors.

Thanks to Roy Fulbright for finding an obnoxious bug on Win32.

Thanks to Shawn Sorichetti for fixing a stupid octal-number-as-string bug.

Thanks to sungo for implementing the filters, so I can finally stop mirroring bioperl, and Robert Rothenberg for suggesting adding coderef rules.

Thanks to Adam Kennedy for noticing and complaining about a lot of stupid little design decisions.

Thanks to Michael Schwern and Jason Kohles, for pointing out missing documentation.

Thanks to David Golden for some important bugfixes and refactoring.

AUTHORS ^

Randal Schwartz <merlyn@stonehenge.com> wrote the original minicpan script.

Ricardo SIGNES <rjbs@cpan.org> turned Randal's script into a module and CPAN distribution, and has maintained it since its release as such.

This code was copyrighted in 2004, and is released under the same terms as Perl itself.