add travis config
[p5sagit/Class-C3-Componentised.git] / Makefile.PL
CommitLineData
6ea99b11 1use strict;
2use warnings FATAL => 'all';
41fbb4f0 3use 5.006002;
20169807 4
6ea99b11 5my %META = (
6 name => 'Class-C3-Componentised',
7 license => 'perl_5',
8 prereqs => {
9 configure => { requires => {
10 'ExtUtils::MakeMaker' => 0,
11 } },
12 build => { requires => {
13 } },
14 test => {
15 requires => {
16 'Test::Exception' => '0.31',
17 'Test::More' => '0.96',
18 },
19 },
20 runtime => {
21 requires => {
22 'perl' => '5.006002',
23 'MRO::Compat' => '0.09',
2c7eda43 24 'Class::Inspector' => '1.32',
6ea99b11 25 # we don't actually need Class::C3. MRO::Compat loads it on 5.8. On 5.10
26 # it isn't needed. However, some existing code relies on us loading
27 # Class::C3. We don't want to break it just yet. Therefore we depend
28 # directly on Class::C3 as well.
29 'Class::C3' => '0.20',
30 },
31 },
91be9dcd 32 develop => {
33 requires => {
34 'Test::Pod' => '1.14',
35 'Test::Pod::Coverage' => '1.04',
36 },
37 },
6ea99b11 38 },
39 resources => {
40 repository => {
41 url => 'git://git.shadowcat.co.uk/p5sagit/Class-C3-Componentised.git',
42 web => 'https://github.com/p5sagit/Class-C3-Componentised',
43 type => 'git',
44 },
45 bugtracker => {
46 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Class-C3-Componentised',
47 mailto => 'bug-Class-C3-Componentised@rt.cpan.org',
48 },
49 license => [ 'http://dev.perl.org/licenses/' ],
50 },
51 no_index => {
52 directory => [ 't', 'xt' ]
53 },
b160b7eb 54 x_authority => "cpan:FREW",
55 dynamic_config => 0,
56 x_static_install => 1,
6ea99b11 57);
c5afd77d 58
6ea99b11 59my %MM_ARGS = ();
20169807 60
6ea99b11 61## BOILERPLATE ###############################################################
62require ExtUtils::MakeMaker;
63(do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
d2b0e111 64
6ea99b11 65# have to do this since old EUMM dev releases miss the eval $VERSION line
66my $eumm_version = eval $ExtUtils::MakeMaker::VERSION;
67my $mymeta = $eumm_version >= 6.57_02;
68my $mymeta_broken = $mymeta && $eumm_version < 6.57_07;
06e2d102 69
6ea99b11 70($MM_ARGS{NAME} = $META{name}) =~ s/-/::/g;
71($MM_ARGS{VERSION_FROM} = "lib/$MM_ARGS{NAME}.pm") =~ s{::}{/}g;
72$META{license} = [ $META{license} ]
73 if $META{license} && !ref $META{license};
74$MM_ARGS{LICENSE} = $META{license}[0]
75 if $META{license} && $eumm_version >= 6.30;
76$MM_ARGS{NO_MYMETA} = 1
77 if $mymeta_broken;
78$MM_ARGS{META_ADD} = { 'meta-spec' => { version => 2 }, %META }
79 unless -f 'META.yml';
80$MM_ARGS{PL_FILES} ||= {};
81$MM_ARGS{NORECURS} = 1
82 if not exists $MM_ARGS{NORECURS};
4f07ebe6 83
6ea99b11 84for (qw(configure build test runtime)) {
85 my $key = $_ eq 'runtime' ? 'PREREQ_PM' : uc $_.'_REQUIRES';
86 my $r = $MM_ARGS{$key} = {
87 %{$META{prereqs}{$_}{requires} || {}},
88 %{delete $MM_ARGS{$key} || {}},
89 };
90 defined $r->{$_} or delete $r->{$_} for keys %$r;
4f07ebe6 91}
92
6ea99b11 93$MM_ARGS{MIN_PERL_VERSION} = delete $MM_ARGS{PREREQ_PM}{perl} || 0;
94
95delete $MM_ARGS{MIN_PERL_VERSION}
96 if $eumm_version < 6.47_01;
97$MM_ARGS{BUILD_REQUIRES} = {%{$MM_ARGS{BUILD_REQUIRES}}, %{delete $MM_ARGS{TEST_REQUIRES}}}
98 if $eumm_version < 6.63_03;
99$MM_ARGS{PREREQ_PM} = {%{$MM_ARGS{PREREQ_PM}}, %{delete $MM_ARGS{BUILD_REQUIRES}}}
100 if $eumm_version < 6.55_01;
101delete $MM_ARGS{CONFIGURE_REQUIRES}
102 if $eumm_version < 6.51_03;
4f07ebe6 103
6ea99b11 104ExtUtils::MakeMaker::WriteMakefile(%MM_ARGS);
105## END BOILERPLATE ###########################################################