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 65DA9138359 for ; Wed, 2 Sep 2020 07:20:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FEB3E0872; Wed, 2 Sep 2020 07:20:42 +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 5FE35E0872 for ; Wed, 2 Sep 2020 07:20:42 +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 E900F33B864 for ; Wed, 2 Sep 2020 07:20:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5470B2EE for ; Wed, 2 Sep 2020 07:20:39 +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: <1599031229.f415f58d1d18eb6f972baa10fb4f0f532d9a6908.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: f415f58d1d18eb6f972baa10fb4f0f532d9a6908 X-VCS-Branch: master Date: Wed, 2 Sep 2020 07:20:39 +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: efcec73b-c90a-4f1d-af83-5a8ac46a038f X-Archives-Hash: 51ff5f6ce80833803b69c2d9d13f3b94 commit: f415f58d1d18eb6f972baa10fb4f0f532d9a6908 Author: Michał Górny gentoo org> AuthorDate: Wed Sep 2 07:20:29 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 2 07:20:29 2020 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=f415f58d gpyutils: Include maintainers in upgrade-impl output Signed-off-by: Michał Górny gentoo.org> Makefile.gpyutils | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index ae93e5a..e7be59e 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -41,32 +41,32 @@ $(outdir)/depcheck.txt: $(timestamp) $(outdir)/36-to-37.txt: $(timestamp) mkdir -p $(outdir) - gpy-upgrade-impl python3_6 python3_7 > $@.new + gpy-upgrade-impl -m 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 + gpy-upgrade-impl -m -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 + gpy-upgrade-impl -m 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 + gpy-upgrade-impl -m -s python3_7 python3_8 > $@.new mv $@.new $@ $(outdir)/38-to-39.txt: $(timestamp) mkdir -p $(outdir) - gpy-upgrade-impl python3_8 python3_9 > $@.new + gpy-upgrade-impl -m python3_8 python3_9 > $@.new mv $@.new $@ $(outdir)/38-to-39-stablereq.txt: $(timestamp) mkdir -p $(outdir) - gpy-upgrade-impl -s python3_8 python3_9 > $@.new + gpy-upgrade-impl -m -s python3_8 python3_9 > $@.new mv $@.new $@ $(outdir)/py2.txt: $(timestamp)