diff options
author | Sam James <sam@gentoo.org> | 2024-04-29 23:03:33 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-04-29 23:03:33 +0100 |
commit | f24da1270bd354e58b6be99e858d23a6e2bf0c78 (patch) | |
tree | 5777fac8916ebedfe2b01d1fd109a53a8cc09e2c | |
parent | Bump pkgcheck2html (diff) | |
download | qa-scripts-f24da1270bd354e58b6be99e858d23a6e2bf0c78.tar.gz qa-scripts-f24da1270bd354e58b6be99e858d23a6e2bf0c78.tar.bz2 qa-scripts-f24da1270bd354e58b6be99e858d23a6e2bf0c78.zip |
Makefile.gpyutils, htdocs/index.html: add 3.11->3.12 stable reports
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | Makefile.gpyutils | 12 | ||||
-rw-r--r-- | htdocs/index.html | 6 |
2 files changed, 12 insertions, 6 deletions
diff --git a/Makefile.gpyutils b/Makefile.gpyutils index a2bba56..75fee4e 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -14,11 +14,11 @@ outdir = /dev/null # from 1->2. Especially e.g. git, ninja, meson, doxygen. # upgrades for stable impls -upgr_base = $(outdir)/310-to-311.txt +upgr_base = $(outdir)/310-to-311.txt $(outdir)/311-to-312.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 @@ -33,10 +33,10 @@ $(outdir)/311-to-312.txt: $(timestamp) gpy-upgrade-impl -m python3_11 python3_12 > $@.new mv $@.new $@ -#$(outdir)/311-to-312-stablereq.txt: $(timestamp) -# mkdir -p $(outdir) -# gpy-upgrade-impl -m -s python3_11 python3_12 > $@.new -# mv $@.new $@ +$(outdir)/311-to-312-stablereq.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl -m -s python3_11 python3_12 > $@.new + mv $@.new $@ $(outdir)/310-to-311.txt: $(timestamp) mkdir -p $(outdir) diff --git a/htdocs/index.html b/htdocs/index.html index f40051e..60955d2 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -106,6 +106,12 @@ </a> </div> <div class="list-group-item list-group-item-action p-0"> + <a href="/output/gpyutils/311-to-312-stablereq.txt" class="list-group-item-base-link">Py3.11 → 3.12 stabilizations</a> + <a href="/output/gpyutils/311-to-312-stablereq.svg" class="list-group-item-additional-link p-1"> + <span class="badge badge-primary">svg</span> + </a> + </div> + <div class="list-group-item list-group-item-action p-0"> <a href="/output/gpyutils/310-to-311.txt" class="list-group-item-base-link">Py3.10 → 3.11 testing</a> <a href="/output/gpyutils/310-to-311.svg" class="list-group-item-additional-link p-1"> <span class="badge badge-primary">svg</span> |