X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=d3da7e33f35a0595bc72d5d25641fc4a4eb2c5d1;hb=3968746e3249ebba86ee9caa5bc1cf423fba24bd;hp=324a4559ec25833c7a7390734e4dc2c1eed79f3e;hpb=4ff140fe745c185ceea9cfcb9c82214777e158e2;p=gitmo%2FMoose.git diff --git a/Makefile.PL b/Makefile.PL index 324a455..d3da7e3 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,19 +1,19 @@ use strict; use warnings; -use inc::Module::Install 0.95; +use inc::Module::Install 0.98; use Module::Install::AuthorRequires; -use 5.008001; +use 5.008003; check_broken_extratests(); check_conflicts(); name 'Moose'; -perl_version '5.008001'; +perl_version '5.008003'; all_from 'lib/Moose.pm'; license 'perl'; requires 'Carp'; -requires 'Class::MOP' => '0.98'; +requires 'Class::MOP' => '1.02'; requires 'Data::OptList' => '0'; requires 'List::MoreUtils' => '0.12'; requires 'Scalar::Util' => '1.19'; @@ -38,22 +38,27 @@ if ( is_maintainer() ) { tests_recursive(); +repository 'git://git.moose.perl.org/Moose.git'; +add_metadata(x_authority => 'cpan:STEVAN'); + 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 = ( + 'Catalyst' => '5.80017', 'Devel::REPL' => '1.003008', 'Fey::ORM' => '0.23', - 'Catalyst' => '5.80017', + 'File::ChangeNotify' => '0.15', + 'KiokuDB' => '0.41', '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::NonMoose' => '0.07', 'MooseX::Params::Validate' => '0.05', 'MooseX::Role::Cmd' => '0.06', 'MooseX::Role::WithOverloading' => '0.04', @@ -61,7 +66,7 @@ sub check_conflicts { 'MooseX::StrictConstructor' => '0.07', 'MooseX::Types' => '0.19', 'namespace::autoclean' => '0.08', - 'KiokuDB' => '0.41', + 'Pod::Elemental' => '0.093280', ); my $found = 0;