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