Expand notabs/eol testing to .pod and some files at the root
[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/) );
15}
4b5544ad 16
47589465 17homepage 'http://www.dbix-class.org/';
18resources 'IRC' => 'irc://irc.perl.org/#dbix-class';
19resources 'license' => 'http://dev.perl.org/licenses/';
20resources 'repository' => 'https://github.com/dbsrgits/DBIx-Class';
21resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class';
22resources 'bugtracker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBIx-Class';
23
ce4c07df 24name 'DBIx-Class';
b50d0dd3 25perl_version '5.008001';
8e0f16f1 26all_from 'lib/DBIx/Class.pm';
294c1f51 27Meta->{values}{x_authority} = 'cpan:RIBASUSHI';
ce4c07df 28
fc4b0448 29tests_recursive (qw|
30 t
31|);
8057ed01 32
fc4b0448 33install_script (qw|
34 script/dbicadmin
35|);
90cfe42b 36
fc4b0448 37###
38### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends()
39### All of them *MUST* go to DBIx::Class::Optional::Dependencies
40###
8057ed01 41my $runtime_requires = {
fc4b0448 42 # FIXME - temporary, needs throwing out for something more efficient
43 'Data::Compare' => '1.22',
44
45 # DBI itself should be capable of installation and execution in pure-perl
46 # mode. However it has never been tested yet, so consider XS for the time
47 # being
48 'DBI' => '1.57',
49
a08e7b00 50 # on older versions first() leaks
51 # for the time being make it a hard dep - when we get
52 # rid of Sub::Name will revisit this (possibility is
53 # to use Devel::HideXS to force the pure-perl version
54 # or something like that)
55 'List::Util' => '1.16',
56
fc4b0448 57 # XS (or XS-dependent) libs
58 'Sub::Name' => '0.04',
59
60 # pure-perl (FatPack-able) libs
90fb8e19 61 'Class::Accessor::Grouped' => '0.10009',
9c1700e3 62 'Class::C3::Componentised' => '1.0009',
8057ed01 63 'Class::Inspector' => '1.24',
79680fc0 64 'Config::Any' => '0.20',
65 'Context::Preserve' => '0.01',
2b8cc2f2 66 'Data::Dumper::Concise' => '2.020',
8057ed01 67 'Data::Page' => '2.00',
90fb8e19 68 'Devel::GlobalDestruction' => '0.09',
b8d22f13 69 'Hash::Merge' => '0.12',
dfd722ef 70 'Moo' => '1.000006',
90fb8e19 71 'MRO::Compat' => '0.12',
72 'Module::Find' => '0.07',
73 'namespace::clean' => '0.24',
f4d7449c 74 'Path::Class' => '0.18',
b7b18f32 75 'Scope::Guard' => '0.03',
6612e610 76 'SQL::Abstract' => '1.73',
90fb8e19 77 'Try::Tiny' => '0.07',
fc4b0448 78};
cd122820 79
fc4b0448 80my $build_requires = {
81 # needed for testing only, not for operation
82 # we will move away from this dep eventually, perhaps to DBD::CSV or something
83 'DBD::SQLite' => '1.29',
8057ed01 84};
85
fc4b0448 86my $test_requires = {
87 'File::Temp' => '0.22',
88 'Test::Exception' => '0.31',
89 'Test::Warn' => '0.21',
90 'Test::More' => '0.94',
91 # not sure if this is necessary at all, ask schwern some day
92 'Test::Builder' => '0.94',
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
9345b14c 99# make strictures.pm happy (DO NOT LIKE, TOO MUCH XS!)
100# (i.e. what if the .git/.svn is *not* because of DBIC?)
101#
102# Note - this is added as test_requires *directly*, so it gets properly
103# excluded on META.yml cleansing
104if (-e '.git' or -e '.svn') {
105 test_requires 'indirect' => '0.25';
106 test_requires 'multidimensional' => '0.008';
107 test_requires 'bareword::filehandles' => '0.003';
108}
109
20beaf5f 110# if the user has this env var set and no SQLT installed, tests will fail
111# same rationale for direct test_requires as the strictures stuff above
112# (even though no dist will be created from this)
113# we force this req regarless of author_deps, worst case scenario it will
114# be specified twice
115if ($ENV{DBICTEST_SQLT_DEPLOY}) {
116 local @INC = ('lib', @INC);
117 require DBIx::Class::Optional::Dependencies;
118 my $dep_req = DBIx::Class::Optional::Dependencies->req_list_for('deploy');
119 for (keys %$dep_req) {
120 test_requires ($_ => $dep_req->{$_})
121 }
122}
123
8057ed01 124# this is so we can order requires alphabetically
fc4b0448 125# copies are needed for potential author requires injection
8057ed01 126my $reqs = {
127 build_requires => { %$build_requires },
128 requires => { %$runtime_requires },
129 test_requires => { %$test_requires },
130};
3a4251e2 131
c78f9f5b 132# only do author-includes if not part of a `make` run
133if ($Module::Install::AUTHOR and ! $ENV{MAKELEVEL}) {
fc4b0448 134 # get options here, make $args available to all snippets
135 require Getopt::Long;
136 my $getopt = Getopt::Long::Parser->new(
137 config => [qw/gnu_getopt bundling_override no_ignore_case pass_through/]
138 );
139 my $args = {
140 skip_author_deps => undef,
141 };
df65d4da 142 $getopt->getoptions($args, qw/
143 skip_author_deps|skip-author-deps
144 /);
fc4b0448 145 if (@ARGV) {
146 warn "\nIgnoring unrecognized option(s): @ARGV\n\n";
0424d17a 147 }
8057ed01 148
fc4b0448 149 require File::Spec;
150 # string-eval, not do(), because we need to provide the
151 # $reqs and $*_requires lexicals to the included file
152 # (some includes *do* modify $reqs above)
8baa2122 153 for my $inc (sort glob ( File::Spec->catfile('maint', 'Makefile.PL.inc', '*') ) ) {
154 my $src = do { local (@ARGV, $/) = $inc; <> } or die $!;
155 eval "use warnings; use strict; $src" or die sprintf
156 "Failed execution of %s: %s\n",
157 $inc,
158 ($@ || $! || 'Unknown error'),
159 ;
0424d17a 160 }
8057ed01 161}
fc4b0448 162else {
163 # make sure this Makefile can not be used to make a dist
0e016219 164 # (without the author includes there are no meta cleanup, no sanity checks, etc)
fc4b0448 165 postamble <<EOP;
fc4b0448 166create_distdir: nonauthor_stop_distdir_creation
167nonauthor_stop_distdir_creation:
168\t\$(NOECHO) \$(ECHO) Creation of dists in non-author mode is not allowed
169\t\$(NOECHO) \$(FALSE)
170EOP
171}
8057ed01 172
173# compose final req list, for alphabetical ordering
174my %final_req;
175for my $rtype (keys %$reqs) {
176 for my $mod (keys %{$reqs->{$rtype}} ) {
177
178 # sanity check req duplications
179 if ($final_req{$mod}) {
b718fd0a 180 die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n";
8057ed01 181 }
182
183 $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ],
184 }
185}
186
187# actual require
188for my $mod (sort keys %final_req) {
189 my ($rtype, $ver) = @{$final_req{$mod}};
190 no strict 'refs';
191 $rtype->($mod, $ver);
192}
a410299d 193
fc4b0448 194# author-mode or not - this is where we show a list of missing deps
195# IFF we are running interactively
92f8f62a 196auto_install();
a410299d 197
713cc98e 198WriteAll();