release 0.08123
[dbsrgits/DBIx-Class.git] / Makefile.PL
CommitLineData
f90896ae 1use inc::Module::Install 0.97;
fe650234 2use strict;
3use warnings;
76607ac8 4use POSIX ();
fe650234 5
55087b99 6use 5.008001;
ce4c07df 7
8057ed01 8use FindBin;
9use lib "$FindBin::Bin/lib";
93c50889 10
97f9f16e 11# adjust ENV for $AUTHOR system() calls
12use Config;
13$ENV{PERL5LIB} = join ($Config{path_sep}, @INC);
14
0424d17a 15use Getopt::Long qw/:config gnu_getopt bundling_override no_ignore_case pass_through/;
16my $args = {
17 skip_author_deps => undef,
18};
19GetOptions ($args, 'skip_author_deps');
20if (@ARGV) {
21 warn "\nIgnoring unrecognized option(s): @ARGV\n\n";
22}
97f9f16e 23
4b5544ad 24###
25### DO NOT ADD OPTIONAL DEPENDENCIES HERE, EVEN AS recommends()
26### All of them should go to DBIx::Class::Optional::Dependencies
27###
28
ce4c07df 29name 'DBIx-Class';
b50d0dd3 30perl_version '5.008001';
8e0f16f1 31all_from 'lib/DBIx/Class.pm';
ce4c07df 32
8057ed01 33my $build_requires = {
30da8374 34 'DBD::SQLite' => '1.25',
8057ed01 35};
36
37my $test_requires = {
30da8374 38 'File::Temp' => '0.22',
39 'Test::Builder' => '0.33',
30da8374 40 'Test::Exception' => '0',
41 'Test::More' => '0.92',
42 'Test::Warn' => '0.21',
8057ed01 43};
44
45my $runtime_requires = {
8057ed01 46 'Carp::Clan' => '6.0',
b182d87b 47 'Class::Accessor::Grouped' => '0.09003',
8057ed01 48 'Class::C3::Componentised' => '1.0005',
49 'Class::Inspector' => '1.24',
50 'Data::Page' => '2.00',
51 'DBI' => '1.609',
c1fdb460 52 'File::Path' => '2.07',
8057ed01 53 'MRO::Compat' => '0.09',
54 'Module::Find' => '0.06',
f4d7449c 55 'Path::Class' => '0.18',
887d8da0 56 'SQL::Abstract' => '1.67',
8057ed01 57 'SQL::Abstract::Limit' => '0.13',
58 'Sub::Name' => '0.04',
59 'Data::Dumper::Concise' => '1.000',
b7b18f32 60 'Scope::Guard' => '0.03',
61 'Context::Preserve' => '0.01',
20674fcd 62 'Try::Tiny' => '0.04',
ecb68746 63 'namespace::clean' => '0.14',
3b5c273e 64 'Math::BigInt' => '1.89',
63ca94e1 65 'Math::Base36' => '0.07',
8057ed01 66};
67
68# this is so we can order requires alphabetically
69# copies are needed for author requires injection
70my $reqs = {
71 build_requires => { %$build_requires },
72 requires => { %$runtime_requires },
73 test_requires => { %$test_requires },
74};
3a4251e2 75
8057ed01 76
92f8f62a 77# require extra modules for testing if we're in a checkout
0424d17a 78my $optdep_msg;
92f8f62a 79if ($Module::Install::AUTHOR) {
0424d17a 80 if ($args->{skip_author_deps}) {
81 $optdep_msg = <<'EOW';
82
83******************************************************************************
84******************************************************************************
85*** ***
86*** IGNORING AUTHOR MODE: no optional test dependencies will be forced. ***
87*** ***
88*** If you are using this checkout with the intention of submitting a DBIC ***
89*** patch, you are *STRONGLY ENCOURAGED* to install all dependencies, so ***
90*** that every possible unit-test will run. ***
91*** ***
92******************************************************************************
93******************************************************************************
94
95EOW
96 }
97 else {
98 $optdep_msg = <<'EOW';
99
8057ed01 100******************************************************************************
101******************************************************************************
102*** ***
103*** AUTHOR MODE: all optional test dependencies converted to hard requires ***
0424d17a 104*** ( to disabled re-run Makefile.PL with --skip_author_deps ) ***
8057ed01 105*** ***
106******************************************************************************
107******************************************************************************
108
109EOW
110
0424d17a 111 require DBIx::Class::Optional::Dependencies;
112 $reqs->{test_requires} = {
113 %{$reqs->{test_requires}},
114 map { %$_ } (values %{DBIx::Class::Optional::Dependencies->req_group_list}),
115 };
116 }
8057ed01 117}
118
119# compose final req list, for alphabetical ordering
120my %final_req;
121for my $rtype (keys %$reqs) {
122 for my $mod (keys %{$reqs->{$rtype}} ) {
123
124 # sanity check req duplications
125 if ($final_req{$mod}) {
b718fd0a 126 die "$mod specified as both a '$rtype' and a '$final_req{$mod}[0]'\n";
8057ed01 127 }
128
129 $final_req{$mod} = [ $rtype, $reqs->{$rtype}{$mod}||0 ],
130 }
131}
132
133# actual require
134for my $mod (sort keys %final_req) {
135 my ($rtype, $ver) = @{$final_req{$mod}};
136 no strict 'refs';
137 $rtype->($mod, $ver);
138}
a410299d 139
0424d17a 140# output twice since the deplist is > 70 lines
f90896ae 141warn $optdep_msg if $Module::Install::AUTHOR;
92f8f62a 142auto_install();
f90896ae 143warn $optdep_msg if $Module::Install::AUTHOR;
92f8f62a 144
145# re-create various autogenerated documentation bits
146if ($Module::Install::AUTHOR) {
147
148 print "Regenerating README\n";
149 system('pod2text lib/DBIx/Class.pm > README');
150
151 if (-f 'MANIFEST') {
152 print "Removing MANIFEST\n";
153 unlink 'MANIFEST';
154 }
155
92f8f62a 156 print "Regenerating Optional/Dependencies.pod\n";
157 require DBIx::Class::Optional::Dependencies;
158 DBIx::Class::Optional::Dependencies->_gen_pod;
159
160 # FIXME Disabled due to unsolved issues, ask theorbtwo
161 # require Module::Install::Pod::Inherit;
162 # PodInherit();
163}
164
f90896ae 165
7eaae8db 166tests_recursive (qw|
167 t
168|);
169
f90896ae 170# temporary(?) until I get around to fix M::I wrt xt/
171# needs Module::Install::AuthorTests
c1fdb460 172eval {
7f2c37b8 173 recursive_author_tests (qw/xt/);
174 1;
175} || do {
22a2062e 176 unless ($args->{skip_author_deps}) {
177 my $err = $@;
178 eval { require Module::Install::AuthorTests }
eeaf8701 179 || die "\nYou need Module::Install::AuthorTests installed to run this Makefile.PL in author mode (or supply --skip_author_deps):\n\n$@\n";
22a2062e 180 die $@;
181 }
7f2c37b8 182};
f90896ae 183
184
a410299d 185install_script (qw|
186 script/dbicadmin
187|);
188
7eaae8db 189
190### Mangle makefile - read the comments for more info
191#
192postamble <<"EOP";
193
194# This will add an extra dep-spec for the distdir target,
195# which `make` will fold together in a first-come first-serve
196# fashion. What we do here is essentially adding extra
197# commands to execute once the distdir is assembled (via
198# create_distdir), but before control is returned to a higher
199# calling rule.
200distdir : dbicadmin_pod_inject
201
202# The pod self-injection code is in fact a hidden option in
203# dbicadmin itself
204dbicadmin_pod_inject :
205\tcd \$(DISTVNAME) && \$(ABSPERL) -Ilib script/dbicadmin --selfinject-pod
206
207# Regenerate manifest before running create_distdir.
208create_distdir : manifest
209
210EOP
211
f90896ae 212homepage 'http://www.dbix-class.org/';
a410299d 213resources 'IRC' => 'irc://irc.perl.org/#dbix-class';
214resources 'license' => 'http://dev.perl.org/licenses/';
aeb669b8 215resources 'repository' => 'git://git.shadowcat.co.uk/dbsrgits/DBIx-Class.git';
a410299d 216resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class';
217
974fe5e8 218# Deprecated/internal modules need no exposure
219no_index directory => $_ for (qw|
bc6f129c 220 lib/DBIx/Class/Admin
974fe5e8 221 lib/DBIx/Class/SQLAHacks
281738a4 222 lib/DBIx/Class/PK/Auto
bc6f129c 223 lib/DBIx/Class/CDBICompat
974fe5e8 224|);
225no_index package => $_ for (qw/
974fe5e8 226 DBIx::Class::SQLAHacks DBIx::Class::Storage::DBIHacks
227/);
a410299d 228
269228af 229
713cc98e 230WriteAll();
09d46657 231
80ff5ae0 232# Re-write META.yml to _exclude_ all forced requires (we do not want to ship this)
1278e5f0 233# We are also not using M::I::AuthorRequires as this will be an extra dep, and
234# deps in Makefile.PL suck (no autoinstall)
0424d17a 235if ($Module::Install::AUTHOR && ! $args->{skip_author_deps} ) {
713cc98e 236
8057ed01 237 # FIXME test_requires is not yet part of META
238 my %original_build_requires = ( %$build_requires, %$test_requires );
1278e5f0 239 my @all_build_requires = @{delete Meta->{values}{build_requires}};
240 my %removed_build_requires;
8057ed01 241
1278e5f0 242 for (@all_build_requires) {
243 if ($original_build_requires{$_->[0]}) {
244 push @{Meta->{values}{build_requires}}, $_;
245 }
246 else {
247 $removed_build_requires{$_->[0]} = $_->[1]
248 unless $_->[0] eq 'ExtUtils::MakeMaker';
249 }
250 }
713cc98e 251
1278e5f0 252 print "Regenerating META with author requires excluded\n";
713cc98e 253 Meta->write;
1278e5f0 254
255 # test that we really took things away (just in case)
256 my $meta = do { local @ARGV = 'META.yml'; local $/; <> };
257 for (keys %removed_build_requires) {
258 delete $removed_build_requires{$_}
259 unless $meta =~ /^ \s+ $_: \s+ $removed_build_requires{$_} \s* $/mx
260 }
261
262 if (keys %removed_build_requires) {
263 die join ("\n", "\n\nFATAL FAIL! It looks like some author dependencies made it to the META.yml:\n",
264 map { "\t$_" } (keys %removed_build_requires)
265 ) . "\n\n";
266 }
09d46657 267}