diff options
| author | Josep Puigdemont <josep.puigdemont@enea.com> | 2015-09-21 16:57:44 +0200 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-09-22 14:40:03 -0400 |
| commit | ff5fbe0ce25763b7d9d4aa76ce76eaf77bfcdcc0 (patch) | |
| tree | a2c8d45645a567cdac102ea1fe9c3921bae8a382 /meta-openstack/recipes-devtools/python | |
| parent | af7efd9aebb1daf314df8877725896eb75a67713 (diff) | |
| download | meta-cloud-services-ff5fbe0ce25763b7d9d4aa76ce76eaf77bfcdcc0.tar.gz | |
python packages: add build dependency on python-pbr
Some packages fail to build because their dependency on
python-pbr during built time is not properly stated in the
recipe. Sometimes the build succeeds anyway because the
python-pbr package has already been built previously. To
avoid the occasional build failure, this patch adds a
dependency on python-pbr to all those packages that
declare it as a dependency in their setup.py file.
Signed-off-by: Josep Puigdemont <josep.puigdemont@enea.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python')
18 files changed, 54 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-glanceclient_git.bb b/meta-openstack/recipes-devtools/python/python-glanceclient_git.bb index a8ba1ed..5435b06 100644 --- a/meta-openstack/recipes-devtools/python/python-glanceclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-glanceclient_git.bb | |||
| @@ -25,6 +25,10 @@ inherit setuptools monitor | |||
| 25 | 25 | ||
| 26 | FILES_${PN} += "${datadir}/${SRCNAME}" | 26 | FILES_${PN} += "${datadir}/${SRCNAME}" |
| 27 | 27 | ||
| 28 | DEPENDS += " \ | ||
| 29 | python-pbr \ | ||
| 30 | " | ||
| 31 | |||
| 28 | RDEPENDS_${PN} = "gmp \ | 32 | RDEPENDS_${PN} = "gmp \ |
| 29 | python-warlock \ | 33 | python-warlock \ |
| 30 | python-pyopenssl \ | 34 | python-pyopenssl \ |
diff --git a/meta-openstack/recipes-devtools/python/python-heat-cfntools_1.2.8.bb b/meta-openstack/recipes-devtools/python/python-heat-cfntools_1.2.8.bb index 3d6756a..383a76c 100644 --- a/meta-openstack/recipes-devtools/python/python-heat-cfntools_1.2.8.bb +++ b/meta-openstack/recipes-devtools/python/python-heat-cfntools_1.2.8.bb | |||
| @@ -15,3 +15,11 @@ SRC_URI[sha256sum] = "de7d93338d3afb71cc4c53d713740316ead0af3a9c869b1231617347e9 | |||
| 15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | 15 | S = "${WORKDIR}/${SRCNAME}-${PV}" |
| 16 | 16 | ||
| 17 | inherit setuptools | 17 | inherit setuptools |
| 18 | |||
| 19 | DEPENDS += "\ | ||
| 20 | python-pbr \ | ||
| 21 | " | ||
| 22 | |||
| 23 | RDEPENDS_${PN} += "\ | ||
| 24 | python-pbr \ | ||
| 25 | " | ||
diff --git a/meta-openstack/recipes-devtools/python/python-mox3_0.7.0.bb b/meta-openstack/recipes-devtools/python/python-mox3_0.7.0.bb index 9e40686..bd1c9aa 100644 --- a/meta-openstack/recipes-devtools/python/python-mox3_0.7.0.bb +++ b/meta-openstack/recipes-devtools/python/python-mox3_0.7.0.bb | |||
| @@ -16,6 +16,10 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" | |||
| 16 | 16 | ||
| 17 | inherit setuptools | 17 | inherit setuptools |
| 18 | 18 | ||
| 19 | DEPENDS += "\ | ||
| 20 | python-pbr \ | ||
| 21 | " | ||
| 22 | |||
| 19 | RDEPENDS_${PN} += " \ | 23 | RDEPENDS_${PN} += " \ |
| 20 | python-pbr \ | 24 | python-pbr \ |
| 21 | python-fixtures \ | 25 | python-fixtures \ |
diff --git a/meta-openstack/recipes-devtools/python/python-openstackclient_1.0.3.bb b/meta-openstack/recipes-devtools/python/python-openstackclient_1.0.3.bb index ae8e82c..77cb5d2 100644 --- a/meta-openstack/recipes-devtools/python/python-openstackclient_1.0.3.bb +++ b/meta-openstack/recipes-devtools/python/python-openstackclient_1.0.3.bb | |||
| @@ -14,3 +14,11 @@ SRC_URI[sha256sum] = "d39a2e6cf98d409f8545b9d3a207eb8cbf3b2fc5ea17b0f8d9bed52326 | |||
| 14 | S = "${WORKDIR}/${SRCNAME}-${PV}" | 14 | S = "${WORKDIR}/${SRCNAME}-${PV}" |
| 15 | 15 | ||
| 16 | inherit setuptools | 16 | inherit setuptools |
| 17 | |||
| 18 | DEPENDS += "\ | ||
| 19 | python-pbr \ | ||
| 20 | " | ||
| 21 | |||
| 22 | RDEPENDS_${PN} += "\ | ||
| 23 | python-pbr \ | ||
| 24 | " | ||
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.concurrency_1.5.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.concurrency_1.5.0.bb index 50136ae..bdd3559 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.concurrency_1.5.0.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.concurrency_1.5.0.bb | |||
| @@ -20,8 +20,10 @@ inherit setuptools | |||
| 20 | 20 | ||
| 21 | DEPENDS += " \ | 21 | DEPENDS += " \ |
| 22 | python-pip \ | 22 | python-pip \ |
| 23 | python-pbr \ | ||
| 23 | " | 24 | " |
| 24 | 25 | ||
| 25 | # RDEPENDS_default: | 26 | # RDEPENDS_default: |
| 26 | RDEPENDS_${PN} += " \ | 27 | RDEPENDS_${PN} += " \ |
| 28 | python-pbr \ | ||
| 27 | " | 29 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.context_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.context_git.bb index 05034f9..d48abe5 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.context_git.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.context_git.bb | |||
| @@ -18,9 +18,11 @@ inherit setuptools | |||
| 18 | DEPENDS += " \ | 18 | DEPENDS += " \ |
| 19 | python-pip \ | 19 | python-pip \ |
| 20 | python-babel \ | 20 | python-babel \ |
| 21 | python-pbr \ | ||
| 21 | " | 22 | " |
| 22 | 23 | ||
| 23 | # RDEPENDS_default: | 24 | # RDEPENDS_default: |
| 24 | RDEPENDS_${PN} += " \ | 25 | RDEPENDS_${PN} += " \ |
| 26 | python-pbr \ | ||
| 25 | bash \ | 27 | bash \ |
| 26 | " | 28 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.db_1.5.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.db_1.5.0.bb index 04b5dd3..1c3a7b4 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.db_1.5.0.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.db_1.5.0.bb | |||
| @@ -18,6 +18,7 @@ inherit setuptools | |||
| 18 | 18 | ||
| 19 | DEPENDS += " \ | 19 | DEPENDS += " \ |
| 20 | python-pip \ | 20 | python-pip \ |
| 21 | python-pbr \ | ||
| 21 | " | 22 | " |
| 22 | 23 | ||
| 23 | RDEPENDS_${PN} += " \ | 24 | RDEPENDS_${PN} += " \ |
| @@ -29,4 +30,5 @@ RDEPENDS_${PN} += " \ | |||
| 29 | python-sqlalchemy \ | 30 | python-sqlalchemy \ |
| 30 | python-sqlalchemy-migrate \ | 31 | python-sqlalchemy-migrate \ |
| 31 | python-stevedore \ | 32 | python-stevedore \ |
| 33 | python-pbr \ | ||
| 32 | " | 34 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.4.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.4.0.bb index fa710d0..d2bc53b 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.4.0.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.4.0.bb | |||
| @@ -20,9 +20,11 @@ inherit setuptools | |||
| 20 | 20 | ||
| 21 | DEPENDS += " \ | 21 | DEPENDS += " \ |
| 22 | python-pip \ | 22 | python-pip \ |
| 23 | python-pbr \ | ||
| 23 | " | 24 | " |
| 24 | 25 | ||
| 25 | # RDEPENDS_default: | 26 | # RDEPENDS_default: |
| 26 | RDEPENDS_${PN} += " \ | 27 | RDEPENDS_${PN} += " \ |
| 27 | python-babel \ | 28 | python-babel \ |
| 29 | python-pbr \ | ||
| 28 | " | 30 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.log_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.log_git.bb index 974578b..bfcbe31 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.log_git.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.log_git.bb | |||
| @@ -18,6 +18,7 @@ inherit setuptools | |||
| 18 | DEPENDS += " \ | 18 | DEPENDS += " \ |
| 19 | python-pip \ | 19 | python-pip \ |
| 20 | python-babel \ | 20 | python-babel \ |
| 21 | python-pbr \ | ||
| 21 | " | 22 | " |
| 22 | 23 | ||
| 23 | # RDEPENDS_default: | 24 | # RDEPENDS_default: |
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 8bb85cb..8841ec0 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.messaging_git.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.messaging_git.bb | |||
| @@ -19,9 +19,11 @@ inherit setuptools | |||
| 19 | 19 | ||
| 20 | DEPENDS += " \ | 20 | DEPENDS += " \ |
| 21 | python-pip \ | 21 | python-pip \ |
| 22 | python-pbr \ | ||
| 22 | " | 23 | " |
| 23 | 24 | ||
| 24 | # RDEPENDS_default: | 25 | # RDEPENDS_default: |
| 25 | RDEPENDS_${PN} += " \ | 26 | RDEPENDS_${PN} += " \ |
| 26 | bash \ | 27 | bash \ |
| 28 | python-pbr \ | ||
| 27 | " | 29 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.middleware_0.4.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.middleware_0.4.0.bb index 7f18179..6affd47 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.middleware_0.4.0.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.middleware_0.4.0.bb | |||
| @@ -20,8 +20,10 @@ inherit setuptools | |||
| 20 | 20 | ||
| 21 | DEPENDS += " \ | 21 | DEPENDS += " \ |
| 22 | python-pip \ | 22 | python-pip \ |
| 23 | python-pbr \ | ||
| 23 | " | 24 | " |
| 24 | 25 | ||
| 25 | # RDEPENDS_default: | 26 | # RDEPENDS_default: |
| 26 | RDEPENDS_${PN} += " \ | 27 | RDEPENDS_${PN} += " \ |
| 28 | python-pbr \ | ||
| 27 | " | 29 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.rootwrap_1.5.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.rootwrap_1.5.0.bb index 3a2477b..e3a47fa 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.rootwrap_1.5.0.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.rootwrap_1.5.0.bb | |||
| @@ -20,8 +20,10 @@ inherit setuptools | |||
| 20 | 20 | ||
| 21 | DEPENDS += " \ | 21 | DEPENDS += " \ |
| 22 | python-pip \ | 22 | python-pip \ |
| 23 | python-pbr \ | ||
| 23 | " | 24 | " |
| 24 | 25 | ||
| 25 | # RDEPENDS_default: | 26 | # RDEPENDS_default: |
| 26 | RDEPENDS_${PN} += " \ | 27 | RDEPENDS_${PN} += " \ |
| 28 | python-pbr \ | ||
| 27 | " | 29 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.serialization_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.serialization_git.bb index 451c6b9..db2869c 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.serialization_git.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.serialization_git.bb | |||
| @@ -19,8 +19,10 @@ inherit setuptools | |||
| 19 | 19 | ||
| 20 | DEPENDS += " \ | 20 | DEPENDS += " \ |
| 21 | python-pip \ | 21 | python-pip \ |
| 22 | python-pbr \ | ||
| 22 | " | 23 | " |
| 23 | 24 | ||
| 24 | # RDEPENDS_default: | 25 | # RDEPENDS_default: |
| 25 | RDEPENDS_${PN} += " \ | 26 | RDEPENDS_${PN} += " \ |
| 27 | python-pbr \ | ||
| 26 | " | 28 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb index 27a80b6..33c7e53 100644 --- a/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb +++ b/meta-openstack/recipes-devtools/python/python-oslo.utils_git.bb | |||
| @@ -19,8 +19,10 @@ inherit setuptools | |||
| 19 | 19 | ||
| 20 | DEPENDS += " \ | 20 | DEPENDS += " \ |
| 21 | python-pip \ | 21 | python-pip \ |
| 22 | python-pbr \ | ||
| 22 | " | 23 | " |
| 23 | 24 | ||
| 24 | # RDEPENDS_default: | 25 | # RDEPENDS_default: |
| 25 | RDEPENDS_${PN} += " \ | 26 | RDEPENDS_${PN} += " \ |
| 27 | python-pbr \ | ||
| 26 | " | 28 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-oslotest_1.4.0.bb b/meta-openstack/recipes-devtools/python/python-oslotest_1.4.0.bb index b3819e4..fae73cc 100644 --- a/meta-openstack/recipes-devtools/python/python-oslotest_1.4.0.bb +++ b/meta-openstack/recipes-devtools/python/python-oslotest_1.4.0.bb | |||
| @@ -19,6 +19,10 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" | |||
| 19 | 19 | ||
| 20 | inherit setuptools | 20 | inherit setuptools |
| 21 | 21 | ||
| 22 | DEPENDS += " \ | ||
| 23 | python-pbr \ | ||
| 24 | " | ||
| 25 | |||
| 22 | RDEPENDS_${PN} = "python-fixtures \ | 26 | RDEPENDS_${PN} = "python-fixtures \ |
| 23 | python-subunit \ | 27 | python-subunit \ |
| 24 | python-testrepository \ | 28 | python-testrepository \ |
| @@ -26,5 +30,6 @@ RDEPENDS_${PN} = "python-fixtures \ | |||
| 26 | python-testtools \ | 30 | python-testtools \ |
| 27 | python-mock \ | 31 | python-mock \ |
| 28 | python-mox \ | 32 | python-mox \ |
| 33 | python-pbr \ | ||
| 29 | bash \ | 34 | bash \ |
| 30 | " | 35 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-osprofiler_0.3.0.bb b/meta-openstack/recipes-devtools/python/python-osprofiler_0.3.0.bb index 7e1fc09..1883dbb 100644 --- a/meta-openstack/recipes-devtools/python/python-osprofiler_0.3.0.bb +++ b/meta-openstack/recipes-devtools/python/python-osprofiler_0.3.0.bb | |||
| @@ -20,10 +20,12 @@ inherit setuptools | |||
| 20 | 20 | ||
| 21 | DEPENDS += " \ | 21 | DEPENDS += " \ |
| 22 | python-pip \ | 22 | python-pip \ |
| 23 | python-pbr \ | ||
| 23 | " | 24 | " |
| 24 | 25 | ||
| 25 | # RDEPENDS_default: | 26 | # RDEPENDS_default: |
| 26 | RDEPENDS_${PN} += " \ | 27 | RDEPENDS_${PN} += " \ |
| 27 | python-six \ | 28 | python-six \ |
| 28 | python-webob \ | 29 | python-webob \ |
| 30 | python-pbr \ | ||
| 29 | " | 31 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-pycadf_0.6.0.bb b/meta-openstack/recipes-devtools/python/python-pycadf_0.6.0.bb index 6762b6c..1857063 100644 --- a/meta-openstack/recipes-devtools/python/python-pycadf_0.6.0.bb +++ b/meta-openstack/recipes-devtools/python/python-pycadf_0.6.0.bb | |||
| @@ -20,6 +20,7 @@ FILES_${PN} += "${datadir}/etc/${SRCNAME}/*" | |||
| 20 | 20 | ||
| 21 | DEPENDS += " \ | 21 | DEPENDS += " \ |
| 22 | python-pip \ | 22 | python-pip \ |
| 23 | python-pbr \ | ||
| 23 | " | 24 | " |
| 24 | 25 | ||
| 25 | RDEPENDS_${PN} += " \ | 26 | RDEPENDS_${PN} += " \ |
| @@ -30,4 +31,5 @@ RDEPENDS_${PN} += " \ | |||
| 30 | python-pytz \ | 31 | python-pytz \ |
| 31 | python-six \ | 32 | python-six \ |
| 32 | python-webob \ | 33 | python-webob \ |
| 34 | python-pbr \ | ||
| 33 | " | 35 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-tooz_0.4.bb b/meta-openstack/recipes-devtools/python/python-tooz_0.4.bb index 1237f47..9ea75c3 100644 --- a/meta-openstack/recipes-devtools/python/python-tooz_0.4.bb +++ b/meta-openstack/recipes-devtools/python/python-tooz_0.4.bb | |||
| @@ -20,6 +20,7 @@ inherit setuptools | |||
| 20 | 20 | ||
| 21 | DEPENDS += " \ | 21 | DEPENDS += " \ |
| 22 | python-pip \ | 22 | python-pip \ |
| 23 | python-pbr \ | ||
| 23 | " | 24 | " |
| 24 | 25 | ||
| 25 | # RDEPENDS_default: | 26 | # RDEPENDS_default: |
| @@ -28,4 +29,5 @@ RDEPENDS_${PN} += " \ | |||
| 28 | python-zake \ | 29 | python-zake \ |
| 29 | python-sysv-ipc \ | 30 | python-sysv-ipc \ |
| 30 | python-memcache \ | 31 | python-memcache \ |
| 32 | python-pbr \ | ||
| 31 | " | 33 | " |
