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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8EECA13997D for ; Tue, 12 Nov 2019 13:29:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C07EBE08A8; Tue, 12 Nov 2019 13:29:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A8FBAE08A8 for ; Tue, 12 Nov 2019 13:29:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B581134CC18 for ; Tue, 12 Nov 2019 13:29:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C6988A6 for ; Tue, 12 Nov 2019 13:29:32 +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: <1573565354.82f5d6171796773d32ccca98365228433e8a8bca.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: 82f5d6171796773d32ccca98365228433e8a8bca X-VCS-Branch: master Date: Tue, 12 Nov 2019 13:29:32 +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: 990cab8a-4919-4293-b4e7-fd8613685e09 X-Archives-Hash: 5ff555d5eb6e5965cf61472f777b8a3e commit: 82f5d6171796773d32ccca98365228433e8a8bca Author: Michał Górny gentoo org> AuthorDate: Tue Nov 12 13:29:14 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 12 13:29:14 2019 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=82f5d617 gpyutils: Add py3.7 to 3.8 reports 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 15a4a12..30e6ce5 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)/35-to-36.txt $(outdir)/36-to-37.txt +upgr_base = $(outdir)/35-to-36.txt $(outdir)/36-to-37.txt $(outdir)/37-to-38.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff @@ -59,6 +59,16 @@ $(outdir)/36-to-37-stablereq.txt: $(timestamp) gpy-upgrade-impl -s python3_6 python3_7 > $@.new mv $@.new $@ +$(outdir)/37-to-38.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl python3_7 python3_8 > $@.new + mv $@.new $@ + +$(outdir)/37-to-38-stablereq.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl -s python3_7 python3_8 > $@.new + mv $@.new $@ + $(outdir)/pypy3-to-36.txt: $(timestamp) mkdir -p $(outdir) gpy-upgrade-impl pypy3 python3_6 > $@.new