Bumping version to 0.006022
[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     },
33
34     PREREQ_PM => {
35         'Scalar::Util' => 1.11, # set_prototype appeared in this version
36         'B::Hooks::OP::Check' => '0.19',
37         'B::Hooks::EndOfScope' => '0.05',
38         'Sub::Name' => 0,
39         ($mymeta_works ? () : (%TEST_DEPS)),
40     },
41
42     $mymeta_works ? (BUILD_REQUIRES => \%TEST_DEPS) : (),
43
44     META_MERGE => {
45         'meta-spec' => { version => 2 },
46         dynamic_config => 0,
47         resources => {
48             # GitHub mirrors from Shadowcat. We list it so we can get pull requests.
49             # The canonical repo is:
50             # r/o: git://git.shadowcat.co.uk/p5sagit/Devel-Declare.git
51             # r/w: p5sagit@git.shadowcat.co.uk:Devel-Declare.git
52             # web: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-Declare.git
53             repository => {
54                 url => 'https://github.com/p5sagit/Devel-Declare.git',
55                 web => 'https://github.com/p5sagit/Devel-Declare',
56                 type => 'git',
57             },
58             bugtracker => {
59                 mailto => 'bug-Devel-Declare@rt.cpan.org',
60                 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Devel-Declare',
61             },
62         },
63         x_contributors => [ # manually added, from git shortlog -e -s -n
64             'Florian Ragwitz <rafl@debian.org>',
65             'Matt S Trout <mst@shadowcat.co.uk>',
66             'Karen Etheridge <ether@cpan.org>',
67             'Zefram <zefram@fysh.org>',
68             'Rhesa Rozendaal <rhesa@cpan.org>',
69             'Ash Berlin <ash@cpan.org>',
70             'Chia-liang Kao <clkao@clkao.org>',
71             'Marcus Ramberg <marcus@nordaaker.com>',
72             'Christopher Nehren <apeiron@cpan.org>',
73             'Yuval Kogman <nothingmuch@woobling.org>',
74             'Cory Watson <gphat@cpan.org>',
75             'Alexandr Ciornii <alexchorny@gmail.com>',
76             'Father Chrysostomos <sprout@cpan.org>',
77             'Graham Knop <haarg@haarg.org>',
78             'Matthew Horsfall <WolfSage@cpan.org>',
79             'Nick Perez <nperez@cpan.org>',
80             'Yanick Champoux <yanick@babyl.dyndns.org>',
81         ],
82         x_deprecated => 1,
83     },
84
85     C => [ 'Declare.c' ],
86     XS => { 'Declare.xs' => 'Declare.c' },
87     depend => { '$(OBJECT)' => 'stolen_chunk_of_toke.c' },
88
89     $pkg->get_makefile_vars,
90 );
91