Dependency cleanup
[dbsrgits/SQL-Translator.git] / Makefile.PL
1 use inc::Module::Install 1.06;
2 use strict;
3 use warnings;
4
5 # to deal wuth x.y.z versions properly
6 configure_requires 'ExtUtils::MakeMaker' => '6.54';
7
8 perl_version '5.008001';
9
10 my $deps = {
11   requires => {
12     'Class::Base'              => '0',
13     'Class::Data::Inheritable' => '0.02',
14     'Digest::SHA'              => '0',
15     'Carp::Clan'               => '0',
16     'IO::Scalar'               => '2.110',
17     'Parse::RecDescent'        => '1.964001',
18     'DBI'                      => '0',
19     'File::ShareDir'           => '1.0',
20     'File::Spec'               => '0',
21     'XML::Writer'              => '0.500',
22     'Moo'                      => '0.009007',
23   },
24   recommends => {
25     'Template'                 => '2.20',
26     'GD'                       => '0',
27     'GraphViz'                 => '0',
28     'Graph::Directed'          => '0',
29     'Spreadsheet::ParseExcel'  => '0.41',
30     'Text::ParseWords'         => '0',
31     'Text::RecordParser'       => '0.02',
32     'XML::LibXML'              => '1.69',
33   },
34   test_requires => {
35     'YAML'                     => '0.66',
36     'Test::More'               => '0.88',
37     'Test::Differences'        => '0',
38     'Test::Exception'          => '0.31',
39   },
40 };
41
42
43 name        'SQL-Translator';
44 author      'Ken Youens-Clark <kclark@cpan.org>';
45 abstract    'SQL DDL transformations and more';
46 license     'gpl';
47 repository  'git://git.shadowcat.co.uk/dbsrgits/SQL-Translator.git';
48 bugtracker  'http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Translator';
49
50 resources Ratings => 'http://cpanratings.perl.org/d/SQL-Translator';
51
52 all_from    'lib/SQL/Translator.pm';
53
54 for my $type (qw/requires recommends test_requires/) {
55   no strict qw/refs/;
56   my $f = \&$type;
57   for my $mod (keys %{$deps->{$type} || {} }) {
58     $f->($mod, $deps->{$type}{$mod});
59   }
60 }
61
62 install_script (qw|
63   script/sqlt-diagram
64   script/sqlt-diff
65   script/sqlt-diff-old
66   script/sqlt-dumper
67   script/sqlt-graph
68   script/sqlt
69 |);
70
71 install_share();
72
73 tests_recursive ();
74
75
76 # temporary(?) until I get around to fix M::I wrt xt/
77 # needs Module::Install::AuthorTests
78 eval {
79   # this should not be necessary since the autoloader is supposed
80   # to work, but there were reports of it failing
81   require Module::Install::AuthorTests;
82   recursive_author_tests (qw/xt/);
83   1;
84 } || do {
85   if ($Module::Install::AUTHOR) {
86     my $err = $@;
87
88     # better error message in case of missing dep
89     eval { require Module::Install::AuthorTests }
90       || die "\nYou need Module::Install::AuthorTests installed to run this Makefile.PL in author mode:\n\n$@\n";
91
92     die $err;
93   }
94 };
95
96 auto_install();
97
98 if ($Module::Install::AUTHOR) {
99   _recompile_grammars();
100   _recreate_rt_source();
101 }
102
103 WriteAll();
104
105 sub _recompile_grammars {
106   return; # disabled until RT#74593 is resolved
107
108   require File::Spec;
109
110   my $compiled_parser_dir = File::Spec->catdir(qw/
111     share PrecompiledParsers Parse RecDescent DDL SQLT
112   /);
113
114   # Currently consider only single-name parsers containing a grammar marker
115   # This is somewhat fragile, but better than loading all kinds of parsers
116   # to some of which we may not even have the deps
117   my $parser_libdir = 'lib/SQL/Translator/Parser';
118   for my $parser_fn (glob "$parser_libdir/*.pm") {
119     die "$parser_fn does not look like a readable file\n"
120       unless ( -f $parser_fn and -r $parser_fn );
121
122     my ($type) = $parser_fn =~ /^\Q$parser_libdir\E\/(.+)\.pm$/i
123       or die "$parser_fn not named in expected format\n";
124
125     my $parser_source = do { local (@ARGV, $/) = $parser_fn; <> };
126     next unless $parser_source =~ /\$GRAMMAR.+?END_OF_GRAMMAR/s;
127
128
129     my $precomp_parser_fn = File::Spec->catfile($compiled_parser_dir, "$type.pm");
130
131     next if (
132       -f $precomp_parser_fn
133         and
134       (stat($parser_fn))[9] <= (stat($precomp_parser_fn))[9]
135     );
136
137
138     print "Precompiling parser for $type\n";
139
140     require $parser_fn;
141     require Parse::RecDescent;
142
143     Parse::RecDescent->Precompile(
144       do {
145         no strict 'refs';
146         ${"SQL::Translator::Parser::${type}::GRAMMAR"}
147           || die "No \$GRAMMAR global found in SQL::Translator::Parser::$type ($parser_fn)\n"
148       },
149       "Parse::RecDescent::DDL::SQLT::$type"
150     );
151
152     rename( "$type.pm", $precomp_parser_fn )
153       or die "Unable to move $type.pm to $compiled_parser_dir: $!\n";
154   }
155
156 }
157
158 sub _recreate_rt_source {
159   my $base_xml = "t/data/roundtrip.xml";
160   my $autogen_yaml = "t/data/roundtrip_autogen.yaml";
161
162   print "Updating $autogen_yaml\n";
163
164   unlink $autogen_yaml;
165
166   eval {
167
168     use lib 'lib';
169
170     require SQL::Translator;
171     require SQL::Translator::Parser::XML;
172
173     open (my $fh, '>', $autogen_yaml) or die "$autogen_yaml: $!\n";
174
175     my $tr = SQL::Translator->new;
176     my $yaml = $tr->translate (
177       parser => 'XML',
178       file => $base_xml,
179       producer => 'YAML',
180     ) or  die sprintf ("Unable to translate %s to YAML: %s\n",
181               $base_xml,
182               $tr->error || 'error unknown'
183           );
184
185     print $fh $yaml;
186     close $fh;
187   };
188
189   if ($@) {
190     warn <<EOE;
191
192 =========================================================================
193 ===============              WARNING !!!                =================
194 =========================================================================
195
196 Unable to update the roundtrip schema (attempt triggered by AUTHOR mode).
197 We will still generate a Makefile, but be aware that if you build a dist
198 this way, it *WILL* be broken.
199
200 -------------------------------------------------------------------------
201 $@
202
203 Press Enter to continue.
204 EOE
205   <>;
206   }
207 }