diff options
author | Sam James <sam@gentoo.org> | 2024-04-30 04:35:35 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-05-01 01:26:21 +0100 |
commit | 5e9a0a17e43d3f5d7d7c1e3a8a7e58f8d26861cf (patch) | |
tree | 5f5608be9ab9edf7a8d1586565590640cd570d85 /eclass | |
parent | toolchain.eclass: add TODO for JIT (diff) | |
download | gentoo-5e9a0a17e43d3f5d7d7c1e3a8a7e58f8d26861cf.tar.gz gentoo-5e9a0a17e43d3f5d7d7c1e3a8a7e58f8d26861cf.tar.bz2 gentoo-5e9a0a17e43d3f5d7d7c1e3a8a7e58f8d26861cf.zip |
toolchain.eclass: update validate_failures.py for Python 3.12
The only change is that we've imported Gabi Falk's patch to fix a
SyntaxWarning in its regexes.
See https://inbox.sourceware.org/gcc-patches/20240415233833.104460-1-gabifalk@gmx.com/.
While here, fix a typo in a comment.
Closes: https://bugs.gentoo.org/929834
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 9887bc40c8d9..b2db0f96850a 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -86,8 +86,8 @@ tc_version_is_between() { # @ECLASS_VARIABLE: TOOLCHAIN_GCC_VALIDATE_FAILURES_VERSION # @DESCRIPTION: -# Version of test comparison script (validate_fails.py) to use. -: "${GCC_VALIDATE_FAILURES_VERSION:=7bbfb01a32b73842f8908de028703510a0e12057}" +# Version of test comparison script (validate_failures.py) to use. +: "${GCC_VALIDATE_FAILURES_VERSION:=a447cd6dee206facb66720bdacf0c765a8b09f33}" # @ECLASS_VARIABLE: TOOLCHAIN_USE_GIT_PATCHES # @DEFAULT_UNSET @@ -536,7 +536,7 @@ get_gcc_src_uri() { [[ -n ${MUSL_VER} ]] && \ GCC_SRC_URI+=" $(gentoo_urls gcc-${MUSL_GCC_VER}-musl-patches-${MUSL_VER}.tar.${TOOLCHAIN_PATCH_SUFFIX})" - GCC_SRC_URI+=" test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=${GCC_VALIDATE_FAILURES_VERSION} -> ${PN}-validate-failures-${GCC_VALIDATE_FAILURES_VERSION}.py )" + GCC_SRC_URI+=" test? ( https://gitweb.gentoo.org/proj/gcc-patches.git/plain/scripts/testsuite-management/validate_failures.py?id=${GCC_VALIDATE_FAILURES_VERSION} -> gcc-validate-failures-${GCC_VALIDATE_FAILURES_VERSION}.py )" echo "${GCC_SRC_URI}" } |