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