X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=dff623f0534edeeb98839f0530d7eb982eb52ef0;hb=01f38ab1a660b3497e02d8f737b82dbe02299f66;hp=d7ae893f828f59d63d3250b67315d76e367454d9;hpb=ec7a942399bc93a6635153ba2483e9e9141cce3d;p=gitmo%2FMouse.git diff --git a/Makefile.PL b/Makefile.PL index d7ae893..dff623f 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,14 +1,14 @@ # for developpers: BEGIN{ if(grep{ $_ eq '--author' } @ARGV){ - print "^X -S cpanm < author/requires.cpanm\n"; + print "$^X -S cpanm < author/requires.cpanm\n"; system "$^X -S cpanm < author/requires.cpanm"; } } use strict; use warnings; -use inc::Module::Install; +use inc::Module::Install 0.99; # for co-developpers use Module::Install::XSUtil 0.24; @@ -26,7 +26,9 @@ requires 'Scalar::Util' => 1.14; test_requires 'Test::More' => 0.88; test_requires 'Test::Exception' => 0.29; -test_requires 'Test::Requires' => 0.03; +if ( $ENV{RELEASE_TESTING} || (grep { $_ eq '--author' } @ARGV) ) { + test_requires 'Test::Requires' => 0.03; +} # test_requires 'Test::Output' => 0.16; # too many dependencies! if($] < 5.010) { @@ -34,7 +36,7 @@ if($] < 5.010) { } my %suggests = ( - 'Class::Method::Modifiers::Fast' => 0.041, + 'Data::Util' => 0.55, 'MouseX::AttributeHelpers' => 0.06, );