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