⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cpanplus.pm

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 PM
字号:
package CPANPLUS;use strict;use Carp;use CPANPLUS::Error;use CPANPLUS::Backend;use Locale::Maketext::Simple    Class => 'CPANPLUS', Style => 'gettext';BEGIN {    use Exporter    ();    use vars        qw( @EXPORT @ISA $VERSION );    @EXPORT     =   qw( shell fetch get install );    @ISA        =   qw( Exporter );    $VERSION = "0.84";     #have to hardcode or cpan.org gets unhappy}### purely for backward compatibility, so we can call it from the commandline:### perl -MCPANPLUS -e 'install Net::SMTP'sub install {    my $cpan = CPANPLUS::Backend->new;    my $mod = shift or (                    error(loc("No module specified!")), return                );    if ( ref $mod ) {        error( loc( "You passed an object. Use %1 for OO style interaction",                    'CPANPLUS::Backend' ));        return;    } else {        my $obj = $cpan->module_tree($mod) or (                        error(loc("No such module '%1'", $mod)),                        return                    );        my $ok = $obj->install;        $ok            ? msg(loc("Installing of %1 successful", $mod),1)            : msg(loc("Installing of %1 failed", $mod),1);        return $ok;    }}### simply downloads a module and stores itsub fetch {    my $cpan = CPANPLUS::Backend->new;    my $mod = shift or (                    error(loc("No module specified!")), return                );    if ( ref $mod ) {        error( loc( "You passed an object. Use %1 for OO style interaction",                    'CPANPLUS::Backend' ));        return;    } else {        my $obj = $cpan->module_tree($mod) or (                        error(loc("No such module '%1'", $mod)),                        return                    );        my $ok = $obj->fetch( fetchdir => '.' );        $ok            ? msg(loc("Fetching of %1 successful", $mod),1)            : msg(loc("Fetching of %1 failed", $mod),1);        return $ok;    }}### alias to fetch() due to compatibility with cpan.pm ###sub get { fetch(@_) }### purely for backwards compatibility, so we can call it from the commandline:### perl -MCPANPLUS -e 'shell'sub shell {    my $option  = shift;    ### since the user can specify the type of shell they wish to start    ### when they call the shell() function, we have to eval the usage    ### of CPANPLUS::Shell so we can set up all the checks properly    eval { require CPANPLUS::Shell; CPANPLUS::Shell->import($option) };    die $@ if $@;    my $cpan = CPANPLUS::Shell->new();    $cpan->shell();}1;__END__=pod=head1 NAMECPANPLUS - API & CLI access to the CPAN mirrors=head1 SYNOPSIS    ### standard invocation from the command line    $ cpanp    $ cpanp -i Some::Module    $ perl -MCPANPLUS -eshell    $ perl -MCPANPLUS -e'fetch Some::Module'    =head1 DESCRIPTIONThe C<CPANPLUS> library is an API to the C<CPAN> mirrors and acollection of interactive shells, commandline programs, etc,that use this API.=head1 GUIDE TO DOCUMENTATION=head2 GENERAL USAGEThis is the document you are currently reading. It describes basic usage and background information. Its main purpose is to assist the user who wants to learn how to invoke CPANPLUSand install modules from the commandline and to point youto more indepth reading if required.=head2 API REFERENCEThe C<CPANPLUS> API is meant to let you programmatically interact with the C<CPAN> mirrors. The documentation inL<CPANPLUS::Backend> shows you how to create an objectcapable of interacting with those mirrors, letting youcreate & retrieve module objects.L<CPANPLUS::Module> shows you how you can use these moduleobjects to perform actions like installing and testing. The default shell, documented in L<CPANPLUS::Shell::Default>is also scriptable. You can use its API to dispatch callsfrom your script to the CPANPLUS Shell.=cut=head1 COMMANDLINE TOOLS=head2 STARTING AN INTERACTIVE SHELLYou can start an interactive shell by running either of the two following commands:    $ cpanp    $ perl -MCPANPLUS -eshellAll commans available are listed in the interactive shellshelp menu. See C<cpanp -h> or L<CPANPLUS::Shell::Default> for instructions on using the default shell.      =head2 CHOOSE A SHELLBy running C<cpanp> without arguments, you will start upthe shell specified in your config, which defaults to L<CPANPLUS::Shell::Default>. There are more shells available.C<CPANPLUS> itself ships with an emulation shell called L<CPANPLUS::Shell::Classic> that looks and feels just like the old C<CPAN.pm> shell.You can start this shell by typing:    $ perl -MCPANPLUS -e'shell Classic'    Even more shells may be available from C<CPAN>.    Note that if you have changed your default shell in yourconfiguration, that shell will be used instead. If for some reason there was an error with your specified shell, you will be given the default shell.=head2 BUILDING PACKAGESC<cpan2dist> is a commandline tool to convert any distribution from C<CPAN> into a package in the format of your choice, likefor example C<.deb> or C<FreeBSD ports>. See C<cpan2dist -h> for details.        =head1 FUNCTIONSFor quick access to common commands, you may use this module,C<CPANPLUS> rather than the full programmatic API situated inC<CPANPLUS::Backend>. This module offers the following functions:=head2 $bool = install( Module::Name | /A/AU/AUTHOR/Module-Name-1.tgz )This function requires the full name of the module, which is casesensitive.  The module name can also be provided as a fullyqualified file name, beginning with a I</>, relative tothe /authors/id directory on a CPAN mirror.It will download, extract and install the module.=head2 $where = fetch( Module::Name | /A/AU/AUTHOR/Module-Name-1.tgz )Like install, fetch needs the full name of a module or the fullyqualified file name, and is case sensitive.It will download the specified module to the current directory.=head2 $where = get( Module::Name | /A/AU/AUTHOR/Module-Name-1.tgz )Get is provided as an alias for fetch for compatibility withCPAN.pm.=head2 shell()Shell starts the default CPAN shell.  You can also start the shellby using the C<cpanp> command, which will be installed in yourperl bin.=head1 FAQFor frequently asked questions and answers, please consult theC<CPANPLUS::FAQ> manual.=head1 BUG REPORTSPlease report bugs or other issues to E<lt>bug-cpanplus@rt.cpan.org<gt>.=head1 AUTHORThis module by Jos Boumans E<lt>kane@cpan.orgE<gt>.=head1 COPYRIGHTThe CPAN++ interface (of which this module is a part of) is copyright (c) 2001 - 2007, Jos Boumans E<lt>kane@cpan.orgE<gt>. All rights reserved.This library is free software; you may redistribute and/or modify it under the same terms as Perl itself.=head1 SEE ALSOL<CPANPLUS::Shell::Default>, L<CPANPLUS::FAQ>, L<CPANPLUS::Backend>, L<CPANPLUS::Module>, L<cpanp>, L<cpan2dist>=head1 CONTACT INFORMATION=over 4=item * Bug reporting:I<bug-cpanplus@rt.cpan.org>=item * Questions & suggestions:I<cpanplus-devel@lists.sourceforge.net>=back=cut# Local variables:# c-indentation-style: bsd# c-basic-offset: 4# indent-tabs-mode: nil# End:# vim: expandtab shiftwidth=4:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -