added tests for RT#63709
[dbsrgits/DBIx-Class.git] / Makefile.PL
1 use strict;
2 use warnings;
3
4 use 5.008001;
5 use inc::Module::Install 1.06;
6 BEGIN { makemaker_args( NORECURS => 1 ) } # needs to happen early for old EUMM
7
8 ##
9 ## DO NOT USE THIS HACK IN YOUR DISTS!!! (it makes #toolchain sad)
10 ##
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)
14 BEGIN {
15   $Module::Install::AUTHOR = 0 if (grep { $ENV{"PERL5_${_}_IS_RUNNING"} } (qw/CPANM CPANPLUS CPAN/) );
16 }
17
18 ##
19 ## TEMPORARY (and non-portable)
20 ## Get trial SQLA
21 ##
22 BEGIN {
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
52 name         'DBIx-Class';
53 version_from 'lib/DBIx/Class.pm';
54 perl_version '5.008001';
55
56 ###
57 ### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends()
58 ### All of them *MUST* go to DBIx::Class::Optional::Dependencies
59 ###
60 my $runtime_requires = {
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
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 ###
71   'DBI'                      => '1.57',
72
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
80   # XS (or XS-dependent) libs
81   'Sub::Name'                => '0.04',
82
83   # pure-perl (FatPack-able) libs
84   'Class::Accessor::Grouped' => '0.10010',
85   'Class::C3::Componentised' => '1.0009',
86   'Class::Inspector'         => '1.24',
87   'Config::Any'              => '0.20',
88   'Context::Preserve'        => '0.01',
89   'Data::Dumper::Concise'    => '2.020',
90   'Data::Page'               => '2.00',
91   'Devel::GlobalDestruction' => '0.09',
92   'Hash::Merge'              => '0.12',
93   'Moo'                      => '1.004005',
94   'MRO::Compat'              => '0.12',
95   'Module::Find'             => '0.07',
96   'namespace::clean'         => '0.24',
97   'Path::Class'              => '0.18',
98   'Scope::Guard'             => '0.03',
99   'SQL::Abstract'            => '1.78',
100   'Try::Tiny'                => '0.07',
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',
106 };
107
108 my $build_requires = {
109 };
110
111 my $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
118   # needed for testing only, not for operation
119   # we will move away from this dep eventually, perhaps to DBD::CSV or something
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 ###
126   'DBD::SQLite'              => '1.29',
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 };
132
133 # if the user has this env var set and no SQLT installed, tests will fail
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)
136 # we force this req regarless of author_deps, worst case scenario it will
137 # be specified twice
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
143 if ($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
152 tests_recursive (qw|
153     t
154 |);
155
156 install_script (qw|
157     script/dbicadmin
158 |);
159
160 # this is so we can order requires alphabetically
161 # copies are needed for potential author requires injection
162 my $reqs = {
163   build_requires => { %$build_requires },
164   requires => { %$runtime_requires },
165   test_requires => { %$test_requires },
166 };
167
168 # only do author-includes if not part of a `make` run
169 if ($Module::Install::AUTHOR  and ! $ENV{MAKELEVEL}) {
170   invoke_author_mode()
171 }
172 else {
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;
176 create_distdir: nonauthor_stop_distdir_creation
177 nonauthor_stop_distdir_creation:
178 \t\$(NOECHO) \$(ECHO) Creation of dists in non-author mode is not allowed
179 \t\$(NOECHO) \$(FALSE)
180 EOP
181 }
182
183 # compose final req list, for alphabetical ordering
184 my %final_req;
185 for 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
197 for 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
205 auto_install();
206
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 }
213
214 exit 0;
215
216
217 ###
218 ### Nothing user-serviceable beyond this point
219 ### (none of this executes on regular install)
220 ###
221
222
223 # needs to be here to keep 5.8 string eval happy
224 # (the include of Makefile.PL.inc loop)
225 my $mm_proto;
226
227 sub invoke_author_mode {
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   };
236   $getopt->getoptions($args, qw/
237     skip_author_deps|skip-author-deps
238   /);
239   if (@ARGV) {
240     warn "\nIgnoring unrecognized option(s): @ARGV\n\n";
241   }
242
243   # We need the MM facilities to generate the pieces for the final MM run.
244   # Just instantiate a throaway object here
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;
250   $mm_proto = ExtUtils::MakeMaker->new({
251     NORECURS => 1,
252     NAME => $name,
253   });
254
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
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
269   require File::Spec;
270   # string-eval, not do(), because we need to provide the
271   # $mm_proto, $reqs and $*_requires lexicals to the included file
272   # (some includes *do* modify $reqs above)
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     ;
280   }
281 }