Commit | Line | Data |
36263cb3 |
1 | package CPAN::Nox; |
2 | |
d4fd5c69 |
3 | BEGIN{$CPAN::Suppress_readline=1 unless defined $CPAN::term;} |
5f05dabc |
4 | |
5 | use CPAN; |
6 | |
36263cb3 |
7 | $VERSION = "1.00"; |
55e314ee |
8 | $CPAN::META->has_inst('MD5','no'); |
9 | $CPAN::META->has_inst('LWP','no'); |
09d9d230 |
10 | $CPAN::META->has_inst('Compress::Zlib','no'); |
5f05dabc |
11 | @EXPORT = @CPAN::EXPORT; |
12 | |
13 | *AUTOLOAD = \&CPAN::AUTOLOAD; |
14 | |
15 | =head1 NAME |
16 | |
17 | CPAN::Nox - Wrapper around CPAN.pm without using any XS module |
18 | |
19 | =head1 SYNOPSIS |
20 | |
21 | Interactive mode: |
22 | |
23 | perl -MCPAN::Nox -e shell; |
24 | |
25 | =head1 DESCRIPTION |
26 | |
27 | This package has the same functionality as CPAN.pm, but tries to |
28 | prevent the usage of compiled extensions during it's own |
29 | execution. It's primary purpose is a rescue in case you upgraded perl |
30 | and broke binary compatibility somehow. |
31 | |
32 | =head1 SEE ALSO |
33 | |
34 | CPAN(3) |
35 | |
36 | =cut |
37 | |