Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qa-scripts:master commit in: /
Date: Tue, 10 Jul 2018 10:16:06
Message-Id: 1531217752.e5f943d679b6dc3fe3391f7fb7f694b7ba488aee.mgorny@gentoo
1 commit: e5f943d679b6dc3fe3391f7fb7f694b7ba488aee
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 10 10:15:52 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 10 10:15:52 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=e5f943d6
7
8 gpyutils: Enable reports for python3.7
9
10 Makefile.gpyutils | 12 +++++++++++-
11 1 file changed, 11 insertions(+), 1 deletion(-)
12
13 diff --git a/Makefile.gpyutils b/Makefile.gpyutils
14 index 3e8a9df..525057e 100644
15 --- a/Makefile.gpyutils
16 +++ b/Makefile.gpyutils
17 @@ -6,7 +6,7 @@ timestamp = $(PORTDIR)/metadata/timestamp.commit
18 outdir = /dev/null
19
20 # upgrades for stable impls
21 -upgr_base = $(outdir)/34-to-35.txt $(outdir)/35-to-36.txt
22 +upgr_base = $(outdir)/34-to-35.txt $(outdir)/35-to-36.txt $(outdir)/36-to-37.txt
23 # related stabilizations
24 upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base))
25 # all upgrade stuff
26 @@ -59,6 +59,16 @@ $(outdir)/35-to-36-stablereq.txt: $(timestamp)
27 gpy-upgrade-impl -s python3_5 python3_6 > $@.new
28 mv $@.new $@
29
30 +$(outdir)/36-to-37.txt: $(timestamp)
31 + mkdir -p $(outdir)
32 + gpy-upgrade-impl python3_6 python3_7 > $@.new
33 + mv $@.new $@
34 +
35 +$(outdir)/36-to-37-stablereq.txt: $(timestamp)
36 + mkdir -p $(outdir)
37 + gpy-upgrade-impl -s python3_6 python3_7 > $@.new
38 + mv $@.new $@
39 +
40 $(outdir)/pypy3-to-35.txt: $(timestamp)
41 mkdir -p $(outdir)
42 gpy-upgrade-impl pypy3 python3_5 > $@.new