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