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