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