X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=db8d47a0c6f443965a1dcff07cb5b8a57016e74a;hb=2ae1457eead0263b687bd59cd3630b893618e551;hp=2353770109948ffebb09f44bc6b21c921db900ed;hpb=1b2aea393ea1e336731ca6831f57e17615f769d9;p=gitmo%2FMoose.git diff --git a/Makefile.PL b/Makefile.PL index 2353770..db8d47a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,31 +1,97 @@ use strict; use warnings; -use inc::Module::Install; +use inc::Module::Install 0.91; +use Module::Install::ExtraTests; +use Module::Install::AuthorRequires; +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 'Carp'; -requires 'Class::MOP' => '0.56'; -requires 'Sub::Exporter' => '0.972'; +requires 'Class::MOP' => '0.98'; +requires 'Data::OptList' => '0'; +requires 'List::MoreUtils' => '0.12'; +requires 'Scalar::Util' => '1.19'; +requires 'Sub::Exporter' => '0.980'; +requires 'Sub::Name' => '0'; +requires 'Task::Weaken' => '0'; +requires 'Try::Tiny' => '0.02'; -# only used by oose.pm, not Moose.pm :P -requires 'Filter::Simple' => '0'; +test_requires 'Test::More' => '0.88'; +test_requires 'Test::Exception' => '0.27'; -# things the tests need -build_requires 'Test::More' => '0.62'; -build_requires 'Test::Exception' => '0.21'; -build_requires 'Test::LongString'; +author_requires 'Test::Inline'; +author_requires 'File::Find::Rule'; +author_requires 'Module::Info'; +author_requires 'Test::Spelling'; +author_requires 'Test::Pod::Coverage'; +author_requires 'Test::NoTabs'; -tests_recursive; +if ( $Module::Install::AUTHOR || $ENV{IS_MAINTAINER} ) { + system( $^X, 'author/extract-inline-tests' ); +} -auto_install; +extra_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 = ( + 'Fey::ORM' => '0.23', + 'Catalyst' => '5.80017', + 'MooseX::Aliases' => '0.07', + 'MooseX::AttributeHelpers' => '0.22', + 'MooseX::Attribute::Prototype' => '0.10', + 'MooseX::ClassAttribute' => '0.09', + 'MooseX::MethodAttributes' => '0.18', + 'MooseX::NonMoose' => '0.05', + 'MooseX::Params::Validate' => '0.05', + 'MooseX::Role::Cmd' => '0.06', + 'MooseX::Role::WithOverloading' => '0.04', + 'MooseX::Singleton' => '0.19', + 'MooseX::StrictConstructor' => '0.07', + 'MooseX::Types' => '0.19', + 'namespace::autoclean' => '0.08', + ); + + 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; +}