summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDmitry Bogatov <KAction@debian.org>2019-05-28 21:10:02 +0000
committerDmitry Bogatov <KAction@debian.org>2019-05-28 21:30:40 +0000
commite4b8e832194949b228db4fd00eab558dfc8b7d27 (patch)
treea3a3dccdf1ba568686411f769857758372c33165 /Makefile
parent8eddb040f95b7e6a2ebb4700c4518e76b7c5b294 (diff)
Refactor creation of logscript
Instead of using interpolation and here-strings, write function that renders mustache template. This approach makes code cleaner and more scalable. * data/logscript: add mustach template of 'log/run' script, that is installed when "logscript" option in effect. * Makefile: set DH_RUNIT_DATADIR variable in "check" target. This way, templates from ./data/ directory are used, not from system location. * debian/control: add dependency on Text::Hogan library -- implementation of "mustache" templating standard. * dh_runit(template_from_data_directory): new function * dh_runit: install 'log/run' with "template_from_data_directory" function. * t/928935.t: check that "logscript" option correctly creates 'log/run' script, with correct permissions.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2f77795..0a6c500 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,9 @@
1all: 1all:
2check: 2check:
3 PATH=$(CURDIR):$(PATH) DH_AUTOSCRIPTDIR=$(CURDIR) prove -I. 3 PATH=$(CURDIR):$(PATH) \
4 DH_AUTOSCRIPTDIR=$(CURDIR) \
5 DH_RUNIT_DATADIR=$(CURDIR)/data \
6 prove -I.
4autopkgtest: 7autopkgtest:
5 prove -I. 8 prove -I.
6.PHONY: check 9.PHONY: check