test for mutual requires
[gitmo/Moo.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use 5.008001;
4 use ExtUtils::MakeMaker;
5
6 check_conflicts();
7 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
8
9 my %CONFIGURE_DEPS = (
10   'ExtUtils::MakeMaker' => 0,
11   'Dist::CheckConflicts' => '0.02',
12 );
13 my %BUILD_DEPS = ();
14
15 my %TEST_DEPS = (
16   'Test::More' => 0.96,
17   'Test::Fatal' => 0.003,
18 );
19
20 my %RUN_DEPS = (
21   'Class::Method::Modifiers' => 1.10,
22   'strictures' => 1.004003,
23   'Module::Runtime' => 0.012,
24   'Role::Tiny' => 1.002004,
25   'Devel::GlobalDestruction' => 0.11,
26   'Dist::CheckConflicts' => 0.02,
27 );
28
29 my %extra_info = (
30   'meta-spec' => { version => 2 },
31   resources => {
32     repository => {
33       url => 'git://git.shadowcat.co.uk/gitmo/Moo.git',
34       web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo/Moo.git',
35       type => 'git',
36     },
37     x_IRC => 'irc://irc.perl.org/#moose',
38     bugtracker => {
39       web => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Moo',
40       mailto => 'bug-moo@rt.cpan.org',
41     },
42     license => [ 'http://dev.perl.org/licenses/' ],
43   },
44   prereqs => {
45     configure => { requires => { %CONFIGURE_DEPS } },
46     build     => { requires => { %BUILD_DEPS } },
47     test      => { requires => { %TEST_DEPS } },
48     runtime   => { requires => { %RUN_DEPS, perl => '5.8.1' } },
49   },
50 );
51
52 # have to do this since old EUMM dev releases miss the eval $VERSION line
53 my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.57_07 };
54 my $mymeta = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.57_02 };
55
56 my $has_test_requires = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.63_03 };
57
58 my $has_meta_v2 = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.57_10 };
59
60 if (! $has_meta_v2) {
61   %extra_info = ();
62 }
63 if (not $has_test_requires) {
64   %BUILD_DEPS = (%BUILD_DEPS, %TEST_DEPS);
65   %TEST_DEPS = ();
66 }
67 if (not $mymeta_works) {
68   %RUN_DEPS = (%RUN_DEPS, %BUILD_DEPS);
69   %BUILD_DEPS = ();
70 }
71
72 WriteMakefile(
73   NAME => 'Moo',
74   VERSION_FROM => 'lib/Moo.pm',
75   CONFIGURE_REQUIRES => \%CONFIGURE_DEPS,
76   PREREQ_PM => {
77     %RUN_DEPS,
78     ($] >= 5.010 ? () : ('MRO::Compat' => 0)),
79   },
80   keys %BUILD_DEPS ? ( BUILD_REQUIRES => \%BUILD_DEPS ) : (),
81   keys %TEST_DEPS ? ( TEST_REQUIRES => \%TEST_DEPS ) : (),
82   META_ADD => \%extra_info,
83   META_MERGE => {
84     no_index => {
85       directory => [ 'xt' ]
86     },
87     Moo::Conflicts->can('conflicts') ? (
88       x_breaks => { Moo::Conflicts->conflicts }
89     ) : (),
90   },
91   ($mymeta && !$mymeta_works ? (NO_MYMETA => 1) : ()),
92   LICENSE => 'perl',
93   EXE_FILES => [
94     'bin/moo-outdated',
95   ],
96 );
97
98
99 # copied from Moose-2.0801/Makefile.PL
100 sub check_conflicts {
101     if ( eval { require 'lib/Moo/Conflicts.pm'; 1; } ) {
102         if ( eval { Moo::Conflicts->check_conflicts; 1 } ) {
103             return;
104         }
105         else {
106             my $err = $@;
107             $err =~ s/^/    /mg;
108             warn "***\n$err***\n";
109         }
110     }
111     else {
112         print <<'EOF';
113 ***
114     Your toolchain doesn't support configure_requires, so
115     Dist::CheckConflicts hasn't been installed yet. You should check for
116     conflicting modules manually using the 'moo-outdated' script that is
117     installed with this distribution once the installation finishes.
118 ***
119 EOF
120     }
121
122     return if $ENV{AUTOMATED_TESTING} || $ENV{NONINTERACTIVE_TESTING};
123
124     # More or less copied from Module::Build
125     return if $ENV{PERL_MM_USE_DEFAULT};
126     return unless -t STDIN && ( -t STDOUT || !( -f STDOUT || -c STDOUT ) );
127
128     sleep 4;
129 }
130