commit: 82f5d6171796773d32ccca98365228433e8a8bca
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 12 13:29:14 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Nov 12 13:29:14 2019 +0000
URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=82f5d617
gpyutils: Add py3.7 to 3.8 reports
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
Makefile.gpyutils | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/Makefile.gpyutils b/Makefile.gpyutils
index 15a4a12..30e6ce5 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)/35-to-36.txt $(outdir)/36-to-37.txt
+upgr_base = $(outdir)/35-to-36.txt $(outdir)/36-to-37.txt
$(outdir)/37-to-38.txt
# related stabilizations
upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base))
# all upgrade stuff
@@ -59,6 +59,16 @@ $(outdir)/36-to-37-stablereq.txt: $(timestamp)
gpy-upgrade-impl -s python3_6 python3_7 > [email protected]
mv [email protected] $@
+$(outdir)/37-to-38.txt: $(timestamp)
+ mkdir -p $(outdir)
+ gpy-upgrade-impl python3_7 python3_8 > [email protected]
+ mv [email protected] $@
+
+$(outdir)/37-to-38-stablereq.txt: $(timestamp)
+ mkdir -p $(outdir)
+ gpy-upgrade-impl -s python3_7 python3_8 > [email protected]
+ mv [email protected] $@
+
$(outdir)/pypy3-to-36.txt: $(timestamp)
mkdir -p $(outdir)
gpy-upgrade-impl pypy3 python3_6 > [email protected]