App-Tel
view release on metacpan or search on metacpan
lib/App/Tel.pm view on Meta::CPAN
}
}
],
# almost never needed anymore. Some people might not want a
# fallback to des. If anyone does we need to make it optional
#[ qr/cipher type \S+ not supported/ => sub { $rtr->{ciphertype}="des"; redo METHOD; } ],
# removing these 4, they should be handled by eof anyway
#[ qr/ssh_exchange_identification/ => sub { next METHOD; } ],
#[ qr/[Cc]onnection (refused|closed)/ => sub { next METHOD; } ],
#[ qr/key_verify failed/ => sub { next METHOD; } ],
#[ qr/Corrupted/ => sub { next METHOD; } ],
[ 'eof' => sub { next METHOD; } ],
[ 'timeout' => sub { next METHOD; } ],
);
}
$rtr->{logoutcmd} ||= "logout";
$rtr->{prompt} ||= '#';
warn "Connection to $hostname failed.\n" if !$self->connected;
local/lib/perl5/Module/Build.pm view on Meta::CPAN
C<realclean> action, you are essentially starting over, so you will
have to re-create the C<Build> script again.
=item retest
[version 0.2806]
This is just like the C<test> action, but doesn't actually build the
distribution first, and doesn't add F<blib/> to the load path, and
therefore will test against a I<previously> installed version of the
distribution. This can be used to verify that a certain installed
distribution still works, or to see whether newer versions of a
distribution still pass the old regression tests, and so on.
=item skipcheck
[version 0.05]
Reports which files are skipped due to the entries in the
F<MANIFEST.SKIP> file (See L<manifest> for details)
local/lib/perl5/Module/Install.pod view on Meta::CPAN
add the equivalent of a C<< configure_requires( perl => '5.005' ); >>
command to your distribution.
=head2 requires_external_bin
requires_external_bin 'cvs';
As part of its role as the dominant "glue" language, a lot of Perl
modules run commands or programs on the host system.
The C<requires_external_bin> command is used to verify that a particular
command is available on the host system.
Unlike a missing Perl module, a missing external binary is unresolvable
at make-time, and so the F<Makefile.PL> run will abort with a "NA"
(Not Applicable) result.
In future, this command will also add additional information to the
metadata for the dist, so that auto-packagers for particular operating
system are more-easily able to auto-discover the appropriate non-Perl
packages needed as a dependency.
( run in 0.933 second using v1.01-cache-2.11-cpan-73692580452 )