8df4b8bf79e0a16ef797b03cb8b8853c8306d4d0
[gitmo/Moose.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install 0.97;
4 use Module::Install::AuthorRequires;
5 use 5.008001;
6
7 check_broken_extratests();
8 check_conflicts();
9
10 name 'Moose';
11 perl_version '5.008001';
12 all_from 'lib/Moose.pm';
13 license 'perl';
14
15 requires 'Carp';
16 requires 'Class::MOP'       => '1.01';
17 requires 'Data::OptList'    => '0';
18 requires 'List::MoreUtils'  => '0.12';
19 requires 'Scalar::Util'     => '1.19';
20 requires 'Sub::Exporter'    => '0.980';
21 requires 'Sub::Name'        => '0';
22 requires 'Task::Weaken'     => '0';
23 requires 'Try::Tiny'        => '0.02';
24
25 test_requires 'Test::More'      => '0.88';
26 test_requires 'Test::Exception' => '0.27';
27
28 author_requires 'Test::Inline';
29 author_requires 'File::Find::Rule';
30 author_requires 'Module::Info';
31 author_requires 'Test::Spelling';
32 author_requires 'Test::Pod::Coverage';
33 author_requires 'Test::NoTabs';
34
35 if ( is_maintainer() ) {
36     system( $^X, 'author/extract-inline-tests' );
37 }
38
39 tests_recursive();
40
41 WriteAll();
42
43 # Use the cpan-smolder-stable script in the Moose svn root to figure
44 # out what on CPAN will break with the latest Moose, then update this
45 # before a release.
46 sub check_conflicts {
47     my %conflicts = (
48         'Devel::REPL'                   => '1.003008',
49         'Fey::ORM'                      => '0.23',
50         'Catalyst'                      => '5.80017',
51         'MooseX::Aliases'               => '0.07',
52         'MooseX::AttributeHelpers'      => '0.22',
53         'MooseX::Attribute::Prototype'  => '0.10',
54         'MooseX::ClassAttribute'        => '0.09',
55         'MooseX::MethodAttributes'      => '0.18',
56         'MooseX::NonMoose'              => '0.05',
57         'MooseX::Params::Validate'      => '0.05',
58         'MooseX::Role::Cmd'             => '0.06',
59         'MooseX::Role::WithOverloading' => '0.04',
60         'MooseX::Singleton'             => '0.19',
61         'MooseX::StrictConstructor'     => '0.07',
62         'MooseX::Types'                 => '0.19',
63         'namespace::autoclean'          => '0.08',
64         'KiokuDB'                       => '0.41',
65     );
66
67     my $found = 0;
68     for my $mod ( sort keys %conflicts ) {
69         eval "require $mod";
70         next if $@;
71
72         my $installed = $mod->VERSION();
73         if ( $installed le $conflicts{$mod} ) {
74
75             print <<"EOF";
76
77 ***
78     This version of Moose conflicts with the version of
79     $mod ($installed) you have installed.
80
81     You will need to upgrade $mod after installing
82     this version of Moose.
83 ***
84
85 EOF
86
87             $found = 1;
88         }
89     }
90
91     return unless $found;
92
93     # More or less copied from Module::Build
94     return if  $ENV{PERL_MM_USE_DEFAULT};
95     return unless -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT));
96
97     sleep 4;
98 }
99
100 sub is_maintainer {
101     return $Module::Install::AUTHOR || $ENV{IS_MAINTAINER};
102 }
103
104 sub check_broken_extratests {
105     return unless is_maintainer();
106
107     if ( exists $Module::Install::ExtraTests::{VERSION} && Module::Install::ExtraTests->VERSION < 0.007 ) {
108         print STDERR <<'EOR';
109 You have a broken version of Module::Install::ExtraTests installed.
110 Please upgrade to version 0.007 or newer and re-run Makefile.PL
111 EOR
112         exit 0;
113     }
114 }