Re: [PATCH] Re: [Module::Build] Making 0.28 a reality
Status: Beta
Brought to you by:
kwilliams
|
From: Yitzchak Scott-T. <sth...@ef...> - 2006-03-29 07:49:19
|
On Tue, Mar 28, 2006 at 11:34:03PM -0800, Yitzchak Scott-Thoennes wrote:
> That build_requires on Test::More is erroneous, since it is bundled
> in the distribution. It should be removed: (untested)
>
> --- Build.PL.orig 2006-01-20 11:29:18.898665000 -0800
> +++ Build.PL 2006-03-28 23:32:38.812500000 -0800
> @@ -43,9 +43,6 @@
> 'Pod::Readme' => 0.04,
> 'Module::Signature' => 0.21,
> },
> - build_requires => {
> - 'Test::More' => 0,
> - },
> sign => 1,
> create_readme => 1,
And now that I look at it, these definitely should be added:
--- Build.PL.orig 2006-01-20 11:29:18.898665000 -0800
+++ Build.PL 2006-03-28 23:45:28.218750000 -0800
@@ -39,13 +39,12 @@
},
recommends => {
'Archive::Tar' => '1.08',
+ 'ExtUtils::CBuilder' => 0.15,
+ 'ExtUtils::ParseXS' => 1.02,
'ExtUtils::Install' => 0.30,
'Pod::Readme' => 0.04,
'Module::Signature' => 0.21,
},
- build_requires => {
- 'Test::More' => 0,
- },
sign => 1,
create_readme => 1,
|