diff options
author | Trevor Gamblin <trevor.gamblin@windriver.com> | 2019-11-08 20:46:40 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-14 13:20:59 +0000 |
commit | 1729e1db7820bc090fd4933360ae47dacae58414 (patch) | |
tree | 5d8be04e17fa67bea7d3c7ede9086baeaec20b45 /meta/recipes-devtools/python | |
parent | e4e4c83a82f4be329c6a340fe2a22b6989a10842 (diff) | |
download | poky-1729e1db7820bc090fd4933360ae47dacae58414.tar.gz |
python3-misc: add python3-audio to RDEPENDS
Import issues are encountered for the python3 aifc module,
on images with python3-misc installed:
|>>> import aifc
|Traceback (most recent call last):
|File "<stdin>", line 1, in <module>
|File "/usr/lib64/python3.7/aifc.py", line 254, in <module>
|from chunk import Chunk
|ModuleNotFoundError: No module named 'chunk'
|>>>
The chunk module is part of python3-audio. Add python3-audio
to RDEPENDS for python3-misc to fix the error.
(From OE-Core rev: 9f0e61f6ce1d945226b706f4376a762fcc636703)
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python3_3.7.5.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3_3.7.5.bb b/meta/recipes-devtools/python/python3_3.7.5.bb index 0338fa4ba8..90914f9053 100644 --- a/meta/recipes-devtools/python/python3_3.7.5.bb +++ b/meta/recipes-devtools/python/python3_3.7.5.bb | |||
@@ -324,7 +324,7 @@ INSANE_SKIP_${PN}-dev += "dev-elf" | |||
324 | 324 | ||
325 | # catch all the rest (unsorted) | 325 | # catch all the rest (unsorted) |
326 | PACKAGES += "${PN}-misc" | 326 | PACKAGES += "${PN}-misc" |
327 | RDEPENDS_${PN}-misc += "python3-core python3-email python3-codecs python3-pydoc python3-pickle" | 327 | RDEPENDS_${PN}-misc += "python3-core python3-email python3-codecs python3-pydoc python3-pickle python3-audio" |
328 | RDEPENDS_${PN}-modules_append_class-target = " python3-misc" | 328 | RDEPENDS_${PN}-modules_append_class-target = " python3-misc" |
329 | RDEPENDS_${PN}-modules_append_class-nativesdk = " python3-misc" | 329 | RDEPENDS_${PN}-modules_append_class-nativesdk = " python3-misc" |
330 | FILES_${PN}-misc = "${libdir}/python${PYTHON_MAJMIN} ${libdir}/python${PYTHON_MAJMIN}/lib-dynload" | 330 | FILES_${PN}-misc = "${libdir}/python${PYTHON_MAJMIN} ${libdir}/python${PYTHON_MAJMIN}/lib-dynload" |