Bump required Module::Install version in everything. janus++
[catagits/Catalyst-Plugin-Session.git] / Makefile.PL
1 use inc::Module::Install 0.87;
2
3 if ( -e 'MANIFEST.SKIP' ) {
4     system( 'pod2text lib/Catalyst/Plugin/Session.pm > README' )
5         and die("Could not run pod2text on lib/Catalyst/Plugin/Session.pm");
6 }
7
8 is_upgrading_needed();
9
10 perl_version '5.008';
11
12 name 'Catalyst-Plugin-Session';
13 all_from 'lib/Catalyst/Plugin/Session.pm';
14
15 requires 'Catalyst::Runtime' => '5.71001';
16 requires 'namespace::clean' => '0.10';
17 requires 'Digest';
18 requires 'File::Spec';
19 requires 'File::Temp';
20 requires 'Object::Signature';
21 requires 'MRO::Compat';
22 requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00801';
23 requires 'Moose' => '0.76';
24
25 # an indirect dep. needs a certain version.
26 requires 'Tie::RefHash' => '1.34';
27
28 # for Test::Store
29 requires 'Test::More';
30
31 test_requires 'Test::Deep';
32 test_requires 'Test::Exception';
33 test_requires 'Test::MockObject' => '1.01';
34
35 WriteAll;
36
37 sub is_upgrading_needed {
38     my %state = (
39         Cookie => 0.03,
40         URI    => 0.02,
41     );
42
43     foreach my $module (keys %state) {
44         if ( eval "require Catalyst::Plugin::Session::State::$module" and
45         ${"Catalyst::Plugin::Session::State::${module}::VERSION"} < $state{$module} ) {
46             warn <<WARN;
47
48 ********** NOTE **********
49
50 Catalyst::Plugin::Session::State::$module must also be updated!
51
52 The currently installed version is *not* compatible with this version of
53 Catalyst::Plugin::Session!
54
55 The updated versions have been added to the prerequisites.
56
57 **************************
58 WARN
59         }
60     }
61 }