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