Skip Menu |

This queue is for tickets about the Test-NoWarnings CPAN distribution.

Report information
The Basics
Id: 69894
Status: resolved
Priority: 0/
Queue: Test-NoWarnings

People
Owner: Nobody in particular
Requestors: leonerd-cpan [...] leonerd.org.uk
Cc:
AdminCc:

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



Subject: Only need to BUILD_REQUIRES Test::Tester
Test::NoWarnings declares that it depends on Test::Tester, but it only actually uses this in its test scripts. Its actual code doesn't depend on it. Attached is a patch to move this declaration into BUILD_REQUIRES. This will ensure that downstream packages (such as debian's libtest- nowarnings-perl) doesn't have to runtime-depend on libtest-tester-perl, only builddepend on it. Thanks, -- Paul Evans
Subject: depend-test-tester.patch
--- Makefile.PL.orig 2011-07-29 17:56:37.000000000 +0100 +++ Makefile.PL 2011-07-29 17:56:45.000000000 +0100 @@ -12,9 +12,9 @@ BUILD_REQUIRES => { 'Test::More' => '0.47', 'Test::Builder' => '0.86', + 'Test::Tester' => '0.107', }, PREREQ_PM => { - 'Test::Tester' => '0.107', }, META_MERGE => { resources => {
This was actually the wrong way around, swapped it and Test::Builder