diff options
-rw-r--r-- | meta-python/recipes-devtools/python/python3-icu/0001-Remove-assert-checking-for-trivial-type.patch | 26 | ||||
-rw-r--r-- | meta-python/recipes-devtools/python/python3-icu_2.15.3.bb (renamed from meta-python/recipes-devtools/python/python3-icu_2.15.2.bb) | 5 |
2 files changed, 2 insertions, 29 deletions
diff --git a/meta-python/recipes-devtools/python/python3-icu/0001-Remove-assert-checking-for-trivial-type.patch b/meta-python/recipes-devtools/python/python3-icu/0001-Remove-assert-checking-for-trivial-type.patch deleted file mode 100644 index 4c75eb5f7b..0000000000 --- a/meta-python/recipes-devtools/python/python3-icu/0001-Remove-assert-checking-for-trivial-type.patch +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | From 3d58fb48bb1cef2177aab8e291167638993495f4 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sat, 3 May 2025 21:27:34 -0700 | ||
4 | Subject: [PATCH] Remove assert checking for trivial type | ||
5 | |||
6 | This fails with GCC-15, is_trivial is deprecated in C++26 | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | |||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | arg.h | 1 - | ||
13 | 1 file changed, 1 deletion(-) | ||
14 | |||
15 | diff --git a/arg.h b/arg.h | ||
16 | index a493d11..6cb232d 100644 | ||
17 | --- a/arg.h | ||
18 | +++ b/arg.h | ||
19 | @@ -853,7 +853,6 @@ public: | ||
20 | }; | ||
21 | |||
22 | #define _IS_POD(T) \ | ||
23 | - static_assert(std::is_trivial<T>::value); \ | ||
24 | static_assert(std::is_standard_layout<T>::value) | ||
25 | |||
26 | _IS_POD(AnyPythonObject); | ||
diff --git a/meta-python/recipes-devtools/python/python3-icu_2.15.2.bb b/meta-python/recipes-devtools/python/python3-icu_2.15.3.bb index 8331f9175a..1f5cf6d042 100644 --- a/meta-python/recipes-devtools/python/python3-icu_2.15.2.bb +++ b/meta-python/recipes-devtools/python/python3-icu_2.15.3.bb | |||
@@ -10,10 +10,9 @@ DEPENDS += "icu" | |||
10 | PYPI_PACKAGE = "pyicu" | 10 | PYPI_PACKAGE = "pyicu" |
11 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | 11 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" |
12 | 12 | ||
13 | SRC_URI[sha256sum] = "561e77eedff17cec6839f26211f7a5ce3c071b776e8a0ec9d1207f46cbce598f" | 13 | SRC_URI[sha256sum] = "f32e78e1cb64d0aeb14f027e037a8944861d3114548818a6adf0081ef51aefc3" |
14 | 14 | ||
15 | SRC_URI += "file://0001-Fix-host-contamination-of-include-files.patch \ | 15 | SRC_URI += "file://0001-Fix-host-contamination-of-include-files.patch" |
16 | file://0001-Remove-assert-checking-for-trivial-type.patch" | ||
17 | 16 | ||
18 | inherit pkgconfig pypi python_setuptools_build_meta | 17 | inherit pkgconfig pypi python_setuptools_build_meta |
19 | 18 | ||