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 0707115806E for ; Thu, 25 May 2023 02:24:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40A48E07DB; Thu, 25 May 2023 02:24:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 06C9FE07DB for ; Thu, 25 May 2023 02:24:25 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 462C7340D2A for ; Thu, 25 May 2023 02:24:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE61DA67 for ; Thu, 25 May 2023 02:24:22 +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: <1684981444.92393b2ac28d0e4087eeacfe4ba365c4ee94e8db.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: 92393b2ac28d0e4087eeacfe4ba365c4ee94e8db X-VCS-Branch: master Date: Thu, 25 May 2023 02:24:22 +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: cf332b1b-9617-44fc-b1d9-3d32c4263f1c X-Archives-Hash: 5442219855348fef297d0d14bc6191ce commit: 92393b2ac28d0e4087eeacfe4ba365c4ee94e8db Author: Sam James gentoo org> AuthorDate: Thu May 25 02:24:04 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 25 02:24:04 2023 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=92393b2a Makefile.gpyutils: give up on 3.12 graphs for now I let it run for like, 9 hours locally and got nowhere. Signed-off-by: Sam James gentoo.org> Makefile.gpyutils | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index d34f942..77fa182 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -6,7 +6,7 @@ timestamp = $(PORTDIR)/metadata/timestamp.commit outdir = /dev/null # Adding new implementations: -# 1. Add to upgr_all +# 1. Create rules below & 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 @@ -15,11 +15,11 @@ 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) $(outdir)/311-to-312.txt +upgr_txt = $(upgr_base) $(upgr_streq) 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 -upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) #$(outdir)/311-to-312.txt +upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) $(outdir)/311-to-312.txt all = $(upgr_all)