added tests for RT#63709
[dbsrgits/DBIx-Class.git] / Makefile.PL
CommitLineData
fe650234 1use strict;
2use warnings;
3
55087b99 4use 5.008001;
6c96d73f 5use inc::Module::Install 1.06;
90706de1 6BEGIN { makemaker_args( NORECURS => 1 ) } # needs to happen early for old EUMM
ce4c07df 7
d1dc7a98 8##
9## DO NOT USE THIS HACK IN YOUR DISTS!!! (it makes #toolchain sad)
10##
fc4b0448 11# get cpanX --installdeps . to behave in a checkout (most users do not expect
12# the deps for a full test suite run, and if they do - there's MI::AutoInstall
13# for that)
14BEGIN {
15 $Module::Install::AUTHOR = 0 if (grep { $ENV{"PERL5_${_}_IS_RUNNING"} } (qw/CPANM CPANPLUS CPAN/) );
16}
4b5544ad 17
d0435d75 18##
19## TEMPORARY (and non-portable)
20## Get trial SQLA
21##
22BEGIN {
23 my $target_libdir = 'lib/DBIx/Class/_TempExtlib';
24
25 if ( ($Module::Install::AUTHOR or $ENV{TRAVIS}) and ! $ENV{MAKELEVEL} ) {
26
27 `rm -rf $target_libdir`;
28 `mkdir $target_libdir`;
29 for (
30 [ 'SQL-Abstract' => 'master' ],
31 ) {
32 my $tdir = "/tmp/dbictemplib/$_->[0]/";
33
34 `rm -rf $tdir`;
35
36 `GIT_SSH=maint/careless_ssh.bash git clone --bare --quiet --branch=$_->[1] --depth=1 git://git.shadowcat.co.uk/dbsrgits/$_->[0] $tdir`;
37 printf "\nIncluding %s git rev %s\n",
38 $_->[0],
39 scalar `GIT_DIR=$tdir git rev-parse $_->[1]`,
40 ;
41 `git archive --format=tar --remote=file://$tdir $_->[1] lib/ | tar --strip-components=1 -xC $target_libdir`;
42
43 #`rm -rf $tdir`;
44 }
45
46 unshift @INC, $target_libdir;
47
48 no_index directory => $target_libdir;
49 }
50}
51
20e84e74 52name 'DBIx-Class';
53version_from 'lib/DBIx/Class.pm';
b50d0dd3 54perl_version '5.008001';
90cfe42b 55
fc4b0448 56###
57### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends()
58### All of them *MUST* go to DBIx::Class::Optional::Dependencies
59###
8057ed01 60my $runtime_requires = {
fc4b0448 61
62 # DBI itself should be capable of installation and execution in pure-perl
63 # mode. However it has never been tested yet, so consider XS for the time
64 # being
5342cd1a 65###
66### IMPORTANT - do not raise this dependency
67### even though many bugfixes are present in newer versions, the general DBIC
68### rule is to bend over backwards for available DBI versions (given upgrading
69### them is often *not* easy or even possible)
70###
fc4b0448 71 'DBI' => '1.57',
72
a08e7b00 73 # on older versions first() leaks
74 # for the time being make it a hard dep - when we get
75 # rid of Sub::Name will revisit this (possibility is
76 # to use Devel::HideXS to force the pure-perl version
77 # or something like that)
78 'List::Util' => '1.16',
79
fc4b0448 80 # XS (or XS-dependent) libs
81 'Sub::Name' => '0.04',
82
83 # pure-perl (FatPack-able) libs
f390d66d 84 'Class::Accessor::Grouped' => '0.10010',
9c1700e3 85 'Class::C3::Componentised' => '1.0009',
8057ed01 86 'Class::Inspector' => '1.24',
79680fc0 87 'Config::Any' => '0.20',
88 'Context::Preserve' => '0.01',
2b8cc2f2 89 'Data::Dumper::Concise' => '2.020',
8057ed01 90 'Data::Page' => '2.00',
90fb8e19 91 'Devel::GlobalDestruction' => '0.09',
b8d22f13 92 'Hash::Merge' => '0.12',
c480ff4a 93 'Moo' => '1.004005',
90fb8e19 94 'MRO::Compat' => '0.12',
95 'Module::Find' => '0.07',
96 'namespace::clean' => '0.24',
f4d7449c 97 'Path::Class' => '0.18',
b7b18f32 98 'Scope::Guard' => '0.03',
d0435d75 99 'SQL::Abstract' => '1.78',
90fb8e19 100 'Try::Tiny' => '0.07',
45150bc4 101
102 # Technically this is not a core dependency - it is only required
103 # by the MySQL codepath. However this particular version is bundled
104 # since 5.10.0 and is a pure-perl module anyway - let it slide
105 'Text::Balanced' => '2.00',
fc4b0448 106};
cd122820 107
fc4b0448 108my $build_requires = {
7850f06e 109};
110
111my $test_requires = {
112 'File::Temp' => '0.22',
113 'Test::Deep' => '0.101',
114 'Test::Exception' => '0.31',
115 'Test::Warn' => '0.21',
116 'Test::More' => '0.94',
117
fc4b0448 118 # needed for testing only, not for operation
119 # we will move away from this dep eventually, perhaps to DBD::CSV or something
5342cd1a 120###
121### IMPORTANT - do not raise this dependency
122### even though many bugfixes are present in newer versions, the general DBIC
123### rule is to bend over backwards for available DBDs (given upgrading them is
124### often *not* easy or even possible)
125###
fc4b0448 126 'DBD::SQLite' => '1.29',
fc4b0448 127
128 # this is already a dep of n::c, but just in case - used by t/55namespaces_cleaned.t
129 # remove and do a manual glob-collection if n::c is no longer a dep
130 'Package::Stash' => '0.28',
131};
bb7950c0 132
20beaf5f 133# if the user has this env var set and no SQLT installed, tests will fail
5b0543d6 134# Note - this is added as test_requires *directly*, so it gets properly
135# excluded on META.yml cleansing (even though no dist can be created from this)
20beaf5f 136# we force this req regarless of author_deps, worst case scenario it will
137# be specified twice
5b0543d6 138#
139# also note that we *do* set dynamic_config => 0, as this is the only thing
140# that we determine dynamically, and in all fairness if someone sets the
141# envvar *and* is not running a full Makefile/make/maketest cycle - they get
142# to keep the pieces
20beaf5f 143if ($ENV{DBICTEST_SQLT_DEPLOY}) {
144 local @INC = ('lib', @INC);
145 require DBIx::Class::Optional::Dependencies;
146 my $dep_req = DBIx::Class::Optional::Dependencies->req_list_for('deploy');
147 for (keys %$dep_req) {
148 test_requires ($_ => $dep_req->{$_})
149 }
150}
151
20e84e74 152tests_recursive (qw|
153 t
154|);
155
156install_script (qw|
157 script/dbicadmin
158|);
159
8057ed01 160# this is so we can order requires alphabetically
fc4b0448 161# copies are needed for potential author requires injection
8057ed01 162my $reqs = {
163 build_requires => { %$build_requires },
164 requires => { %$runtime_requires },
165 test_requires => { %$test_requires },
166};
3a4251e2 167
c78f9f5b 168# only do author-includes if not part of a `make` run
169if ($Module::Install::AUTHOR and ! $ENV{MAKELEVEL}) {
ffc55e52 170 invoke_author_mode()
171}
172else {
173 # make sure this Makefile can not be used to make a dist
174 # (without the author includes there are no meta cleanup, no sanity checks, etc)
175 postamble <<EOP;
176create_distdir: nonauthor_stop_distdir_creation
177nonauthor_stop_distdir_creation:
178\t\$(NOECHO) \$(ECHO) Creation of dists in non-author mode is not allowed
179\t\$(NOECHO) \$(FALSE)
180EOP
181}
182
183# compose final req list, for alphabetical ordering
184my %final_req;
185for my $rtype (keys %$reqs) {
186 for my $mod (keys %{$reqs->{$rtype}} ) {
187
188 # sanity check req duplications
189 die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n"
190 if $final_req{$mod};
191
192 $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ],
193 }
194}
195
196# actual require
197for my $mod (sort keys %final_req) {
198 my ($rtype, $ver) = @{$final_req{$mod}};
199 no strict 'refs';
200 $rtype->($mod, $ver);
201}
202
203# author-mode or not - this is where we show a list of missing deps
204# IFF we are running interactively
205auto_install();
206
3440100b 207{
208 # M::I understands unicode in meta but does not write with the right
209 # layers - fhtagn!!!
210 local $SIG{__WARN__} = sub { warn $_[0] unless $_[0] =~ /Wide character in print/ };
211 WriteAll();
212}
ffc55e52 213
214exit 0;
215
20e84e74 216
217###
218### Nothing user-serviceable beyond this point
219### (none of this executes on regular install)
220###
221
222
ffc55e52 223# needs to be here to keep 5.8 string eval happy
224# (the include of Makefile.PL.inc loop)
225my $mm_proto;
226
227sub invoke_author_mode {
fc4b0448 228 # get options here, make $args available to all snippets
229 require Getopt::Long;
230 my $getopt = Getopt::Long::Parser->new(
231 config => [qw/gnu_getopt bundling_override no_ignore_case pass_through/]
232 );
233 my $args = {
234 skip_author_deps => undef,
235 };
df65d4da 236 $getopt->getoptions($args, qw/
237 skip_author_deps|skip-author-deps
238 /);
fc4b0448 239 if (@ARGV) {
240 warn "\nIgnoring unrecognized option(s): @ARGV\n\n";
0424d17a 241 }
8057ed01 242
3ba58fe4 243 # We need the MM facilities to generate the pieces for the final MM run.
244 # Just instantiate a throaway object here
6b3e3947 245 #
246 # Also EUMM and MI disagree on what is the format of Meta->name, just
247 # punt here until a new M::I is shipped (if at all)
248 my $name = Meta->name || die 'The Module::Install metadata must be available at this point but is not - did you rearrange the Makefile.PL...?';
249 $name =~ s/\-/::/g;
ffc55e52 250 $mm_proto = ExtUtils::MakeMaker->new({
3054407e 251 NORECURS => 1,
6b3e3947 252 NAME => $name,
3ba58fe4 253 });
254
ffce4b65 255 # Crutch for DISTBUILDING_IN_HELL
256 # Spits back a working dos2unix snippet to be used on the supplied path(s)
257 # Ironically EUMM's dos2unix is broken on win32 itself - it does
258 # not take into account the CRLF layer present on win32
259 my $crlf_fixup = sub {
260 return '' unless ($^O eq 'MSWin32' or $^O eq 'cygwin');
261 my $targets = join ', ', map { "q($_)" } @_;
262 "\t" . $mm_proto->oneliner( qq(\$ENV{PERLIO}='unix' and system( \$^X, qw( -MExtUtils::Command -e dos2unix -- ), $targets ) ) );
263 };
264
e01862e4 265 # we are in the process of (re)writing the makefile - some things we
266 # call below very well may fail
267 local $ENV{DBICTEST_NO_MAKEFILE_VERIFICATION} = 1;
268
fc4b0448 269 require File::Spec;
270 # string-eval, not do(), because we need to provide the
3ba58fe4 271 # $mm_proto, $reqs and $*_requires lexicals to the included file
fc4b0448 272 # (some includes *do* modify $reqs above)
8baa2122 273 for my $inc (sort glob ( File::Spec->catfile('maint', 'Makefile.PL.inc', '*') ) ) {
274 my $src = do { local (@ARGV, $/) = $inc; <> } or die $!;
275 eval "use warnings; use strict; $src" or die sprintf
276 "Failed execution of %s: %s\n",
277 $inc,
278 ($@ || $! || 'Unknown error'),
279 ;
0424d17a 280 }
8057ed01 281}