X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=9b2418ac502e4a5b5a3315fc9749f01fe4f1d8c5;hb=9d430e0976994de076ebb0602651e9e0eca332da;hp=e63df5da3b10719232b6f88a944f625fbb946432;hpb=edc7ae1776a44b7530eb016b04ba038d37d10eb0;p=dbsrgits%2FSQL-Translator.git diff --git a/Makefile.PL b/Makefile.PL index e63df5d..9b2418a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -18,7 +18,7 @@ my $deps = { 'Package::Variant' => '1.001001', 'Sub::Quote' => '0', 'Try::Tiny' => '0.04', - 'List::MoreUtils' => '0.09', + 'Scalar::Util' => '0', }, recommends => { 'Template' => '2.20', @@ -36,6 +36,7 @@ my $deps = { 'Test::More' => '0.88', 'Test::Differences' => '0', 'Test::Exception' => '0.31', + 'Text::ParseWords' => '0', }, }; @@ -44,10 +45,11 @@ name 'SQL-Translator'; author 'Ken Youens-Clark '; abstract 'SQL DDL transformations and more'; license 'perl'; -repository 'git://git.shadowcat.co.uk/dbsrgits/SQL-Translator.git'; -bugtracker 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Translator'; -resources Ratings => 'http://cpanratings.perl.org/d/SQL-Translator'; +resources repository => 'https://github.com/dbsrgits/sql-translator/'; +resources bugtracker => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Translator'; +resources Ratings => 'http://cpanratings.perl.org/d/SQL-Translator'; +resources IRC => 'irc://irc.perl.org/#sql-translator'; Meta->{values}{x_authority} = 'cpan:JROBINSON'; @@ -57,7 +59,7 @@ readme_from 'lib/SQL/Translator.pm'; for my $type (qw/requires recommends test_requires/) { no strict qw/refs/; my $f = \&$type; - for my $mod (keys %{$deps->{$type} || {} }) { + for my $mod (sort keys %{$deps->{$type} || {} }) { $f->($mod, $deps->{$type}{$mod}); } } @@ -190,21 +192,19 @@ sub _recreate_rt_source { }; if ($@) { - warn <; } }