diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-04-16 10:50:32 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-04-21 08:26:07 -0700 |
commit | f528f9614f9f2b4712bbbd37041c29b505322f4d (patch) | |
tree | 1c3f39ec44279038d8eaf2f6e0dd41d602c1b888 /meta-python/recipes-devtools/python/python3-icu | |
parent | 660e62b64531df16c616668747a68b9a62774fbf (diff) | |
download | meta-openembedded-f528f9614f9f2b4712bbbd37041c29b505322f4d.tar.gz |
python3-icu: Upgrade to 2.7.2
License-Update: Use info in setup.py for license as dedicated LICENSE
file has disappeared. License still is MIT
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-icu')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch (renamed from meta-python/recipes-devtools/python/python3-icu/fix_host_include.patch) | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/meta-python/recipes-devtools/python/python3-icu/fix_host_include.patch b/meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch index 1b6e89043..c45217a88 100644 --- a/meta-python/recipes-devtools/python/python3-icu/fix_host_include.patch +++ b/meta-python/recipes-devtools/python/python3-icu/0001-Fix-host-contamination-of-include-files.patch | |||
@@ -1,17 +1,24 @@ | |||
1 | Fixed host contamination of include files | 1 | From 8abf79f77d9151d6786da3c8e868117822bce6d4 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 16 Apr 2021 10:48:36 -0700 | ||
4 | Subject: [PATCH] Fix host contamination of include files | ||
2 | 5 | ||
3 | python3-icu-2.5-r0 do_package_qa: QA Issue: python3-icu: The compile log indicates that host include and/or library paths were used. | 6 | python3-icu-2.5-r0 do_package_qa: QA Issue: python3-icu: The compile log indicates that host include and/or library paths were used. |
4 | 7 | ||
5 | Also, don't use icu-config | 8 | Also, don't use icu-config |
6 | 9 | ||
7 | Upstream-Status: [inappropriate] OE specific | 10 | Upstream-Status: Inappropriate [OE specific] |
8 | Signed-off-by: Armin Kuster <akuster808@gmail.com> | 11 | Signed-off-by: Armin Kuster <akuster808@gmail.com> |
12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
13 | --- | ||
14 | setup.py | 3 +-- | ||
15 | 1 file changed, 1 insertion(+), 2 deletions(-) | ||
9 | 16 | ||
10 | Index: PyICU-2.5/setup.py | 17 | diff --git a/setup.py b/setup.py |
11 | =================================================================== | 18 | index e647db4..abed399 100644 |
12 | --- PyICU-2.5.orig/setup.py | 19 | --- a/setup.py |
13 | +++ PyICU-2.5/setup.py | 20 | +++ b/setup.py |
14 | @@ -81,7 +81,7 @@ Building PyICU %s for ICU %s (max ICU ma | 21 | @@ -81,7 +81,7 @@ Building PyICU %s for ICU %s (max ICU major version supported: %s) |
15 | 22 | ||
16 | CONFIGURE_WITH_ICU_CONFIG = { | 23 | CONFIGURE_WITH_ICU_CONFIG = { |
17 | 'darwin': True, | 24 | 'darwin': True, |
@@ -20,7 +27,7 @@ Index: PyICU-2.5/setup.py | |||
20 | 'freebsd': False, # not tested | 27 | 'freebsd': False, # not tested |
21 | 'win32': False, # no icu-config | 28 | 'win32': False, # no icu-config |
22 | 'sunos5': False, # not tested | 29 | 'sunos5': False, # not tested |
23 | @@ -274,7 +274,6 @@ setup(name="PyICU", | 30 | @@ -267,7 +267,6 @@ setup(name="PyICU", |
24 | ext_modules=[Extension('_icu', | 31 | ext_modules=[Extension('_icu', |
25 | [filename for filename in sorted(os.listdir(os.curdir)) | 32 | [filename for filename in sorted(os.listdir(os.curdir)) |
26 | if filename.endswith('.cpp')], | 33 | if filename.endswith('.cpp')], |
@@ -28,3 +35,6 @@ Index: PyICU-2.5/setup.py | |||
28 | extra_compile_args=_cflags, | 35 | extra_compile_args=_cflags, |
29 | extra_link_args=_lflags, | 36 | extra_link_args=_lflags, |
30 | libraries=_libraries)], | 37 | libraries=_libraries)], |
38 | -- | ||
39 | 2.31.1 | ||
40 | |||