[oe-commits] [meta-openembedded] 42/52: python-twisted: add missing RDEPENDS for conch

git at git.openembedded.org git at git.openembedded.org
Thu Dec 12 00:23:39 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit c3a3470b1ba3768e04e0a938870ad487bd848120
Author: Trevor Gamblin <trevor.gamblin at windriver.com>
AuthorDate: Tue Dec 10 17:22:59 2019 -0500

    python-twisted: add missing RDEPENDS for conch
    
    import twisted.conch.checkers outputs error messages like the
    following for multiple modules:
    
    |Python 3.7.4 (default, Oct 28 2019, 02:05:50)
    |[GCC 9.2.0] on linux
    |Type "help", "copyright", "credits" or "license" for more information.
    |>>> import twisted.conch.checkers
    |
    |Error message :
    |File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
    |File "/usr/lib64/python3.7/site-packages/twisted/conch/checkers.py", line 32, in
    |<module>
    |from twisted.conch.ssh import keys
    |File "/usr/lib64/python3.7/site-packages/twisted/conch/ssh/keys.py", line 18, in
    |<module>
    |import bcrypt
    |No module named 'bcrypt'
    
    Add the missing RDEPENDS so that it works (bcrypt, cryptography, pyasn1,
    pickle).
    
    Signed-off-by: Trevor Gamblin <trevor.gamblin at windriver.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-python/recipes-devtools/python/python-twisted.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python-twisted.inc b/meta-python/recipes-devtools/python/python-twisted.inc
index 67c90e3..084123b 100644
--- a/meta-python/recipes-devtools/python/python-twisted.inc
+++ b/meta-python/recipes-devtools/python/python-twisted.inc
@@ -58,7 +58,7 @@ RDEPENDS_${PN} = "\
 
 RDEPENDS_${PN}-core = "${PYTHON_PN}-core ${PYTHON_PN}-zopeinterface ${PYTHON_PN}-incremental ${PYTHON_PN}-constantly ${PYTHON_PN}-hyperlink ${PYTHON_PN}-automat ${PYTHON_PN}-pyserial"
 RDEPENDS_${PN}-test = "${PN}"
-RDEPENDS_${PN}-conch = "${PN}-core ${PN}-protocols"
+RDEPENDS_${PN}-conch = "${PN}-core ${PN}-protocols ${PYTHON_PN}-bcrypt ${PYTHON_PN}-cryptography ${PYTHON_PN}-pyasn1 ${PYTHON_PN}-pickle"
 RDEPENDS_${PN}-mail = "${PN}-core ${PN}-protocols"
 RDEPENDS_${PN}-names = "${PN}-core"
 RDEPENDS_${PN}-news = "${PN}-core ${PN}-protocols"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list