add explicit dependency on the ::Install::Files module that ExtUtils::Depends uses
[p5sagit/Devel-Declare.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3
4 use 5.008001;
5 use ExtUtils::MakeMaker;
6 (do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
7
8 use ExtUtils::Depends;
9 my $pkg = ExtUtils::Depends->new('Devel::Declare', 'B::Hooks::OP::Check');
10
11 my %TEST_DEPS = (
12     'B::Hooks::OP::Check' => '0.19',
13     'Test::More' => '0.88',
14     'Test::Requires' => '0',
15 );
16
17 # have to do this since old EUMM dev releases miss the eval $VERSION line
18 my $mymeta_works = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5707 };
19
20 WriteMakefile(
21     NAME => 'Devel::Declare',
22     AUTHOR => 'Matt S Trout - <mst@shadowcat.co.uk> - original author',
23     VERSION_FROM => 'lib/Devel/Declare.pm',
24     MIN_PERL_VERSION => '5.008001',
25
26     CONFIGURE_REQUIRES => {
27         # minimum version that works on Win32+gcc
28         'ExtUtils::Depends' => 0.302,
29
30         # minimum version that depends on ExtUtils::Depends 0.302
31         'B::Hooks::OP::Check' => '0.19',
32         'B::Hooks::OP::Check::Install::Files' => '0.19',
33     },
34
35     PREREQ_PM => {
36         'Scalar::Util' => 1.11, # set_prototype appeared in this version
37         'B::Hooks::OP::Check' => '0.19',
38         'B::Hooks::EndOfScope' => '0.05',
39         'Sub::Name' => 0,
40         ($mymeta_works ? () : (%TEST_DEPS)),
41     },
42
43     $mymeta_works ? (BUILD_REQUIRES => \%TEST_DEPS) : (),
44
45     META_MERGE => {
46         'meta-spec' => { version => 2 },
47         dynamic_config => 0,
48         resources => {
49             # r/w: p5sagit@git.shadowcat.co.uk:Devel-Declare.git
50             repository => {
51                 url => 'git://git.shadowcat.co.uk/p5sagit/Devel-Declare.git',
52                 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-Declare.git',
53                 type => 'git',
54             },
55             bugtracker => {
56                 mailto => 'bug-Devel-Declare@rt.cpan.org',
57                 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Devel-Declare',
58             },
59         },
60         x_contributors => [ # manually added, from git shortlog -e -s -n
61             'Florian Ragwitz <rafl@debian.org>',
62             'Matt S Trout <mst@shadowcat.co.uk>',
63             'Karen Etheridge <ether@cpan.org>',
64             'Zefram <zefram@fysh.org>',
65             'Rhesa Rozendaal <rhesa@cpan.org>',
66             'Ash Berlin <ash@cpan.org>',
67             'Chia-liang Kao <clkao@clkao.org>',
68             'Marcus Ramberg <marcus@nordaaker.com>',
69             'Christopher Nehren <apeiron@cpan.org>',
70             'Yuval Kogman <nothingmuch@woobling.org>',
71             'Cory Watson <gphat@cpan.org>',
72             'Alexandr Ciornii <alexchorny@gmail.com>',
73             'Father Chrysostomos <sprout@cpan.org>',
74             'Graham Knop <haarg@haarg.org>',
75             'Matthew Horsfall <WolfSage@cpan.org>',
76             'Nick Perez <nperez@cpan.org>',
77             'Yanick Champoux <yanick@babyl.dyndns.org>',
78         ],
79         x_deprecated => 1,
80     },
81
82     C => [ 'Declare.c' ],
83     XS => { 'Declare.xs' => 'Declare.c' },
84     depend => { '$(OBJECT)' => 'stolen_chunk_of_toke.c' },
85
86     $pkg->get_makefile_vars,
87 );
88