Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Git-CPAN-Patch CPAN distribution.

Report information
The Basics
Id: 43293
Status: resolved
Priority: 0/
Queue: Git-CPAN-Patch

People
Owner: yanick+cpan [...] babyl.dyndns.org
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.1.3
Fixed in: (no value)



Subject: Dependency CPANPLUS missing
It seems that a dependency is not declared in Git-CPAN-Patch: $ git cpan-init Kwalify Initialized empty Git repository in /tmp/.git/ Can't locate CPANPLUS.pm in @INC (@INC contains: /usr/local/lib/perl5/5.8.8/BSDPAN /usr/local/lib/perl5/site_perl/5.8.8/mach /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at /usr/local/bin/git-cpan-import line 13. BEGIN failed--compilation aborted at /usr/local/bin/git-cpan-import line 13. cpan-import Kwalify: command returned error: 2 Regards, Slaven
On Sat Feb 14 17:22:33 2009, SREZIC wrote: Show quoted text
> It seems that a dependency is not declared in Git-CPAN-Patch: > > $ git cpan-init Kwalify > Initialized empty Git repository in /tmp/.git/ > Can't locate CPANPLUS.pm in @INC (@INC contains: > /usr/local/lib/perl5/5.8.8/BSDPAN > /usr/local/lib/perl5/site_perl/5.8.8/mach > /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl > /usr/local/lib/perl5/5.8.8/mach /usr/local/lib/perl5/5.8.8 .) at > /usr/local/bin/git-cpan-import line 13. > BEGIN failed--compilation aborted at /usr/local/bin/git-cpan-import
line 13. Show quoted text
> cpan-import Kwalify: command returned error: 2 >
The (untested) patch is attached. Regards, Slaven
From 6a52bc4050ad81ff3c9884fbbe69c9278b29cdcb Mon Sep 17 00:00:00 2001 From: Slaven Rezic <slaven@rezic.de> Date: Sun, 15 Feb 2009 00:10:15 +0100 Subject: [PATCH] added missing CPANPLUS dependency --- Build.PL | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) mode change 100644 => 100755 Build.PL diff --git a/Build.PL b/Build.PL old mode 100644 new mode 100755 index 37ce5ae..d04356b --- a/Build.PL +++ b/Build.PL @@ -9,6 +9,7 @@ my $builder = Module::Build->new( dist_author => 'Yanick Champoux <yanick@cpan.org>', requires => { 'autodie' => 0, + 'CPANPLUS' => 0, 'Parse::BACKPAN::Packages' => 0, 'Pod::Usage' => 0, }, -- 1.6.1
fixed in v0.1.4