commit: c030e871a8d47b6072cd347d9aaf031ce29dc77c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 23 15:49:51 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 23 15:49:51 2022 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=c030e871
Makefile: remove the old tagging logic
We're moving away from date-tags and into incremental version numbers.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
Makefile | 8 --------
1 file changed, 8 deletions(-)
diff --git a/Makefile b/Makefile
index 87daee1..91ed461 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,5 @@
# Makefile for gentoo-syntax
-distapp = gentoo-syntax
-distver := $(shell date -u +%Y%m%d)
-distpkg := $(distapp)-$(distver)
-
PREFIX = ${HOME}/.vim/
files = $(wildcard \
@@ -40,9 +36,5 @@ uninstall-files: $(foreach a, $(sort $(files)), \
uninstall-file-%: $(subst _,/,$*)
[ ! -f "$(PREFIX)/$(subst _,/,$*)" ] || rm "$(PREFIX)/$(subst _,/,$*)"
-tag:
- git tag -s $(distpkg)
- @echo "tag created, remember to push it"
-
clean:
find . -name '*~' | xargs rm || true