aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools
diff options
context:
space:
mode:
authorMaciej Pijanowski <maciej.pijanowski@3mdeb.com>2019-08-11 17:16:26 +0200
committerKhem Raj <raj.khem@gmail.com>2019-08-11 08:58:05 -0700
commit8d2633b8dac92fe32a09ad793ca75c90bada90ad (patch)
tree954dadfc47d90ee67adb42d27e96b1369ca4639b /meta-python/recipes-devtools
parente70ba86d79ec0b48160715d2c53dd2337e102502 (diff)
downloadmeta-openembedded-contrib-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')
-rw-r--r--meta-python/recipes-devtools/python/python-socketio.inc11
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"
SRC_URI[md5sum] = "86cd47dddea1785ce7a6c72f55c93fe7"
SRC_URI[sha256sum] = "506b2cf7a520b40ea0b3f25e1272eff8de134dce6f471c1f6bc0de8c90fe8c57"
+PACKAGECONFIG ?= "asyncio_client client"
+PACKAGECONFIG[asyncio_client] = ",,,python3-aiohttp python3-websockets"
+PACKAGECONFIG[client] = ",,,python3-requests python3-websocket-client"
+
RDEPENDS_${PN} += "\
${PYTHON_PN}-engineio \
+ ${PYTHON_PN}-logging \
+ ${PYTHON_PN}-math \
+ ${PYTHON_PN}-pickle \
+ ${PYTHON_PN}-json \
+ ${PYTHON_PN}-threading \
+ ${PYTHON_PN}-six \
+ ${PYTHON_PN}-attrs \
"