From: Kai Kang Date: Wed, 16 Mar 2022 02:28:41 +0000 (+0800) Subject: python3-pyparsing: rdepends on python3-html X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~4748 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfc76d19f3d6e3a7b2d91c3fcd97501c8b29001e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git python3-pyparsing: rdepends on python3-html It fails to import python module 'pyparsing': | root@qemux86-64:~# python3 -c 'import pyparsing' | Traceback (most recent call last): | File "", line 1, in | File "/usr/lib64/python3.10/site-packages/pyparsing/__init__.py", line 141, in | from .helpers import * | File "/usr/lib64/python3.10/site-packages/pyparsing/helpers.py", line 2, in | import html.entities | ModuleNotFoundError: No module named 'html' Signed-off-by: Kai Kang Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/python/python3-pyparsing_3.0.7.bb b/meta/recipes-devtools/python/python3-pyparsing_3.0.7.bb index 14faea6590b..9c3896918f6 100644 --- a/meta/recipes-devtools/python/python3-pyparsing_3.0.7.bb +++ b/meta/recipes-devtools/python/python3-pyparsing_3.0.7.bb @@ -19,6 +19,7 @@ inherit pypi setuptools3 RDEPENDS:${PN} += " \ ${PYTHON_PN}-datetime \ ${PYTHON_PN}-debugger \ + ${PYTHON_PN}-html \ ${PYTHON_PN}-json \ ${PYTHON_PN}-netclient \ ${PYTHON_PN}-pprint \