-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
114 lines (104 loc) · 3.21 KB
/
Makefile.PL
File metadata and controls
114 lines (104 loc) · 3.21 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.032.
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "simplify common boilerplate for Perl scripts and modules",
"AUTHOR" => "Tom Molesworth <TEAM\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Full",
"LICENSE" => "perl",
"NAME" => "Full",
"PREREQ_PM" => {
"Data::Checks" => "0.10",
"Future::AsyncAwait" => "0.68",
"Future::AsyncAwait::Hooks" => "0.02",
"Future::Utils" => "0.50",
"JSON::MaybeUTF8" => "2.000",
"List::Keywords" => "0.11",
"Log::Any" => "1.717",
"Log::Any::Adapter" => "1.717",
"Metrics::Any" => "0.10",
"Object::Pad" => "0.813",
"Object::Pad::FieldAttr::Checked" => "0.12",
"Role::Tiny" => "2.002004",
"Signature::Attribute::Checked" => "0.06",
"Sublike::Extended" => "0.29",
"Syntax::Keyword::Defer" => "0.11",
"Syntax::Keyword::Dynamically" => "0.14",
"Syntax::Keyword::Match" => "0.15",
"Syntax::Keyword::Try" => "0.30",
"Syntax::Operator::Equ" => "0.10",
"Time::Moment" => "0.44",
"Time::Moment::Role::Strptime" => "0.001",
"Time::Moment::Role::TimeZone" => "1.000",
"Unicode::UTF8" => "0.62",
"bareword::filehandles" => "0.007",
"curry" => "2.000001",
"indirect" => "0.39",
"meta" => "0.008",
"multidimensional" => "0.014"
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::CheckDeps" => "0.010",
"Test::Deep" => "1.124",
"Test::Fatal" => "0.010",
"Test::More" => "0.98"
},
"VERSION" => "1.004",
"test" => {
"TESTS" => "t/*.t"
}
);
my %FallbackPrereqs = (
"Data::Checks" => "0.10",
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Future::AsyncAwait" => "0.68",
"Future::AsyncAwait::Hooks" => "0.02",
"Future::Utils" => "0.50",
"IO::Handle" => 0,
"IPC::Open3" => 0,
"JSON::MaybeUTF8" => "2.000",
"List::Keywords" => "0.11",
"Log::Any" => "1.717",
"Log::Any::Adapter" => "1.717",
"Metrics::Any" => "0.10",
"Object::Pad" => "0.813",
"Object::Pad::FieldAttr::Checked" => "0.12",
"Role::Tiny" => "2.002004",
"Signature::Attribute::Checked" => "0.06",
"Sublike::Extended" => "0.29",
"Syntax::Keyword::Defer" => "0.11",
"Syntax::Keyword::Dynamically" => "0.14",
"Syntax::Keyword::Match" => "0.15",
"Syntax::Keyword::Try" => "0.30",
"Syntax::Operator::Equ" => "0.10",
"Test::CheckDeps" => "0.010",
"Test::Deep" => "1.124",
"Test::Fatal" => "0.010",
"Test::More" => "0.98",
"Time::Moment" => "0.44",
"Time::Moment::Role::Strptime" => "0.001",
"Time::Moment::Role::TimeZone" => "1.000",
"Unicode::UTF8" => "0.62",
"bareword::filehandles" => "0.007",
"curry" => "2.000001",
"indirect" => "0.39",
"meta" => "0.008",
"multidimensional" => "0.014"
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(%WriteMakefileArgs);