X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=21082844226aba91c34339bbc09466c311d1d865;hb=42865691a20eb4d33df037c9677b9766126c98ec;hp=631ce866de81dc6912452243db3e26f7719f1eda;hpb=df9d74312c59b099c35727495e8902c6d03b384b;p=gitmo%2FMoo.git diff --git a/Makefile.PL b/Makefile.PL index 631ce86..2108284 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,37 +7,37 @@ check_conflicts(); (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; my %CONFIGURE_DEPS = ( - 'ExtUtils::MakeMaker' => 0, - 'Dist::CheckConflicts' => '0.02', + 'ExtUtils::MakeMaker' => 0, + 'Dist::CheckConflicts' => '0.02', ); 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, - 'strictures' => 1.004003, - 'Module::Runtime' => 0.012, - 'Role::Tiny' => 1.002004, - 'Devel::GlobalDestruction' => 0.11, - 'Dist::CheckConflicts' => 0.02, + 'Class::Method::Modifiers' => 1.10, # for RT#80194 + 'strictures' => 1.004003, + '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 => { repository => { - url => 'git://git.shadowcat.co.uk/gitmo/Moo.git', - web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo/Moo.git', + url => 'https://github.com/moose/Moo.git', + web => 'https://github.com/moose/Moo', type => 'git', }, 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 +46,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 + ) } }, }, );