Skip Menu |

This queue is for tickets about the YAPE-Regex-Explain CPAN distribution.

Report information
The Basics
Id: 4577
Status: resolved
Priority: 0/
Queue: YAPE-Regex-Explain

People
Owner: Nobody in particular
Requestors: tmurray [...] agronomy.org
Cc:
AdminCc:

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



Subject: Makefile.PL Should Specify YAPE::Regex as a Requirement
YAPE::Regex::Explain uses YAPE::Regex, but does not specify YAPE::Regex as a requirement. This can be fixed by adding the PREREQ_PM field to Makefile.PL.
 I have attached a patch fixing the issue (which I also experienced) as described in the existing ticket.

jonasbn
Subject: Makefile.PL.patch
--- Makefile.PL.org 2010-01-06 09:34:16.000000000 +0100 +++ Makefile.PL 2010-01-06 09:35:35.000000000 +0100 @@ -4,4 +4,7 @@ WriteMakefile( 'NAME' => 'YAPE::Regex::Explain', 'VERSION_FROM' => 'Explain.pm', # finds $VERSION + 'PREREQ_PM' => { + "YAPE::Regex" => 0, + } );
On Wed Jan 06 03:41:17 2010, JONASBN wrote: Show quoted text
> I have attached a patch fixing the issue (which I also experienced)
as Show quoted text
> described in the existing ticket. > > jonasbn
The Makefile.PL patch has been applied in YAPE-Regex-Explain version 4.00. Tests are now passing on CPAN Testers. Thanks, jonasdb.