Commit | Line | Data |
89b5b1c5 |
1 | use inc::Module::Install 0.89; |
fe650234 |
2 | use strict; |
3 | use warnings; |
76607ac8 |
4 | use POSIX (); |
fe650234 |
5 | |
6 | use 5.006001; # delete this line if you want to send patches for earlier. |
ce4c07df |
7 | |
93c50889 |
8 | # ****** DO NOT ADD OPTIONAL DEPENDENCIES. EVER. --mst ****** |
9 | |
ce4c07df |
10 | name 'DBIx-Class'; |
ce4c07df |
11 | perl_version '5.006001'; |
8e0f16f1 |
12 | all_from 'lib/DBIx/Class.pm'; |
ce4c07df |
13 | |
3a4251e2 |
14 | |
d3523053 |
15 | test_requires 'Test::Builder' => '0.33'; |
16 | test_requires 'Test::Deep' => '0'; |
17 | test_requires 'Test::Exception' => '0'; |
18 | test_requires 'Test::More' => '0.92'; |
19 | test_requires 'Test::Warn' => '0.21'; |
ce4c07df |
20 | |
d3523053 |
21 | test_requires 'File::Temp' => '0.22'; |
4b6337d5 |
22 | |
a410299d |
23 | |
2f8a12ff |
24 | # Core |
d3523053 |
25 | requires 'List::Util' => '0'; |
26 | requires 'Scalar::Util' => '0'; |
27 | requires 'Storable' => '0'; |
ce4c07df |
28 | |
ce4c07df |
29 | # Perl 5.8.0 doesn't have utf8::is_utf8() |
d3523053 |
30 | requires 'Encode' => '0' if ($] <= 5.008000); |
d9a898ca |
31 | |
3a4251e2 |
32 | # Dependencies (keep in alphabetical order) |
d3523053 |
33 | requires 'Carp::Clan' => '6.0'; |
34 | requires 'Class::Accessor::Grouped' => '0.09000'; |
35 | requires 'Class::C3::Componentised' => '1.0005'; |
36 | requires 'Class::Inspector' => '1.24'; |
37 | requires 'Data::Page' => '2.00'; |
38 | requires 'DBD::SQLite' => '1.25'; |
39 | requires 'DBI' => '1.605'; |
40 | requires 'JSON::Any' => '1.18'; |
41 | requires 'MRO::Compat' => '0.09'; |
42 | requires 'Module::Find' => '0.06'; |
43 | requires 'Path::Class' => '0.16'; |
44 | requires 'Scope::Guard' => '0.03'; |
517f9130 |
45 | requires 'SQL::Abstract' => '1.60'; |
d3523053 |
46 | requires 'SQL::Abstract::Limit' => '0.13'; |
47 | requires 'Sub::Name' => '0.04'; |
68628159 |
48 | requires 'Data::Dumper::Concise' => '1.000'; |
82fae370 |
49 | |
a410299d |
50 | my %replication_requires = ( |
d3523053 |
51 | 'Moose', => '0.87', |
52 | 'MooseX::AttributeHelpers' => '0.21', |
53 | 'MooseX::Types', => '0.16', |
54 | 'namespace::clean' => '0.11', |
55 | 'Hash::Merge', => '0.11', |
a410299d |
56 | ); |
fe650234 |
57 | |
3c44586e |
58 | #************************************************************************# |
59 | # Make *ABSOLUTELY SURE* that nothing on this list is a real require, # |
60 | # since every module listed in %force_requires_if_author is deleted # |
61 | # from the final META.yml (thus will never make it as a CPAN dependency) # |
62 | #************************************************************************# |
82fae370 |
63 | my %force_requires_if_author = ( |
a410299d |
64 | %replication_requires, |
65 | |
b2b2e7fd |
66 | # when changing also adjust $DBIx::Class::Storage::DBI::minimum_sqlt_version |
3c44586e |
67 | 'SQL::Translator' => '0.11002', |
68 | |
d3523053 |
69 | # 'Module::Install::Pod::Inherit' => '0.01', |
9ac2c0f8 |
70 | |
dc4600b2 |
71 | # when changing also adjust version in t/02pod.t |
72 | 'Test::Pod' => '1.26', |
73 | |
74 | # when changing also adjust version in t/03podcoverage.t |
75 | 'Test::Pod::Coverage' => '1.08', |
76 | 'Pod::Coverage' => '0.20', |
77 | |
9ac2c0f8 |
78 | # CDBI-compat related |
d3523053 |
79 | 'DBIx::ContextualFetch' => '0', |
80 | 'Class::DBI::Plugin::DeepAbstractSearch' => '0', |
81 | 'Class::Trigger' => '0', |
82 | 'Time::Piece::MySQL' => '0', |
83 | 'Clone' => '0', |
84 | 'Date::Simple' => '3.03', |
9ac2c0f8 |
85 | |
86 | # t/52cycle.t |
d3523053 |
87 | 'Test::Memory::Cycle' => '0', |
88 | 'Devel::Cycle' => '1.10', |
9ac2c0f8 |
89 | |
40f75181 |
90 | # t/36datetime.t |
c96454c3 |
91 | # t/60core.t |
d3523053 |
92 | 'DateTime::Format::SQLite' => '0', |
5fc1107f |
93 | |
40f75181 |
94 | # t/96_is_deteministic_value.t |
d3523053 |
95 | 'DateTime::Format::Strptime'=> '0', |
40f75181 |
96 | |
3a4251e2 |
97 | # database-dependent reqs |
98 | # |
9d2b098e |
99 | $ENV{DBICTEST_PG_DSN} |
3a4251e2 |
100 | ? ( |
d3523053 |
101 | 'Sys::SigAction' => '0', |
102 | 'DBD::Pg' => '2.009002', |
103 | 'DateTime::Format::Pg' => '0', |
3a4251e2 |
104 | ) : () |
9d2b098e |
105 | , |
106 | |
3a4251e2 |
107 | $ENV{DBICTEST_MYSQL_DSN} |
108 | ? ( |
d3523053 |
109 | 'DateTime::Format::MySQL' => '0', |
3a4251e2 |
110 | ) : () |
111 | , |
c96454c3 |
112 | |
d0f52dd4 |
113 | $ENV{DBICTEST_ORA_DSN} |
3a4251e2 |
114 | ? ( |
d3523053 |
115 | 'DateTime::Format::Oracle' => '0', |
3a4251e2 |
116 | ) : () |
117 | , |
d867eeda |
118 | |
119 | $ENV{DBICTEST_SYBASE_DSN} |
120 | ? ( |
121 | 'DateTime::Format::Sybase' => 0, |
122 | ) : () |
123 | , |
fe650234 |
124 | ); |
3c44586e |
125 | #************************************************************************# |
4256480a |
126 | # Make ABSOLUTELY SURE that nothing on the list above is a real require, # |
3c44586e |
127 | # since every module listed in %force_requires_if_author is deleted # |
128 | # from the final META.yml (thus will never make it as a CPAN dependency) # |
129 | #************************************************************************# |
fe650234 |
130 | |
a410299d |
131 | |
132 | install_script (qw| |
133 | script/dbicadmin |
134 | |); |
135 | |
136 | tests_recursive (qw| |
137 | t |
138 | |); |
139 | |
140 | resources 'IRC' => 'irc://irc.perl.org/#dbix-class'; |
141 | resources 'license' => 'http://dev.perl.org/licenses/'; |
1d682114 |
142 | resources 'repository' => 'http://dev.catalyst.perl.org/repos/bast/DBIx-Class/'; |
a410299d |
143 | resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class'; |
144 | |
974fe5e8 |
145 | # Deprecated/internal modules need no exposure |
146 | no_index directory => $_ for (qw| |
147 | lib/DBIx/Class/SQLAHacks |
148 | lib/DBIx/Class/PK/Auto |
149 | |); |
150 | no_index package => $_ for (qw/ |
151 | DBIx::Class::Storage::DBI::AmbiguousGlob |
152 | DBIx::Class::SQLAHacks DBIx::Class::Storage::DBIHacks |
153 | /); |
a410299d |
154 | |
155 | # re-build README and require extra modules for testing if we're in a checkout |
156 | |
fe650234 |
157 | if ($Module::Install::AUTHOR) { |
d7fda552 |
158 | warn <<'EOW'; |
159 | ****************************************************************************** |
160 | ****************************************************************************** |
161 | *** *** |
162 | *** AUTHOR MODE: all optional test dependencies converted to hard requires *** |
163 | *** *** |
164 | ****************************************************************************** |
165 | ****************************************************************************** |
166 | |
167 | EOW |
269228af |
168 | |
3a4251e2 |
169 | foreach my $module (sort keys %force_requires_if_author) { |
80ff5ae0 |
170 | build_requires ($module => $force_requires_if_author{$module}); |
171 | } |
269228af |
172 | |
7ff18dbd |
173 | print "Regenerating README\n"; |
80ff5ae0 |
174 | system('pod2text lib/DBIx/Class.pm > README'); |
269228af |
175 | |
7ff18dbd |
176 | if (-f 'MANIFEST') { |
177 | print "Removing MANIFEST\n"; |
178 | unlink 'MANIFEST'; |
179 | } |
044e70c7 |
180 | |
a410299d |
181 | # require Module::Install::Pod::Inherit; |
182 | # PodInherit(); |
7ff18dbd |
183 | } |
269228af |
184 | |
7ff18dbd |
185 | auto_install(); |
09d46657 |
186 | |
713cc98e |
187 | WriteAll(); |
09d46657 |
188 | |
80ff5ae0 |
189 | # Re-write META.yml to _exclude_ all forced requires (we do not want to ship this) |
713cc98e |
190 | if ($Module::Install::AUTHOR) { |
713cc98e |
191 | |
80ff5ae0 |
192 | Meta->{values}{build_requires} = [ grep |
193 | { not exists $force_requires_if_author{$_->[0]} } |
194 | ( @{Meta->{values}{build_requires}} ) |
195 | ]; |
713cc98e |
196 | |
713cc98e |
197 | Meta->write; |
09d46657 |
198 | } |