From: Leon Timmermans Date: Mon, 21 Jan 2013 23:53:49 +0000 (+0100) Subject: Fix prereqs X-Git-Tag: v0.001008~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FSub-Exporter-Progressive.git;a=commitdiff_plain;h=cfb0d65791ae833e0ff63c4cbee7b34ed991432e Fix prereqs --- diff --git a/Changes b/Changes index 5b38082..b27468a 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ + - Fix prereqs + 0.001007 - 2013-01-21 - Rewrite -tag to :tag for Exporter.pm diff --git a/Makefile.PL b/Makefile.PL index 9ed9552..5002aa7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -4,12 +4,16 @@ use 5.008001; use ExtUtils::MakeMaker; (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; +my %deps = ( + PREREQ_PM => { + Exporter => '5.58', + }, +); my $key = eval { ExtUtils::MakeMaker->VERSION(6.56) } ? 'BUILD_REQUIRES' : 'PREREQ_PM' ; +$deps{$key}{'Test::More'} = '0.96'; WriteMakefile( NAME => 'Sub-Exporter-Progressive', VERSION_FROM => 'lib/Sub/Exporter/Progressive.pm', - $key => { - 'Test::More' => 0.89, - } + %deps, );