summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-11-11 15:55:07 +0800
committerKhem Raj <raj.khem@gmail.com>2025-11-11 10:19:42 -0800
commita22494569d810123c633afcd0646c6f06c8def0e (patch)
tree34d617891f393593da24db262d56c5208ef0d0f5 /meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch
parent37a709664e010ea239735127893b13976119d085 (diff)
downloadmeta-openembedded-a22494569d810123c633afcd0646c6f06c8def0e.tar.gz
python3-icu: upgrade 2.15.3 -> 2.16
Changelog: ========== - fixed issue #178 - added new enums from new unicode release in UBlockCode, UScriptCode - added missing wrappers for ECollationStrength and EComparisonResult - added wrapper for UIndicConjunctBreak - added support for ICU 78.1 0001-Fix-host-contamination-of-include-files.patch refreshed for 2.16 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch')
-rw-r--r--meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch9
1 files changed, 3 insertions, 6 deletions
diff --git a/meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch b/meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch
index 7bb5ee58cc..d3a05972c3 100644
--- a/meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch
+++ b/meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch
@@ -1,4 +1,4 @@
1From a82fea9663f0c70cf57cd06650f400e878afc5e4 Mon Sep 17 00:00:00 2001 1From 5648531ec5f77f5270ddf5c7e49ade5c160669bc Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 16 Apr 2021 10:48:36 -0700 3Date: Fri, 16 Apr 2021 10:48:36 -0700
4Subject: [PATCH] Fix host contamination of include files 4Subject: [PATCH] Fix host contamination of include files
@@ -16,7 +16,7 @@ Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
16 1 file changed, 1 insertion(+), 2 deletions(-) 16 1 file changed, 1 insertion(+), 2 deletions(-)
17 17
18diff --git a/setup.py b/setup.py 18diff --git a/setup.py b/setup.py
19index 176c9ab..0a10268 100644 19index 8a975e5..e85fdd3 100644
20--- a/setup.py 20--- a/setup.py
21+++ b/setup.py 21+++ b/setup.py
22@@ -68,7 +68,7 @@ elif platform.startswith('freebsd'): 22@@ -68,7 +68,7 @@ elif platform.startswith('freebsd'):
@@ -28,7 +28,7 @@ index 176c9ab..0a10268 100644
28 'freebsd': False, # not tested 28 'freebsd': False, # not tested
29 'win32': False, # no icu-config 29 'win32': False, # no icu-config
30 'sunos5': False, # not tested 30 'sunos5': False, # not tested
31@@ -277,7 +277,6 @@ setup(name="PyICU", 31@@ -277,7 +277,6 @@ setup(name="pyicu",
32 ext_modules=[Extension('icu._icu_', 32 ext_modules=[Extension('icu._icu_',
33 [filename for filename in sorted(os.listdir(os.curdir)) 33 [filename for filename in sorted(os.listdir(os.curdir))
34 if filename.endswith('.cpp')], 34 if filename.endswith('.cpp')],
@@ -36,6 +36,3 @@ index 176c9ab..0a10268 100644
36 extra_compile_args=_cflags, 36 extra_compile_args=_cflags,
37 extra_link_args=_lflags, 37 extra_link_args=_lflags,
38 libraries=_libraries)], 38 libraries=_libraries)],
39--
402.34.1
41