From b5091a1a3423784e1b22faca1275be8377a3c4ff Mon Sep 17 00:00:00 2001 From: "S. Lockwood-Childs" Date: Thu, 2 Jun 2016 23:16:30 -0700 Subject: [PATCH] python-tornado: add missing python2 runtime deps Tornado 4.3 needs backports_abc and singledispatch backport modules at runtime to prevent tornado/gen.py from bombing on import errors when running on python2 rather than python3.4 Signed-off-by: S. Lockwood-Childs Signed-off-by: Martin Jansa --- meta-python/recipes-devtools/python/python-tornado_4.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/recipes-devtools/python/python-tornado_4.3.bb b/meta-python/recipes-devtools/python/python-tornado_4.3.bb index 55a48b884..5d1147556 100644 --- a/meta-python/recipes-devtools/python/python-tornado_4.3.bb +++ b/meta-python/recipes-devtools/python/python-tornado_4.3.bb @@ -1,3 +1,3 @@ inherit pypi setuptools require python-tornado.inc -RDEPENDS_${PN} += "${PYTHON_PN}-backports-ssl" +RDEPENDS_${PN} += "${PYTHON_PN}-backports-ssl ${PYTHON_PN}-backports-abc ${PYTHON_PN}-singledispatch"