dep on Exporter 5.57 (RT#87131)
[gitmo/Role-Tiny.git] / Makefile.PL
index d64aaa7..0b79b06 100644 (file)
@@ -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,9 +13,10 @@ my %BUILD_DEPS = (
 my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 };
 
 WriteMakefile(
-  NAME => 'Role-Tiny',
+  NAME => 'Role::Tiny',
   VERSION_FROM => 'lib/Role/Tiny.pm',
   PREREQ_PM => {
+    Exporter => '5.57',
     ($] >= 5.010 ? () : ('MRO::Compat' => 0)),
     ($mymeta_works ? () : (%BUILD_DEPS)),
   },
@@ -24,8 +25,13 @@ WriteMakefile(
   META_ADD => {
     resources => {
       # r/w: gitmo@git.shadowcat.co.uk:Role-Tiny.git
-      repository => 'git://git.shadowcat.co.uk/Role-Tiny.git',
+      repository => 'git://git.shadowcat.co.uk/gitmo/Role-Tiny.git',
     },
   },
 
+  META_MERGE => {
+    no_index => {
+      directory => [ 'xt' ]
+    }
+  },
 );