diff options
author | Mingli Yu <mingli.yu@windriver.com> | 2020-06-12 11:46:46 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-12 08:47:00 -0700 |
commit | fe77eaab8f0c3be9e1fbfeef69400f4f06748613 (patch) | |
tree | f11aa1c4b968eb9d8ea4d8a9149f831c4b46b174 | |
parent | 342ffdc3c3d1530ae31b4ca527d0a82dcf7a31e0 (diff) | |
download | meta-openembedded-fe77eaab8f0c3be9e1fbfeef69400f4f06748613.tar.gz |
python3-m2crypto: add the missing rdepends
Add the missing rdepends to fix the error such as below:
# python3
[snip]
>>> import M2Crypto
ModuleNotFoundError: No module named 'decimal'
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python-m2crypto.inc | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/meta-python/recipes-devtools/python/python-m2crypto.inc b/meta-python/recipes-devtools/python/python-m2crypto.inc index 881fdf1cc..81c81645a 100644 --- a/meta-python/recipes-devtools/python/python-m2crypto.inc +++ b/meta-python/recipes-devtools/python/python-m2crypto.inc | |||
@@ -17,10 +17,16 @@ PYPI_PACKAGE = "M2Crypto" | |||
17 | inherit pypi siteinfo | 17 | inherit pypi siteinfo |
18 | 18 | ||
19 | DEPENDS += "openssl swig-native" | 19 | DEPENDS += "openssl swig-native" |
20 | RDEPENDS_${PN} += "${PYTHON_PN}-typing \ | 20 | RDEPENDS_${PN} += "\ |
21 | ${PYTHON_PN}-distutils \ | 21 | ${PYTHON_PN}-datetime \ |
22 | ${PYTHON_PN}-smtpd \ | 22 | ${PYTHON_PN}-distutils \ |
23 | ${PYTHON_PN}-xmlrpc \ | 23 | ${PYTHON_PN}-logging \ |
24 | ${PYTHON_PN}-netclient \ | ||
25 | ${PYTHON_PN}-netserver \ | ||
26 | ${PYTHON_PN}-numbers \ | ||
27 | ${PYTHON_PN}-smtpd \ | ||
28 | ${PYTHON_PN}-typing \ | ||
29 | ${PYTHON_PN}-xmlrpc \ | ||
24 | " | 30 | " |
25 | 31 | ||
26 | DISTUTILS_BUILD_ARGS += "build_ext --openssl=${STAGING_EXECPREFIXDIR} -I${STAGING_INCDIR}" | 32 | DISTUTILS_BUILD_ARGS += "build_ext --openssl=${STAGING_EXECPREFIXDIR} -I${STAGING_INCDIR}" |