-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.PL
178 lines (166 loc) · 6.02 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
use strict;
use warnings;
use 5.012;
use ExtUtils::MakeMaker;
use File::ShareDir::Install 0.03;
install_share 'share';
my %RUN_DEPS = (
'perl' => 5.012,
'Alien::Packages' => '0.003',
'CPAN::Changes' => 0,
'Class::Load' => 0,
'Digest::MD5' => 0,
'File::Basename' => 0,
'File::ShareDir' => '1.03',
'File::Find::Rule' => '0.30',
'File::Path' => '2.00',
'File::Slurp::Tiny' => 0,
'File::Spec' => 0,
'Hash::MoreUtils' => '0.04',
'List::MoreUtils' => '0.22',
'Log::Any::Adapter' => 0,
'Module::CoreList' => 0, # must fit used perl version or better
'MooX::Cmd' => '0.007',
'MooX::Log::Any' => 0,
'MooX::ConfigFromFile' => 0,
'MooX::Options' => '4.000',
'MooX::Roles::Pluggable' => 0,
'Params::Util' => '0.37',
'Pod::Select' => 0,
'Pod::Text' => 0,
# for general asynchronous operations
'IO::Async' => '0.61',
'Unix::Statgrab' => '0.102',
# for deploying
'SQL::Translator' => 0,
# cache support (currently built-in!)
'DBI' => '1.628',
'DBD::SQLite' => 0,
'File::Find::Rule::Age' => 0,
'DBIx::Class' => '0.08250',
# cpan backend
'CPAN' => 0,
'CPAN::DistnameInfo' => 0,
# pkgsrc backend
'Carp::Assert' => 0,
'Cwd' => 0,
'IO::CaptureOutput' => 0,
'File::pushd' => 0,
# bitbake backend
'URI::Simple' => 0,
# template role
'File::HomeDir' => '1.00',
'Template' => '2.20',
# create/update package
'MetaCPAN::Client' => 0,
'LWP::Protocol::https' => 0,
);
my %CONFIGURE_DEPS = (
'ExtUtils::MakeMaker' => 0,
'File::ShareDir::Install' => '0.03'
);
my %BUILD_DEPS = ( 'File::ShareDir::Install' => '0.03' );
my %TEST_DEPS = (
'Test::More' => 0.90,
);
WriteMakefile1(
MIN_PERL_VERSION => '5.012',
META_ADD => {
'meta-spec' => { version => 2 },
resources => {
repository => {
url => 'git://github.com/rehsack/Packager-Utils.git',
web => 'https://github.com/rehsack/Packager-Utils',
type => 'git',
},
license => 'http://dev.perl.org/licenses/',
},
prereqs => {
develop => {
requires => {
'Test::CPAN::Changes' => 0,
'Test::CheckManifest' => 0,
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
'Test::Pod::Spelling::CommonMistakes' => 0,
},
},
configure => {
requires => {%CONFIGURE_DEPS},
},
build => { requires => {%BUILD_DEPS} },
test => { requires => {%TEST_DEPS} },
runtime => {
requires => { %RUN_DEPS, },
recommends => {
'Log::Any::Adapter::Log4cplus' => 0,
# to allow most recent MetaCPAN::Client to cache
'CHI' => 0,
'HTTP::Tiny::Mech' => 0,
'MetaCPAN::Client' => '1.007000',
'WWW::Mechanize::Cached' => 0,
},
},
},
},
NAME => 'Packager::Utils',
VERSION_FROM => 'lib/Packager/Utils.pm',
ABSTRACT_FROM => 'lib/Packager/Utils.pm',
LICENSE => 'perl',
AUTHOR => [q{Jens Rehsack <[email protected]>}],
PREREQ_PM => \%RUN_DEPS,
BUILD_REQUIRES => \%BUILD_DEPS,
TEST_REQUIRES => \%TEST_DEPS,
test => { TESTS => 't/*.t xt/*.t' },
);
sub WriteMakefile1
{ # originally written by Alexandr Ciornii, version 0.21. Added by eumm-upgrade.
my %params = @_;
my $eumm_version = $ExtUtils::MakeMaker::VERSION;
$eumm_version = eval $eumm_version;
die "EXTRA_META is deprecated" if ( exists( $params{EXTRA_META} ) );
die "License not specified" if ( !exists( $params{LICENSE} ) );
if ( $params{TEST_REQUIRES} and ( $eumm_version < 6.6303 ) )
{
if ( $params{BUILD_REQUIRES} )
{
$params{BUILD_REQUIRES} = { %{ $params{BUILD_REQUIRES} }, %{ $params{TEST_REQUIRES} } };
}
else
{
$params{BUILD_REQUIRES} = delete $params{TEST_REQUIRES};
}
}
if ( $params{BUILD_REQUIRES} and ( $eumm_version < 6.5503 ) )
{
#EUMM 6.5502 has problems with BUILD_REQUIRES
$params{PREREQ_PM} = { %{ $params{PREREQ_PM} || {} }, %{ $params{BUILD_REQUIRES} } };
delete $params{BUILD_REQUIRES};
}
delete $params{CONFIGURE_REQUIRES} if ( $eumm_version < 6.52 );
delete $params{MIN_PERL_VERSION} if ( $eumm_version < 6.48 );
delete $params{META_MERGE} if ( $eumm_version < 6.46 );
delete $params{META_ADD}{prereqs} if ( $eumm_version < 6.58 );
delete $params{META_ADD}{'meta-spec'} if ( $eumm_version < 6.58 );
delete $params{META_ADD} if ( $eumm_version < 6.46 );
delete $params{LICENSE} if ( $eumm_version < 6.31 );
delete $params{AUTHOR} if ( $] < 5.005 );
delete $params{ABSTRACT_FROM} if ( $] < 5.005 );
delete $params{BINARY_LOCATION} if ( $] < 5.005 );
# more or less taken from Moose' Makefile.PL
if ( $params{CONFLICTS} )
{
my $ok = CheckConflicts(%params);
exit(0) if ( $params{PREREQ_FATAL} and not $ok );
my $cpan_smoker = grep { $_ =~ m/(?:CR_SMOKER|CPAN_REPORTER|AUTOMATED_TESTING)/ } keys %ENV;
unless ( $cpan_smoker || $ENV{PERL_MM_USE_DEFAULT} )
{
sleep 4 unless ($ok);
}
delete $params{CONFLICTS};
}
WriteMakefile(%params);
}
package MY;
use File::ShareDir::Install qw(postamble);
1;