Skip Menu |

This queue is for tickets about the Class-Std CPAN distribution.

Report information
The Basics
Id: 13825
Status: resolved
Priority: 0/
Queue: Class-Std

People
Owner: Nobody in particular
Requestors: chromatic [...] wgz.org
Cc:
AdminCc:

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



Subject: Add Dependency to Build.PL and Makefile.PL
This patch adds a dependency on Contextual::Return to both the Build.PL and Makefile.PL scripts, which ought to improve the automated installation process.
diff -ur Build.PL~ Build.PL --- Build.PL~ 2005-05-25 15:26:58.000000000 -0700 +++ Build.PL 2005-07-21 18:00:59.000000000 -0700 @@ -8,11 +8,12 @@ dist_author => 'Damian Conway <DCONWAY@cpan.org>', dist_version_from => 'lib/Class/Std.pm', requires => { - 'Test::More' => 0, - 'version' => 0, - 'Scalar::Util' => 0, - 'List::Util' => 0, - 'Data::Dumper' => 0, + 'Test::More' => 0, + 'version' => 0, + 'Scalar::Util' => 0, + 'List::Util' => 0, + 'Data::Dumper' => 0, + 'Contextual::Return' => 0, }, add_to_cleanup => [ 'Class-Std-*' ], ); diff -ur Makefile.PL~ Makefile.PL --- Makefile.PL~ 2005-05-25 15:27:03.000000000 -0700 +++ Makefile.PL 2005-07-21 18:01:18.000000000 -0700 @@ -9,12 +9,12 @@ ABSTRACT_FROM => 'lib/Class/Std.pm', PL_FILES => {}, PREREQ_PM => { - 'Test::More' => 0, - 'version' => 0, - 'Scalar::Util' => 0, - 'List::Util' => 0, - 'Data::Dumper' => 0, - + 'Test::More' => 0, + 'version' => 0, + 'Scalar::Util' => 0, + 'List::Util' => 0, + 'Data::Dumper' => 0, + 'Contextual::Return' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Class-Std-*' },
Date: Fri, 22 Jul 2005 12:28:30 +1000
From: Damian Conway <damian [...] conway.org>
To: bug-Class-Std [...] rt.cpan.org
Subject: Re: [cpan #13825] Add Dependency to Build.PL and Makefile.PL
RT-Send-Cc:
Show quoted text
> This patch adds a dependency on Contextual::Return to both the > Build.PL and Makefile.PL scripts, which ought to improve the automated > installation process.
Thanks, chromatic, but the correct patch is to remove the spurious test file that was misplaced from the Contextual::Return module. %-) Damian
On Thu Jul 21 22:28:49 2005, damian@conway.org wrote: Show quoted text
> correct patch is to remove the spurious test file > that was misplaced from the Contextual::Return module
Appears to already have been resolved: multivac:class-std.git-repos dmuey$ grep Contextual::Return . -R multivac:class-std.git-repos dmuey$ grep Contextual . -R multivac:class-std.git-repos dmuey$ excellent!