From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 3A0D51584F2 for ; Mon, 17 Mar 2025 08:30:18 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 24968343207 for ; Mon, 17 Mar 2025 08:30:18 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 4DEB01103C7; Mon, 17 Mar 2025 08:30:14 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 488021103C7 for ; Mon, 17 Mar 2025 08:30:14 +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 014AE34319C for ; Mon, 17 Mar 2025 08:30:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 616A722B0 for ; Mon, 17 Mar 2025 08:30:12 +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: <1742200204.8914351125cc681b84be91586a5590b1aa5b51cf.mgorny@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: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8914351125cc681b84be91586a5590b1aa5b51cf X-VCS-Branch: master Date: Mon, 17 Mar 2025 08:30:12 +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: 772daba2-dfd9-42f3-ab4d-92470eff7f82 X-Archives-Hash: 7487a9de8466cdcf544544088eacab1e commit: 8914351125cc681b84be91586a5590b1aa5b51cf Author: Michał Górny gentoo org> AuthorDate: Mon Mar 17 08:28:50 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 17 08:30:04 2025 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=89143511 gpyutils: Add pypy3.10 → pypy3.11 lists Signed-off-by: Michał Górny gentoo.org> Makefile.gpyutils | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index 34f8849..ee9fa34 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -14,7 +14,7 @@ outdir = /dev/null # from 1->2. Especially e.g. git, ninja, meson, doxygen. # upgrades for stable impls -upgr_base = $(outdir)/310-to-311.txt $(outdir)/311-to-312.txt $(outdir)/312-to-313.txt +upgr_base = $(outdir)/310-to-311.txt $(outdir)/311-to-312.txt $(outdir)/312-to-313.txt $(outdir)/pypy310-to-pypy311.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff @@ -58,6 +58,16 @@ $(outdir)/310-to-311-stablereq.txt: $(timestamp) gpy-upgrade-impl -m -s python3_10 python3_11 > $@.new mv $@.new $@ +$(outdir)/pypy310-to-pypy311.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl -m pypy3 pypy3_11 > $@.new + mv $@.new $@ + +$(outdir)/pypy310-to-pypy311-stablereq.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl -m -s pypy3 pypy3_11 > $@.new + mv $@.new $@ + %.dot: %.txt gpy-depgraph -d -m python@gentoo.org $< > $@.new mv $@.new $@