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: Wed, 02 Sep 2020 07:20:43
Message-Id: 1599031229.f415f58d1d18eb6f972baa10fb4f0f532d9a6908.mgorny@gentoo
1 commit: f415f58d1d18eb6f972baa10fb4f0f532d9a6908
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 2 07:20:29 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 2 07:20:29 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=f415f58d
7
8 gpyutils: Include maintainers in upgrade-impl output
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 Makefile.gpyutils | 12 ++++++------
13 1 file changed, 6 insertions(+), 6 deletions(-)
14
15 diff --git a/Makefile.gpyutils b/Makefile.gpyutils
16 index ae93e5a..e7be59e 100644
17 --- a/Makefile.gpyutils
18 +++ b/Makefile.gpyutils
19 @@ -41,32 +41,32 @@ $(outdir)/depcheck.txt: $(timestamp)
20
21 $(outdir)/36-to-37.txt: $(timestamp)
22 mkdir -p $(outdir)
23 - gpy-upgrade-impl python3_6 python3_7 > $@.new
24 + gpy-upgrade-impl -m python3_6 python3_7 > $@.new
25 mv $@.new $@
26
27 $(outdir)/36-to-37-stablereq.txt: $(timestamp)
28 mkdir -p $(outdir)
29 - gpy-upgrade-impl -s python3_6 python3_7 > $@.new
30 + gpy-upgrade-impl -m -s python3_6 python3_7 > $@.new
31 mv $@.new $@
32
33 $(outdir)/37-to-38.txt: $(timestamp)
34 mkdir -p $(outdir)
35 - gpy-upgrade-impl python3_7 python3_8 > $@.new
36 + gpy-upgrade-impl -m python3_7 python3_8 > $@.new
37 mv $@.new $@
38
39 $(outdir)/37-to-38-stablereq.txt: $(timestamp)
40 mkdir -p $(outdir)
41 - gpy-upgrade-impl -s python3_7 python3_8 > $@.new
42 + gpy-upgrade-impl -m -s python3_7 python3_8 > $@.new
43 mv $@.new $@
44
45 $(outdir)/38-to-39.txt: $(timestamp)
46 mkdir -p $(outdir)
47 - gpy-upgrade-impl python3_8 python3_9 > $@.new
48 + gpy-upgrade-impl -m python3_8 python3_9 > $@.new
49 mv $@.new $@
50
51 $(outdir)/38-to-39-stablereq.txt: $(timestamp)
52 mkdir -p $(outdir)
53 - gpy-upgrade-impl -s python3_8 python3_9 > $@.new
54 + gpy-upgrade-impl -m -s python3_8 python3_9 > $@.new
55 mv $@.new $@
56
57 $(outdir)/py2.txt: $(timestamp)