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 95D491584F2 for ; Mon, 17 Mar 2025 08:30:19 +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 4639A34328B for ; Mon, 17 Mar 2025 08:30:19 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 64AC91103C8; Mon, 17 Mar 2025 08:30:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 5F9591103C8 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 1EE913431DD for ; Mon, 17 Mar 2025 08:30:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 74C3C236F 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: <1742200208.0ba1663b3eeb68aaae716dca75d0d419e2c9d9c6.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: 0ba1663b3eeb68aaae716dca75d0d419e2c9d9c6 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: 35b5981c-fb14-47ca-a683-528bd8de79ad X-Archives-Hash: 65c54bca498edebbeffd5463abdf0bde commit: 0ba1663b3eeb68aaae716dca75d0d419e2c9d9c6 Author: Michał Górny gentoo org> AuthorDate: Mon Mar 17 08:29:45 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 17 08:30:08 2025 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=0ba1663b gpyutils: Remove 39-to-310.* outputs Signed-off-by: Michał Górny gentoo.org> Makefile.gpyutils | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index ee9fa34..a05f56c 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -26,7 +26,10 @@ upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) all = $(upgr_all) -all: $(all) +all: $(all) prune-old + +prune-old: + rm -f $(outdir)/39-to-310.* $(outdir)/312-to-313.txt: $(timestamp) mkdir -p $(outdir) @@ -76,4 +79,4 @@ $(outdir)/pypy310-to-pypy311-stablereq.txt: $(timestamp) dot -Tsvg $< > $@.new mv $@.new $@ -.PHONY: all +.PHONY: all prune-old