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