$Frontend $Defaultsite
};
-$VERSION = '1.39';
+$VERSION = '1.3901';
# $Id: CPAN.pm,v 1.226 1998/07/08 22:29:29 k Exp k $
# no strict 'refs';
local(*FH);
tie *FH, CPAN::Tarzip, $index_target;
+ local($/) = "\n";
while (<FH>) {
chomp;
my($userid,$fullname,$email) =
return unless defined $index_target;
$CPAN::Frontend->myprint("Going to read $index_target\n");
my $fh = CPAN::Tarzip->TIEHANDLE($index_target);
+ local($/) = "\n";
while ($_ = $fh->READLINE) {
last if /^\s*$/;
}
$CPAN::Frontend->myprint("Going to read $index_target\n");
my $fh = CPAN::Tarzip->TIEHANDLE($index_target);
my @eval;
+ local($/) = "\n";
while ($_ = $fh->READLINE) {
if (/^Date:\s+(.*)/){
return if $date_of_03 eq $1;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(AUTOLOAD);
-$VERSION = 1.07; sub Version {$VERSION}
+$VERSION = "1.08";
+sub Version {$VERSION}
$DEBUG = 0;
my %Cache; # private cache for all SelfLoader's client packages
unless fileno($fh);
$Cache{"${currpack}::<DATA"} = 1; # indicate package is cached
+ local($/) = "\n";
while(defined($line = <$fh>) and $line !~ m/^__END__/) {
if ($line =~ m/^sub\s+([\w:]+)\s*(\([\\\$\@\%\&\*\;]*\))?/) {
push(@stubs, $self->_add_to_cache($name, $currpack, \@lines, $protoype));