X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=a4af8ec8828516535f22be8822beebb133743f93;hb=24a9f75ec5a62d7b937af776da790e85d8ff2809;hp=03f88fe17f71bf74491f9e8efda591c4ac19f953;hpb=23f46d734ec8b8e3224b06d5b2bc33a22311bc2a;p=gitmo%2FMoose.git diff --git a/Makefile.PL b/Makefile.PL index 03f88fe..a4af8ec 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,41 +1,70 @@ use strict; use warnings; -use inc::Module::Install; +use inc::Module::Install 0.97; +use Module::Install::AuthorRequires; +use 5.008001; +check_broken_extratests(); check_conflicts(); name 'Moose'; +perl_version '5.008001'; all_from 'lib/Moose.pm'; license 'perl'; -# prereqs -requires 'perl' => '5.008'; -requires 'Scalar::Util' => '1.19'; requires 'Carp'; -requires 'Class::MOP' => '0.68'; -requires 'List::MoreUtils'; -requires 'Sub::Exporter' => '0.972'; - -# only used by oose.pm, not Moose.pm :P -requires 'Filter::Simple' => '0'; - -# things the tests need -build_requires 'Test::More' => '0.62'; -build_requires 'Test::Exception' => '0.21'; -build_requires 'Test::LongString'; +requires 'Class::MOP' => '1.01'; +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'; + +test_requires 'Test::More' => '0.88'; +test_requires 'Test::Exception' => '0.27'; + +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'; + +if ( is_maintainer() ) { + system( $^X, 'author/extract-inline-tests' ); +} tests_recursive(); +repository 'git://git.moose.perl.org/Moose.git'; + WriteAll(); -# Use the cpan-smolder-stable script in the Moose svn root to figure +# Use the xt/author/test-my-dependents.t test 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.11', - 'MooseX::Params::Validate' => '0.05', - 'Fey::ORM' => '0.10', + 'Devel::REPL' => '1.003008', + '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', + 'Pod::Elemental' => '0.093280', + 'namespace::autoclean' => '0.08', + 'KiokuDB' => '0.41', ); my $found = 0; @@ -70,3 +99,19 @@ EOF sleep 4; } + +sub is_maintainer { + return $Module::Install::AUTHOR || $ENV{IS_MAINTAINER}; +} + +sub check_broken_extratests { + return unless is_maintainer(); + + if ( exists $Module::Install::ExtraTests::{VERSION} && Module::Install::ExtraTests->VERSION < 0.007 ) { + print STDERR <<'EOR'; +You have a broken version of Module::Install::ExtraTests installed. +Please upgrade to version 0.007 or newer and re-run Makefile.PL +EOR + exit 0; + } +}