Split role application to a module like Moose
[gitmo/Mouse.git] / Makefile.PL
1 # for developpers:
2 BEGIN{
3     if(grep{ $_ eq '--author' } @ARGV){
4         print "$^X -S cpanm < author/requires.cpanm\n";
5         system "$^X -S cpanm < author/requires.cpanm";
6     }
7 }
8
9 use strict;
10 use warnings;
11 use inc::Module::Install 1.00;
12
13 # for co-developpers
14 use Module::Install::XSUtil 0.30;
15 use Module::Install::AuthorTests;
16
17 name     'Mouse';
18 all_from 'lib/Mouse.pm';
19
20 # Scalar::Util < 1.14 has a bug.
21 # > Fixed looks_like_number(undef) to return false for perl >= 5.009002
22 requires 'Scalar::Util' => 1.14;
23
24 test_requires 'Test::More'      => 0.88;
25 test_requires 'Test::Exception' => 0.29;
26
27 my %suggests = (
28     'Any::Moose'                     => 0.10,
29
30     'MouseX::AttributeHelpers'       => 0.06,
31 );
32 while(my($mod, $least) = each %suggests){
33     my $status = system $^X, '-e', <<"CHECK";
34 if(eval q{ use $mod (); 1 }) {
35     if(eval q{ use $mod $least (); 1 }) {
36         exit 0; # installd, and new enough
37     }
38     else {
39         exit 1; # installed, but too old
40     }
41 }
42 CHECK
43
44     if($status != 0){
45         my $ver = `$^X -e "use $mod (); print $mod->VERSION"`;
46         warn("\n",
47             "WARNING: $mod is installed, but its version ($ver) is too old (< $least).\n",
48             "         Please update $mod after installation of Mouse.\n",
49             "\n"
50         );
51     }
52 }
53
54 # cc_want deals with the '--pp' and '--xs' options
55 my $use_xs = ($] >= 5.008_001 && want_xs());
56
57 if($use_xs){
58     print "Mouse configured with XS.\n";
59
60     use_ppport(3.19);
61     use_xshelper();
62     cc_warnings();
63     cc_src_paths('xs-src');
64 }
65 else{
66     print "Mouse configured with Pure Perl.\n";
67 }
68
69 tests 't/*.t t/*/*.t';
70 author_tests 'xt';
71
72 repository 'git://git.moose.perl.org/Mouse.git';
73
74 system($^X, 'tool/generate-mouse-tiny.pl', 'lib/Mouse/Tiny.pm') == 0
75     or warn "Cannot generate Mouse::Tiny: $!";
76 makemaker_args PL_FILES => {
77     'tool/generate-mouse-tiny.pl' => 'lib/Mouse/Tiny.pm',
78 };
79
80 if ($Module::Install::AUTHOR) {
81     require 'lib/Mouse/Spec.pm'; # for the version
82     my $require_version = Mouse::Spec->MooseVersion;
83
84     if (eval { require Moose; Moose->VERSION($require_version) }) {
85         print "You have Moose ", Moose->VERSION, ".\n";
86         do 'tool/create-moose-compatibility-tests.pl';
87         # repeat testing
88         # see also ExtUtils::MM_Any::test_via_harness()
89         my $t_moose =  q{$(FULLPERLRUN) -MExtUtils::Command::MM -e}
90                       .q{ "test_harness($(TEST_VERBOSE), '$(INST_LIB)', '$(INST_ARCHLIB)')"}
91                       .q{ xt/compat/t/*/*.t } . "\n";
92
93         postamble qq{test :: test_moose\n\n}
94                 . qq{test_moose :: pure_all\n}
95                 . qq{\t} . $t_moose;
96     } else {
97         print "You don't have Moose $require_version. skipping moose compatibility test\n";
98     }
99
100     if($use_xs){
101         # repeat testing
102         # see also ExtUtils::MM_Any::test_via_harness()
103         my $t_pp =  q{$(FULLPERLRUN) -MExtUtils::Command::MM -e}
104                    .q{ "do 'tool/force-pp.pl'; test_harness($(TEST_VERBOSE), '$(INST_LIB)', '$(INST_ARCHLIB)')"}
105                    .q{ $(TEST_FILES)} . "\n";
106
107         postamble qq{test :: test_pp\n\n}
108                 . qq{test_pp :: pure_all\n}
109                 . qq{\t} . $t_pp;
110     }
111 }
112
113 clean_files q{
114     lib/Mouse/Tiny.pm $(O_FILES) test-mydeps-*.log
115     *.out
116     cover_db xs-src/*.gc{v,no,da}
117 };
118
119 WriteAll check_nmake => 0;