X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=0b99c4ea8427cb5ff334ae33e679bcd6058666db;hb=689819efbbcd8d3624030b18a817c8f051ed74d0;hp=b43cdca58dd6c21311fa6f5f7bab2de0ecb63dfb;hpb=26fbace8d6e64e26057f3778161dd7029f517b6a;p=gitmo%2FMoose.git diff --git a/Makefile.PL b/Makefile.PL index b43cdca..0b99c4e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,28 +1,72 @@ use strict; use warnings; use inc::Module::Install; +use 5.008001; + +check_conflicts(); name 'Moose'; +perl_version '5.008001'; all_from 'lib/Moose.pm'; license 'perl'; -# Scalar::Util 1.18 doesn't work on Windows -my $win32 = !! ( $^O eq 'Win32' or $^O eq 'cygwin' ); - -# prereqs -requires 'Scalar::Util' => $win32 ? '1.17' : '1.18'; +requires 'Scalar::Util' => '1.19'; requires 'Carp'; -requires 'Class::MOP' => '0.43'; -requires 'Sub::Name' => '0.02'; -requires 'Sub::Exporter' => '0.972'; -requires 'B'; +requires 'Class::MOP' => '0.77_01'; +requires 'List::MoreUtils' => '0.12'; +requires 'Sub::Exporter' => '0.972'; +requires 'Task::Weaken' => '0'; -# things the tests need -build_requires 'Test::More' => '0.62'; -build_requires 'Test::Exception' => '0.21'; -build_requires 'Test::LongString'; +test_requires 'Test::More' => '0.77'; +test_requires 'Test::Exception' => '0.21'; -tests('t/*.t t/*/*.t'); +if ( -d '.svn' || -d '.git' || $ENV{IS_MAINTAINER} ) { + system( $^X, 'author/extract-inline-tests' ); +} + +tests_recursive(); WriteAll(); +# Use the cpan-smolder-stable script in the Moose svn root to figure +# out what on CPAN will break with the latest Moose, then update this +# before a release. +sub check_conflicts { + my %conflicts = ( + 'MooseX::Singleton' => '0.12', + 'MooseX::Params::Validate' => '0.05', + 'Fey::ORM' => '0.12', + ); + + my $found = 0; + for my $mod ( sort keys %conflicts ) { + eval "require $mod"; + next if $@; + + my $installed = $mod->VERSION(); + if ( $installed le $conflicts{$mod} ) { + + print <<"EOF"; + +*** + This version of Moose conflicts with the version of + $mod ($installed) you have installed. + + You will need to upgrade $mod after installing + this version of Moose. +*** + +EOF + + $found = 1; + } + } + + return unless $found; + + # More or less copied from Module::Build + return if $ENV{PERL_MM_USE_DEFAULT}; + return unless -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)); + + sleep 4; +}