summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMingli Yu <mingli.yu@windriver.com>2020-06-10 13:43:38 +0800
committerBruce Ashfield <bruce.ashfield@gmail.com>2020-06-16 20:30:27 -0400
commit9765cee9e9b55168c539c7bc17323d4ad2e7a995 (patch)
treeaa5fb6c7c4777fb7317a7f03c2e0a6b4919f4165
parentd75bc448866d2b36779251efb1310d0234ece30b (diff)
downloadmeta-virtualization-9765cee9e9b55168c539c7bc17323d4ad2e7a995.tar.gz
python3-dockerpty: add the missing rdepends
Add the missing rdepends to fix below error: # python3 [snip] >>> import dockerpty [snip] ModuleNotFoundError: No module named 'ssl' ModuleNotFoundError: No module named 'fcntl' ModuleNotFoundError: No module named 'six' ModuleNotFoundError: No module named 'tty' Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-devtools/python/python3-dockerpty_0.4.1.bb7
1 files changed, 7 insertions, 0 deletions
diff --git a/recipes-devtools/python/python3-dockerpty_0.4.1.bb b/recipes-devtools/python/python3-dockerpty_0.4.1.bb
index 31a864a5..cde2d128 100644
--- a/recipes-devtools/python/python3-dockerpty_0.4.1.bb
+++ b/recipes-devtools/python/python3-dockerpty_0.4.1.bb
@@ -7,3 +7,10 @@ inherit pypi setuptools3
7 7
8SRC_URI[md5sum] = "028bacb34536f3ee6a2ccd668c27e8e4" 8SRC_URI[md5sum] = "028bacb34536f3ee6a2ccd668c27e8e4"
9SRC_URI[sha256sum] = "69a9d69d573a0daa31bcd1c0774eeed5c15c295fe719c61aca550ed1393156ce" 9SRC_URI[sha256sum] = "69a9d69d573a0daa31bcd1c0774eeed5c15c295fe719c61aca550ed1393156ce"
10
11RDEPENDS_${PN} += "\
12 ${PYTHON_PN}-fcntl \
13 ${PYTHON_PN}-io \
14 ${PYTHON_PN}-six \
15 ${PYTHON_PN}-terminal \
16"