diff options
author | Asaf Kahlon <asafka7@gmail.com> | 2018-08-31 07:35:43 +0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-31 23:47:34 +0200 |
commit | 5573e06e4e1e7715c443aa0661b17d109f5c671d (patch) | |
tree | 1e6f11d927ed3624fe99418d015ccf09e9b45d8a /package/python-pyzmq/0001-use-buildroot-zmq-version-instead-of-detect.patch | |
parent | 10b50e3dbc9a220e5a3cbd801320fc7b4dfc59bc (diff) | |
download | buildroot-5573e06e4e1e7715c443aa0661b17d109f5c671d.tar.gz buildroot-5573e06e4e1e7715c443aa0661b17d109f5c671d.zip |
python-pyzmq: bump to version 17.1.2
Adjust the first patch to the new version, and remove the second
patch since it's not needed anymore.
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/python-pyzmq/0001-use-buildroot-zmq-version-instead-of-detect.patch')
-rw-r--r-- | package/python-pyzmq/0001-use-buildroot-zmq-version-instead-of-detect.patch | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/package/python-pyzmq/0001-use-buildroot-zmq-version-instead-of-detect.patch b/package/python-pyzmq/0001-use-buildroot-zmq-version-instead-of-detect.patch index cb52eaf6de..461ef4e5fe 100644 --- a/package/python-pyzmq/0001-use-buildroot-zmq-version-instead-of-detect.patch +++ b/package/python-pyzmq/0001-use-buildroot-zmq-version-instead-of-detect.patch @@ -15,19 +15,22 @@ dynamically, return the version of the buildroot environment. Written by Michael Rommel, modified for version 16.0.2 by Lionel Flandrin. +Modified for version 17.1.2 by Asaf Kahlon. + Signed-off-by: Lionel Flandrin <lionel@svkt.org> +Signed-off-by: Asaf Kahlon <asafka7@gmail.com> --- buildutils/detect.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/buildutils/detect.py b/buildutils/detect.py -index 9520da7..823144f 100644 +index cb14a8d..b33a3b5 100644 --- a/buildutils/detect.py +++ b/buildutils/detect.py -@@ -117,13 +117,15 @@ def detect_zmq(basedir, compiler=None, **compiler_attrs): +@@ -116,13 +116,15 @@ def detect_zmq(basedir, compiler=None, **compiler_attrs): cc = get_compiler(compiler=compiler, **compiler_attrs) - efile = test_compilation(cfile, compiler=cc) + efile = test_compilation(cfile, compiler=cc, **compiler_attrs) - patch_lib_paths(efile, cc.library_dirs) + #patch_lib_paths(efile, cc.library_dirs) @@ -47,5 +50,5 @@ index 9520da7..823144f 100644 handlers = {'vers': lambda val: tuple(int(v) for v in val.split('.'))} -- -2.11.0 +2.17.1 |