Commit | Line | Data |
---|---|---|
db90f764 | 1 | use strict; |
2 | use warnings; | |
47b19570 | 3 | use inc::Module::Install; |
4a8035cf | 4 | use 5.008001; |
db90f764 | 5 | |
0161e7d4 | 6 | check_conflicts(); |
7 | ||
db90f764 | 8 | name 'Moose'; |
4a8035cf | 9 | perl_version '5.008001'; |
db90f764 | 10 | all_from 'lib/Moose.pm'; |
11 | license 'perl'; | |
12 | ||
23f46d73 | 13 | requires 'Scalar::Util' => '1.19'; |
db90f764 | 14 | requires 'Carp'; |
7e9900b6 | 15 | requires 'Class::MOP' => '0.77_01'; |
e8d6f353 | 16 | requires 'List::MoreUtils' => '0.12'; |
c373cc5c | 17 | requires 'Sub::Exporter' => '0.972'; |
477f1f61 | 18 | requires 'Task::Weaken' => '0'; |
25374f01 | 19 | |
3d28060b | 20 | test_requires 'Test::More' => '0.77'; |
21 | test_requires 'Test::Exception' => '0.21'; | |
db90f764 | 22 | |
de341d84 | 23 | if ( -d '.svn' || -d '.git' || $ENV{IS_MAINTAINER} ) { |
c3ad9761 | 24 | system( $^X, 'author/extract-inline-tests' ); |
de341d84 | 25 | } |
26 | ||
6fb58c0d | 27 | tests_recursive(); |
29772efc | 28 | |
db90f764 | 29 | WriteAll(); |
30 | ||
0161e7d4 | 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 = ( | |
74a90eea | 36 | 'MooseX::Singleton' => '0.12', |
0161e7d4 | 37 | 'MooseX::Params::Validate' => '0.05', |
74a90eea | 38 | 'Fey::ORM' => '0.12', |
cca3dd5c | 39 | 'MooseX::AttributeHelpers' => '0.14', |
0161e7d4 | 40 | ); |
41 | ||
42 | my $found = 0; | |
43 | for my $mod ( sort keys %conflicts ) { | |
44 | eval "require $mod"; | |
45 | next if $@; | |
46 | ||
47 | my $installed = $mod->VERSION(); | |
48 | if ( $installed le $conflicts{$mod} ) { | |
49 | ||
50 | print <<"EOF"; | |
51 | ||
52 | *** | |
53 | This version of Moose conflicts with the version of | |
54 | $mod ($installed) you have installed. | |
55 | ||
56 | You will need to upgrade $mod after installing | |
57 | this version of Moose. | |
58 | *** | |
59 | ||
60 | EOF | |
61 | ||
62 | $found = 1; | |
63 | } | |
64 | } | |
65 | ||
7aaa2004 | 66 | return unless $found; |
67 | ||
0161e7d4 | 68 | # More or less copied from Module::Build |
69 | return if $ENV{PERL_MM_USE_DEFAULT}; | |
70 | return unless -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)); | |
71 | ||
7aaa2004 | 72 | sleep 4; |
0161e7d4 | 73 | } |