From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 69E3715808C for ; Wed, 23 Feb 2022 15:51:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A1C8E095F; Wed, 23 Feb 2022 15:51:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7083DE095F for ; Wed, 23 Feb 2022 15:51:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3A9D7342CFD for ; Wed, 23 Feb 2022 15:51:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98C4C2A5 for ; Wed, 23 Feb 2022 15:51:00 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1645631391.c030e871a8d47b6072cd347d9aaf031ce29dc77c.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: / X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c030e871a8d47b6072cd347d9aaf031ce29dc77c X-VCS-Branch: master Date: Wed, 23 Feb 2022 15:51:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: af30e5d9-bcca-41ef-b296-71efd1c1eb94 X-Archives-Hash: ce61c319a1b7dac1be03dc0f43d43f19 commit: c030e871a8d47b6072cd347d9aaf031ce29dc77c Author: Michał Górny gentoo org> AuthorDate: Wed Feb 23 15:49:51 2022 +0000 Commit: Michał Górny gentoo 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 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