update Makefile.PL boilerplate
[p5sagit/Import-Into.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3
4 my %META = (
5   name => 'Import-Into',
6   license => 'perl_5',
7   dynamic_config => 0,
8   resources => {
9     # r/w: p5sagit@git.shadowcat.co.uk:Import-Into.git
10     repository => {
11       url => 'git://git.shadowcat.co.uk/p5sagit/Import-Into.git',
12       web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Import-Into.git',
13       type => 'git',
14     },
15     bugtracker => {
16         mailto => 'bug-Import-Into@rt.cpan.org',
17         web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Import-Into',
18     },
19   },
20   prereqs => {
21     configure => {
22       requires => {
23         'ExtUtils::MakeMaker' => 0,
24       },
25     },
26     runtime => {
27       requires => {
28         'strict' => '0',
29         'warnings' => '0',
30         'Module::Runtime' => '0',
31         'perl' => '5.006',
32       },
33     },
34     test => {
35       requires => {
36         'Exporter' => '0',
37         'base' => '0',
38         'Test::More' => '0',
39       },
40     },
41   },
42 );
43
44 my %MM_ARGS = (
45   realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },
46 );
47
48 ## BOILERPLATE ###############################################################
49 require ExtUtils::MakeMaker;
50 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
51
52 # have to do this since old EUMM dev releases miss the eval $VERSION line
53 my $eumm_version  = eval $ExtUtils::MakeMaker::VERSION;
54 my $mymeta        = $eumm_version >= 6.57_02;
55 my $mymeta_broken = $mymeta && $eumm_version < 6.57_07;
56
57 ($MM_ARGS{NAME} = $META{name}) =~ s/-/::/g;
58 ($MM_ARGS{VERSION_FROM} = "lib/$MM_ARGS{NAME}.pm") =~ s{::}{/}g;
59 $META{license} = [ $META{license} ]
60   if $META{license} && !ref $META{license};
61 $MM_ARGS{LICENSE} = $META{license}[0]
62   if $META{license} && $eumm_version >= 6.30;
63 $MM_ARGS{NO_MYMETA} = 1
64   if $mymeta_broken;
65 $MM_ARGS{META_ADD} = { 'meta-spec' => { version => 2 }, %META }
66   unless -f 'META.yml';
67
68 for (qw(configure build test runtime)) {
69   my $key = $_ eq 'runtime' ? 'PREREQ_PM' : uc $_.'_REQUIRES';
70   my $r = $MM_ARGS{$key} = {
71     %{$META{prereqs}{$_}{requires} || {}},
72     %{delete $MM_ARGS{$key} || {}},
73   };
74   defined $r->{$_} or delete $r->{$_} for keys %$r;
75 }
76
77 $MM_ARGS{MIN_PERL_VERSION} = delete $MM_ARGS{PREREQ_PM}{perl} || 0;
78
79 delete $MM_ARGS{MIN_PERL_VERSION}
80   if $eumm_version < 6.47_01;
81 $MM_ARGS{BUILD_REQUIRES} = {%{$MM_ARGS{BUILD_REQUIRES}}, %{delete $MM_ARGS{TEST_REQUIRES}}}
82   if $eumm_version < 6.63_03;
83 $MM_ARGS{PREREQ_PM} = {%{$MM_ARGS{PREREQ_PM}}, %{delete $MM_ARGS{BUILD_REQUIRES}}}
84   if $eumm_version < 6.55_01;
85 delete $MM_ARGS{CONFIGURE_REQUIRES}
86   if $eumm_version < 6.51_03;
87
88 ExtUtils::MakeMaker::WriteMakefile(%MM_ARGS);
89 ## END BOILERPLATE ###########################################################