commit: 6b72ba0ea772a4437b1e8ff962efe5fc389fbc1f Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed May 11 20:34:43 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed May 11 20:34:43 2022 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=6b72ba0e
Makefile.gpyutils: don't generate 3.11 graphs yet Taken a day to generate these and still not done. Signed-off-by: Sam James <sam <AT> gentoo.org> Makefile.gpyutils | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index 3eaeba4..c9f7e6f 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -6,14 +6,15 @@ timestamp = $(PORTDIR)/metadata/timestamp.commit outdir = /dev/null # upgrades for stable impls -upgr_base = $(outdir)/310-to-311.txt $(outdir)/39-to-310.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 upgr_txt = $(upgr_base) $(upgr_streq) $(outdir)/py2.txt upgr_dot = $(patsubst %.txt,%.dot,$(upgr_txt)) upgr_svg = $(patsubst %.dot,%.svg,$(upgr_dot)) -upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) +# add new impls here if not stable yet, to avoid insanely huge generation times +upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) $(outdir)/310-to-311.txt all = $(upgr_all)
