This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Resync with mainline
[perl5.git] / lib / CPAN / Nox.pm
CommitLineData
36263cb3 1package CPAN::Nox;
cb50131a
CB
2use strict;
3use vars qw($VERSION @EXPORT);
36263cb3 4
cb50131a
CB
5BEGIN{
6 $CPAN::Suppress_readline=1 unless defined $CPAN::term;
7}
5f05dabc 8
cb50131a 9use base 'Exporter';
5f05dabc 10use CPAN;
11
36263cb3 12$VERSION = "1.00";
55e314ee
A
13$CPAN::META->has_inst('MD5','no');
14$CPAN::META->has_inst('LWP','no');
09d9d230 15$CPAN::META->has_inst('Compress::Zlib','no');
5f05dabc 16@EXPORT = @CPAN::EXPORT;
17
18*AUTOLOAD = \&CPAN::AUTOLOAD;
19
cb50131a
CB
20__END__
21
5f05dabc 22=head1 NAME
23
24CPAN::Nox - Wrapper around CPAN.pm without using any XS module
25
26=head1 SYNOPSIS
27
28Interactive mode:
29
30 perl -MCPAN::Nox -e shell;
31
32=head1 DESCRIPTION
33
34This package has the same functionality as CPAN.pm, but tries to
35prevent the usage of compiled extensions during it's own
36execution. It's primary purpose is a rescue in case you upgraded perl
37and broke binary compatibility somehow.
38
39=head1 SEE ALSO
40
41CPAN(3)
42
43=cut
44