| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
use 5.006; |
|
2
|
|
|
|
|
|
|
use strict; |
|
3
|
|
|
|
|
|
|
use warnings; |
|
4
|
|
|
|
|
|
|
use ExtUtils::MakeMaker; |
|
5
|
|
|
|
|
|
|
use version; |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
WriteMakefile( |
|
8
|
|
|
|
|
|
|
NAME => 'Dist::Mgr', |
|
9
|
|
|
|
|
|
|
AUTHOR => q{Steve Bertrand }, |
|
10
|
|
|
|
|
|
|
VERSION_FROM => 'lib/Dist/Mgr.pm', |
|
11
|
|
|
|
|
|
|
ABSTRACT_FROM => 'lib/Dist/Mgr.pod', |
|
12
|
|
|
|
|
|
|
LICENSE => 'perl_5', |
|
13
|
|
|
|
|
|
|
PL_FILES => {}, |
|
14
|
|
|
|
|
|
|
EXE_FILES => [qw(bin/distmgr)], |
|
15
|
|
|
|
|
|
|
MIN_PERL_VERSION => '5.014', |
|
16
|
|
|
|
|
|
|
META_MERGE => { |
|
17
|
|
|
|
|
|
|
'meta-spec' => { version => 2 }, |
|
18
|
|
|
|
|
|
|
resources => { |
|
19
|
|
|
|
|
|
|
bugtracker => { |
|
20
|
|
|
|
|
|
|
web => 'https://github.com/stevieb9/dist-mgr/issues', |
|
21
|
|
|
|
|
|
|
}, |
|
22
|
|
|
|
|
|
|
repository => { |
|
23
|
|
|
|
|
|
|
type => 'git', |
|
24
|
|
|
|
|
|
|
url => 'https://github.com/stevieb9/dist-mgr.git', |
|
25
|
|
|
|
|
|
|
web => 'https://github.com/stevieb9/dist-mgr', |
|
26
|
|
|
|
|
|
|
}, |
|
27
|
|
|
|
|
|
|
}, |
|
28
|
|
|
|
|
|
|
}, |
|
29
|
|
|
|
|
|
|
CONFIGURE_REQUIRES => { |
|
30
|
|
|
|
|
|
|
'ExtUtils::MakeMaker' => 0, |
|
31
|
|
|
|
|
|
|
}, |
|
32
|
|
|
|
|
|
|
BUILD_REQUIRES => { |
|
33
|
|
|
|
|
|
|
'Capture::Tiny' => 0, |
|
34
|
|
|
|
|
|
|
'File::Touch' => 0, |
|
35
|
|
|
|
|
|
|
'Hook::Output::Tiny' => 0, |
|
36
|
|
|
|
|
|
|
'Mock::Sub' => 0, |
|
37
|
|
|
|
|
|
|
'Test::More' => 0, |
|
38
|
|
|
|
|
|
|
}, |
|
39
|
|
|
|
|
|
|
PREREQ_PM => { |
|
40
|
|
|
|
|
|
|
'CPAN::Uploader' => 0, |
|
41
|
|
|
|
|
|
|
'File::Find::Rule' => 0, |
|
42
|
|
|
|
|
|
|
'File::Copy::Recursive' => '0.45', |
|
43
|
|
|
|
|
|
|
'File::Path' => 0, |
|
44
|
|
|
|
|
|
|
'JSON' => 0, |
|
45
|
|
|
|
|
|
|
'Module::Starter' => '1.77', |
|
46
|
|
|
|
|
|
|
'PPI' => 0, |
|
47
|
|
|
|
|
|
|
'Term::ReadKey' => 0, |
|
48
|
|
|
|
|
|
|
'Tie::File' => 0, |
|
49
|
|
|
|
|
|
|
'version' => 0, |
|
50
|
|
|
|
|
|
|
}, |
|
51
|
|
|
|
|
|
|
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, |
|
52
|
|
|
|
|
|
|
clean => { FILES => 'Dist-Mgr-*' }, |
|
53
|
|
|
|
|
|
|
); |