use scgit in metadata
[catagits/Catalyst-Plugin-ConfigLoader.git] / Makefile.PL
CommitLineData
41527e60 1use strict;
2use warnings FATAL => 'all';
3use 5.008;
92e263ac 4
41527e60 5my %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 => {
599ae238 28 'Test::Pod' => '1.00',
29 'Test::Pod::Coverage' => '1.00',
41527e60 30 },
31 },
32 },
33 resources => {
34 repository => {
ba00acc9 35 # rw: catagits@git.shadowcat.co.uk:Catalyst-Plugin-ConfigLoader.git
36 url => 'git://git.shadowcat.co.uk/catagits/Catalyst-Plugin-ConfigLoader.git',
37 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits/Catalyst-Plugin-ConfigLoader.git',
41527e60 38 type => 'git',
39 },
40 x_IRC => 'irc://irc.perl.org/#catalyst',
41 bugtracker => {
42 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Catalyst-Plugin-ConfigLoader',
43 mailto => 'bug-Catalyst-Plugin-ConfigLoader@rt.cpan.org',
44 },
45 license => [ 'http://dev.perl.org/licenses/' ],
46 },
47 no_index => {
48 directory => [ 't', 'xt' ]
49 },
50);
51
52my %MM_ARGS = ();
d7948757 53
41527e60 54## BOILERPLATE ###############################################################
55require ExtUtils::MakeMaker;
56(do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
bdaf01bf 57
41527e60 58# have to do this since old EUMM dev releases miss the eval $VERSION line
59my $eumm_version = eval $ExtUtils::MakeMaker::VERSION;
60my $mymeta = $eumm_version >= 6.57_02;
61my $mymeta_broken = $mymeta && $eumm_version < 6.57_07;
d7948757 62
41527e60 63($MM_ARGS{NAME} = $META{name}) =~ s/-/::/g;
64($MM_ARGS{VERSION_FROM} = "lib/$MM_ARGS{NAME}.pm") =~ s{::}{/}g;
65$META{license} = [ $META{license} ]
66 if $META{license} && !ref $META{license};
67$MM_ARGS{LICENSE} = $META{license}[0]
68 if $META{license} && $eumm_version >= 6.30;
69$MM_ARGS{NO_MYMETA} = 1
70 if $mymeta_broken;
71$MM_ARGS{META_ADD} = { 'meta-spec' => { version => 2 }, %META }
72 unless -f 'META.yml';
73
74for (qw(configure build test runtime)) {
75 my $key = $_ eq 'runtime' ? 'PREREQ_PM' : uc $_.'_REQUIRES';
76 my $r = $MM_ARGS{$key} = {
77 %{$META{prereqs}{$_}{requires} || {}},
78 %{delete $MM_ARGS{$key} || {}},
79 };
80 defined $r->{$_} or delete $r->{$_} for keys %$r;
81}
d7948757 82
41527e60 83$MM_ARGS{MIN_PERL_VERSION} = delete $MM_ARGS{PREREQ_PM}{perl} || 0;
d7948757 84
41527e60 85delete $MM_ARGS{MIN_PERL_VERSION}
86 if $eumm_version < 6.47_01;
87$MM_ARGS{BUILD_REQUIRES} = {%{$MM_ARGS{BUILD_REQUIRES}}, %{delete $MM_ARGS{TEST_REQUIRES}}}
88 if $eumm_version < 6.63_03;
89$MM_ARGS{PREREQ_PM} = {%{$MM_ARGS{PREREQ_PM}}, %{delete $MM_ARGS{BUILD_REQUIRES}}}
90 if $eumm_version < 6.55_01;
91delete $MM_ARGS{CONFIGURE_REQUIRES}
92 if $eumm_version < 6.51_03;
115eb8ef 93
41527e60 94ExtUtils::MakeMaker::WriteMakefile(%MM_ARGS);
95## END BOILERPLATE ###########################################################