mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
python-dateutil: Fix RDEPENDS
dateutil package has runtime dependency on "six" package
for native version as well, as shown in error log below:
| File "poky/build/tmp/work/*/recipe-sysroot-native/usr/lib/python3.8/
site-packages/pykwalify/core.py", line 25, in <module>
| from dateutil.parser import parse
| File "poky/build/tmp/work/*/recipe-sysroot-native/usr/lib/python3.8/
site-packages/dateutil/parser/__init__.py", line 2, in <module>
| from ._parser import parse, parser, parserinfo, ParserError
| File "poky/build/tmp/work/*/recipe-sysroot-native/usr/lib/python3.8/
site-packages/dateutil/parser/_parser.py", line 42, in <module>
| import six
|
| ModuleNotFoundError: No module named 'six'
Other packges specified under RDEPENDS_${PN}_class-target as well
do not seem specific just to class-target.
So, move them all under RDEPENDS_${PN}.
Signed-off-by: Abhishek Shah <abhishek.shah@broadcom.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
7c37f90893
commit
89cb140538
|
|
@ -15,7 +15,7 @@ FILES_${PN}-zoneinfo = "${libdir}/${PYTHON_DIR}/site-packages/dateutil/zoneinfo"
|
|||
|
||||
DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
|
||||
|
||||
RDEPENDS_${PN}_class-target = "\
|
||||
RDEPENDS_${PN} = "\
|
||||
${PYTHON_PN}-datetime \
|
||||
${PYTHON_PN}-numbers \
|
||||
${PYTHON_PN}-six \
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user