X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=b5946358c42ff3126c9e845ace2fc0a6c1a4d974;hb=3b9f74a1ceb5a602066d33a1a6d9ab8125139499;hp=198acf7290434eaf163cbc25df6ca9f4b9eea3fc;hpb=e3b0d764216219e21f7199625ad12cd596e044f7;p=gitmo%2FMoo.git diff --git a/Makefile.PL b/Makefile.PL index 198acf7..b594635 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,22 +13,23 @@ my %CONFIGURE_DEPS = ( my %BUILD_DEPS = (); my %TEST_DEPS = ( - 'Test::More' => 0.96, + 'Test::More' => 0.94, 'Test::Fatal' => 0.003, ); my %RUN_DEPS = ( - 'Class::Method::Modifiers' => 1.10, + 'Class::Method::Modifiers' => 1.10, # or RT#80194 'strictures' => 1.004003, - 'Module::Runtime' => 0.012, - 'Role::Tiny' => 1.002004, - 'Devel::GlobalDestruction' => 0.11, + 'Module::Runtime' => 0.012, # for RT#74789 + 'Role::Tiny' => 1.003002, + 'Devel::GlobalDestruction' => 0.11, # for RT#78617 'Dist::CheckConflicts' => 0.02, ); my %extra_info = ( 'meta-spec' => { version => 2 }, resources => { + # r/w: gitmo@git.shadowcat.co.uk:Moo.git repository => { url => 'git://git.shadowcat.co.uk/gitmo/Moo.git', web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo/Moo.git', @@ -36,8 +37,8 @@ my %extra_info = ( }, x_IRC => 'irc://irc.perl.org/#moose', bugtracker => { - web => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Moo', - mailto => 'bug-moo@rt.cpan.org', + web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Moo', + mailto => 'bug-Moo@rt.cpan.org', }, license => [ 'http://dev.perl.org/licenses/' ], }, @@ -46,6 +47,12 @@ my %extra_info = ( build => { requires => { %BUILD_DEPS } }, test => { requires => { %TEST_DEPS } }, runtime => { requires => { %RUN_DEPS, perl => '5.8.1' } }, + develop => { requires => { map { $_ => 0 } qw( + Class::XSAccessor + indirect multidimensional bareword::filehandles + Moose Mouse namespace::clean namespace::autoclean + MooseX::Types::Common::Numeric + ) } }, }, ); @@ -84,10 +91,9 @@ WriteMakefile( no_index => { directory => [ 'xt' ] }, - x_breaks => { - # enter conflicting data here, *and* in Moo::Conflicts - 'HTML::Restrict' => '2.1.5', - }, + Moo::Conflicts->can('conflicts') ? ( + x_breaks => { Moo::Conflicts->conflicts } + ) : (), }, ($mymeta && !$mymeta_works ? (NO_MYMETA => 1) : ()), LICENSE => 'perl',