diff options
author | Maciej Pijanowski <maciej.pijanowski@3mdeb.com> | 2019-08-11 17:16:26 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-08-11 08:58:05 -0700 |
commit | 8d2633b8dac92fe32a09ad793ca75c90bada90ad (patch) | |
tree | 954dadfc47d90ee67adb42d27e96b1369ca4639b /meta-python/recipes-devtools/python/python-socketio.inc | |
parent | e70ba86d79ec0b48160715d2c53dd2337e102502 (diff) | |
download | meta-openembedded-8d2633b8dac92fe32a09ad793ca75c90bada90ad.tar.gz |
python-socketio.inc: add missing RDEPENDS
Without additional RDEPENDS module could not be properly imported on
python 3.7.4. Additional RDEPENDS had to be added in order to start the
most basic examples from documentation:
https://python-socketio.readthedocs.io/en/latest/client.html
Signed-off-by: Maciej Pijanowski <maciej.pijanowski@3mdeb.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-socketio.inc')
-rw-r--r-- | meta-python/recipes-devtools/python/python-socketio.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-socketio.inc b/meta-python/recipes-devtools/python/python-socketio.inc index fa62afce15..7ebc4eac7a 100644 --- a/meta-python/recipes-devtools/python/python-socketio.inc +++ b/meta-python/recipes-devtools/python/python-socketio.inc | |||
@@ -12,6 +12,17 @@ PYPI_PACKAGE = "python-socketio" | |||
12 | SRC_URI[md5sum] = "86cd47dddea1785ce7a6c72f55c93fe7" | 12 | SRC_URI[md5sum] = "86cd47dddea1785ce7a6c72f55c93fe7" |
13 | SRC_URI[sha256sum] = "506b2cf7a520b40ea0b3f25e1272eff8de134dce6f471c1f6bc0de8c90fe8c57" | 13 | SRC_URI[sha256sum] = "506b2cf7a520b40ea0b3f25e1272eff8de134dce6f471c1f6bc0de8c90fe8c57" |
14 | 14 | ||
15 | PACKAGECONFIG ?= "asyncio_client client" | ||
16 | PACKAGECONFIG[asyncio_client] = ",,,python3-aiohttp python3-websockets" | ||
17 | PACKAGECONFIG[client] = ",,,python3-requests python3-websocket-client" | ||
18 | |||
15 | RDEPENDS_${PN} += "\ | 19 | RDEPENDS_${PN} += "\ |
16 | ${PYTHON_PN}-engineio \ | 20 | ${PYTHON_PN}-engineio \ |
21 | ${PYTHON_PN}-logging \ | ||
22 | ${PYTHON_PN}-math \ | ||
23 | ${PYTHON_PN}-pickle \ | ||
24 | ${PYTHON_PN}-json \ | ||
25 | ${PYTHON_PN}-threading \ | ||
26 | ${PYTHON_PN}-six \ | ||
27 | ${PYTHON_PN}-attrs \ | ||
17 | " | 28 | " |