-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.PL
118 lines (109 loc) · 2.78 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.012.
use strict;
use warnings;
use 5.010;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
"ABSTRACT" => "ETL with a Shell",
"AUTHOR" => "Doug Bell <preaction\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "ETL-Yertl",
"EXE_FILES" => [
"bin/yfrom",
"bin/ygrok",
"bin/yq",
"bin/ysql",
"bin/yto",
"bin/yts"
],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.010",
"NAME" => "ETL::Yertl",
"PREREQ_PM" => {
"File::HomeDir" => 0,
"File::Spec" => 0,
"Getopt::Long" => "2.36",
"Hash::Merge::Simple" => 0,
"IO::Async" => "0.77",
"IO::Interactive" => 0,
"Import::Base" => "0.010",
"JSON::MaybeXS" => 0,
"List::Util" => 0,
"Module::Runtime" => 0,
"Net::Async::HTTP" => 0,
"Path::Tiny" => "0.072",
"Pod::Usage::Return" => 0,
"Regexp::Common" => "2013031301",
"SQL::Abstract" => 0,
"Time::Local" => 0,
"Time::Piece" => 0,
"URI" => 0,
"YAML::Tiny" => 0,
"boolean" => 0
},
"TEST_REQUIRES" => {
"Capture::Tiny" => 0,
"Dir::Self" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Future" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"JSON::PP" => 0,
"Mock::MonkeyPatch" => 0,
"Test::Deep" => 0,
"Test::Differences" => 0,
"Test::Exception" => 0,
"Test::Lib" => 0,
"Test::More" => "1.001005"
},
"VERSION" => "0.045",
"test" => {
"TESTS" => "t/*.t t/adapter/*.t t/bin/*.t t/command/ygrok/*.t t/command/ygrok/pattern/*.t t/command/yq/*.t t/format/*.t t/integration/*.t"
}
);
my %FallbackPrereqs = (
"Capture::Tiny" => 0,
"Dir::Self" => 0,
"ExtUtils::MakeMaker" => 0,
"File::HomeDir" => 0,
"File::Spec" => 0,
"Future" => 0,
"Getopt::Long" => "2.36",
"Hash::Merge::Simple" => 0,
"IO::Async" => "0.77",
"IO::Handle" => 0,
"IO::Interactive" => 0,
"IPC::Open3" => 0,
"Import::Base" => "0.010",
"JSON::MaybeXS" => 0,
"JSON::PP" => 0,
"List::Util" => 0,
"Mock::MonkeyPatch" => 0,
"Module::Runtime" => 0,
"Net::Async::HTTP" => 0,
"Path::Tiny" => "0.072",
"Pod::Usage::Return" => 0,
"Regexp::Common" => "2013031301",
"SQL::Abstract" => 0,
"Test::Deep" => 0,
"Test::Differences" => 0,
"Test::Exception" => 0,
"Test::Lib" => 0,
"Test::More" => "1.001005",
"Time::Local" => 0,
"Time::Piece" => 0,
"URI" => 0,
"YAML::Tiny" => 0,
"boolean" => 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);