commit: 45bd9371f326ad98d9b4e806c56010f886dda0df
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 28 03:56:45 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 28 03:56:45 2025 +0000
URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=45bd9371
Makefile.gpyutils: add 313-to-314.txt
Signed-off-by: Sam James <sam <AT> gentoo.org>
Makefile.gpyutils | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/Makefile.gpyutils b/Makefile.gpyutils
index a05f56c..17a4c7e 100644
--- a/Makefile.gpyutils
+++ b/Makefile.gpyutils
@@ -22,7 +22,7 @@ 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)
+upgr_all = $(upgr_txt) $(upgr_dot) $(upgr_svg) $(outdir)/313-to-314.txt
all = $(upgr_all)
@@ -31,6 +31,16 @@ all: $(all) prune-old
prune-old:
rm -f $(outdir)/39-to-310.*
+$(outdir)/313-to-314.txt: $(timestamp)
+ mkdir -p $(outdir)
+ gpy-upgrade-impl -m python3_13 python3_14 > [email protected]
+ mv [email protected] $@+
+
+$(outdir)/313-to-314-stablereq.txt: $(timestamp)
+ mkdir -p $(outdir)
+ gpy-upgrade-impl -m -s python3_13 python3_14 > [email protected]
+ mv [email protected] $@
+
$(outdir)/312-to-313.txt: $(timestamp)
mkdir -p $(outdir)
gpy-upgrade-impl -m python3_12 python3_13 > [email protected]