commit: ee2b355d788b070a7e57dc6e36b973a7bf8478ea Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Jun 8 10:52:09 2024 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Jun 8 10:52:09 2024 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=ee2b355d
gpyutils: Add 312-to-313.txt Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> Makefile.gpyutils | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile.gpyutils b/Makefile.gpyutils index 75fee4e..fafc1ba 100644 --- a/Makefile.gpyutils +++ b/Makefile.gpyutils @@ -22,12 +22,22 @@ 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)/312-to-313.txt all = $(upgr_all) all: $(all) +$(outdir)/312-to-313.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl -m python3_12 python3_13 > [email protected] + mv [email protected] $@ + +$(outdir)/312-to-313-stablereq.txt: $(timestamp) + mkdir -p $(outdir) + gpy-upgrade-impl -m -s python3_12 python3_13 > [email protected] + mv [email protected] $@ + $(outdir)/311-to-312.txt: $(timestamp) mkdir -p $(outdir) gpy-upgrade-impl -m python3_11 python3_12 > [email protected]
