Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: /
Date: Wed, 23 Feb 2022 15:51:04
Message-Id: 1645631391.c030e871a8d47b6072cd347d9aaf031ce29dc77c.mgorny@gentoo
1 commit: c030e871a8d47b6072cd347d9aaf031ce29dc77c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 23 15:49:51 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 23 15:49:51 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=c030e871
7
8 Makefile: remove the old tagging logic
9
10 We're moving away from date-tags and into incremental version numbers.
11
12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
13
14 Makefile | 8 --------
15 1 file changed, 8 deletions(-)
16
17 diff --git a/Makefile b/Makefile
18 index 87daee1..91ed461 100644
19 --- a/Makefile
20 +++ b/Makefile
21 @@ -1,9 +1,5 @@
22 # Makefile for gentoo-syntax
23
24 -distapp = gentoo-syntax
25 -distver := $(shell date -u +%Y%m%d)
26 -distpkg := $(distapp)-$(distver)
27 -
28 PREFIX = ${HOME}/.vim/
29
30 files = $(wildcard \
31 @@ -40,9 +36,5 @@ uninstall-files: $(foreach a, $(sort $(files)), \
32 uninstall-file-%: $(subst _,/,$*)
33 [ ! -f "$(PREFIX)/$(subst _,/,$*)" ] || rm "$(PREFIX)/$(subst _,/,$*)"
34
35 -tag:
36 - git tag -s $(distpkg)
37 - @echo "tag created, remember to push it"
38 -
39 clean:
40 find . -name '*~' | xargs rm || true