diff options
author | Vyacheslav Yurkov <uvv.mail@gmail.com> | 2021-02-12 02:46:26 +0100 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2021-02-16 07:38:15 -0800 |
commit | 02b04a20d46ca2d7fe813dbf2ec377553fc41bac (patch) | |
tree | bacd06548081d147e2f97d33186afe549c0a4f9a /meta-python/recipes-devtools/python | |
parent | 51d091740e02e626750ef889548e33da4d608d5e (diff) | |
download | meta-openembedded-02b04a20d46ca2d7fe813dbf2ec377553fc41bac.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>
(cherry-picked from commit 8e7c57bd8f8250251e54fcbe149dc81743c0e30a)
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-aiohttp_3.6.2.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.6.2.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.6.2.bb index 121447cdb..24eb021de 100644 --- a/meta-python/recipes-devtools/python/python3-aiohttp_3.6.2.bb +++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.6.2.bb @@ -13,9 +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}-typing \ + ${PYTHON_PN}-netserver \ ${PYTHON_PN}-yarl \ " |