Re: Bundle::CPAN install error
- From: bobby@xxxxxxxxxxxxxx (Bobby)
- Date: Thu, 27 Sep 2007 22:52:39 -0400
Hi,
It was suggested that I look over the test script. However this is clear to
me. Can anyone say what is wrong from looking here or maybe can direct me
where to look for more? (I'm not a Perl programmer.)
I get the idea that maybe it's checking what the version number is when
getting stuck in a loop. Also maybe I did not include enough lines the first
time, this should show enough.
# test if our own version numbers meet expectations
use strict;
eval 'use warnings';
use lib "lib";
my @m;
if ($ENV{PERL_CORE}){
@m = ("CPAN", map { "CPAN::$_" } qw(Debug DeferedCode FirstTime Nox Queue
Tarzip Version));
} else {
opendir DH, "lib/CPAN" or die;
@m = ("CPAN", map { "CPAN::$_" } grep { s/\.pm$// } readdir DH);
}
use Test::More;
plan(tests => scalar @m);
for my $m (@m) {
local $^W = 0;
eval "require $m";
ok($m->VERSION >= 1.76, sprintf "Found version > 1.76 for %20s: %s", $m,
$m->VERSION);
}
# Local Variables:
# mode: cperl
# cperl-indent-level: 2
# End:
- - - - - -
CPAN.pm: Going to build A/AN/ANDK/CPAN-1.92.tar.gz
Importing PAUSE public key into your GnuPG keychain... done!
(You may wish to trust it locally with 'gpg --lsign-key 450F89EC')
Checking if your kit is complete...
Looks good
Writing Makefile for CPAN
cp lib/CPAN.pm blib/lib/CPAN.pm
cp lib/CPAN/Admin.pm blib/lib/CPAN/Admin.pm
cp lib/CPAN/Tarzip.pm blib/lib/CPAN/Tarzip.pm
cp lib/CPAN/Debug.pm blib/lib/CPAN/Debug.pm
cp lib/CPAN/HandleConfig.pm blib/lib/CPAN/HandleConfig.pm
cp lib/CPAN/Queue.pm blib/lib/CPAN/Queue.pm
cp lib/CPAN/Kwalify/distroprefs.yml blib/lib/CPAN/Kwalify/distroprefs.yml
cp lib/CPAN/Version.pm blib/lib/CPAN/Version.pm
cp lib/CPAN/Kwalify.pm blib/lib/CPAN/Kwalify.pm
cp lib/CPAN/DeferedCode.pm blib/lib/CPAN/DeferedCode.pm
cp lib/CPAN/Kwalify/distroprefs.dd blib/lib/CPAN/Kwalify/distroprefs.dd
cp lib/CPAN/Nox.pm blib/lib/CPAN/Nox.pm
cp lib/CPAN/API/HOWTO.pm blib/lib/CPAN/API/HOWTO.pm
cp lib/CPAN/FirstTime.pm blib/lib/CPAN/FirstTime.pm
cp scripts/cpan blib/script/cpan
/usr/bin/perl5.8.8 "-MExtUtils::MY" -e "MY->fixin(shift)" blib/script/cpan
Manifying blib/man1/cpan.1
Manifying blib/man3/CPAN.3
Manifying blib/man3/CPAN::Tarzip.3
Manifying blib/man3/CPAN::Admin.3
Manifying blib/man3/CPAN::Debug.3
Manifying blib/man3/CPAN::HandleConfig.3
Manifying blib/man3/CPAN::Queue.3
Manifying blib/man3/CPAN::Version.3
Manifying blib/man3/CPAN::Kwalify.3
Manifying blib/man3/CPAN::API::HOWTO.3
Manifying blib/man3/CPAN::Nox.3
Manifying blib/man3/CPAN::FirstTime.3
/usr/bin/make -- OK
Running make test
PERL_DL_NONLAZY=1 /usr/bin/perl5.8.8 "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')"
t/*.t
t/00signature.......ok
1/1 skipped: various reasons
t/01loadme..........ok
t/02nox.............ok
t/03pkgs............ok 1/11
It gets stuck at this point until I break out of it.
--
Bobby
.
- Follow-Ups:
- Re: Bundle::CPAN install error
- From: Tom Phoenix
- Re: Bundle::CPAN install error
- References:
- Bundle::CPAN install error
- From: Bobby
- Bundle::CPAN install error
- Prev by Date: cpan command line
- Next by Date: Re: Re: How to set environment variable
- Previous by thread: Re: Bundle::CPAN install error
- Next by thread: Re: Bundle::CPAN install error
- Index(es):
Relevant Pages
|