commit: e5f943d679b6dc3fe3391f7fb7f694b7ba488aee Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue Jul 10 10:15:52 2018 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Jul 10 10:15:52 2018 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=e5f943d6
gpyutils: Enable reports for python3.7 Makefile.gpyutils | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index 3e8a9df..525057e 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)/34-to-35.txt $(outdir)/35-to-36.txt +upgr_base = $(outdir)/34-to-35.txt $(outdir)/35-to-36.txt $(outdir)/36-to-37.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff @@ -59,6 +59,16 @@ $(outdir)/35-to-36-stablereq.txt: $(timestamp) gpy-upgrade-impl -s python3_5 python3_6 > $@.new mv $@.new $@ +$(outdir)/36-to-37.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl 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 + mv $@.new $@ + $(outdir)/pypy3-to-35.txt: $(timestamp) mkdir -p $(outdir) gpy-upgrade-impl pypy3 python3_5 > $@.new