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