X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMoose.git;a=blobdiff_plain;f=Makefile.PL;h=f0756cda07229b5b0638e489e2d9517f086a7b19;hp=231ea050b75bccdf31004a119e9c100981d4ff0b;hb=48ac876af2c1991bd6cdba0d54b775a121e01725;hpb=d7c4dde648d168ae06c9d21a1277e9a292cbc42c diff --git a/Makefile.PL b/Makefile.PL index 231ea05..f0756cd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,130 +1,35 @@ use strict; use warnings; -use inc::Module::Install 0.98; -use Module::Install::AuthorRequires; -use 5.008003; -check_broken_extratests(); -check_conflicts(); - -name 'Moose'; -perl_version '5.008003'; -all_from 'lib/Moose.pm'; -license 'perl'; - -requires 'Carp'; -requires 'Class::MOP' => '1.05'; -requires 'Data::OptList' => '0'; -requires 'List::MoreUtils' => '0.12'; -requires 'Package::DeprecationManager' => '0.04'; -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 'File::Find::Rule'; -author_requires 'Module::Info'; -author_requires 'Test::Inline'; -author_requires 'Test::NoTabs'; -author_requires 'Test::Output'; -author_requires 'Test::Pod::Coverage'; -author_requires 'Test::Spelling'; - -if ( is_maintainer() ) { - system( $^X, 'author/extract-inline-tests' ); -} - -tests_recursive(); - -repository 'git://git.moose.perl.org/Moose.git'; -add_metadata(x_authority => 'cpan:STEVAN'); - -WriteAll(); - -# 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 = ( - 'Catalyst' => '5.80017', - 'Devel::REPL' => '1.003008', - 'Fey::ORM' => '0.23', - 'File::ChangeNotify' => '0.15', - 'KiokuDB' => '0.41', - 'MooseX::Aliases' => '0.07', - 'MooseX::AlwaysCoerce' => '0.05', - 'MooseX::AttributeHelpers' => '0.22', - 'MooseX::AttributeInflate' => '0.02', - 'MooseX::Attribute::Prototype' => '0.10', - 'MooseX::ClassAttribute' => '0.13', - 'MooseX::FollowPBP' => '0.02', - 'MooseX::HasDefaults' => '0.02', - 'MooseX::InstanceTracking' => '0.04', - 'MooseX::LazyRequire' => '0.05', - 'MooseX::MethodAttributes' => '0.22', - 'MooseX::NonMoose' => '0.13,' - 'MooseX::Params::Validate' => '0.05', - 'MooseX::POE' => '0.205', - 'MooseX::Role::Cmd' => '0.06', - 'MooseX::Role::WithOverloading' => '0.07', - 'MooseX::SemiAffordanceAccessor' => '0.05', - 'MooseX::Singleton' => '0.22', - 'MooseX::StrictConstructor' => '0.08', - 'MooseX::Types' => '0.19', - 'MooseX::UndefTolerant' => '0.04', - 'namespace::autoclean' => '0.08', - 'Pod::Elemental' => '0.093280', - ); - - 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 +BEGIN { + eval { require ExtUtils::MakeMaker::Dist::Zilla::Develop }; + if ($@) { + warn + "You need to install ExtUtils::MakeMaker::Dist::Zilla::Develop to run this Makefile.PL\n"; + exit 1; + } - $found = 1; - } + eval { require Test::Inline }; + if ($@) { + warn "You need to install Test::Inline to run this Makefile.PL\n"; + exit 1; } - return unless $found; + ExtUtils::MakeMaker::Dist::Zilla::Develop->import(); +} - # More or less copied from Module::Build - return if $ENV{PERL_MM_USE_DEFAULT}; - return unless -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)); +use lib 'inc'; - sleep 4; -} +use MMHelper; +use MyInline; -sub is_maintainer { - return $Module::Install::AUTHOR || $ENV{IS_MAINTAINER}; -} +system( $^X, 'author/extract-inline-tests', '--quiet' ); -sub check_broken_extratests { - return unless is_maintainer(); +eval MMHelper::my_package_subs(); - 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; - } -} +WriteMakefile( + NAME => 'Moose', + test => { TESTS => 't/*.t t/*/*.t' }, + CCFLAGS => MMHelper::ccflags_static('dev'), + MMHelper::mm_args(), +);