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 6534715806E for ; Wed, 24 May 2023 17:20:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98048E0788; Wed, 24 May 2023 17:20:49 +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 7AC95E0788 for ; Wed, 24 May 2023 17:20:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 72DDB33BF05 for ; Wed, 24 May 2023 17:20:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D1BA9A67 for ; Wed, 24 May 2023 17:20:46 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1684948834.0750bcb0c088d7c81e96607ec3d6e61f80149d2f.sam@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: Makefile.gpyutils X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0750bcb0c088d7c81e96607ec3d6e61f80149d2f X-VCS-Branch: master Date: Wed, 24 May 2023 17:20:46 +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: ea2ebe7e-52d1-4f09-8a89-9c313a736ca4 X-Archives-Hash: 2fc804f4c24242108492327f3605fed8 commit: 0750bcb0c088d7c81e96607ec3d6e61f80149d2f Author: Sam James gentoo org> AuthorDate: Wed May 24 17:20:34 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 24 17:20:34 2023 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=0750bcb0 Makefile.gpyutils: fix target, add instructions ... given I clearly keep getting it wrong. Signed-off-by: Sam James gentoo.org> Makefile.gpyutils | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index 906b7fa..d34f942 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -5,12 +5,17 @@ timestamp = $(PORTDIR)/metadata/timestamp.commit # pass via make! outdir = /dev/null +# Adding new implementations: +# 1. Add to upgr_all +# 2. Later, when dot doesn't take too long for it, move to upgr_txt +# 3. Once the impl is stable, move to upgr_base + # upgrades for stable impls -upgr_base = $(outdir)/310-to-311.txt $(outdir)/311-to-312.txt +upgr_base = $(outdir)/310-to-311.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff -upgr_txt = $(upgr_base) $(upgr_streq) +upgr_txt = $(upgr_base) $(upgr_streq) $(outdir)/311-to-312.txt upgr_dot = $(patsubst %.txt,%.dot,$(upgr_txt)) upgr_svg = $(patsubst %.dot,%.svg,$(upgr_dot)) # add new impls here if not stable yet, to avoid insanely huge generation times