From: Mingli Yu Date: Wed, 1 Jul 2020 02:33:17 +0000 (+0800) Subject: python3-libarchive-c: add the missing rdepends X-Git-Tag: 2020-04.2-dunfell~50 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=347e6fafea8bd9c715d87882159fc2d4bbde0cc7;p=openembedded-core.git python3-libarchive-c: add the missing rdepends Add the missing rdepends to fix below error: # python3 [snip] >>> import libarchive [snip] ModuleNotFoundError: No module named 'ctypes' ModuleNotFoundError: No module named 'mmap' Signed-off-by: Mingli Yu Signed-off-by: Richard Purdie (cherry picked from commit b3a2615878bc7515a7bdace525dc27be45f158e2) Signed-off-by: Steve Sakoman --- diff --git a/meta/recipes-devtools/python/python3-libarchive-c_2.9.bb b/meta/recipes-devtools/python/python3-libarchive-c_2.9.bb index 4983ae527a..3a2d8733e9 100644 --- a/meta/recipes-devtools/python/python3-libarchive-c_2.9.bb +++ b/meta/recipes-devtools/python/python3-libarchive-c_2.9.bb @@ -12,6 +12,10 @@ inherit pypi setuptools3 SRC_URI[md5sum] = "083bd2cb0043c1e22a52cb9a05e31532" SRC_URI[sha256sum] = "9919344cec203f5db6596a29b5bc26b07ba9662925a05e24980b84709232ef60" -RDEPENDS_${PN} += "libarchive" +RDEPENDS_${PN} += "\ + libarchive \ + ${PYTHON_PN}-ctypes \ + ${PYTHON_PN}-mmap \ +" BBCLASSEXTEND = "native"