diff options
author | Sam James <sam@gentoo.org> | 2023-05-25 03:24:04 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-25 03:24:04 +0100 |
commit | 92393b2ac28d0e4087eeacfe4ba365c4ee94e8db (patch) | |
tree | 437cc3caa63ab6fa74712ca83eceb5aae08cf9d4 | |
parent | Makefile.gpyutils: fix target, add instructions (diff) | |
download | qa-scripts-92393b2ac28d0e4087eeacfe4ba365c4ee94e8db.tar.gz qa-scripts-92393b2ac28d0e4087eeacfe4ba365c4ee94e8db.tar.bz2 qa-scripts-92393b2ac28d0e4087eeacfe4ba365c4ee94e8db.zip |
Makefile.gpyutils: give up on 3.12 graphs for now
I let it run for like, 9 hours locally and got nowhere.
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | Makefile.gpyutils | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.gpyutils b/Makefile.gpyutils index d34f942..77fa182 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -6,7 +6,7 @@ timestamp = $(PORTDIR)/metadata/timestamp.commit outdir = /dev/null # Adding new implementations: -# 1. Add to upgr_all +# 1. Create rules below & add to upgr_all # 2. Later, when dot doesn't take too long for it, move to upgr_txt # 3. Once the impl is stable, move to upgr_base @@ -15,11 +15,11 @@ upgr_base = $(outdir)/310-to-311.txt # related stabilizations upgr_streq = $(patsubst %.txt,%-stablereq.txt,$(upgr_base)) # all upgrade stuff -upgr_txt = $(upgr_base) $(upgr_streq) $(outdir)/311-to-312.txt +upgr_txt = $(upgr_base) $(upgr_streq) upgr_dot = $(patsubst %.txt,%.dot,$(upgr_txt)) upgr_svg = $(patsubst %.dot,%.svg,$(upgr_dot)) # add new impls here if not stable yet, to avoid insanely huge generation times -upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) #$(outdir)/311-to-312.txt +upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) $(outdir)/311-to-312.txt all = $(upgr_all) |