Skip Menu |

This queue is for tickets about the CPANPLUS CPAN distribution.

Report information
The Basics
Id: 52463
Status: resolved
Worked: 20 min
Priority: 0/
Queue: CPANPLUS

People
Owner: BINGOS [...] cpan.org
Requestors: m.nooning [...] comcast.net
Cc:
AdminCc:

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



Subject: CPANPLUS::Internals::Constants is missing
Date: Sat, 05 Dec 2009 16:56:15 -0500
To: bug-CPANPLUS [...] rt.cpan.org
From: Malcolm Nooning <m.nooning [...] comcast.net>
Hello, I am using Perl v5.8.8 built for MSWin32-x86-multi-thread, Windows XP. I am trying to install CPANPLUS-Dist-Build-0.44 but I cannot. I see that one of the t/02... tests tries to use "use CPANPLUS::Internals::Constants;" I am only GUESSING that this is a contributing problem. The module CPANPLUS::Internals::Constants is supposed to be installed as a part of CPANPLUS, but as you can see from the two pastes below, I have CPANPLUS installed, but not CPANPLUS::Internals::Constants. Note that the Windows syntax for checking the version is slightly different than the Unix syntax. perl -MCPANPLUS -e "print \"$CPANPLUS::VERSION\n\" 0.89_11 perl -MCPANPLUS::Internals::Constants -e "print \"$CPANPLUS::Internals::Constants::VERSION\n\" <Nothing shows up, indicating the module is not there> Thanks
On Sat Dec 05 16:56:18 2009, m.nooning@comcast.net wrote: Show quoted text
> Hello, > > I am using Perl v5.8.8 built for MSWin32-x86-multi-thread, Windows XP. > > I am trying to install CPANPLUS-Dist-Build-0.44 but I cannot. I see > that one of the t/02... tests tries to use > "use CPANPLUS::Internals::Constants;" > > I am only GUESSING that this is a contributing problem. > > The module CPANPLUS::Internals::Constants is supposed to be installed as > a part of CPANPLUS, but as you can see from the two pastes below, I have > CPANPLUS installed, but not CPANPLUS::Internals::Constants. Note that > the Windows syntax for checking the version is slightly different than > the Unix syntax. > > perl -MCPANPLUS -e "print \"$CPANPLUS::VERSION\n\" > 0.89_11 > > perl -MCPANPLUS::Internals::Constants -e "print > \"$CPANPLUS::Internals::Constants::VERSION\n\" > > <Nothing shows up, indicating the module is not there>
CPANPLUS::Internals::Constants does not have a $VERSION so this is not the best way of determining if it is installed or not. perldoc -m CPANPLUS::Internals::Constants might be a better way.
Subject: Re: [rt.cpan.org #52463] CPANPLUS::Internals::Constants is missing
Date: Mon, 07 Dec 2009 14:39:16 -0500
To: bug-CPANPLUS [...] rt.cpan.org
From: Malcolm Nooning <m.nooning [...] comcast.net>
Thanks.  After rebooting my machine and trying again, my install succeeded.

This ticket may be closed out. 

Thanks again
 

BINGOS via RT wrote: Show quoted text
<URL: https://rt.cpan.org/Ticket/Display.html?id=52463 >

On Sat Dec 05 16:56:18 2009, m.nooning@comcast.net wrote:
  
Hello,

I am using Perl v5.8.8 built for MSWin32-x86-multi-thread, Windows XP.

I am trying to install CPANPLUS-Dist-Build-0.44 but I cannot.  I see 
that one of the t/02... tests tries to use
    "use CPANPLUS::Internals::Constants;"

I am only GUESSING that this is a contributing problem.

The module CPANPLUS::Internals::Constants is supposed to be installed as 
a part of CPANPLUS, but as you can see from the two pastes below, I have 
CPANPLUS installed, but not CPANPLUS::Internals::Constants.  Note that 
the Windows syntax for checking the version is slightly different than 
the Unix syntax.

perl -MCPANPLUS -e "print \"$CPANPLUS::VERSION\n\"
0.89_11

perl -MCPANPLUS::Internals::Constants -e "print 
\"$CPANPLUS::Internals::Constants::VERSION\n\"

<Nothing shows up, indicating the module is not there>
    
CPANPLUS::Internals::Constants does not have a $VERSION so this is not
the best way of determining if it is installed or not.

perldoc -m CPANPLUS::Internals::Constants

might be a better way.





  
Okay, thanks.