Ignore coverage reports
[gitmo/Moose.git] / Makefile.PL
CommitLineData
db90f764 1use strict;
2use warnings;
f0374fd6 3use inc::Module::Install 0.98;
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';
0843724e 16requires 'Class::MOP' => '1.02';
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';
f0374fd6 42add_metadata(x_authority => 'cpan:STEVAN');
6ee1960e 43
db90f764 44WriteAll();
45
cc1d5453 46# Use the xt/author/test-my-dependents.t test to figure
0161e7d4 47# out what on CPAN will break with the latest Moose, then update this
48# before a release.
49sub check_conflicts {
50 my %conflicts = (
a666d43a 51 'Devel::REPL' => '1.003008',
3e8684a5 52 'Fey::ORM' => '0.23',
6428e28b 53 'Catalyst' => '5.80017',
3e8684a5 54 'MooseX::Aliases' => '0.07',
55 'MooseX::AttributeHelpers' => '0.22',
92056b59 56 'MooseX::Attribute::Prototype' => '0.10',
3e8684a5 57 'MooseX::ClassAttribute' => '0.09',
58 'MooseX::MethodAttributes' => '0.18',
a19ae3d7 59 'MooseX::NonMoose' => '0.07',
3e8684a5 60 'MooseX::Params::Validate' => '0.05',
61 'MooseX::Role::Cmd' => '0.06',
62 'MooseX::Role::WithOverloading' => '0.04',
63 'MooseX::Singleton' => '0.19',
64 'MooseX::StrictConstructor' => '0.07',
65 'MooseX::Types' => '0.19',
b62eb4ad 66 'Pod::Elemental' => '0.093280',
3e8684a5 67 'namespace::autoclean' => '0.08',
284dc439 68 'KiokuDB' => '0.41',
0161e7d4 69 );
70
71 my $found = 0;
72 for my $mod ( sort keys %conflicts ) {
73 eval "require $mod";
74 next if $@;
75
76 my $installed = $mod->VERSION();
77 if ( $installed le $conflicts{$mod} ) {
78
79 print <<"EOF";
80
81***
82 This version of Moose conflicts with the version of
83 $mod ($installed) you have installed.
84
85 You will need to upgrade $mod after installing
86 this version of Moose.
87***
88
89EOF
90
91 $found = 1;
92 }
93 }
94
7aaa2004 95 return unless $found;
96
0161e7d4 97 # More or less copied from Module::Build
98 return if $ENV{PERL_MM_USE_DEFAULT};
99 return unless -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT));
100
7aaa2004 101 sleep 4;
0161e7d4 102}
4ff140fe 103
104sub is_maintainer {
105 return $Module::Install::AUTHOR || $ENV{IS_MAINTAINER};
106}
107
108sub check_broken_extratests {
109 return unless is_maintainer();
110
111 if ( exists $Module::Install::ExtraTests::{VERSION} && Module::Install::ExtraTests->VERSION < 0.007 ) {
112 print STDERR <<'EOR';
113You have a broken version of Module::Install::ExtraTests installed.
114Please upgrade to version 0.007 or newer and re-run Makefile.PL
115EOR
116 exit 0;
117 }
118}