X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=a53692ef592855682de862e1ac919f809c8fc6ef;hb=f9e3823a097d33157a743cd74760647e0f7f83dc;hp=2eae5cf608fea8e6840723b2c1e13f7fd506ca63;hpb=fe61c5f5367de24b91420f49699ec49a358ecb06;p=catagits%2FWeb-Simple.git diff --git a/Makefile.PL b/Makefile.PL index 2eae5cf..a53692e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,6 @@ use strict; use warnings FATAL => 'all'; -use 5.008001; +use 5.006; use ExtUtils::MakeMaker; (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; @@ -13,10 +13,10 @@ my %WriteMakefileArgs = ( 'meta-spec' => { version => 2 }, dynamic_config => 0, resources => { - # r/w: p5sagit@git.shadowcat.co.uk:Web-Simple.git + # r/w: catagits@git.shadowcat.co.uk:Web-Simple.git repository => { - url => 'git://git.shadowcat.co.uk/p5sagit/Web-Simple.git', - web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Web-Simple.git', + url => 'git://git.shadowcat.co.uk/catagits/Web-Simple.git', + web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits/Web-Simple.git', type => 'git', }, bugtracker => { @@ -28,16 +28,34 @@ my %WriteMakefileArgs = ( META_ADD => { prereqs => { + configure => { + requires => { + 'ExtUtils::MakeMaker' => 0, + }, + }, runtime => { requires => { - 'Syntax::Keyword::Gather' => '1.001', - 'Plack' => '0.9968', + 'Encode' => '0', # not core in 5.6 + 'Exporter' => '5.57', # use Exporter 'import' 'Moo' => '0.009014', - 'warnings::illegalproto' => '0.001', - 'Data::Dumper::Concise' => '2.020', + 'Plack' => '0.9968', + 'Scalar::Util' => '0', # not core in 5.6 + 'Syntax::Keyword::Gather' => '1.001', + 'strictures' => '1', + 'warnings::illegalproto' => '0', 'perl' => '5.006', }, }, + test => { + requires => { + 'Data::Dumper::Concise' => '2.020', + 'Test::More' => '0.88', + }, + recommends => { + 'Devel::Cycle' => '0', + 'HTTP::Request::AsCGI' => '0', + }, + }, }, }, realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },