From 157ca6fe949d8ef7bb1a589b20e8e85f014c6b89 Mon Sep 17 00:00:00 2001 From: Trevor Gamblin Date: Wed, 8 Apr 2020 12:21:37 -0400 Subject: python3-debtcollector: add six and wrapt to RDEPENDS Add python3-wrapt and python3-six to RDEPENDS as debtcollector requires them for some functionality, e.g.: |root@qemux86-64:~# python3 |Python 3.7.6 (default, Apr 6 2020, 18:11:01) |[GCC 9.2.0] on linux |Type "help", "copyright", "credits" or "license" for more information. |>>> from debtcollector import removals |Traceback (most recent call last): | File "", line 1, in | File "/usr/lib64/python3.7/site-packages/debtcollector/removals.py", line 19, in | import wrapt |ModuleNotFoundError: No module named 'wrapt' |>>> python3-six isn't needed for the python3 version of debtcollector, but add it to the RDEPENDS for consistency in backports of this patch (as python2 does require it). Signed-off-by: Trevor Gamblin Signed-off-by: Bruce Ashfield --- meta-openstack/recipes-devtools/python/python-debtcollector.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-openstack/recipes-devtools/python/python-debtcollector.inc b/meta-openstack/recipes-devtools/python/python-debtcollector.inc index d519bfd..d6d18e3 100644 --- a/meta-openstack/recipes-devtools/python/python-debtcollector.inc +++ b/meta-openstack/recipes-devtools/python/python-debtcollector.inc @@ -22,4 +22,6 @@ DEPENDS += " \ # RDEPENDS_default: RDEPENDS_${PN} += " \ ${PYTHON_PN}-pbr \ + ${PYTHON_PN}-wrapt \ + ${PYTHON_PN}-six \ " -- cgit v1.2.3-54-g00ecf