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 9DC2D138334 for ; Tue, 10 Jul 2018 10:16:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 941BAE0959; Tue, 10 Jul 2018 10:16:05 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5C49FE0959 for ; Tue, 10 Jul 2018 10:16:05 +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 6C249335C39 for ; Tue, 10 Jul 2018 10:16:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91941349 for ; Tue, 10 Jul 2018 10:16:01 +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: <1531217752.e5f943d679b6dc3fe3391f7fb7f694b7ba488aee.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: e5f943d679b6dc3fe3391f7fb7f694b7ba488aee X-VCS-Branch: master Date: Tue, 10 Jul 2018 10:16:01 +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-Archives-Salt: 14d5de6b-7d06-4c72-86cf-0597a94817cd X-Archives-Hash: 4c76d35016d10e1d82677eef2c5b5341 commit: e5f943d679b6dc3fe3391f7fb7f694b7ba488aee Author: Michał Górny gentoo org> AuthorDate: Tue Jul 10 10:15:52 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jul 10 10:15:52 2018 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=e5f943d6 gpyutils: Enable reports for python3.7 Makefile.gpyutils | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index 3e8a9df..525057e 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)/34-to-35.txt $(outdir)/35-to-36.txt +upgr_base = $(outdir)/34-to-35.txt $(outdir)/35-to-36.txt $(outdir)/36-to-37.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff @@ -59,6 +59,16 @@ $(outdir)/35-to-36-stablereq.txt: $(timestamp) gpy-upgrade-impl -s python3_5 python3_6 > $@.new mv $@.new $@ +$(outdir)/36-to-37.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl python3_6 python3_7 > $@.new + mv $@.new $@ + +$(outdir)/36-to-37-stablereq.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl -s python3_6 python3_7 > $@.new + mv $@.new $@ + $(outdir)/pypy3-to-35.txt: $(timestamp) mkdir -p $(outdir) gpy-upgrade-impl pypy3 python3_5 > $@.new