summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-icu
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2025-09-18 10:10:33 +0200
committerKhem Raj <raj.khem@gmail.com>2025-09-19 12:21:59 -0700
commit7fce82cb83907c457cf0b6b17200b2a0fe29867c (patch)
tree7bd51d52eddd3d165bfd3ef09e1993bf148d8adc /meta-python/recipes-devtools/python/python3-icu
parent914561cfc24f831b28845d02015086f3d9ed1438 (diff)
downloadmeta-openembedded-7fce82cb83907c457cf0b6b17200b2a0fe29867c.tar.gz
python3-icu: upgrade to 2.15.3
Drop 0001-Remove-assert-checking-for-trivial-type.patch which was resolved in upstream by: https://gitlab.pyicu.org/main/pyicu/-/commit/82fa082b149db81c894e0d887c0fff67c3d2826f Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-icu')
-rw-r--r--meta-python/recipes-devtools/python/python3-icu/0001-Remove-assert-checking-for-trivial-type.patch26
1 files changed, 0 insertions, 26 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 @@
1From 3d58fb48bb1cef2177aab8e291167638993495f4 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 3 May 2025 21:27:34 -0700
4Subject: [PATCH] Remove assert checking for trivial type
5
6This fails with GCC-15, is_trivial is deprecated in C++26
7
8Upstream-Status: Pending
9
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 arg.h | 1 -
13 1 file changed, 1 deletion(-)
14
15diff --git a/arg.h b/arg.h
16index 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);