[Bioperl-guts-l] [Bug 2194] ModuleBuildBioperl.pm complains about Bundle::BioPerl::XMLSimple
bugzilla-daemon at portal.open-bio.org
bugzilla-daemon at portal.open-bio.org
Sat Jan 27 19:39:48 EST 2007
http://bugzilla.open-bio.org/show_bug.cgi?id=2194
------- Comment #3 from er at xs4all.nl 2007-01-27 19:39 -------
Yes, after the Bundle is installed it will skip the question, so the problem
does not arise. I did just install it manually:
> perl Makefile.PL && make && make test && make install
Checking if your kit is complete...
Looks good
Writing Makefile for Bundle::BioPerl::XMLSimple
cp lib/Bundle/BioPerl/XMLSimple.pm blib/lib/Bundle/BioPerl/XMLSimple.pm
Manifying blib/man3/Bundle::BioPerl::XMLSimple.3
PERL_DL_NONLAZY=1 /home/me/bin/perl/bin/perl "-MExtUtils::Command::MM" "-e"
"test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/Bundle-BioPerl-XMLSimple....ok
All tests successful.
Files=1, Tests=1, 2 wallclock secs ( 1.29 cusr + 0.09 csys = 1.38 CPU)
Manifying blib/man3/Bundle::BioPerl::XMLSimple.3
Writing
/home/me/bin/perl/lib/site_perl/5.8.8/i686-linux/auto/Bundle/BioPerl/XMLSimple/.packlist
Appending installation info to
/home/me/bin/perl/lib/5.8.8/i686-linux/perllocal.pod
> perl -MBundle::BioPerl::XMLSimple -e 'print $Bundle::BioPerl::XMLSimple::VERSION,"\n";'
1.00
It might be better to replace (around line 375):
if (CPAN::Shell->expand("Module", $desired)->uptodate) {
...
with
my $expanded = CPAN::Shell->expand("Module", $desired);
if ($expanded) {
...
to prevent ungraceful exits
--
Configure bugmail: http://bugzilla.open-bio.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the Bioperl-guts-l
mailing list