forked from team-at-cpan/Ryu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
114 lines (105 loc) · 2.73 KB
/
Makefile.PL
File metadata and controls
114 lines (105 loc) · 2.73 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.012.
use strict;
use warnings;
use 5.018;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "stream and data flow handling for async code",
"AUTHOR" => "Tom Molesworth <TEAM\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Ryu",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.018",
"NAME" => "Ryu",
"PREREQ_PM" => {
"Encode" => "1.98",
"Exporter" => 0,
"Future" => "0.42",
"JSON::MaybeXS" => 0,
"List::Util" => 0,
"List::UtilsBy" => "0.10",
"Log::Any" => "1.045",
"Log::Any::Adapter" => "1.045",
"MIME::Base64" => 0,
"Ref::Util" => "0.111",
"Scalar::Util" => "1.47",
"Syntax::Keyword::Try" => "0.04",
"Text::CSV" => 0,
"curry" => "1.001",
"curry::weak" => 0,
"indirect" => 0,
"overload" => 0,
"parent" => 0,
"sort" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Log::Any::Adapter" => "1.045",
"Log::Any::Adapter::TAP" => "0.003002",
"Test::CheckDeps" => "0.010",
"Test::Deep" => "1.124",
"Test::Fatal" => "0.010",
"Test::Files" => "0.14",
"Test::More" => "0.98",
"Test::Refcount" => "0.07",
"Test::Warnings" => "0.024",
"Variable::Disposition" => "0.004"
},
"VERSION" => "1.009",
"test" => {
"TESTS" => "t/*.t t/source/*.t"
}
);
my %FallbackPrereqs = (
"Encode" => "1.98",
"Exporter" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Future" => "0.42",
"IO::Handle" => 0,
"IPC::Open3" => 0,
"JSON::MaybeXS" => 0,
"List::Util" => 0,
"List::UtilsBy" => "0.10",
"Log::Any" => "1.045",
"Log::Any::Adapter" => "1.045",
"Log::Any::Adapter::TAP" => "0.003002",
"MIME::Base64" => 0,
"Ref::Util" => "0.111",
"Scalar::Util" => "1.47",
"Syntax::Keyword::Try" => "0.04",
"Test::CheckDeps" => "0.010",
"Test::Deep" => "1.124",
"Test::Fatal" => "0.010",
"Test::Files" => "0.14",
"Test::More" => "0.98",
"Test::Refcount" => "0.07",
"Test::Warnings" => "0.024",
"Text::CSV" => 0,
"Variable::Disposition" => "0.004",
"curry" => "1.001",
"curry::weak" => 0,
"indirect" => 0,
"overload" => 0,
"parent" => 0,
"sort" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
);
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);