X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=6a40bb7a2f9e1170122422589e076989b8c6e32b;hb=e8c31aecd4b3c6bc4686885c4474c96dd7524716;hp=d4d11e384677740debbfc9c36e963aaae6af0a95;hpb=8d6b1478d8fa6f7c76e313ee72a72d5eb4c24d03;p=dbsrgits%2FDBIx-Class.git diff --git a/Makefile.PL b/Makefile.PL index d4d11e3..6a40bb7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -17,6 +17,7 @@ BEGIN { name 'DBIx-Class'; perl_version '5.008001'; all_from 'lib/DBIx/Class.pm'; +Meta->{values}{x_authority} = 'cpan:RIBASUSHI'; tests_recursive (qw| t @@ -61,14 +62,15 @@ my $runtime_requires = { 'Context::Preserve' => '0.01', 'Data::Dumper::Concise' => '2.020', 'Data::Page' => '2.00', + 'Devel::GlobalDestruction' => '0', 'Hash::Merge' => '0.12', - 'Moo' => '0.009014', + 'Moo' => '0.009100', 'MRO::Compat' => '0.09', 'Module::Find' => '0.06', 'namespace::clean' => '0.20', 'Path::Class' => '0.18', 'Scope::Guard' => '0.03', - 'SQL::Abstract' => '1.72', + 'SQL::Abstract' => '1.73_01', 'Try::Tiny' => '0.04', # dual-life corelibs needing a specific bugfixed version @@ -148,9 +150,13 @@ if ($Module::Install::AUTHOR and ! $ENV{MAKELEVEL}) { # string-eval, not do(), because we need to provide the # $reqs and $*_requires lexicals to the included file # (some includes *do* modify $reqs above) - for (sort glob ( File::Spec->catfile('maint', 'Makefile.PL.inc', '*') ) ) { - eval scalar do { local (@ARGV, $/) = $_; <> } - or die ($@ || $!); + for my $inc (sort glob ( File::Spec->catfile('maint', 'Makefile.PL.inc', '*') ) ) { + my $src = do { local (@ARGV, $/) = $inc; <> } or die $!; + eval "use warnings; use strict; $src" or die sprintf + "Failed execution of %s: %s\n", + $inc, + ($@ || $! || 'Unknown error'), + ; } } else {