diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-07-03 14:51:02 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-07-03 14:51:02 +0200 |
commit | 7dc2a39faa51ca49a1eb1abde079f73bc916f6fd (patch) | |
tree | 11ae9c8c985be47b58b64da4a120b0586dc9e28b /Makefile.gpyutils | |
parent | Update gpyutils report links (diff) | |
download | qa-scripts-7dc2a39faa51ca49a1eb1abde079f73bc916f6fd.tar.gz qa-scripts-7dc2a39faa51ca49a1eb1abde079f73bc916f6fd.tar.bz2 qa-scripts-7dc2a39faa51ca49a1eb1abde079f73bc916f6fd.zip |
gpyutils: py3.4 is long gone
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'Makefile.gpyutils')
-rw-r--r-- | Makefile.gpyutils | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/Makefile.gpyutils b/Makefile.gpyutils index 525057e..d24042d 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 $(outdir)/36-to-37.txt +upgr_base = $(outdir)/35-to-36.txt $(outdir)/36-to-37.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff @@ -39,16 +39,6 @@ $(outdir)/depcheck.txt: $(timestamp) gpy-depcheck > $@.new mv $@.new $@ -$(outdir)/34-to-35.txt: $(timestamp) - mkdir -p $(outdir) - gpy-upgrade-impl python3_4 python3_5 > $@.new - mv $@.new $@ - -$(outdir)/34-to-35-stablereq.txt: $(timestamp) - mkdir -p $(outdir) - gpy-upgrade-impl -s python3_4 python3_5 > $@.new - mv $@.new $@ - $(outdir)/35-to-36.txt: $(timestamp) mkdir -p $(outdir) gpy-upgrade-impl python3_5 python3_6 > $@.new |