summaryrefslogtreecommitdiff
path: root/0001-python-add-3.10-3.15-to-the-version-search-list.patch
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2024-08-01 12:52:59 +0000
committerCoprDistGit <infra@openeuler.org>2024-08-01 12:52:59 +0000
commit29040266f2bf041f3e239cc536afe40ceac13138 (patch)
tree223ad8c0bca782f01d75b0eb75784c0dfc6846be /0001-python-add-3.10-3.15-to-the-version-search-list.patch
parent5a7870ed4dc73aab3ad7f323c20f5ff7cbdb5804 (diff)
automatic import of automakeopeneuler24.03_LTSopeneuler23.09
Diffstat (limited to '0001-python-add-3.10-3.15-to-the-version-search-list.patch')
-rw-r--r--0001-python-add-3.10-3.15-to-the-version-search-list.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/0001-python-add-3.10-3.15-to-the-version-search-list.patch b/0001-python-add-3.10-3.15-to-the-version-search-list.patch
new file mode 100644
index 0000000..0791557
--- /dev/null
+++ b/0001-python-add-3.10-3.15-to-the-version-search-list.patch
@@ -0,0 +1,35 @@
+From 930a9a73f4bb776ec334eff4cf6e182802841daa Mon Sep 17 00:00:00 2001
+From: Mike Frysinger <vapier@gentoo.org>
+Date: Wed, 26 Jan 2022 06:33:19 -0500
+Subject: [PATCH] python: add 3.10 - 3.15 to the version search list
+
+Fixes automake bug https://bugs.gnu.org/53530.
+
+Based on the cadence of Automake releases, add the current Python
+release (3.10), the current Python development (3.11), and then 4
+more versions on top of that. It doesn't hurt to check for a few
+extra versions here since this is the fallback logic when the main
+`python` and `python3` programs aren't found.
+
+* m4/python.m4: Add python3.10 - python3.15.
+* NEWS: Mention new Python versions.
+---
+ NEWS | 3 +++
+ m4/python.m4 | 1 +
+ 2 files changed, 4 insertions(+)
+
+diff --git a/m4/python.m4 b/m4/python.m4
+index f5b5371c6..6653e4d89 100644
+--- a/m4/python.m4
++++ b/m4/python.m4
+@@ -38,6 +38,7 @@ AC_DEFUN([AM_PATH_PYTHON],
+ dnl supported. (2.0 was released on October 16, 2000).
+ m4_define_default([_AM_PYTHON_INTERPRETER_LIST],
+ [python python2 python3 dnl
++ python3.15 python3.14 python3.13 python3.12 python3.11 python3.10 dnl
+ python3.9 python3.8 python3.7 python3.6 python3.5 python3.4 python3.3 dnl
+ python3.2 python3.1 python3.0 dnl
+ python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 dnl
+--
+2.40.1
+