/usr/share/perl5/vendor_perl/CPAN
NameSizeModeActions
API/-0755rm
Exception/-0755rm
FTP/-0755rm
HTTP/-0755rm
Kwalify/-0755rm
LWP/-0755rm
Meta/-0755rm
Plugin/-0755rm
Admin.pm77800644editdlrm
Author.pm68420644editdlrm
Bundle.pm98260644editdlrm
CacheMgr.pm76640644editdlrm
Complete.pm60230644editdlrm
Debug.pm21020644editdlrm
DeferredCode.pm1890644editdlrm
Distribution.pm1638140644editdlrm
Distroprefs.pm119900644editdlrm
Distrostatus.pm9720644editdlrm
FirstTime.pm719800644editdlrm
FTP.pm426240644editdlrm
HandleConfig.pm233010644editdlrm
Index.pm222160644editdlrm
InfoObj.pm69090644editdlrm
Kwalify.pm34280644editdlrm
Meta.pm302720644editdlrm
Mirrors.pm166950644editdlrm
Module.pm223900644editdlrm
Nox.pm9530644editdlrm
Plugin.pm32150644editdlrm
Prompt.pm5670644editdlrm
Queue.pm69420644editdlrm
Shell.pm736050644editdlrm
Tarzip.pm167150644editdlrm
URL.pm5880644editdlrm
Version.pm43980644editdlrm
Edit: /usr/share/perl5/vendor_perl/CPAN/Nox.pm (953B)
package CPAN::Nox; use strict; use vars qw($VERSION @EXPORT); BEGIN{ $CPAN::Suppress_readline=1 unless defined $CPAN::term; } use Exporter (); @CPAN::ISA = ('Exporter'); use CPAN; $VERSION = "5.5001"; $CPAN::META->has_inst('Digest::MD5','no'); $CPAN::META->has_inst('LWP','no'); $CPAN::META->has_inst('Compress::Zlib','no'); @EXPORT = @CPAN::EXPORT; *AUTOLOAD = \&CPAN::AUTOLOAD; 1; __END__ =head1 NAME CPAN::Nox - Wrapper around CPAN.pm without using any XS module =head1 SYNOPSIS Interactive mode: perl -MCPAN::Nox -e shell; =head1 DESCRIPTION This package has the same functionality as CPAN.pm, but tries to prevent the usage of compiled extensions during its own execution. Its primary purpose is a rescue in case you upgraded perl and broke binary compatibility somehow. =head1 LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO L =cut