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