summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python-pyzmq/club-rpath-out.patch
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2021-01-22 12:11:24 +0200
committerKhem Raj <raj.khem@gmail.com>2021-01-25 14:34:06 -0800
commitcc1290421086cb74f436e71158e31ccf3205acd0 (patch)
tree807dc1860a39f24d810051067763e31e6a7635a5 /meta-python/recipes-devtools/python/python-pyzmq/club-rpath-out.patch
parent74269b3f8e9a02dcb01acdc8d12a59242a3422da (diff)
downloadmeta-openembedded-cc1290421086cb74f436e71158e31ccf3205acd0.tar.gz
python3-pyzmq: Upgrade 20.0.0 -> 21.0.1
Upgrade to release 21.0.1: - drop support for Python 3.5. Python >= 3.6 is required - mypy type stubs, which should improve static analysis of pyzmq, especially for dynamically defined attributes such as zmq constants. These are new! Let us know if you find any issues. - support for zero-copy and sending bufferables with cffi backend. This is experimental! Please report issues. - zero-copy support in CFFI backend (send(copy=False) now does something). - Support sending any buffer-interface-providing objects in CFFI backend. - Errors during teardown of asyncio Sockets - Missing MSVCP140.dll in Python 3.9 wheels on Windows, causing vcruntime-redist package to be required to use the Python 3.9 wheels for pyzmq 20.0 - pyzmq-21.0.1 only changes CI configuration for Windows wheels (built with VS2017 instead of VS2019), fixing compatibility with some older Windows on all Pythons and removing requirement of VC++ redistributable package on latest Windows and Python < 3.8. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-pyzmq/club-rpath-out.patch')
-rw-r--r--meta-python/recipes-devtools/python/python-pyzmq/club-rpath-out.patch24
1 files changed, 21 insertions, 3 deletions
diff --git a/meta-python/recipes-devtools/python/python-pyzmq/club-rpath-out.patch b/meta-python/recipes-devtools/python/python-pyzmq/club-rpath-out.patch
index 936f165850..d4e144a610 100644
--- a/meta-python/recipes-devtools/python/python-pyzmq/club-rpath-out.patch
+++ b/meta-python/recipes-devtools/python/python-pyzmq/club-rpath-out.patch
@@ -1,13 +1,31 @@
1From b394003d31a7187767b7d6cc7b871968d2674be9 Mon Sep 17 00:00:00 2001
2From: Leon Anavi <leon.anavi@konsulko.com>
3Date: Fri, 22 Jan 2021 11:41:12 +0200
4Subject: [PATCH] setup.py: Adjust _add_rpath
5
6Fix error: unrecognized command-line option '-R'
7
8Upstream-Status: Inappropriate [oe specific]
9
10Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
11---
12 setup.py | 3 ---
13 1 file changed, 3 deletions(-)
14
1diff --git a/setup.py b/setup.py 15diff --git a/setup.py b/setup.py
2index d243eaa..98099bc 100755 16index 22f582d..2d28655 100755
3--- a/setup.py 17--- a/setup.py
4+++ b/setup.py 18+++ b/setup.py
5@@ -192,8 +192,6 @@ def _add_rpath(settings, path): 19@@ -231,9 +231,6 @@ def _add_rpath(settings, path):
6 """ 20 """
7 if sys.platform == 'darwin': 21 if sys.platform == 'darwin':
8 settings['extra_link_args'].extend(['-Wl,-rpath','-Wl,%s' % path]) 22 settings['extra_link_args'].extend(['-Wl,-rpath', '-Wl,%s' % path])
9- else: 23- else:
10- settings['runtime_library_dirs'].append(path) 24- settings['runtime_library_dirs'].append(path)
25-
11 26
12 def settings_from_prefix(prefix=None, bundle_libzmq_dylib=False): 27 def settings_from_prefix(prefix=None, bundle_libzmq_dylib=False):
13 """load appropriate library/include settings from ZMQ prefix""" 28 """load appropriate library/include settings from ZMQ prefix"""
29--
302.17.1
31