Cleanup Makefile.PL, etc.
[gitmo/Mouse.git] / Makefile.PL
CommitLineData
e8c583d3 1# for developpers:
2BEGIN{
3 if(grep{ $_ eq '--author' } @ARGV){
01f38ab1 4 print "$^X -S cpanm < author/requires.cpanm\n";
e8c583d3 5 system "$^X -S cpanm < author/requires.cpanm";
6 }
7}
8
08f7a8db 9use strict;
10use warnings;
533ed4d6 11use inc::Module::Install 1.00;
c3398f5b 12
884bf37f 13# for co-developpers
8e4a10a8 14use Module::Install::XSUtil 0.30;
d202164d 15use Module::Install::AuthorTests;
884bf37f 16
bd0fe31f 17system($^X, 'tool/generate-mouse-tiny.pl', 'lib/Mouse/Tiny.pm') == 0
3f9d4c2b 18 or warn "Cannot generate Mouse::Tiny: $!";
19
c3398f5b 20name 'Mouse';
21all_from 'lib/Mouse.pm';
22
ec53d678 23# Scalar::Util < 1.14 has a bug.
24# > Fixed looks_like_number(undef) to return false for perl >= 5.009002
25requires 'Scalar::Util' => 1.14;
272a1930 26
eb88905f 27test_requires 'Test::More' => 0.88;
533ed4d6 28test_requires 'Test::Exception' => 0.29;
179ac6cc 29
3310ddf2 30my %suggests = (
af1c2a64 31 'Any::Moose' => 0.10,
8e4a10a8 32
3310ddf2 33 'MouseX::AttributeHelpers' => 0.06,
34);
3310ddf2 35while(my($mod, $least) = each %suggests){
6741954a 36 my $status = system $^X, '-e', <<"CHECK";
37if(eval q{ use $mod (); 1 }) {
38 if(eval q{ use $mod $least (); 1 }) {
c4f4f5e3 39 exit 0; # installd, and new enough
40 }
41 else {
42 exit 1; # installed, but too old
43 }
44}
45CHECK
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 );
3310ddf2 54 }
55}
56
ec7a9423 57# cc_want deals with the '--pp' and '--xs' options
58my $use_xs = ($] >= 5.008_001 && want_xs());
0e81c55d 59
60if($use_xs){
2af88019 61 print "Mouse configured with XS.\n";
bb543d7f 62
fdee07cc 63 use_ppport(3.19);
8e4a10a8 64 use_xshelper();
2af88019 65 cc_warnings();
0e81c55d 66 cc_src_paths('xs-src');
0e81c55d 67}
68else{
7b92a82b 69 print "Mouse configured with Pure Perl.\n";
0e81c55d 70}
71
125dc1a8 72tests 't/*.t t/*/*.t';
1e2f2888 73author_tests 'xt';
74
125dc1a8 75repository 'git://git.moose.perl.org/Mouse.git';
76
af1c2a64 77if ($Module::Install::AUTHOR) {
78 require 'lib/Mouse/Spec.pm'; # for the version
121acb8a 79 my $require_version = Mouse::Spec->MooseVersion;
bf9f3f91 80
64f61124 81 if (eval { require Moose; Moose->VERSION($require_version) }) {
92ff14d0 82 print "You have Moose ", Moose->VERSION, ".\n";
2af88019 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;
314fe304 93 } else {
92ff14d0 94 print "You don't have Moose $require_version. skipping moose compatibility test\n";
314fe304 95 }
4358792d 96
97 if($use_xs){
f47ebad0 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
2af88019 104 postamble qq{test :: test_pp\n\n}
f47ebad0 105 . qq{test_pp :: pure_all\n}
106 . qq{\t} . $t_pp;
4358792d 107 }
314fe304 108}
109
af1c2a64 110clean_files q{
111 lib/Mouse/Tiny.pm $(O_FILES) test-mydeps-*.log
112 *.out
113 cover_db xs-src/*.gc{v,no,da}
114};
1e2f2888 115
eb88905f 116WriteAll check_nmake => 0;