From d4620b585bb8b4f55502d15c8d3c5ad7131519be Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 4 May 2016 13:54:50 +0200 Subject: neue Version: 4.0.4 --- Makefile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f9ef6a0..cb0f343 100644 --- a/Makefile +++ b/Makefile @@ -25,14 +25,14 @@ CRONDIR = /etc/cron.daily BINDIR = /usr/bin MANDIR = /usr/share/man -VERSION = 4.0.3 +VERSION = 4.0.4 all: crypt-expiry-check crypt-expiry-check.cron crypt-expiry-check.8 %: %.in sed "s/#VERSION#/$(VERSION)/; s@#CRONDIR#@$(CRONDIR)@; s@#BINDIR#@$(BINDIR)@; s@#ETCDIR#@$(ETCDIR)@" $< > $@ -.PHONY: install clean +.PHONY: install dist clean install: all install -D -m0755 crypt-expiry-check.cron $(DESTDIR)$(CRONDIR)/crypt-expiry-check @@ -43,4 +43,11 @@ install: all clean: rm -f crypt-expiry-check{,.cron,.8} +dist: clean + git status --porcelain 2> /dev/null | grep -q "\S" && (git add .; git commit -m"neue Version: $(VERSION)") || true + git tag -d v$(VERSION) && git push origin --delete v$(VERSION) || true + git tag v$(VERSION) + git push --force + git push --tags + # End of file -- cgit v1.2.3