From 806abca4a5f914e5e02cbd42f9ee967d493559a6 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Sun, 22 Feb 2015 23:50:02 -0500 Subject: oslo.messaging: add bash to rdepends We get the following QA warning: WARNING: QA Issue: python-oslo.messaging requires /bin/bash, but no providers in its RDEPENDS [file-rdeps] So we add bash to the redepends to fix the issue. Signed-off-by: Bruce Ashfield --- meta-openstack/recipes-devtools/python/python-oslo.messaging_git.bb | 1 + 1 file changed, 1 insertion(+) (limited to 'meta-openstack/recipes-devtools/python') diff --git a/meta-openstack/recipes-devtools/python/python-oslo.messaging_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.messaging_git.bb index 5c11505..8bb85cb 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.messaging_git.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.messaging_git.bb @@ -23,4 +23,5 @@ DEPENDS += " \ # RDEPENDS_default: RDEPENDS_${PN} += " \ + bash \ " -- cgit v1.2.3-54-g00ecf From 0431c45c2e0d61479eca447551f1631476b469a9 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Tue, 24 Feb 2015 12:16:11 -0500 Subject: support-libs: fix clean issues With recent changes to oe-core make clean is run during the configuration phase of python packages. For some packages, this causes breakage as 'make clean' is not supported. To keep the build going, we mark them as brokenclean to avoid the issue. Signed-off-by: Bruce Ashfield --- .../recipes-devtools/python/python-dateutil_1.5.bbappend | 1 + .../python/python-django-compressor_1.4.bb | 2 ++ .../recipes-devtools/python/python-flask_0.10.1.bb | 3 +++ .../recipes-devtools/python/python-horizon_git.bb | 3 +++ .../recipes-devtools/python/python-itsdangerous_0.23.bb | 2 ++ .../recipes-devtools/python/python-jinja2_2.7.1.bb | 14 +++++++++++++- .../recipes-devtools/python/python-pyscss_1.2.1.bb | 4 ++++ .../python/python-testrepository_0.0.18.bb | 5 ++++- .../recipes-devtools/python/python-werkzeug_0.9.4.bb | 13 ++++++++++++- meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb | 3 +++ 10 files changed, 47 insertions(+), 3 deletions(-) create mode 100644 meta-openstack/recipes-devtools/python/python-dateutil_1.5.bbappend (limited to 'meta-openstack/recipes-devtools/python') diff --git a/meta-openstack/recipes-devtools/python/python-dateutil_1.5.bbappend b/meta-openstack/recipes-devtools/python/python-dateutil_1.5.bbappend new file mode 100644 index 0000000..68409e5 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-dateutil_1.5.bbappend @@ -0,0 +1 @@ +CLEANBROKEN = "1" diff --git a/meta-openstack/recipes-devtools/python/python-django-compressor_1.4.bb b/meta-openstack/recipes-devtools/python/python-django-compressor_1.4.bb index 9794c57..7989468 100644 --- a/meta-openstack/recipes-devtools/python/python-django-compressor_1.4.bb +++ b/meta-openstack/recipes-devtools/python/python-django-compressor_1.4.bb @@ -19,3 +19,5 @@ inherit setuptools RDEPENDS_${PN} += "python-django-appconf \ " + +CLEANBROKEN = "1" diff --git a/meta-openstack/recipes-devtools/python/python-flask_0.10.1.bb b/meta-openstack/recipes-devtools/python/python-flask_0.10.1.bb index e07c3a2..263e53d 100644 --- a/meta-openstack/recipes-devtools/python/python-flask_0.10.1.bb +++ b/meta-openstack/recipes-devtools/python/python-flask_0.10.1.bb @@ -15,3 +15,6 @@ SRC_URI[sha256sum] = "4c83829ff83d408b5e1d4995472265411d2c414112298f2eb4b359d9e4 S = "${WORKDIR}/${SRCNAME}-${PV}" inherit setuptools + +CLEANBROKEN = "1" + diff --git a/meta-openstack/recipes-devtools/python/python-horizon_git.bb b/meta-openstack/recipes-devtools/python/python-horizon_git.bb index bf7f959..47f6a7c 100644 --- a/meta-openstack/recipes-devtools/python/python-horizon_git.bb +++ b/meta-openstack/recipes-devtools/python/python-horizon_git.bb @@ -177,3 +177,6 @@ RDEPENDS_${SRCNAME}-apache = "\ MONITOR_SERVICE_PACKAGES = "${SRCNAME}" MONITOR_SERVICE_${SRCNAME} = "horizon" + +CLEANBROKEN = "1" + diff --git a/meta-openstack/recipes-devtools/python/python-itsdangerous_0.23.bb b/meta-openstack/recipes-devtools/python/python-itsdangerous_0.23.bb index 8dbe48f..baeb549 100644 --- a/meta-openstack/recipes-devtools/python/python-itsdangerous_0.23.bb +++ b/meta-openstack/recipes-devtools/python/python-itsdangerous_0.23.bb @@ -18,3 +18,5 @@ inherit setuptools RDEPENDS_${PN} += "python-json python-netclient python-zlib python-datetime python-lang python-crypt" +CLEANBROKEN = "1" + diff --git a/meta-openstack/recipes-devtools/python/python-jinja2_2.7.1.bb b/meta-openstack/recipes-devtools/python/python-jinja2_2.7.1.bb index 878ca22..496d65a 100644 --- a/meta-openstack/recipes-devtools/python/python-jinja2_2.7.1.bb +++ b/meta-openstack/recipes-devtools/python/python-jinja2_2.7.1.bb @@ -16,4 +16,16 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" inherit setuptools -RDEPENDS_${PN} += "python-io python-pickle python-crypt python-math python-netclient python-re python-textutils python-lang python-pprint python-shell python-markupsafe" +RDEPENDS_${PN} += "python-io \ + python-pickle \ + python-crypt \ + python-math \ + python-netclient \ + python-re \ + python-textutils \ + python-lang \ + python-pprint \ + python-shell \ + python-markupsafe" + +CLEANBROKEN = "1" diff --git a/meta-openstack/recipes-devtools/python/python-pyscss_1.2.1.bb b/meta-openstack/recipes-devtools/python/python-pyscss_1.2.1.bb index b60322f..d52fe05 100644 --- a/meta-openstack/recipes-devtools/python/python-pyscss_1.2.1.bb +++ b/meta-openstack/recipes-devtools/python/python-pyscss_1.2.1.bb @@ -21,8 +21,12 @@ inherit setuptools DEPENDS += " \ python-pip \ libpcre \ + python-six \ " # RDEPENDS_default: RDEPENDS_${PN} += " \ " + +CLEANBROKEN = "1" + diff --git a/meta-openstack/recipes-devtools/python/python-testrepository_0.0.18.bb b/meta-openstack/recipes-devtools/python/python-testrepository_0.0.18.bb index 55270ba..f4e708e 100644 --- a/meta-openstack/recipes-devtools/python/python-testrepository_0.0.18.bb +++ b/meta-openstack/recipes-devtools/python/python-testrepository_0.0.18.bb @@ -19,4 +19,7 @@ inherit setuptools RDEPENDS_${PN} += "python-subunit \ python-extras \ -" \ No newline at end of file +" + +CLEANBROKEN = "1" + diff --git a/meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb b/meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb index 2d160b9..38e9f0f 100644 --- a/meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb +++ b/meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb @@ -16,5 +16,16 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" inherit setuptools -RDEPENDS_${PN} += "python-io python-datetime python-email python-zlib python-pkgutil python-html python-shell python-pprint python-subprocess python-netserver" +RDEPENDS_${PN} += "python-io \ + python-datetime \ + python-email \ + python-zlib \ + python-pkgutil \ + python-html \ + python-shell \ + python-pprint \ + python-subprocess \ + python-netserver" + +CLEANBROKEN = "1" diff --git a/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb b/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb index 7de85e8..b03ca3e 100644 --- a/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb +++ b/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb @@ -29,3 +29,6 @@ DEPENDS += " \ # RDEPENDS_default: RDEPENDS_${PN} += " \ " + +CLEANBROKEN = "1" + -- cgit v1.2.3-54-g00ecf