App::CPAN2Pkg::Repository - repository details for a given module
version 3.002
cpan2pkg
deals with two kinds of systems: the local system,
and upstream distribution repository.
A module has some characteristics on both systems (such as availability,
etc).
Those characteristics are gathered in this module.
The status of the module: available, building, etc.
my @prereqs = $repo->prereqs;
The prerequesites needed before attempting to build the module.
my $bool = $repo->can_build;
Return true if there are no more missing prereqs.
my $bool = $repo->miss_prereq( $modname );
Return true if $modname
is missing on the system.
$repo->rm_prereq( $modname );
Remove $modname
as a missing prereq on the repository.
$repo->add_prereq( $modname );
Mark a prereq as missing on the repository.
Jerome Quelin <jquelin@gmail.com>
This software is copyright (c) 2009 by Jerome Quelin.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.