diff options
author | Ryosuke Saito <ryosuke.saito@linaro.org> | 2025-07-17 12:05:41 +0900 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-07-17 23:49:59 -0400 |
commit | 6c5afb77aa5580dbe737f682ee2f792122c0c2f3 (patch) | |
tree | 2062543d37187caf46177f4f07f50df7f71d191c /meta-openstack/recipes-devtools/python | |
parent | 24f0b028ecdd3740a4a7b2e961d00bc4587f6e7d (diff) | |
download | meta-cloud-services-master.tar.gz |
Add whitespaces around variable assignments to eliminate the build warnings:
WARNING: python-ceilometer_git.bb:25 has a lack of whitespace around the assignment:
'KEYSTONE_HOST="${CONTROLLER_IP}"'
WARNING: python-cinder_git.bb:39 has a lack of whitespace around the assignment:
'KEYSTONE_HOST="${CONTROLLER_IP}"'
...
Signed-off-by: Ryosuke Saito <ryosuke.saito@linaro.org>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python')
21 files changed, 31 insertions, 31 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-barbican_git.bb b/meta-openstack/recipes-devtools/python/python-barbican_git.bb index 90ed8d7..ffc7a63 100644 --- a/meta-openstack/recipes-devtools/python/python-barbican_git.bb +++ b/meta-openstack/recipes-devtools/python/python-barbican_git.bb | |||
@@ -21,7 +21,7 @@ PV = "2015.1.0+git${SRCPV}" | |||
21 | inherit update-rc.d setuptools3 identity hosts useradd default_configs monitor | 21 | inherit update-rc.d setuptools3 identity hosts useradd default_configs monitor |
22 | 22 | ||
23 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" | 23 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" |
24 | KEYSTONE_HOST="${CONTROLLER_IP}" | 24 | KEYSTONE_HOST = "${CONTROLLER_IP}" |
25 | 25 | ||
26 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. | 26 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. |
27 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. | 27 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. |
diff --git a/meta-openstack/recipes-devtools/python/python-ceilometer_git.bb b/meta-openstack/recipes-devtools/python/python-ceilometer_git.bb index 1592cd2..9eec72c 100644 --- a/meta-openstack/recipes-devtools/python/python-ceilometer_git.bb +++ b/meta-openstack/recipes-devtools/python/python-ceilometer_git.bb | |||
@@ -20,7 +20,7 @@ PV = "5.0.0+git${SRCPV}" | |||
20 | CEILOMETER_SECRET ?= "12121212" | 20 | CEILOMETER_SECRET ?= "12121212" |
21 | 21 | ||
22 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-reseller" | 22 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-reseller" |
23 | KEYSTONE_HOST="${CONTROLLER_IP}" | 23 | KEYSTONE_HOST = "${CONTROLLER_IP}" |
24 | 24 | ||
25 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. | 25 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. |
26 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. | 26 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. |
diff --git a/meta-openstack/recipes-devtools/python/python-cinder_git.bb b/meta-openstack/recipes-devtools/python/python-cinder_git.bb index 5f56024..f72036d 100644 --- a/meta-openstack/recipes-devtools/python/python-cinder_git.bb +++ b/meta-openstack/recipes-devtools/python/python-cinder_git.bb | |||
@@ -35,7 +35,7 @@ USERADD_PARAM:${PN} = "--system -m -d ${localstatedir}/lib/cinder -s /bin/false | |||
35 | 35 | ||
36 | CINDER_BACKUP_BACKEND_DRIVER ?= "cinder.backup.drivers.swift" | 36 | CINDER_BACKUP_BACKEND_DRIVER ?= "cinder.backup.drivers.swift" |
37 | 37 | ||
38 | KEYSTONE_HOST="${CONTROLLER_IP}" | 38 | KEYSTONE_HOST = "${CONTROLLER_IP}" |
39 | 39 | ||
40 | CINDER_LVM_VOLUME_BACKING_FILE_SIZE ?= "2G" | 40 | CINDER_LVM_VOLUME_BACKING_FILE_SIZE ?= "2G" |
41 | CINDER_NFS_VOLUME_SERVERS_DEFAULT = "controller:/etc/cinder/nfs_volumes" | 41 | CINDER_NFS_VOLUME_SERVERS_DEFAULT = "controller:/etc/cinder/nfs_volumes" |
diff --git a/meta-openstack/recipes-devtools/python/python-cinderclient_git.bb b/meta-openstack/recipes-devtools/python/python-cinderclient_git.bb index 2f62677..0200030 100644 --- a/meta-openstack/recipes-devtools/python/python-cinderclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-cinderclient_git.bb | |||
@@ -12,8 +12,8 @@ SRC_URI = "\ | |||
12 | file://cinder-api-check.sh \ | 12 | file://cinder-api-check.sh \ |
13 | " | 13 | " |
14 | 14 | ||
15 | PV="3.1.0+git${SRCPV}" | 15 | PV = "3.1.0+git${SRCPV}" |
16 | SRCREV="3640aeab6e11987288a2f149fbeedb1c026045e2" | 16 | SRCREV = "3640aeab6e11987288a2f149fbeedb1c026045e2" |
17 | 17 | ||
18 | inherit setuptools3 monitor | 18 | inherit setuptools3 monitor |
19 | 19 | ||
diff --git a/meta-openstack/recipes-devtools/python/python-glance_git.bb b/meta-openstack/recipes-devtools/python/python-glance_git.bb index 06e4d93..5e7bd88 100644 --- a/meta-openstack/recipes-devtools/python/python-glance_git.bb +++ b/meta-openstack/recipes-devtools/python/python-glance_git.bb | |||
@@ -34,7 +34,7 @@ GLANCE_KNOWN_STORES ?= "glance.store.rbd.Store,\ | |||
34 | glance.store.http.Store" | 34 | glance.store.http.Store" |
35 | 35 | ||
36 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" | 36 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" |
37 | KEYSTONE_HOST="${CONTROLLER_IP}" | 37 | KEYSTONE_HOST = "${CONTROLLER_IP}" |
38 | 38 | ||
39 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. | 39 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. |
40 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. | 40 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. |
diff --git a/meta-openstack/recipes-devtools/python/python-heat_git.bb b/meta-openstack/recipes-devtools/python/python-heat_git.bb index c46fc7a..cb833fb 100644 --- a/meta-openstack/recipes-devtools/python/python-heat_git.bb +++ b/meta-openstack/recipes-devtools/python/python-heat_git.bb | |||
@@ -19,7 +19,7 @@ SRCREV = "4348b7ababd1048e17ec354ca38c903c908cd74e" | |||
19 | PV = "5.0.0+git${SRCPV}" | 19 | PV = "5.0.0+git${SRCPV}" |
20 | 20 | ||
21 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-templates ${SRCNAME}-cfn" | 21 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-templates ${SRCNAME}-cfn" |
22 | KEYSTONE_HOST="${CONTROLLER_IP}" | 22 | KEYSTONE_HOST = "${CONTROLLER_IP}" |
23 | 23 | ||
24 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. | 24 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. |
25 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. | 25 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. |
diff --git a/meta-openstack/recipes-devtools/python/python-heatclient_git.bb b/meta-openstack/recipes-devtools/python/python-heatclient_git.bb index b1f7b4f..40ac44b 100644 --- a/meta-openstack/recipes-devtools/python/python-heatclient_git.bb +++ b/meta-openstack/recipes-devtools/python/python-heatclient_git.bb | |||
@@ -14,7 +14,7 @@ DEPENDS += " \ | |||
14 | python-pbr-native \ | 14 | python-pbr-native \ |
15 | " | 15 | " |
16 | 16 | ||
17 | RDEPENDS:${PN} +="python-cliff \ | 17 | RDEPENDS:${PN} += "python-cliff \ |
18 | python-httplib2 \ | 18 | python-httplib2 \ |
19 | python-iso8601 \ | 19 | python-iso8601 \ |
20 | python-prettytable \ | 20 | python-prettytable \ |
diff --git a/meta-openstack/recipes-devtools/python/python-keystone-hybrid-backend_git.bb b/meta-openstack/recipes-devtools/python/python-keystone-hybrid-backend_git.bb index 375969b..4b7c188 100644 --- a/meta-openstack/recipes-devtools/python/python-keystone-hybrid-backend_git.bb +++ b/meta-openstack/recipes-devtools/python/python-keystone-hybrid-backend_git.bb | |||
@@ -8,8 +8,8 @@ PR = "r0" | |||
8 | 8 | ||
9 | SRC_URI = "git://github.com/SUSE-Cloud/keystone-hybrid-backend.git;branch=havana;protocol=https" | 9 | SRC_URI = "git://github.com/SUSE-Cloud/keystone-hybrid-backend.git;branch=havana;protocol=https" |
10 | 10 | ||
11 | PV="git${SRCPV}" | 11 | PV = "git${SRCPV}" |
12 | SRCREV="0bd376242f8522edef7031d2339b9533b86c17aa" | 12 | SRCREV = "0bd376242f8522edef7031d2339b9533b86c17aa" |
13 | 13 | ||
14 | inherit python3-dir | 14 | inherit python3-dir |
15 | 15 | ||
diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb index 5ec5af2..7fae4c7 100644 --- a/meta-openstack/recipes-devtools/python/python-keystone_git.bb +++ b/meta-openstack/recipes-devtools/python/python-keystone_git.bb | |||
@@ -35,7 +35,7 @@ USERADD_PARAM:${PN} = "--system -m -s /bin/false keystone" | |||
35 | LDAP_DN ?= "dc=my-domain,dc=com" | 35 | LDAP_DN ?= "dc=my-domain,dc=com" |
36 | 36 | ||
37 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" | 37 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" |
38 | KEYSTONE_HOST="${CONTROLLER_IP}" | 38 | KEYSTONE_HOST = "${CONTROLLER_IP}" |
39 | 39 | ||
40 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be | 40 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be |
41 | # set. If the flag for a parameter in the list is not set here, the default | 41 | # set. If the flag for a parameter in the list is not set here, the default |
diff --git a/meta-openstack/recipes-devtools/python/python-neutron-lib_git.bb b/meta-openstack/recipes-devtools/python/python-neutron-lib_git.bb index 84e766d..adefdd9 100644 --- a/meta-openstack/recipes-devtools/python/python-neutron-lib_git.bb +++ b/meta-openstack/recipes-devtools/python/python-neutron-lib_git.bb | |||
@@ -8,8 +8,8 @@ SRC_URI = "\ | |||
8 | git://git.openstack.org/openstack/neutron-lib.git;branch=stable/pike \ | 8 | git://git.openstack.org/openstack/neutron-lib.git;branch=stable/pike \ |
9 | " | 9 | " |
10 | 10 | ||
11 | PV="1.9.1+git${SRCPV}" | 11 | PV = "1.9.1+git${SRCPV}" |
12 | SRCREV="f0d7e470c2ef1702b2715ceb2fd8a00fce2a23be" | 12 | SRCREV = "f0d7e470c2ef1702b2715ceb2fd8a00fce2a23be" |
13 | 13 | ||
14 | inherit setuptools3 | 14 | inherit setuptools3 |
15 | 15 | ||
diff --git a/meta-openstack/recipes-devtools/python/python-neutron_git.bb b/meta-openstack/recipes-devtools/python/python-neutron_git.bb index 7229e47..7ed21af 100644 --- a/meta-openstack/recipes-devtools/python/python-neutron_git.bb +++ b/meta-openstack/recipes-devtools/python/python-neutron_git.bb | |||
@@ -40,7 +40,7 @@ GROUPADD_PARAM:${PN} = "--system ${GROUP}" | |||
40 | USERADD_PARAM:${PN} = "--system -m -d ${localstatedir}/lib/neutron -s /bin/false -g ${GROUP} ${USER}" | 40 | USERADD_PARAM:${PN} = "--system -m -d ${localstatedir}/lib/neutron -s /bin/false -g ${GROUP} ${USER}" |
41 | 41 | ||
42 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" | 42 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" |
43 | KEYSTONE_HOST="${CONTROLLER_IP}" | 43 | KEYSTONE_HOST = "${CONTROLLER_IP}" |
44 | 44 | ||
45 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. | 45 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. |
46 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. | 46 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. |
diff --git a/meta-openstack/recipes-devtools/python/python-nova_git.bb b/meta-openstack/recipes-devtools/python/python-nova_git.bb index fc96b51..247e816 100644 --- a/meta-openstack/recipes-devtools/python/python-nova_git.bb +++ b/meta-openstack/recipes-devtools/python/python-nova_git.bb | |||
@@ -51,7 +51,7 @@ USERADD_PARAM:${PN} = "--system -m -d ${localstatedir}/lib/nova -s /bin/false -g | |||
51 | PLACEMENT_USER = "placement" | 51 | PLACEMENT_USER = "placement" |
52 | 52 | ||
53 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-ec2" | 53 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-ec2" |
54 | KEYSTONE_HOST="${CONTROLLER_IP}" | 54 | KEYSTONE_HOST = "${CONTROLLER_IP}" |
55 | 55 | ||
56 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. | 56 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. |
57 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. | 57 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. |
diff --git a/meta-openstack/recipes-devtools/python/python-rally_git.bb b/meta-openstack/recipes-devtools/python/python-rally_git.bb index 11bd331..015c34a 100644 --- a/meta-openstack/recipes-devtools/python/python-rally_git.bb +++ b/meta-openstack/recipes-devtools/python/python-rally_git.bb | |||
@@ -20,8 +20,8 @@ SRC_URI = "git://github.com/stackforge/${SRCNAME}.git;branch=master;protocol=htt | |||
20 | file://verification-subunit2json-fail-to-open-result-file.patch \ | 20 | file://verification-subunit2json-fail-to-open-result-file.patch \ |
21 | " | 21 | " |
22 | 22 | ||
23 | SRCREV="b297cf00750f263b8b5bdeb71f6952f672e87f5a" | 23 | SRCREV = "b297cf00750f263b8b5bdeb71f6952f672e87f5a" |
24 | PV="git${SRCPV}" | 24 | PV = "git${SRCPV}" |
25 | 25 | ||
26 | inherit setuptools3 update-rc.d hosts identity default_configs | 26 | inherit setuptools3 update-rc.d hosts identity default_configs |
27 | 27 | ||
diff --git a/meta-openstack/recipes-devtools/python/python-swift_git.bb b/meta-openstack/recipes-devtools/python/python-swift_git.bb index e734d24..08836d2 100644 --- a/meta-openstack/recipes-devtools/python/python-swift_git.bb +++ b/meta-openstack/recipes-devtools/python/python-swift_git.bb | |||
@@ -16,8 +16,8 @@ SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=master;protocol=http | |||
16 | file://cluster.conf \ | 16 | file://cluster.conf \ |
17 | " | 17 | " |
18 | 18 | ||
19 | SRCREV="4ca08cc395e686265574366497a6869e94eebcb2" | 19 | SRCREV = "4ca08cc395e686265574366497a6869e94eebcb2" |
20 | PV="2.2.2+git${SRCPV}" | 20 | PV = "2.2.2+git${SRCPV}" |
21 | 21 | ||
22 | inherit setuptools3 python3-dir update-rc.d hosts identity | 22 | inherit setuptools3 python3-dir update-rc.d hosts identity |
23 | 23 | ||
@@ -29,7 +29,7 @@ inherit setuptools3 python3-dir update-rc.d hosts identity | |||
29 | SWIFT_BACKING_FILE_SIZE ?= "2G" | 29 | SWIFT_BACKING_FILE_SIZE ?= "2G" |
30 | 30 | ||
31 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" | 31 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" |
32 | KEYSTONE_HOST="${CONTROLLER_IP}" | 32 | KEYSTONE_HOST = "${CONTROLLER_IP}" |
33 | 33 | ||
34 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. | 34 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set. |
35 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. | 35 | # If the flag for a parameter in the list is not set here, the default value will be given to that parameter. |
diff --git a/meta-openstack/recipes-devtools/python/python-trove_git.bb b/meta-openstack/recipes-devtools/python/python-trove_git.bb index a0dfaa4..16d8f22 100755..100644 --- a/meta-openstack/recipes-devtools/python/python-trove_git.bb +++ b/meta-openstack/recipes-devtools/python/python-trove_git.bb | |||
@@ -10,13 +10,13 @@ SRC_URI = "git://github.com/openstack/trove.git;branch=master;protocol=https \ | |||
10 | file://trove-init \ | 10 | file://trove-init \ |
11 | " | 11 | " |
12 | 12 | ||
13 | SRCREV="11996635299396f181f5aec3c6825f8011d45e2c" | 13 | SRCREV = "11996635299396f181f5aec3c6825f8011d45e2c" |
14 | PV="4.0.0+git${SRCPV}" | 14 | PV = "4.0.0+git${SRCPV}" |
15 | 15 | ||
16 | inherit update-rc.d setuptools3 identity hosts useradd default_configs | 16 | inherit update-rc.d setuptools3 identity hosts useradd default_configs |
17 | 17 | ||
18 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" | 18 | SERVICECREATE_PACKAGES = "${SRCNAME}-setup" |
19 | KEYSTONE_HOST="${CONTROLLER_IP}" | 19 | KEYSTONE_HOST = "${CONTROLLER_IP}" |
20 | 20 | ||
21 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be | 21 | # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be |
22 | # set. If the flag for a parameter in the list is not set here, the default | 22 | # set. If the flag for a parameter in the list is not set here, the default |
diff --git a/meta-openstack/recipes-devtools/python/python3-glance-store_git.bb b/meta-openstack/recipes-devtools/python/python3-glance-store_git.bb index 9c923f6..3ecd5eb 100644 --- a/meta-openstack/recipes-devtools/python/python3-glance-store_git.bb +++ b/meta-openstack/recipes-devtools/python/python3-glance-store_git.bb | |||
@@ -8,8 +8,8 @@ SRC_URI = "\ | |||
8 | git://git.openstack.org/openstack/glance_store.git;branch=stable/pike \ | 8 | git://git.openstack.org/openstack/glance_store.git;branch=stable/pike \ |
9 | " | 9 | " |
10 | 10 | ||
11 | PV="0.22.0+git${SRCPV}" | 11 | PV = "0.22.0+git${SRCPV}" |
12 | SRCREV="49c915f498fc8d91c98fcf4e07ceecdcf167fc5a" | 12 | SRCREV = "49c915f498fc8d91c98fcf4e07ceecdcf167fc5a" |
13 | 13 | ||
14 | inherit setuptools3 | 14 | inherit setuptools3 |
15 | 15 | ||
diff --git a/meta-openstack/recipes-devtools/python/python3-magnumclient_3.3.0.bb b/meta-openstack/recipes-devtools/python/python3-magnumclient_3.3.0.bb index 6867600..fa23937 100644 --- a/meta-openstack/recipes-devtools/python/python3-magnumclient_3.3.0.bb +++ b/meta-openstack/recipes-devtools/python/python3-magnumclient_3.3.0.bb | |||
@@ -16,7 +16,7 @@ DEPENDS += " \ | |||
16 | python3-pbr-native \ | 16 | python3-pbr-native \ |
17 | " | 17 | " |
18 | 18 | ||
19 | RDEPENDS:${PN} +=" \ | 19 | RDEPENDS:${PN} += " \ |
20 | python3-pbr \ | 20 | python3-pbr \ |
21 | python3-babel \ | 21 | python3-babel \ |
22 | python3-oslo.config \ | 22 | python3-oslo.config \ |
diff --git a/meta-openstack/recipes-devtools/python/python3-manilaclient_2.4.0.bb b/meta-openstack/recipes-devtools/python/python3-manilaclient_2.4.0.bb index 7e51ec6..8092607 100644 --- a/meta-openstack/recipes-devtools/python/python3-manilaclient_2.4.0.bb +++ b/meta-openstack/recipes-devtools/python/python3-manilaclient_2.4.0.bb | |||
@@ -16,7 +16,7 @@ DEPENDS += " \ | |||
16 | python3-pbr-native \ | 16 | python3-pbr-native \ |
17 | " | 17 | " |
18 | 18 | ||
19 | RDEPENDS:${PN} +=" \ | 19 | RDEPENDS:${PN} += " \ |
20 | python3-pbr \ | 20 | python3-pbr \ |
21 | python3-iso8601 \ | 21 | python3-iso8601 \ |
22 | python3-oslo.config \ | 22 | python3-oslo.config \ |
diff --git a/meta-openstack/recipes-devtools/python/python3-mistralclient_4.1.1.bb b/meta-openstack/recipes-devtools/python/python3-mistralclient_4.1.1.bb index 7f79754..98027dc 100644 --- a/meta-openstack/recipes-devtools/python/python3-mistralclient_4.1.1.bb +++ b/meta-openstack/recipes-devtools/python/python3-mistralclient_4.1.1.bb | |||
@@ -18,7 +18,7 @@ DEPENDS += " \ | |||
18 | python3-pbr-native \ | 18 | python3-pbr-native \ |
19 | " | 19 | " |
20 | 20 | ||
21 | RDEPENDS:${PN} +=" \ | 21 | RDEPENDS:${PN} += " \ |
22 | python3-cliff \ | 22 | python3-cliff \ |
23 | python3-pbr \ | 23 | python3-pbr \ |
24 | python3-keystoneclient \ | 24 | python3-keystoneclient \ |
diff --git a/meta-openstack/recipes-devtools/python/python3-taskflow_git.bb b/meta-openstack/recipes-devtools/python/python3-taskflow_git.bb index 7425580..44a1660 100644 --- a/meta-openstack/recipes-devtools/python/python3-taskflow_git.bb +++ b/meta-openstack/recipes-devtools/python/python3-taskflow_git.bb | |||
@@ -8,8 +8,8 @@ SRC_URI = "\ | |||
8 | git://git.openstack.org/openstack/taskflow.git;branch=stable/pike \ | 8 | git://git.openstack.org/openstack/taskflow.git;branch=stable/pike \ |
9 | " | 9 | " |
10 | 10 | ||
11 | PV="2.14.1+git${SRCPV}" | 11 | PV = "2.14.1+git${SRCPV}" |
12 | SRCREV="ed867c4fd17e4102a133c313a13af37baccf14a4" | 12 | SRCREV = "ed867c4fd17e4102a133c313a13af37baccf14a4" |
13 | 13 | ||
14 | inherit setuptools3 | 14 | inherit setuptools3 |
15 | 15 | ||
diff --git a/meta-openstack/recipes-devtools/python/python3-zaqarclient_2.0.0.bb b/meta-openstack/recipes-devtools/python/python3-zaqarclient_2.0.0.bb index 55423b7..28d37f1 100644 --- a/meta-openstack/recipes-devtools/python/python3-zaqarclient_2.0.0.bb +++ b/meta-openstack/recipes-devtools/python/python3-zaqarclient_2.0.0.bb | |||
@@ -16,7 +16,7 @@ DEPENDS += " \ | |||
16 | python3-pbr-native \ | 16 | python3-pbr-native \ |
17 | " | 17 | " |
18 | 18 | ||
19 | RDEPENDS:${PN} +=" \ | 19 | RDEPENDS:${PN} += " \ |
20 | python3-pbr \ | 20 | python3-pbr \ |
21 | python3-requests \ | 21 | python3-requests \ |
22 | python3-six \ | 22 | python3-six \ |