Stop mangling sql on the way out of the limit dialects
[dbsrgits/DBIx-Class.git] / Makefile.PL
CommitLineData
47a4aa51 1use inc::Module::Install 1.00;
fe650234 2use strict;
3use warnings;
4
55087b99 5use 5.008001;
ce4c07df 6
8057ed01 7use FindBin;
8use lib "$FindBin::Bin/lib";
2f5a6e87 9use DBIx::Class::Optional::Dependencies;
93c50889 10
97f9f16e 11# adjust ENV for $AUTHOR system() calls
12use Config;
13$ENV{PERL5LIB} = join ($Config{path_sep}, @INC);
14
347275d1 15use Getopt::Long ();
16
17my $getopt = Getopt::Long::Parser->new(
18 config => [qw/gnu_getopt bundling_override no_ignore_case pass_through/]
19);
0424d17a 20my $args = {
21 skip_author_deps => undef,
22};
347275d1 23$getopt->getoptions($args, 'skip_author_deps');
0424d17a 24if (@ARGV) {
25 warn "\nIgnoring unrecognized option(s): @ARGV\n\n";
26}
97f9f16e 27
d1dc7a98 28# get cpanX --installdeps . to behave in a checkout (most users do not need
29# the deps for a full test suite run, and if they do - there's MI::AutoInstall
30# for that)
31##
32## DO NOT USE THIS HACK IN YOUR DISTS!!! (it makes #toolchain sad)
33##
34$Module::Install::AUTHOR = 0 if (grep { $ENV{"PERL5_${_}_IS_RUNNING"} } (qw/CPANM CPANPLUS CPAN/) );
35
4b5544ad 36###
37### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends()
38### All of them should go to DBIx::Class::Optional::Dependencies
39###
40
ce4c07df 41name 'DBIx-Class';
b50d0dd3 42perl_version '5.008001';
8e0f16f1 43all_from 'lib/DBIx/Class.pm';
ce4c07df 44
8057ed01 45my $build_requires = {
79680fc0 46 # needed for testing only, not for operation
b9df8e39 47 'DBD::SQLite' => '1.29',
8057ed01 48};
49
50my $test_requires = {
30da8374 51 'File::Temp' => '0.22',
52 'Test::Builder' => '0.33',
0007aedf 53 'Test::Exception' => '0.31',
30da8374 54 'Test::More' => '0.92',
55 'Test::Warn' => '0.21',
8057ed01 56};
57
58my $runtime_requires = {
8057ed01 59 'Carp::Clan' => '6.0',
79680fc0 60 'Class::Accessor::Grouped' => '0.10000',
8057ed01 61 'Class::C3::Componentised' => '1.0005',
62 'Class::Inspector' => '1.24',
79680fc0 63 'Config::Any' => '0.20',
64 'Context::Preserve' => '0.01',
65 'Data::Dumper::Concise' => '1.000',
8057ed01 66 'Data::Page' => '2.00',
8057ed01 67 'MRO::Compat' => '0.09',
68 'Module::Find' => '0.06',
f4d7449c 69 'Path::Class' => '0.18',
b7b18f32 70 'Scope::Guard' => '0.03',
bf51641f 71 'SQL::Abstract' => '1.72',
20674fcd 72 'Try::Tiny' => '0.04',
79680fc0 73
74 # XS (or XS-dependent) libs
75 'DBI' => '1.609',
ecb68746 76 'namespace::clean' => '0.14',
79680fc0 77 'Sub::Name' => '0.04',
78 'Variable::Magic' => '0.44',
79
80 # corelibs needing a specific bugfixed version
81 'File::Path' => '2.07',
82
83 # Oracle-only optionals
3b5c273e 84 'Math::BigInt' => '1.89',
63ca94e1 85 'Math::Base36' => '0.07',
8057ed01 86};
87
88# this is so we can order requires alphabetically
89# copies are needed for author requires injection
90my $reqs = {
91 build_requires => { %$build_requires },
92 requires => { %$runtime_requires },
93 test_requires => { %$test_requires },
94};
3a4251e2 95
2f5a6e87 96my $opt_testdeps = {
97 map { %$_ } (values %{DBIx::Class::Optional::Dependencies->req_group_list})
98};
8057ed01 99
92f8f62a 100# require extra modules for testing if we're in a checkout
0424d17a 101my $optdep_msg;
92f8f62a 102if ($Module::Install::AUTHOR) {
0424d17a 103 if ($args->{skip_author_deps}) {
104 $optdep_msg = <<'EOW';
105
106******************************************************************************
107******************************************************************************
108*** ***
109*** IGNORING AUTHOR MODE: no optional test dependencies will be forced. ***
110*** ***
111*** If you are using this checkout with the intention of submitting a DBIC ***
112*** patch, you are *STRONGLY ENCOURAGED* to install all dependencies, so ***
113*** that every possible unit-test will run. ***
114*** ***
115******************************************************************************
116******************************************************************************
117
118EOW
119 }
120 else {
121 $optdep_msg = <<'EOW';
122
8057ed01 123******************************************************************************
124******************************************************************************
125*** ***
126*** AUTHOR MODE: all optional test dependencies converted to hard requires ***
7adae31a 127*** ( to disable re-run Makefile.PL with --skip_author_deps ) ***
8057ed01 128*** ***
129******************************************************************************
130******************************************************************************
131
132EOW
133
0424d17a 134 $reqs->{test_requires} = {
135 %{$reqs->{test_requires}},
2f5a6e87 136 %$opt_testdeps
0424d17a 137 };
138 }
8057ed01 139}
140
141# compose final req list, for alphabetical ordering
142my %final_req;
143for my $rtype (keys %$reqs) {
144 for my $mod (keys %{$reqs->{$rtype}} ) {
145
146 # sanity check req duplications
147 if ($final_req{$mod}) {
b718fd0a 148 die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n";
8057ed01 149 }
150
151 $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ],
152 }
153}
154
155# actual require
156for my $mod (sort keys %final_req) {
157 my ($rtype, $ver) = @{$final_req{$mod}};
158 no strict 'refs';
159 $rtype->($mod, $ver);
160}
a410299d 161
0424d17a 162# output twice since the deplist is > 70 lines
f90896ae 163warn $optdep_msg if $Module::Install::AUTHOR;
92f8f62a 164auto_install();
f90896ae 165warn $optdep_msg if $Module::Install::AUTHOR;
92f8f62a 166
167# re-create various autogenerated documentation bits
168if ($Module::Install::AUTHOR) {
169
170 print "Regenerating README\n";
171 system('pod2text lib/DBIx/Class.pm > README');
172
173 if (-f 'MANIFEST') {
174 print "Removing MANIFEST\n";
175 unlink 'MANIFEST';
176 }
177
92f8f62a 178 print "Regenerating Optional/Dependencies.pod\n";
179 require DBIx::Class::Optional::Dependencies;
ccebe1f1 180 DBIx::Class::Optional::Dependencies->_gen_pod (Meta->version);
92f8f62a 181
182 # FIXME Disabled due to unsolved issues, ask theorbtwo
183 # require Module::Install::Pod::Inherit;
184 # PodInherit();
185}
186
f90896ae 187
7eaae8db 188tests_recursive (qw|
189 t
190|);
191
f90896ae 192# temporary(?) until I get around to fix M::I wrt xt/
193# needs Module::Install::AuthorTests
c1fdb460 194eval {
7f2c37b8 195 recursive_author_tests (qw/xt/);
196 1;
197} || do {
d1dc7a98 198 if ($Module::Install::AUTHOR && ! $args->{skip_author_deps}) {
22a2062e 199 my $err = $@;
200 eval { require Module::Install::AuthorTests }
eeaf8701 201 || die "\nYou need Module::Install::AuthorTests installed to run this Makefile.PL in author mode (or supply --skip_author_deps):\n\n$@\n";
22a2062e 202 die $@;
203 }
7f2c37b8 204};
f90896ae 205
206
a410299d 207install_script (qw|
208 script/dbicadmin
209|);
210
7eaae8db 211
212### Mangle makefile - read the comments for more info
213#
214postamble <<"EOP";
215
216# This will add an extra dep-spec for the distdir target,
217# which `make` will fold together in a first-come first-serve
218# fashion. What we do here is essentially adding extra
219# commands to execute once the distdir is assembled (via
220# create_distdir), but before control is returned to a higher
221# calling rule.
222distdir : dbicadmin_pod_inject
223
224# The pod self-injection code is in fact a hidden option in
225# dbicadmin itself
226dbicadmin_pod_inject :
227\tcd \$(DISTVNAME) && \$(ABSPERL) -Ilib script/dbicadmin --selfinject-pod
228
229# Regenerate manifest before running create_distdir.
230create_distdir : manifest
231
232EOP
233
f90896ae 234homepage 'http://www.dbix-class.org/';
a410299d 235resources 'IRC' => 'irc://irc.perl.org/#dbix-class';
236resources 'license' => 'http://dev.perl.org/licenses/';
aeb669b8 237resources 'repository' => 'git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git';
a410299d 238resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class';
70fbb0b8 239resources 'bugtracker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class';
a410299d 240
974fe5e8 241# Deprecated/internal modules need no exposure
242no_index directory => $_ for (qw|
bc6f129c 243 lib/DBIx/Class/Admin
281738a4 244 lib/DBIx/Class/PK/Auto
bc6f129c 245 lib/DBIx/Class/CDBICompat
974fe5e8 246|);
247no_index package => $_ for (qw/
d5dedbd6 248 DBIx::Class::Storage::DBIHacks
974fe5e8 249/);
a410299d 250
713cc98e 251WriteAll();
09d46657 252
2f5a6e87 253# Re-write META.yml to _exclude_ all forced build-requires (we do not want to ship
254# this) We are also not using M::I::AuthorRequires as this will be an extra dep,
255# and deps in Makefile.PL still suck
256# Also always test the result so we stop shipping borked dependency lists to CPAN
713cc98e 257
2f5a6e87 258# FIXME test_requires is not yet part of META
259my %original_build_requires = ( %$build_requires, %$test_requires );
260my @all_build_requires = @{delete Meta->{values}{build_requires}};
261my %removed_build_requires;
8057ed01 262
2f5a6e87 263for (@all_build_requires) {
264 if ($original_build_requires{$_->[0]}) {
265 push @{Meta->{values}{build_requires}}, $_;
266 }
267 else {
268 $removed_build_requires{$_->[0]} = $_->[1]
269 unless $_->[0] eq 'ExtUtils::MakeMaker';
1278e5f0 270 }
2f5a6e87 271}
713cc98e 272
2f5a6e87 273# Rewrite only in author mode, the original META should not contain anything anyway
274# if we executed as non-author
275if ($Module::Install::AUTHOR && keys %removed_build_requires) {
1278e5f0 276 print "Regenerating META with author requires excluded\n";
713cc98e 277 Meta->write;
2f5a6e87 278}
1278e5f0 279
2f5a6e87 280# test that we really took things away (just in case, happened twice somehow)
281exit 0 unless -f 'META.yml'; # in case bizarro comes around
282my $meta = do { local @ARGV = 'META.yml'; local $/; <> };
283
284# this is safe as there is a fatal check earlier to make sure $opt_testdeps does
285# not contain any real dependencies
286my @illegal_leftovers = grep
287 { $meta =~ /^ \s+ \Q$_\E \: \s+ /mx }
288 ( sort keys %$opt_testdeps )
289;
290
291if (@illegal_leftovers) {
292 die join ("\n",
293 "\n\nFATAL FAIL! It looks like some author dependencies made it to the META.yml:\n",
294 map { "\t$_" } @illegal_leftovers
295 ) . "\n\n";
09d46657 296}