Skip Menu |

This queue is for tickets about the Catalyst-Component-ACCEPT_CONTEXT CPAN distribution.

Report information
The Basics
Id: 44540
Status: resolved
Priority: 0/
Queue: Catalyst-Component-ACCEPT_CONTEXT

People
Owner: Nobody in particular
Requestors: janus [...] errornet.de
Cc:
AdminCc:

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



Subject: Fix: avoid calling auto_install in Makefile.PL
Hi, the modules Makefile.PL contains auto_install() whereas it shouldn't. We've repeatedly been hit by modules doing this and don't want to break our automated setups again and again. What the Module::Install manual says in that regard: ``The use of auto_install is strongly discouraged in any distribution to be uploaded to the CPAN, as the use of it violates the normal CPAN client to toolchain communication protocol.'' http://search.cpan.org/~adamk/Module-Install-0.80/lib/Module/Install.pod#Module::Install::AutoInstall The attached patch fixes it. Regards, Simon
Subject: Catalyst-Component-ACCEPT_CONTEXT.diff
--- Makefile.PL.orig Tue Mar 24 23:08:17 2009 +++ Makefile.PL Tue Mar 24 23:08:27 2009 @@ -8,6 +8,5 @@ requires 'Catalyst'; requires 'Scalar::Util'; build_requires 'Devel::Cycle'; -auto_install; WriteAll;
The newest release of ACCEPT_CONTEXT has newer module::install with the auto_install issues fixed. Does this resolve the problem for you?