Remove copyright headers from individual scripts
[dbsrgits/SQL-Translator.git] / Makefile.PL
index 7d6b752..d156564 100644 (file)
@@ -1,7 +1,10 @@
-use inc::Module::Install 0.89;
+use inc::Module::Install 1.00;
 use strict;
 use warnings;
 
+# to deal wuth x.y.z versions properly
+configure_requires 'ExtUtils::MakeMaker' => 6.54;
+
 my $deps = {
   requires => {
     'Class::Base'              => 0,
@@ -11,32 +14,31 @@ my $deps = {
     'Carp::Clan'               => 0,
     'IO::Dir'                  => 0,
     'IO::Scalar'               => 2.110,
-    'Parse::RecDescent'        => 1.096000,   # PBP ftw
+    'Parse::RecDescent'        => 1.962002,
     'Pod::Usage'               => 0,
     'Class::Accessor::Fast'    => 0,
     'DBI'                      => 0,
     'File::ShareDir'           => 1.0,
     'File::Spec'               => 0,
+    'Scalar::Util'             => 0,
+    'XML::Writer'              => 0.500,
   },
   recommends => {
-    'Template'                => 2.10,
-    'GD'                      => 0,
-    'GraphViz'                => 0,
-    'Graph::Directed'         => 0,
-    'IO::File'                => 0,
-    'IO::Scalar'              => 0,
-    'Spreadsheet::ParseExcel' => 0.41,
-    'Text::ParseWords'        => 0,
-    'Text::RecordParser'      => 0.02,
-    'XML::Writer'             => 0.500,
-    'XML::LibXML'             => 1.61,
+    'Template'                 => 2.20,
+    'GD'                       => 0,
+    'GraphViz'                 => 0,
+    'Graph::Directed'          => 0,
+    'Spreadsheet::ParseExcel'  => 0.41,
+    'Text::ParseWords'         => 0,
+    'Text::RecordParser'       => 0.02,
+    'XML::LibXML'              => 1.69,
   },
   test_requires => {
-    'File::Basename'          => 0,
-    'Test::More'              => 0.6,
-    'Test::Differences'       => 0,
-    'Test::Exception'         => 0,
-    'YAML'                    => 0.39,
+    'YAML'                     => 0.66,
+    'File::Basename'           => 0,
+    'Test::More'               => 0.6,
+    'Test::Differences'        => 0,
+    'Test::Exception'          => 0,
   },
 };
 
@@ -45,7 +47,7 @@ perl_version '5.005';
 name        'SQL-Translator';
 author      'Ken Youens-Clark <kclark@cpan.org>';
 abstract    'SQL DDL transformations and more';
-license     'http://fsf.org/licensing/licenses/gpl.html';
+license     'gpl_2';
 repository  'https://sqlfairy.svn.sourceforge.net/svnroot/sqlfairy';
 bugtracker  'http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Translator';
 
@@ -78,4 +80,65 @@ auto_provides();
 
 auto_install();
 
+if ($Module::Install::AUTHOR) {
+  _recompile_grammars();
+  _recreate_rt_source();
+}
+
 WriteAll();
+
+sub _recompile_grammars {
+  # placeholder, will be used to recompile P::RD parsers before shipping
+  # will also allow to lose dependency on P::RD
+}
+
+sub _recreate_rt_source {
+  my $base_xml = "t/data/roundtrip.xml";
+  my $autogen_yaml = "t/data/roundtrip_autogen.yaml";
+
+  print "Updating $autogen_yaml\n";
+
+  unlink $autogen_yaml;
+
+  eval {
+
+    use lib 'lib';
+
+    require SQL::Translator;
+    require SQL::Translator::Parser::XML;
+
+    open (my $fh, '>', $autogen_yaml) or die "$autogen_yaml: $!\n";
+
+    my $tr = SQL::Translator->new;
+    my $yaml = $tr->translate (
+      parser => 'XML',
+      file => $base_xml,
+      producer => 'YAML',
+    ) or  die sprintf ("Unable to translate %s to YAML: %s\n",
+              $base_xml,
+              $tr->error || 'error unknown'
+          );
+
+    print $fh $yaml;
+    close $fh;
+  };
+
+  if ($@) {
+    warn <<EOE;
+
+=========================================================================
+===============              WARNING !!!                =================
+=========================================================================
+
+Unable to update the roundtrip schema (attempt triggered by AUTHOR mode).
+We will still generate a Makefile, but be aware that if you build a dist
+this way, it *WILL* be broken.
+
+-------------------------------------------------------------------------
+$@
+
+Press Enter to continue.
+EOE
+  <>;
+  }
+}