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 A6FD91382C5 for ; Tue, 2 Jun 2020 05:40:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B25B7E08A4; Tue, 2 Jun 2020 05:40:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 99FE0E08A4 for ; Tue, 2 Jun 2020 05:40:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 5290334F014 for ; Tue, 2 Jun 2020 05:40:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7EB726D for ; Tue, 2 Jun 2020 05:40:47 +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: <1591076445.18199dda8992e45acf9683af895c044f47df25b8.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: 18199dda8992e45acf9683af895c044f47df25b8 X-VCS-Branch: master Date: Tue, 2 Jun 2020 05:40:47 +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: ef1eb02b-2ad5-41d7-93a7-b5258525bce8 X-Archives-Hash: 919b7a569ee4b9e5859f058890bccea6 commit: 18199dda8992e45acf9683af895c044f47df25b8 Author: Michał Górny gentoo org> AuthorDate: Mon Jun 1 11:14:43 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jun 2 05:40:45 2020 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=18199dda gpyutils: Add py2 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 f8fb1b8..ae93e5a 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -10,7 +10,7 @@ upgr_base = $(outdir)/36-to-37.txt $(outdir)/37-to-38.txt $(outdir)/38-to-39.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff -upgr_txt = $(upgr_base) $(upgr_streq) +upgr_txt = $(upgr_base) $(upgr_streq) $(outdir)/py2.txt $(outdir)/py23.txt upgr_dot = $(patsubst %.txt,%.dot,$(upgr_txt)) upgr_svg = $(patsubst %.dot,%.svg,$(upgr_dot)) upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) @@ -69,6 +69,16 @@ $(outdir)/38-to-39-stablereq.txt: $(timestamp) gpy-upgrade-impl -s python3_8 python3_9 > $@.new mv $@.new $@ +$(outdir)/py2.txt: $(timestamp) + mkdir -p $(outdir) + gpy-py2 > $@.new + mv $@.new $@ + +$(outdir)/py23.txt: $(timestamp) + mkdir -p $(outdir) + gpy-py2 -3 > $@.new + mv $@.new $@ + %.dot: %.txt gpy-depgraph -m python@gentoo.org $< > $@.new mv $@.new $@