forked from munin-monitoring/munin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
206 lines (165 loc) · 7.22 KB
/
Makefile
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# This Makefile provides convenience targets for common build/test/install cases, as well as rules
# for the release manager.
# In the interest of keeping this Makefile simple, it does not attempt to provide the flexibility
# provided by using Build.PL directly. (See perldoc Module::Build).
# Defaults/paths. Allows $(CONFIG) to be overridden by
# make command line
DEFAULTS = Makefile.config
CONFIG = Makefile.config
PYTHON_LINT_CALL ?= python3 -m flake8
include $(DEFAULTS)
ifneq ($(DEFAULTS),$(CONFIG))
include $(CONFIG)
endif
# the perl script is used for most perl related activities
BUILD_SCRIPT = ./Build
.PHONY: default
default: build
.PHONY: help
help:
@echo "Build targets:"
@echo " build"
@echo " clean"
@echo " doc"
@echo " install"
@echo " tar"
@echo
@echo "Test targets:"
@echo " lint"
@echo " test"
@echo " testcover"
@echo " testpod"
@echo " testpodcoverage"
@echo
.PHONY: build
build: $(BUILD_SCRIPT)
.PHONY: doc
doc:
$(MAKE) -C doc html
.PHONY: install
install: $(BUILD_SCRIPT)
"$(BUILD_SCRIPT)" install --destdir="$(DESTDIR)" --verbose
@# various directory placeholders (e.g. "@@SPOOLDIR@@") need to be replaced
grep -rl --null "@@" "$(or $(DESTDIR),.)" | xargs -0 sed -i \
-e "$$(perl -I lib -M"Munin::Common::Defaults" \
-e "Munin::Common::Defaults->print_as_sed_substitutions();")"
.PHONY: apply-formatting
apply-formatting:
# Format munin perl files with the recommend perltidy settings
# This is recommend, but NOT mandatory
@# select all scipts except munin-check
perltidy script/munin-async script/munin-asyncd script/munin-cron.PL script/munin-doc script/munin-httpd script/munin-limits script/munin-node script/munin-node-configure script/munin-run script/munin-update
@# format munin libraries
find lib/ -type f -exec perltidy {} \;
.PHONY: lint lint-munin lint-plugins lint-spelling lint-whitespace
lint: lint-munin lint-plugins lint-spelling lint-whitespace
lint-munin:
# Scanning munin code
perlcritic --profile .perlcriticrc lib/ script/
lint-plugins:
@# SC1008: ignore our weird shebang (substituted later)
@# SC1090: ignore sourcing of files with variable in path
@# SC2009: do not complain about "ps ... | grep" calls (may be platform specific)
@# SC2126: tolerate "grep | wc -l" (simple and widespread) instead of "grep -c"
@# SC2230: tolerate "which" instead of "command -v". The latter does not output a full
# path. Thus executable tests ("-x") would fail. This would need a bit of work.
# TODO: fix the remaining shellcheck issues for the missing platforms:
# aix, darwin, netbsd, sunos
# (these require tests with their specific shell implementations)
find plugins/node.d/ \
plugins/node.d.cygwin/ \
plugins/node.d.debug/ \
plugins/node.d.linux/ -type f -print0 \
| xargs -0 grep -l --null '^#!.*/bin/sh' \
| xargs -0 shellcheck --exclude=SC1008,SC1090,SC2009,SC2126,SC2230 --shell dash
find plugins/ -type f -print0 \
| xargs -0 grep -l --null "^#!.*/bin/bash" \
| xargs -0 shellcheck --exclude=SC1008,SC1090,SC2009,SC2126,SC2230 --shell bash
find plugins/ -type f -print0 \
| xargs -0 grep -l --null "^#!.*python" \
| xargs -0 $(PYTHON_LINT_CALL)
# TODO: perl plugins currently fail with perlcritic
# verify that no multigraph plugin lacks a check for the node's capability
# Three capability checks are detected:
# * perl: need__multigraph();
# * shell: is_multigraph
# * perl with "Munin::Plugin::Framework": we assume the framework takes care for it
# * manual: evaluate environment variable MUNIN_CAP_MULTIGRAPH
# Some files are excluded from the test:
# * plugins/node.d.debug/*: these plugins are used only for testing
# * AbstractMultiGraphsProvider.java: this is not a plugin
plugins_without_multigraph_check=$$(grep -rlwZ "multigraph" plugins/ \
| xargs -r -0 grep -LwE '((need|is)_multigraph|Munin::Plugin::Framework|MUNIN_CAP_MULTIGRAPH)') \
| grep -vE 'plugins/(node\.d\.debug/|.*/AbstractMultiGraphsProvider\.java)'; \
if [ -n "$$plugins_without_multigraph_check" ]; then \
echo '[ERROR] Some plugins lack a "multigraph" check (e.g. "needs_multigraph();" or "is_multigraph"):'; \
echo "$$plugins_without_multigraph_check" | sed 's/^/\t/'; false; fi >&2
lint-spelling:
# codespell misdetections may be ignored by adding the full line of text to the file .codespell.exclude
find . -type f -print0 \
| grep --null-data -vE '^\./(\.git|\.pc|doc/_build|blib|.*/blib|build|sandbox|web/static/js|contrib/plugin-gallery/www/static/js)/' \
| grep --null-data -vE '\.(svg|png|gif|ico|css|woff|woff2|ttf|eot)$$' \
| xargs -0 -r codespell --exclude-file=.codespell.exclude
lint-whitespace: FILES_WITH_TRAILING_WHITESPACE = $(shell grep -r -l --binary-files=without-match \
--exclude-dir=.git --exclude-dir=sandbox '\s$$' . \
| grep -vE '/(blib|build|_build|web/static)/' \
| grep -vE '/logo\.eps$$')
lint-whitespace:
@if [ -n "$(FILES_WITH_TRAILING_WHITESPACE)" ]; then \
echo 'Files containing trailing whitespace or non-native line endings:'; \
printf '\t%s\n' $(FILES_WITH_TRAILING_WHITESPACE); \
false; fi 2>&1
.PHONY: clean
clean: $(BUILD_SCRIPT)
"$(BUILD_SCRIPT)" realclean
rm -rf _stage
rm -f MANIFEST META.json META.yml
$(MAKE) -C doc clean
##############################
# perl module
$(BUILD_SCRIPT): Build.PL
$(PERL) Build.PL --destdir="$(DESTDIR)" --installdirs="$(INSTALLDIRS)" --verbose
######################################################################
# testing
TEST_FILES_ARG = $(addprefix --test_files , $(TEST_FILES))
.PHONY: test
test: $(BUILD_SCRIPT)
"$(BUILD_SCRIPT)" test $(TEST_FILES_ARG)
.PHONY: testcover
testcover: $(BUILD_SCRIPT)
"$(BUILD_SCRIPT)" testcover $(TEST_FILES_ARG)
.PHONY: testpod
testpod: $(BUILD_SCRIPT)
"$(BUILD_SCRIPT)" testpod $(TEST_FILES_ARG)
.PHONY: testpodcoverage
testpodcoverage: $(BUILD_SCRIPT)
"$(BUILD_SCRIPT)" testpodcoverage $(TEST_FILES_ARG)
######################################################################
# Rules for the release manager
RELEASE := $(shell $(CURDIR)/getversion)
.PHONY: tar
tar: munin-$(RELEASE).tar.gz.sha256sum
.PHONY: tar-signed
tar-signed: munin-$(RELEASE).tar.gz.asc
munin-$(RELEASE).tar.gz:
@# prevent the RELEASE file from misleading the "getversion" script
rm -f RELEASE
tempdir=$$(mktemp -d) \
&& mkdir -p "$$tempdir/munin-$(RELEASE)/" \
&& echo $(RELEASE) > "$$tempdir/munin-$(RELEASE)/RELEASE" \
&& git archive --prefix=munin-$(RELEASE)/ --format=tar --output "$$tempdir/export.tar" HEAD \
&& tar --append --file "$$tempdir/export.tar" --owner=root --group=root -C "$$tempdir" "munin-$(RELEASE)/RELEASE" \
&& gzip -9 <"$$tempdir/export.tar" >"munin-$(RELEASE).tar.gz" \
&& rm -rf "$$tempdir"
munin-$(RELEASE).tar.gz.sha256sum: munin-$(RELEASE).tar.gz
sha256sum "$<" >"$@"
munin-$(RELEASE).tar.gz.asc: munin-$(RELEASE).tar.gz
gpg --armor --detach-sign --sign "$<"
.PHONY: tar-upload
tar-upload: tar tar-signed
@if [ -z "$(UPLOAD_DIR)" ]; then echo "You need to set UPLOAD_DIR (e.g. '/srv/www/downloads.munin-monitoring.org/munin/stable')" >&2; false; fi
@if [ -z "$(UPLOAD_HOST)" ]; then echo "You need to set UPLOAD_HOST" >&2; false; fi
{ \
echo "mkdir $(UPLOAD_DIR)/$(VERSION)"; \
echo "put munin-$(VERSION).tar.gz* $(UPLOAD_DIR)/$(VERSION)/"; \
} | sftp -b - "$(UPLOAD_HOST)"