require a version of Test::More suitable for note()
[p5sagit/Safe-Isa.git] / Makefile.PL
index abfc0e1..465bdc1 100644 (file)
@@ -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 <ether@cpan.org>',
+        'Matt S Trout <mst@shadowcat.co.uk>',
+        'Graham Knop <haarg@haarg.org>',
+        'David Steinbrunner <dsteinbrunner@pobox.com>',
+      ],
   },
 
   META_ADD => {
+    'meta-spec' => { version => 2 },
     prereqs => {
       configure => {
         requires => {
@@ -42,7 +51,7 @@ my %WriteMakefileArgs = (
       },
       test => {
         requires => {
-          'Test::More' => '0',
+          'Test::More' => '0.88',
         },
       },
     },