f87bd5a821b2e295b80654fd4d5f1a9dabd9ceec
[gitmo/Class-MOP.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install;
4 use 5.008001;
5
6 check_conflicts();
7
8 name 'Class-MOP';
9 perl_version '5.008001';
10 all_from 'lib/Class/MOP.pm';
11 license 'perl';
12
13
14 my $ccflags = -d '.svn' || -d '.git' || $ENV{MAINTAINER_MODE} ? '-Wall' : '';
15
16 requires 'Carp';
17 requires 'Devel::GlobalDestruction';
18 requires 'MRO::Compat' => '0.05';
19 requires 'Scalar::Util'     => '1.18';
20 requires 'Sub::Name' => '0.04';
21 requires 'Task::Weaken';
22
23 test_requires 'File::Spec';
24 test_requires 'Test::More'      => '0.77';
25 test_requires 'Test::Exception' => '0.21';
26
27 makemaker_args( CCFLAGS => $ccflags );
28
29 WriteAll();
30
31 # Use the cpan-smolder-stable script in the Moose svn root to figure
32 # out what on CPAN will break with the latest Moose, then update this
33 # before a release.
34 sub check_conflicts {
35     my %conflicts = (
36         'Moose' => '0.71',
37     );
38
39     my $found = 0;
40     for my $mod ( sort keys %conflicts ) {
41         eval "require $mod";
42         next if $@;
43
44         my $installed = $mod->VERSION();
45         if ( $installed le $conflicts{$mod} ) {
46
47             print <<"EOF";
48
49 ***
50     This version of Class::MOP conflicts with the version of
51     $mod ($installed) you have installed.
52
53     You will need to upgrade $mod after installing
54     this version of Class::MOP.
55 ***
56
57 EOF
58
59             $found = 1;
60         }
61     }
62
63     return unless $found;
64
65     # More or less copied from Module::Build
66     return if  $ENV{PERL_MM_USE_DEFAULT};
67     return unless -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT));
68
69     sleep 4;
70 }