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 083A515806E for ; Wed, 24 May 2023 07:07:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F6C8E07E1; Wed, 24 May 2023 07:07:13 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 14920E07E1 for ; Wed, 24 May 2023 07:07:13 +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 238EB340D78 for ; Wed, 24 May 2023 07:07:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8FB52A67 for ; Wed, 24 May 2023 07:07:10 +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: <1684912017.c3702bded26f1acfa69c12b5ff5c73bac11999e6.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: c3702bded26f1acfa69c12b5ff5c73bac11999e6 X-VCS-Branch: master Date: Wed, 24 May 2023 07:07:10 +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: ba865c64-ffc5-4ab3-8973-70700df40e15 X-Archives-Hash: afe467b9a978a5f538f12e8fb47c2b98 commit: c3702bded26f1acfa69c12b5ff5c73bac11999e6 Author: Sam James gentoo org> AuthorDate: Wed May 24 07:06:57 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 24 07:06:57 2023 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=c3702bde Makefile.gpyutils: try to enable Python 3.12 lists We're hoping that this is doable even this early on given ros is gone now.. Signed-off-by: Sam James gentoo.org> Makefile.gpyutils | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index 52e1ce2..df7547d 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -6,7 +6,7 @@ timestamp = $(PORTDIR)/metadata/timestamp.commit outdir = /dev/null # upgrades for stable impls -upgr_base = $(outdir)/310-to-311.txt +upgr_base = $(outdir)/310-to-311.txt #$(outdir)/311-to-312.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff @@ -20,6 +20,16 @@ all = $(upgr_all) all: $(all) +$(outdir)/311-to-312.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl -m python3_11 python3_12 > $@.new + mv $@.new $@ + +#$(outdir)/311-to-312-stablereq.txt: $(timestamp) +# mkdir -p $(outdir) +# gpy-upgrade-impl -m -s python3_11 python3_12 > $@.new +# mv $@.new $@ + $(outdir)/310-to-311.txt: $(timestamp) mkdir -p $(outdir) gpy-upgrade-impl -m python3_10 python3_11 > $@.new