aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVyacheslav Yurkov <uvv.mail@gmail.com>2020-12-02 07:19:18 +0100
committerKhem Raj <raj.khem@gmail.com>2020-12-07 11:19:28 -0800
commit8e7c57bd8f8250251e54fcbe149dc81743c0e30a (patch)
treef28df9c1797e77a40b366b959dd9a07264c1d15a
parent2beb56814f092f8dd49d3493d78f63176cbfe1d5 (diff)
downloadmeta-openembedded-contrib-8e7c57bd8f8250251e54fcbe149dc81743c0e30a.tar.gz
python3-aiohttp: added missing RDEPENDs
aiohttp implicitly RDEPENDs on html, json, and socketserver modules, which are part of python3 recipe. They can't be properly imported if they are missing from RDEPENDS Signed-off-by: Vyacheslav Yurkov <uvv.mail@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
index 6cd5a4cab5..c98e3aee7a 100644
--- a/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
+++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
@@ -13,8 +13,11 @@ RDEPENDS_${PN} = "\
${PYTHON_PN}-async-timeout \
${PYTHON_PN}-attrs \
${PYTHON_PN}-chardet \
+ ${PYTHON_PN}-html \
${PYTHON_PN}-idna-ssl \
+ ${PYTHON_PN}-json \
${PYTHON_PN}-misc \
${PYTHON_PN}-multidict \
+ ${PYTHON_PN}-netserver \
${PYTHON_PN}-yarl \
"