X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=465bdc1cd34bed2a561da4f911a63ca575dfcf8b;hb=master;hp=fed4f45908e7caa91013587583fcbbd826318f29;hpb=b187873476316983af25521f08134731227d786b;p=p5sagit%2FSafe-Isa.git diff --git a/Makefile.PL b/Makefile.PL index fed4f45..465bdc1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,8 +1,7 @@ use strict; use warnings FATAL => 'all'; -use 5.008001; use ExtUtils::MakeMaker; -(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; +(do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; my %WriteMakefileArgs = ( NAME => 'Safe::Isa', @@ -11,12 +10,15 @@ my %WriteMakefileArgs = ( META_MERGE => { 'meta-spec' => { version => 2 }, dynamic_config => 0, - resources => { + # GitHub mirrors from Shadowcat. We list it so we can get pull requests. + # The canonical repo is: + # r/o: git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git # r/w: p5sagit@git.shadowcat.co.uk:Safe-Isa.git + # web: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Safe-Isa.git repository => { - url => 'git://git.shadowcat.co.uk/p5sagit/Safe-Isa.git', - web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Safe-Isa.git', + url => 'https://github.com/p5sagit/Safe-Isa.git', + web => 'https://github.com/p5sagit/Safe-Isa', type => 'git', }, bugtracker => { @@ -24,9 +26,16 @@ my %WriteMakefileArgs = ( web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Safe-Isa', }, }, + x_contributors => [ # manually added, from git shortlog -e -s -n + 'Karen Etheridge ', + 'Matt S Trout ', + 'Graham Knop ', + 'David Steinbrunner ', + ], }, META_ADD => { + 'meta-spec' => { version => 2 }, prereqs => { configure => { requires => { @@ -42,13 +51,11 @@ my %WriteMakefileArgs = ( }, test => { requires => { - 'Test::More' => '0', + 'Test::More' => '0.88', }, }, }, }, - - realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] }, ); my $eumm_version = eval $ExtUtils::MakeMaker::VERSION;