diff options
author | 2021-07-15 19:23:45 +0200 | |
---|---|---|
committer | 2021-07-15 19:23:45 +0200 | |
commit | 0ee5811010eb88bc76a30672c606b0bae0a554a9 (patch) | |
tree | 535f2e1dc58085e861d5593951091db05c3c1f3d /Makefile.gpyutils | |
parent | kuroneko: Exclude obsolete icedtea bugs (diff) | |
download | qa-scripts-0ee5811010eb88bc76a30672c606b0bae0a554a9.tar.gz qa-scripts-0ee5811010eb88bc76a30672c606b0bae0a554a9.tar.bz2 qa-scripts-0ee5811010eb88bc76a30672c606b0bae0a554a9.zip |
Update gpyutils data to add 3.10 and remove 3.7
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'Makefile.gpyutils')
-rw-r--r-- | Makefile.gpyutils | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.gpyutils b/Makefile.gpyutils index a50775d..90010bc 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)/37-to-38.txt $(outdir)/38-to-39.txt +upgr_base = $(outdir)/39-to-310.txt $(outdir)/38-to-39.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff @@ -39,14 +39,14 @@ $(outdir)/depcheck.txt: $(timestamp) gpy-depcheck > $@.new mv $@.new $@ -$(outdir)/37-to-38.txt: $(timestamp) +$(outdir)/39-to-310.txt: $(timestamp) mkdir -p $(outdir) - gpy-upgrade-impl -m python3_7 python3_8 > $@.new + gpy-upgrade-impl -m python3_9 python3_10 > $@.new mv $@.new $@ -$(outdir)/37-to-38-stablereq.txt: $(timestamp) +$(outdir)/39-to-310-stablereq.txt: $(timestamp) mkdir -p $(outdir) - gpy-upgrade-impl -m -s python3_7 python3_8 > $@.new + gpy-upgrade-impl -m -s python3_9 python3_10 > $@.new mv $@.new $@ $(outdir)/38-to-39.txt: $(timestamp) |