diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2024-10-16 21:35:03 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-10-16 14:07:30 -0700 |
| commit | 0b3f4ed292c4b494a83f912184ad284edc72c2e3 (patch) | |
| tree | 26aecc1e1f69421d7bcccb73ed11fba736d23812 /meta-python/recipes-devtools/python/python3-m2crypto/avoid-host-contamination.patch | |
| parent | 4a78fcff7cefb9bbf1d6223b5ad90af0f8e7ae14 (diff) | |
| download | meta-openembedded-0b3f4ed292c4b494a83f912184ad284edc72c2e3.tar.gz | |
python3-m2crypto: update 0.40.1 -> 0.42.0
This addresses python 3.13 issues.
Use build_meta instead of classic setuptools.
Drop all setup.py patches as no longer necessary.
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-m2crypto/avoid-host-contamination.patch')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-m2crypto/avoid-host-contamination.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/meta-python/recipes-devtools/python/python3-m2crypto/avoid-host-contamination.patch b/meta-python/recipes-devtools/python/python3-m2crypto/avoid-host-contamination.patch deleted file mode 100644 index 3cd6f7c276..0000000000 --- a/meta-python/recipes-devtools/python/python3-m2crypto/avoid-host-contamination.patch +++ /dev/null | |||
| @@ -1,23 +0,0 @@ | |||
| 1 | Filter out '/usr/include' for swig to avoid host contamination issue. | ||
| 2 | |||
| 3 | Upstream-Status: Inappropriate [cross compile specific] | ||
| 4 | |||
| 5 | Signed-off-by: Kai Kang <kai.kang@windriver.com> | ||
| 6 | --- | ||
| 7 | setup.py | 3 ++- | ||
| 8 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
| 9 | |||
| 10 | diff --git a/setup.py b/setup.py | ||
| 11 | index 5a12981..389d49f 100644 | ||
| 12 | --- a/setup.py | ||
| 13 | +++ b/setup.py | ||
| 14 | @@ -153,7 +153,8 @@ class _M2CryptoBuildExt(build_ext.build_ext): | ||
| 15 | self.swig_opts.append('-py3') | ||
| 16 | |||
| 17 | # swig seems to need the default header file directories | ||
| 18 | - self.swig_opts.extend(['-I%s' % i for i in _get_additional_includes()]) | ||
| 19 | + self.swig_opts.extend(['-I%s' % i for i in _get_additional_includes() | ||
| 20 | + if i != '/usr/include']) | ||
| 21 | |||
| 22 | log.debug('self.include_dirs = %s', self.include_dirs) | ||
| 23 | log.debug('self.library_dirs = %s', self.library_dirs) | ||
