diff options
author | Mingli Yu <mingli.yu@windriver.com> | 2020-06-04 16:13:39 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-06-09 13:13:59 +0100 |
commit | 53fff50cbc363fbf6213587ef30bb4cb0c610add (patch) | |
tree | 0826a0fd8342f2ce1105f5248a5a47807b2064e1 /meta/recipes-devtools | |
parent | 611d60f4c57853094dc078a44e2d3875b5710299 (diff) | |
download | poky-53fff50cbc363fbf6213587ef30bb4cb0c610add.tar.gz |
python3-magic: add the missing rdepends
Add the missing rdepends to fix below error:
# python3
[snip]
>>> import magic
[snip]
ModuleNotFoundError: No module named 'ctypes'
ModuleNotFoundError: No module named 'tempfile'
(From OE-Core rev: 115791844124bdddfbaec9d75bb887ef35c41f20)
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/python/python3-magic_0.4.18.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3-magic_0.4.18.bb b/meta/recipes-devtools/python/python3-magic_0.4.18.bb index be423adacd..101b96d31c 100644 --- a/meta/recipes-devtools/python/python3-magic_0.4.18.bb +++ b/meta/recipes-devtools/python/python3-magic_0.4.18.bb | |||
@@ -14,6 +14,9 @@ inherit pypi setuptools3 | |||
14 | SRC_URI[md5sum] = "5edc6caa39cc62641850f6b1b6f284ba" | 14 | SRC_URI[md5sum] = "5edc6caa39cc62641850f6b1b6f284ba" |
15 | SRC_URI[sha256sum] = "b757db2a5289ea3f1ced9e60f072965243ea43a2221430048fd8cacab17be0ce" | 15 | SRC_URI[sha256sum] = "b757db2a5289ea3f1ced9e60f072965243ea43a2221430048fd8cacab17be0ce" |
16 | 16 | ||
17 | RDEPENDS_${PN} += "file" | 17 | RDEPENDS_${PN} += "file \ |
18 | ${PYTHON_PN}-ctypes \ | ||
19 | ${PYTHON_PN}-io \ | ||
20 | ${PYTHON_PN}-shell" | ||
18 | 21 | ||
19 | BBCLASSEXTEND = "native" | 22 | BBCLASSEXTEND = "native" |