Make $SIG{__WARN__} overrides more Carp::Always friendly
[dbsrgits/DBIx-Class.git] / Makefile.PL
CommitLineData
fe650234 1use strict;
2use warnings;
3
55087b99 4use 5.008001;
6c96d73f 5use inc::Module::Install 1.06;
ce4c07df 6
d1dc7a98 7##
8## DO NOT USE THIS HACK IN YOUR DISTS!!! (it makes #toolchain sad)
9##
fc4b0448 10# get cpanX --installdeps . to behave in a checkout (most users do not expect
11# the deps for a full test suite run, and if they do - there's MI::AutoInstall
12# for that)
13BEGIN {
14 $Module::Install::AUTHOR = 0 if (grep { $ENV{"PERL5_${_}_IS_RUNNING"} } (qw/CPANM CPANPLUS CPAN/) );
3054407e 15 makemaker_args( NORECURS => 1 );
fc4b0448 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
fc4b0448 30tests_recursive (qw|
31 t
32|);
8057ed01 33
fc4b0448 34install_script (qw|
35 script/dbicadmin
36|);
90cfe42b 37
fc4b0448 38###
39### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends()
40### All of them *MUST* go to DBIx::Class::Optional::Dependencies
41###
8057ed01 42my $runtime_requires = {
fc4b0448 43 # FIXME - temporary, needs throwing out for something more efficient
44 'Data::Compare' => '1.22',
45
46 # DBI itself should be capable of installation and execution in pure-perl
47 # mode. However it has never been tested yet, so consider XS for the time
48 # being
49 'DBI' => '1.57',
50
a08e7b00 51 # on older versions first() leaks
52 # for the time being make it a hard dep - when we get
53 # rid of Sub::Name will revisit this (possibility is
54 # to use Devel::HideXS to force the pure-perl version
55 # or something like that)
56 'List::Util' => '1.16',
57
fc4b0448 58 # XS (or XS-dependent) libs
59 'Sub::Name' => '0.04',
60
61 # pure-perl (FatPack-able) libs
f390d66d 62 'Class::Accessor::Grouped' => '0.10010',
9c1700e3 63 'Class::C3::Componentised' => '1.0009',
8057ed01 64 'Class::Inspector' => '1.24',
79680fc0 65 'Config::Any' => '0.20',
66 'Context::Preserve' => '0.01',
2b8cc2f2 67 'Data::Dumper::Concise' => '2.020',
8057ed01 68 'Data::Page' => '2.00',
90fb8e19 69 'Devel::GlobalDestruction' => '0.09',
b8d22f13 70 'Hash::Merge' => '0.12',
dfd722ef 71 'Moo' => '1.000006',
90fb8e19 72 'MRO::Compat' => '0.12',
73 'Module::Find' => '0.07',
74 'namespace::clean' => '0.24',
f4d7449c 75 'Path::Class' => '0.18',
b7b18f32 76 'Scope::Guard' => '0.03',
6612e610 77 'SQL::Abstract' => '1.73',
90fb8e19 78 'Try::Tiny' => '0.07',
45150bc4 79
80 # Technically this is not a core dependency - it is only required
81 # by the MySQL codepath. However this particular version is bundled
82 # since 5.10.0 and is a pure-perl module anyway - let it slide
83 'Text::Balanced' => '2.00',
fc4b0448 84};
cd122820 85
fc4b0448 86my $build_requires = {
87 # needed for testing only, not for operation
88 # we will move away from this dep eventually, perhaps to DBD::CSV or something
89 'DBD::SQLite' => '1.29',
8057ed01 90};
91
fc4b0448 92my $test_requires = {
93 'File::Temp' => '0.22',
52864fbd 94 'Test::Deep' => '0.101',
fc4b0448 95 'Test::Exception' => '0.31',
96 'Test::Warn' => '0.21',
97 'Test::More' => '0.94',
98 # not sure if this is necessary at all, ask schwern some day
99 'Test::Builder' => '0.94',
100
101 # this is already a dep of n::c, but just in case - used by t/55namespaces_cleaned.t
102 # remove and do a manual glob-collection if n::c is no longer a dep
103 'Package::Stash' => '0.28',
104};
bb7950c0 105
20beaf5f 106# if the user has this env var set and no SQLT installed, tests will fail
107# same rationale for direct test_requires as the strictures stuff above
108# (even though no dist will be created from this)
109# we force this req regarless of author_deps, worst case scenario it will
110# be specified twice
111if ($ENV{DBICTEST_SQLT_DEPLOY}) {
112 local @INC = ('lib', @INC);
113 require DBIx::Class::Optional::Dependencies;
114 my $dep_req = DBIx::Class::Optional::Dependencies->req_list_for('deploy');
115 for (keys %$dep_req) {
116 test_requires ($_ => $dep_req->{$_})
117 }
118}
119
8057ed01 120# this is so we can order requires alphabetically
fc4b0448 121# copies are needed for potential author requires injection
8057ed01 122my $reqs = {
123 build_requires => { %$build_requires },
124 requires => { %$runtime_requires },
125 test_requires => { %$test_requires },
126};
3a4251e2 127
c78f9f5b 128# only do author-includes if not part of a `make` run
129if ($Module::Install::AUTHOR and ! $ENV{MAKELEVEL}) {
fc4b0448 130 # get options here, make $args available to all snippets
131 require Getopt::Long;
132 my $getopt = Getopt::Long::Parser->new(
133 config => [qw/gnu_getopt bundling_override no_ignore_case pass_through/]
134 );
135 my $args = {
136 skip_author_deps => undef,
137 };
df65d4da 138 $getopt->getoptions($args, qw/
139 skip_author_deps|skip-author-deps
140 /);
fc4b0448 141 if (@ARGV) {
142 warn "\nIgnoring unrecognized option(s): @ARGV\n\n";
0424d17a 143 }
8057ed01 144
3ba58fe4 145 # We need the MM facilities to generate the pieces for the final MM run.
146 # Just instantiate a throaway object here
147 my $mm_proto = ExtUtils::MakeMaker->new({
3054407e 148 NORECURS => 1,
3ba58fe4 149 NAME => Meta->name || die 'The Module::Install metadata must be available at this point but is not - did you rearrange the Makefile.PL...?',
150 });
151
ffce4b65 152 # Crutch for DISTBUILDING_IN_HELL
153 # Spits back a working dos2unix snippet to be used on the supplied path(s)
154 # Ironically EUMM's dos2unix is broken on win32 itself - it does
155 # not take into account the CRLF layer present on win32
156 my $crlf_fixup = sub {
157 return '' unless ($^O eq 'MSWin32' or $^O eq 'cygwin');
158 my $targets = join ', ', map { "q($_)" } @_;
159 "\t" . $mm_proto->oneliner( qq(\$ENV{PERLIO}='unix' and system( \$^X, qw( -MExtUtils::Command -e dos2unix -- ), $targets ) ) );
160 };
161
e01862e4 162 # we are in the process of (re)writing the makefile - some things we
163 # call below very well may fail
164 local $ENV{DBICTEST_NO_MAKEFILE_VERIFICATION} = 1;
165
fc4b0448 166 require File::Spec;
167 # string-eval, not do(), because we need to provide the
3ba58fe4 168 # $mm_proto, $reqs and $*_requires lexicals to the included file
fc4b0448 169 # (some includes *do* modify $reqs above)
8baa2122 170 for my $inc (sort glob ( File::Spec->catfile('maint', 'Makefile.PL.inc', '*') ) ) {
171 my $src = do { local (@ARGV, $/) = $inc; <> } or die $!;
172 eval "use warnings; use strict; $src" or die sprintf
173 "Failed execution of %s: %s\n",
174 $inc,
175 ($@ || $! || 'Unknown error'),
176 ;
0424d17a 177 }
8057ed01 178}
fc4b0448 179else {
180 # make sure this Makefile can not be used to make a dist
0e016219 181 # (without the author includes there are no meta cleanup, no sanity checks, etc)
fc4b0448 182 postamble <<EOP;
fc4b0448 183create_distdir: nonauthor_stop_distdir_creation
184nonauthor_stop_distdir_creation:
185\t\$(NOECHO) \$(ECHO) Creation of dists in non-author mode is not allowed
186\t\$(NOECHO) \$(FALSE)
187EOP
188}
8057ed01 189
190# compose final req list, for alphabetical ordering
191my %final_req;
192for my $rtype (keys %$reqs) {
193 for my $mod (keys %{$reqs->{$rtype}} ) {
194
195 # sanity check req duplications
196 if ($final_req{$mod}) {
b718fd0a 197 die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n";
8057ed01 198 }
199
200 $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ],
201 }
202}
203
204# actual require
205for my $mod (sort keys %final_req) {
206 my ($rtype, $ver) = @{$final_req{$mod}};
207 no strict 'refs';
208 $rtype->($mod, $ver);
209}
a410299d 210
fc4b0448 211# author-mode or not - this is where we show a list of missing deps
212# IFF we are running interactively
92f8f62a 213auto_install();
a410299d 214
713cc98e 215WriteAll();