This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
v5.8.8: File::Temp.pm (_gettemp): ignore dir -w test on Cygwin
[perl5.git] / lib / CPAN / Nox.pm
CommitLineData
36263cb3 1package CPAN::Nox;
911a92db
GS
2use strict;
3use vars qw($VERSION @EXPORT);
36263cb3 4
911a92db
GS
5BEGIN{
6 $CPAN::Suppress_readline=1 unless defined $CPAN::term;
7}
5f05dabc 8
911a92db 9use base 'Exporter';
5f05dabc 10use CPAN;
11
b03f445c 12$VERSION = sprintf "%.6f", substr(q$Rev: 2411 $,4)/1000000 + 5.4;
5b6aeab6 13$CPAN::META->has_inst('Digest::MD5','no');
55e314ee 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
35576f8c
A
201;
21
911a92db
GS
22__END__
23
5f05dabc 24=head1 NAME
25
26CPAN::Nox - Wrapper around CPAN.pm without using any XS module
27
28=head1 SYNOPSIS
29
30Interactive mode:
31
32 perl -MCPAN::Nox -e shell;
33
34=head1 DESCRIPTION
35
36This package has the same functionality as CPAN.pm, but tries to
022735b4
JH
37prevent the usage of compiled extensions during its own
38execution. Its primary purpose is a rescue in case you upgraded perl
5f05dabc 39and broke binary compatibility somehow.
40
26844e27
SP
41=head1 LICENSE
42
43This program is free software; you can redistribute it and/or
44modify it under the same terms as Perl itself.
45
5f05dabc 46=head1 SEE ALSO
47
b03f445c 48L<CPAN>
5f05dabc 49
50=cut
51