Skip Menu |

This queue is for tickets about the Module-Install-RTx CPAN distribution.

Report information
The Basics
Id: 63908
Status: resolved
Priority: 0/
Queue: Module-Install-RTx

People
Owner: cpan [...] jibsheet.com
Requestors: trs [...] bestpractical.com
Cc:
AdminCc:

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



Subject: Warns about incorrect RT version when it finds it fine earlier
Date: Tue, 14 Dec 2010 12:34:34 -0500
To: bug-Module-Install-RTx [...] rt.cpan.org
From: Thomas Sibley <trs [...] bestpractical.com>
I get this output from RT-Extension-LDAPImport. Note the warning at the end. *** Module::AutoInstall version 1.03 *** Checking for Perl dependencies... [Core Features] - Test::More ...loaded. (0.96) - Net::LDAP ...loaded. (0.4001) - RT ...loaded. (3.8.8 >= 3.6.3) - Class::Accessor ...loaded. (0.34) [Proper Testing] - Net::LDAP::Server::Test ...loaded. (0.10) *** Module::AutoInstall configuration finished. Checking if your kit is complete... Looks good Warning: prerequisite RT 3.6.3 not found. Module::Install 1.00 Module::Install::RTx 0.25
Subject: Re: [rt.cpan.org #63908] Warns about incorrect RT version when it finds it fine earlier
Date: Tue, 14 Dec 2010 13:49:31 -0500
To: "trs [...] bestpractical.com via RT" <bug-Module-Install-RTx [...] rt.cpan.org>
From: Kevin Falcone <kevin [...] jibsheet.com>
This Show quoted text
> Warning: prerequisite RT 3.6.3 not found.
appears to ExtUtils::MakeMaker warning in MM_Unix's parse_version which is a rat's nest of string eval. On RT4 this will fail even harder because the VERSION is in RT::Generated. We should probably be just writing that require_rt('3.6.3') mentioned in tom's other bug. We do our $VERSION = 3.8.8; which should be parsable by this routine, but something is failing. -kevin On Tue, Dec 14, 2010 at 12:34:37PM -0500, trs@bestpractical.com via RT wrote: Show quoted text
> Tue Dec 14 12:34:36 2010: Request 63908 was acted upon. > Transaction: Ticket created by trs@bestpractical.com > Queue: Module-Install-RTx > Subject: Warns about incorrect RT version when it finds it fine earlier > Broken in: (no value) > Severity: (no value) > Owner: Nobody > Requestors: trs@bestpractical.com > Status: new > Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=63908 > > > > I get this output from RT-Extension-LDAPImport. Note the warning at the > end. > > *** Module::AutoInstall version 1.03 > *** Checking for Perl dependencies... > [Core Features] > - Test::More ...loaded. (0.96) > - Net::LDAP ...loaded. (0.4001) > - RT ...loaded. (3.8.8 >= 3.6.3) > - Class::Accessor ...loaded. (0.34) > [Proper Testing] > - Net::LDAP::Server::Test ...loaded. (0.10) > *** Module::AutoInstall configuration finished. > Checking if your kit is complete... > Looks good > Warning: prerequisite RT 3.6.3 not found. > > > Module::Install 1.00 > Module::Install::RTx 0.25 >
Subject: Re: [rt.cpan.org #63908] Warns about incorrect RT version when it finds it fine earlier
Date: Tue, 14 Dec 2010 14:01:19 -0500
To: bug-Module-Install-RTx [...] rt.cpan.org
From: Thomas Sibley <trs [...] bestpractical.com>
On 14 Dec 2010 13:49, Kevin Falcone via RT wrote: Show quoted text
> appears to ExtUtils::MakeMaker warning in MM_Unix's parse_version > which is a rat's nest of string eval.
Running perl -I/opt/rt3/lib Makefile.PL works. It appears we're not munging @INC enough.
Fixed with 0.27