forked from sni/Thruk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
163 lines (145 loc) · 7.62 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
use strict;
use warnings;
use inc::Module::Install;
name 'thruk';
all_from 'lib/Thruk.pm';
license 'gpl3';
resources(
'homepage', => 'http://www.thruk.org',
'bugtracker' => 'http://github.com/sni/Thruk/issues',
'repository', => 'http://github.com/sni/Thruk',
);
requires 'parent' => 0; # required by Thruk
requires 'Module::Load' => 0; # required by Thruk
requires 'Plack' => 1; # required by Thruk
requires 'Plack::Util' => 0; # required by Thruk
requires 'FCGI' => 0; # required by Thruk
requires 'Cpanel::JSON::XS' => 0; # required by Thruk::View::JSON
requires 'HTTP::Response' => 0; # required by Thruk::UserAgent
requires 'HTTP::Request' => 0; # required by Thruk::Utils::CLI
requires 'Pod::Usage' => 0; # required by Thruk::Utils::CL
requires 'LWP::UserAgent' => 0; # required by Thruk::UserAgent
requires 'Net::HTTP' => 6.02; # required for HTTP connections. Version required due to timeout bug
requires 'URI::Escape' => 0; # required by Thruk::Controller::Root
requires 'HTML::Entities' => 0; # required by Thruk::Utils::Filter
requires 'Socket' => 0; # required by Monitoring::Livestatus
requires 'IO::Socket::IP' => 0; # required by Monitoring::Livestatus
requires 'GD' => 2.44; # required by Thruk::Utils::Trends
requires 'Template' => 0; # required by Thruk
requires 'Date::Calc' => 6.3; # required by Thruk::Utils
requires 'File::Slurp' => 0; # required by Thruk::Utils
requires 'Date::Manip' => 0; # required by Thruk::Utils
requires 'DateTime::TimeZone' => 0; # required by Panorama Plugin
requires 'DateTime' => 0; # required by Panorama Plugin
requires 'Excel::Template' => 0; # required by Thruk::Views::ExcelRenderer
requires 'IO::String' => 0; # required by Thruk::Views::ExcelRenderer
requires 'Log::Log4perl' => 1.34; # required by Thruk
requires 'Storable' => 0; # required by Thruk::Utils::External
requires 'threads' => 0; # required by Thruk::Pool::Simple
requires 'Thread::Queue' => 0; # required by Thruk::Pool::Simple
requires 'Time::HiRes' => 0; # required by Thruk::Backend::Manager
# reporting2 plugin
feature ('plugin_reports2',
-default => 0,
'MIME::Lite' => 0,
'Class::Inspector' => 0,
);
# https backends support
feature ('https_backends_support',
-default => 0,
'LWP::Protocol::https' => 0, # required by Thruk::Backend::Provider::HTTP
'LWP::Protocol::connect' => 0, # required by Thruk::Backend::Provider::HTTP
);
# mysql logcache support
feature ('mysql_support',
-default => 0,
'DBI' => 0, # required by Thruk::Backend::Provider::Mysql
'DBD::mysql' => 0, # required by Thruk::Backend::Provider::Mysql
);
# performance tweaking modules
feature ('performance_tweaking',
-default => 0,
'HTML::Escape' => 0, # required by Thruk::Utils::Filter
# 'Thruk::Utils::XS' => 0, # required by Thruk::Backend::Manager
);
# requirements test requirements
if(scalar @ARGV != 1 || $ARGV[0] ne '--checkdeps') {
feature ('author_test',
-default => 0,
'Test::Simple' => 0,
'HTML::Lint' => 0,
'File::BOM' => 0,
'Test::Cmd' => 0,
'Test::Pod' => 1.40,
'Test::Perl::Critic' => 0,
'Test::Pod::Coverage' => 0,
'Perl::Critic::Policy::Dynamic::NoIndirect' => 0,
'Perl::Critic::Policy::NamingConventions::ProhibitMixedCaseSubs' => 0,
'Perl::Critic::Policy::ValuesAndExpressions::ProhibitAccessOfPrivateData' => 0,
'Perl::Critic::Policy::Modules::ProhibitPOSIXimport' => 0,
'WWW::Mechanize::Firefox' => 0,
'Test::JavaScript' => 0,
'Test::Vars' => 0,
'Devel::Cycle' => 0,
);
};
##################################
# check plugin test symlinks
my $testlinks = {};
mkdir("t/xt") unless -d "t/xt";
for my $testdir (glob('plugins/plugins-available/*/t')) {
$testdir =~ m|/plugins-available/(.*)/t|gmx or die("test directory $testdir does not have valid format!");
my $plugin = $1;
if(!-e 't/xt/'.$plugin and !-l 't/xt/'.$plugin) {
symlink('../../plugins/plugins-available/'.$plugin.'/t', 't/xt/'.$plugin) or die("cannot create symlink ('../../plugins/plugins-available/$plugin/t', 't/xt/$plugin'): $!");
$testlinks->{$plugin} = '../../plugins/plugins-available/'.$plugin.'/t';
next;
}
my $target = readlink('t/xt/'.$plugin);
if( $target ne '../../plugins/plugins-available/'.$plugin.'/t'
and $target ne '../../plugins/plugins-enabled/'.$plugin.'/t'
) {
die('t/xt/'.$plugin.' has wrong target: '.$target.' vs. ../../plugins/plugins-available/'.$plugin.'/t');
}
$testlinks->{$plugin} = $target;
}
# check if there are some links too much
my @cur_t_links = glob('t/xt/*');
for my $link (@cur_t_links) {
my $target = readlink($link);
my $linkbasename = $link;
$linkbasename =~ s/\/\.$//gmx;
$linkbasename =~ s/^.*\///gmx;
$link =~ s/\/\.$//gmx;
if(!defined $testlinks->{$linkbasename}) {
unlink($link) or die($link.' should be deleted: '.$!);
}
elsif($testlinks->{$linkbasename} ne $target) {
die($link.' has wrong target: '.$target.' vs. '.$testlinks->{$linkbasename});
}
}
# cleanup old links
for my $rootlink (glob("./root/thruk/plugins/*")) {
unlink($rootlink) unless -e $rootlink;
}
# touch the Makefile, so Extutils skips its broken 'check_manifest()'
`touch Makefile`;
tests_recursive;
install_script glob('script/*.pl');
eval {
require CPAN;
installdeps_target();
};
WriteAll;
##################################
# patch our makefile
print `./script/thruk_patch_makefile.pl`;
# create combined javascript/css files
print `./script/thruk_create_combined_static_content.pl`;
print "created cached js/css files\n";
print `./script/thruk_set_standard_header`;
if($? != 0) {
die("failed to update standard headers");
}
print "finished\n";
exit 0