From 7c9a856228d33783f28d3461115a64eaaefb043f Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Mon, 14 Apr 2014 23:44:25 -0400 Subject: python-ipaddr: setup.py for this pkg uses distutils Examining the setup.py we find "from distutils.core import setup" we therefor need to inherit distutils, not setuptools. Having the wrong inherit was under certain circumstances causing the do_install to fail with: | error: option --single-version-externally-managed not recognized | ERROR: python setup.py install execution failed. Signed-off-by: Mark Asselstine --- meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-openstack/recipes-devtools/python') diff --git a/meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb b/meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb index b589053..d0d39f6 100644 --- a/meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb +++ b/meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb @@ -14,7 +14,7 @@ SRC_URI[sha256sum] = "1b555b8a8800134fdafe32b7d0cb52f5bdbfdd093707c3dd484c5ea59f S = "${WORKDIR}/${SRCNAME}-${PV}" -inherit setuptools +inherit distutils DEPENDS += " \ python-pip \ -- cgit v1.2.3-54-g00ecf