From: Jonathan Yu Date: Sat, 17 Jan 2009 15:32:51 +0000 (+0000) Subject: - Some minor cosmetic changes X-Git-Tag: v0.11008~254 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=54ec262fa0a12060555402a2315d5441c51b2ba2;p=dbsrgits%2FSQL-Translator.git - Some minor cosmetic changes - Added meta_merge for META.yml data --- diff --git a/Build.PL b/Build.PL index 7ca42a7..6058fcd 100644 --- a/Build.PL +++ b/Build.PL @@ -5,60 +5,81 @@ use lib './lib'; use Module::Build; my $builder = Module::Build->new( - create_readme => 0, - dist_abstract => 'SQL DDL transformations and more', - dist_author => 'Ken Y. Clark ', - dist_version_from => 'lib/SQL/Translator.pm', - license => 'gpl', - module_name => 'SQL::Translator', - sign => 1, - script_files => [ - 'bin/sqlt-diagram', - 'bin/sqlt-diff', - 'bin/sqlt-diff-old', - 'bin/sqlt-dumper', - 'bin/sqlt-graph', - 'bin/sqlt', - ], - requires => { - 'Class::Base' => 0, - 'Class::Data::Inheritable' => 0.02, - 'Class::MakeMethods' => 0, - 'Digest::SHA1' => 2.00, - 'IO::Dir' => 0, - 'Log::Log4perl' => 0, - 'Parse::RecDescent' => 1.94, - 'Pod::Usage' => 0, - 'Class::Accessor::Fast' => 0, - 'DBI' => 0, - }, - recommends => { - 'Template' => 2.10, - 'GD' => 0, - 'GraphViz' => 0, - 'Graph::Directed' => 0, - 'IO::File' => 0, - 'IO::Scalar' => 0, - 'Spreadsheet::ParseExcel' => '>= 0.2602, != 0.33', - 'Text::ParseWords' => 0, - 'Text::RecordParser' => 0.02, - 'XML::Writer' => 0.500, - 'XML::XPath' => 1.13, - }, - build_requires => { - 'File::Basename' => 0, - 'File::Spec' => 0, - 'Test::More' => 0.6, - 'Test::Differences' => 0, - 'Test::Exception' => 0, - 'Test::Differences' => 0, - 'YAML' => 0.39, - }, - get_options => { - # Where to store additional files such as templates. - # TODO: Should be OS dependant. See Module::Build::os_type() - install_dir => { type=>'=s', default=>'/usr/local/share/sqlfairy' }, + module_name => 'SQL::Translator', + dist_author => 'Ken Y. Clark ', + dist_version_from => 'lib/SQL/Translator.pm', + dist_abstract => 'SQL DDL transformations and more', + license => 'gpl', + dynamic_config => 0, + create_readme => 0, + recursive_test_files => 1, + sign => 1, + create_packlist => 1, + sign => 1, + recursive_test_files => 1, + create_makefile_pl => 'passthrough', + + requires => { + 'Class::Base' => 0, + 'Class::Data::Inheritable' => 0.02, + 'Class::MakeMethods' => 0, + 'Digest::SHA1' => 2.00, + 'IO::Dir' => 0, + 'Log::Log4perl' => 0, + 'Parse::RecDescent' => 1.94, + 'Pod::Usage' => 0, + 'Class::Accessor::Fast' => 0, + 'DBI' => 0, + }, + recommends => { + 'Template' => 2.10, + 'GD' => 0, + 'GraphViz' => 0, + 'Graph::Directed' => 0, + 'IO::File' => 0, + 'IO::Scalar' => 0, + 'Spreadsheet::ParseExcel' => '>= 0.2602, != 0.33', + 'Text::ParseWords' => 0, + 'Text::RecordParser' => 0.02, + 'XML::Writer' => 0.500, + 'XML::XPath' => 1.13, + }, + build_requires => { + 'File::Basename' => 0, + 'File::Spec' => 0, + 'Test::More' => 0.6, + 'Test::Differences' => 0, + 'Test::Exception' => 0, + 'Test::Differences' => 0, + 'YAML' => 0.39, + }, + + add_to_cleanup => [ 'SQL-Translator-*' ], + script_files => [ + 'bin/sqlt-diagram', + 'bin/sqlt-diff', + 'bin/sqlt-diff-old', + 'bin/sqlt-dumper', + 'bin/sqlt-graph', + 'bin/sqlt', + ], + + get_options => { + # Where to store additional files such as templates. + # TODO: Should be OS dependant. See Module::Build::os_type() + install_dir => { type=>'=s', default=>'/usr/local/share/sqlfairy' }, + }, + meta_merge => { + resources => { + # Custom resources (must begin with an uppercase letter) + Ratings => 'http://cpanratings.perl.org/d/SQL-Translator', + + # Official keys (homepage, license, bugtracker) + repository => 'https://sqlfairy.svn.sourceforge.net/svnroot/sqlfairy', + bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Translator', + license => 'http://fsf.org/licensing/licenses/gpl.html', }, + }, ); # Copy .tt2 files in lib into blib/lib