Skip Menu |

This queue is for tickets about the Games-AlphaBeta CPAN distribution.

Report information
The Basics
Id: 49365
Status: patched
Priority: 0/
Queue: Games-AlphaBeta

People
Owner: STIG [...] cpan.org
Requestors: mhasch-cpanbugs [...] cozap.com
Cc:
AdminCc:

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



Subject: [PATCH] Undeclared build dependency: Module::Build::Kwalitee
As of version 0.4.6, Module::Build::Kwalitee is used to build the distribution, but this is not mentioned in META.yml. Thus building fails where this prerequisite is not already installed. A simple fix would be to just use Module::Build instead (patch included). -Martin
Subject: Games-AlphaBeta-0.4.6-build.patch
diff -ru Games-AlphaBeta-0.4.6.orig/Build.PL Games-AlphaBeta-0.4.6/Build.PL --- Games-AlphaBeta-0.4.6.orig/Build.PL 2005-10-01 21:19:38.000000000 +0200 +++ Games-AlphaBeta-0.4.6/Build.PL 2009-09-02 15:20:59.000000000 +0200 @@ -1,8 +1,8 @@ use 5.006001; use lib 'mbk'; -use Module::Build::Kwalitee; +use Module::Build; -Module::Build::Kwalitee->new( +Module::Build->new( module_name => 'Games::AlphaBeta', license => 'perl', build_requires => {
Actually the Module::Build::Kwalitee module packages a little stub in the 'mbk' directory, but it has been unmaintained for a long while now so I have take this patch.
Accepted patch.