From e4b8e832194949b228db4fd00eab558dfc8b7d27 Mon Sep 17 00:00:00 2001 From: Dmitry Bogatov Date: Tue, 28 May 2019 21:10:02 +0000 Subject: 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. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2f77795..0a6c500 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ all: check: - PATH=$(CURDIR):$(PATH) DH_AUTOSCRIPTDIR=$(CURDIR) prove -I. + PATH=$(CURDIR):$(PATH) \ + DH_AUTOSCRIPTDIR=$(CURDIR) \ + DH_RUNIT_DATADIR=$(CURDIR)/data \ + prove -I. autopkgtest: prove -I. .PHONY: check -- cgit v1.2.3