* [meta-virtualization][m-c-s][PATCH v2] meta-openstack: Fix whitespace warnings
@ 2025-07-17 3:05 Ryosuke Saito
2025-07-18 3:50 ` Bruce Ashfield
0 siblings, 1 reply; 2+ messages in thread
From: Ryosuke Saito @ 2025-07-17 3:05 UTC (permalink / raw)
To: meta-virtualization; +Cc: ryosuke.saito
From: Ryosuke Saito <ryosuke.saito@linaro.org>
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>
---
V1 -> V2: Rebased on to current master 24f0b028ecdd ("layer/global: update S assignments")
meta-openstack/classes/monitor.bbclass | 12 ++++++------
.../recipes-devtools/python/python-barbican_git.bb | 2 +-
.../python/python-ceilometer_git.bb | 2 +-
.../recipes-devtools/python/python-cinder_git.bb | 2 +-
.../python/python-cinderclient_git.bb | 4 ++--
.../recipes-devtools/python/python-glance_git.bb | 2 +-
.../recipes-devtools/python/python-heat_git.bb | 2 +-
.../python/python-heatclient_git.bb | 2 +-
.../python/python-keystone-hybrid-backend_git.bb | 4 ++--
.../recipes-devtools/python/python-keystone_git.bb | 2 +-
.../python/python-neutron-lib_git.bb | 4 ++--
.../recipes-devtools/python/python-neutron_git.bb | 2 +-
.../recipes-devtools/python/python-nova_git.bb | 2 +-
.../recipes-devtools/python/python-rally_git.bb | 4 ++--
.../recipes-devtools/python/python-swift_git.bb | 6 +++---
.../recipes-devtools/python/python-trove_git.bb | 6 +++---
.../python/python3-glance-store_git.bb | 4 ++--
.../python/python3-magnumclient_3.3.0.bb | 2 +-
.../python/python3-manilaclient_2.4.0.bb | 2 +-
.../python/python3-mistralclient_4.1.1.bb | 2 +-
.../python/python3-taskflow_git.bb | 4 ++--
.../python/python3-zaqarclient_2.0.0.bb | 2 +-
.../recipes-extended/guest-images/cirros_0.3.2.bb | 4 ++--
meta-openstack/recipes-extended/qpid/qpid_0.20.bb | 2 +-
.../recipes-extended/tempest/tempest_git.bb | 6 +++---
meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb | 4 ++--
meta-openstack/recipes-support/salt/salt_3001.1.bb | 14 +++++++-------
27 files changed, 52 insertions(+), 52 deletions(-)
mode change 100755 => 100644 meta-openstack/recipes-devtools/python/python-trove_git.bb
diff --git a/meta-openstack/classes/monitor.bbclass b/meta-openstack/classes/monitor.bbclass
index e21778003618..7810b9b93c31 100644
--- a/meta-openstack/classes/monitor.bbclass
+++ b/meta-openstack/classes/monitor.bbclass
@@ -1,9 +1,9 @@
-MONITOR_STAGING_DIR="${STAGING_DIR}/monitor"
-MONITOR_STAGING_SERVICES_DIR="${MONITOR_STAGING_DIR}/services"
-MONITOR_STAGING_CHECKS_DIR="${MONITOR_STAGING_DIR}/checks"
-MONITOR_CONFIG_DIR="${IMAGE_ROOTFS}/etc/monitor"
-MONITOR_CONFIG_SERVICES_DIR="${MONITOR_CONFIG_DIR}/services"
-MONITOR_CONFIG_CHECKS_DIR="${MONITOR_CONFIG_DIR}/checks"
+MONITOR_STAGING_DIR = "${STAGING_DIR}/monitor"
+MONITOR_STAGING_SERVICES_DIR = "${MONITOR_STAGING_DIR}/services"
+MONITOR_STAGING_CHECKS_DIR = "${MONITOR_STAGING_DIR}/checks"
+MONITOR_CONFIG_DIR = "${IMAGE_ROOTFS}/etc/monitor"
+MONITOR_CONFIG_SERVICES_DIR = "${MONITOR_CONFIG_DIR}/services"
+MONITOR_CONFIG_CHECKS_DIR = "${MONITOR_CONFIG_DIR}/checks"
addtask monitor_install before do_package after do_install
addtask monitor_clean before do_clean
diff --git a/meta-openstack/recipes-devtools/python/python-barbican_git.bb b/meta-openstack/recipes-devtools/python/python-barbican_git.bb
index 90ed8d778dfd..ffc7a63c5df7 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}"
inherit update-rc.d setuptools3 identity hosts useradd default_configs monitor
SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
# USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
# 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 1592cd200436..9eec72cd2cd9 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}"
CEILOMETER_SECRET ?= "12121212"
SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-reseller"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
# USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
# 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 5f5602474b1e..f72036dbf22c 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
CINDER_BACKUP_BACKEND_DRIVER ?= "cinder.backup.drivers.swift"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
CINDER_LVM_VOLUME_BACKING_FILE_SIZE ?= "2G"
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 2f6267747d19..02000306d7d2 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 = "\
file://cinder-api-check.sh \
"
-PV="3.1.0+git${SRCPV}"
-SRCREV="3640aeab6e11987288a2f149fbeedb1c026045e2"
+PV = "3.1.0+git${SRCPV}"
+SRCREV = "3640aeab6e11987288a2f149fbeedb1c026045e2"
inherit setuptools3 monitor
diff --git a/meta-openstack/recipes-devtools/python/python-glance_git.bb b/meta-openstack/recipes-devtools/python/python-glance_git.bb
index 06e4d9352133..5e7bd88ac86f 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,\
glance.store.http.Store"
SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
# USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
# 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 c46fc7a3f429..cb833fbfd849 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"
PV = "5.0.0+git${SRCPV}"
SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-templates ${SRCNAME}-cfn"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
# USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
# 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 b1f7b4ffaba3..40ac44b8cc40 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 += " \
python-pbr-native \
"
-RDEPENDS:${PN} +="python-cliff \
+RDEPENDS:${PN} += "python-cliff \
python-httplib2 \
python-iso8601 \
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 375969bc4638..4b7c18898e4a 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"
SRC_URI = "git://github.com/SUSE-Cloud/keystone-hybrid-backend.git;branch=havana;protocol=https"
-PV="git${SRCPV}"
-SRCREV="0bd376242f8522edef7031d2339b9533b86c17aa"
+PV = "git${SRCPV}"
+SRCREV = "0bd376242f8522edef7031d2339b9533b86c17aa"
inherit python3-dir
diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
index 5ec5af2c8aa8..7fae4c7121bb 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"
LDAP_DN ?= "dc=my-domain,dc=com"
SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
# USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be
# 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 84e766dc3724..adefdd9be332 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 = "\
git://git.openstack.org/openstack/neutron-lib.git;branch=stable/pike \
"
-PV="1.9.1+git${SRCPV}"
-SRCREV="f0d7e470c2ef1702b2715ceb2fd8a00fce2a23be"
+PV = "1.9.1+git${SRCPV}"
+SRCREV = "f0d7e470c2ef1702b2715ceb2fd8a00fce2a23be"
inherit setuptools3
diff --git a/meta-openstack/recipes-devtools/python/python-neutron_git.bb b/meta-openstack/recipes-devtools/python/python-neutron_git.bb
index 7229e47fd160..7ed21af9702b 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}"
USERADD_PARAM:${PN} = "--system -m -d ${localstatedir}/lib/neutron -s /bin/false -g ${GROUP} ${USER}"
SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
# USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
# 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 fc96b514d645..247e81669db5 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
PLACEMENT_USER = "placement"
SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-ec2"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
# USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
# 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 11bd331fcbab..015c34a918cc 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
file://verification-subunit2json-fail-to-open-result-file.patch \
"
-SRCREV="b297cf00750f263b8b5bdeb71f6952f672e87f5a"
-PV="git${SRCPV}"
+SRCREV = "b297cf00750f263b8b5bdeb71f6952f672e87f5a"
+PV = "git${SRCPV}"
inherit setuptools3 update-rc.d hosts identity default_configs
diff --git a/meta-openstack/recipes-devtools/python/python-swift_git.bb b/meta-openstack/recipes-devtools/python/python-swift_git.bb
index e734d24b3254..08836d2d0a2e 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
file://cluster.conf \
"
-SRCREV="4ca08cc395e686265574366497a6869e94eebcb2"
-PV="2.2.2+git${SRCPV}"
+SRCREV = "4ca08cc395e686265574366497a6869e94eebcb2"
+PV = "2.2.2+git${SRCPV}"
inherit setuptools3 python3-dir update-rc.d hosts identity
@@ -29,7 +29,7 @@ inherit setuptools3 python3-dir update-rc.d hosts identity
SWIFT_BACKING_FILE_SIZE ?= "2G"
SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
# USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
# 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
old mode 100755
new mode 100644
index a0dfaa4faf4d..16d8f220de2a
--- 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 \
file://trove-init \
"
-SRCREV="11996635299396f181f5aec3c6825f8011d45e2c"
-PV="4.0.0+git${SRCPV}"
+SRCREV = "11996635299396f181f5aec3c6825f8011d45e2c"
+PV = "4.0.0+git${SRCPV}"
inherit update-rc.d setuptools3 identity hosts useradd default_configs
SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
# USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be
# 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 9c923f642098..3ecd5ebb741b 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 = "\
git://git.openstack.org/openstack/glance_store.git;branch=stable/pike \
"
-PV="0.22.0+git${SRCPV}"
-SRCREV="49c915f498fc8d91c98fcf4e07ceecdcf167fc5a"
+PV = "0.22.0+git${SRCPV}"
+SRCREV = "49c915f498fc8d91c98fcf4e07ceecdcf167fc5a"
inherit setuptools3
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 68676000a63b..fa23937e6be7 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 += " \
python3-pbr-native \
"
-RDEPENDS:${PN} +=" \
+RDEPENDS:${PN} += " \
python3-pbr \
python3-babel \
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 7e51ec664fbd..809260751c97 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 += " \
python3-pbr-native \
"
-RDEPENDS:${PN} +=" \
+RDEPENDS:${PN} += " \
python3-pbr \
python3-iso8601 \
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 7f7975486258..98027dca1384 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 += " \
python3-pbr-native \
"
-RDEPENDS:${PN} +=" \
+RDEPENDS:${PN} += " \
python3-cliff \
python3-pbr \
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 7425580599d2..44a1660e289b 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 = "\
git://git.openstack.org/openstack/taskflow.git;branch=stable/pike \
"
-PV="2.14.1+git${SRCPV}"
-SRCREV="ed867c4fd17e4102a133c313a13af37baccf14a4"
+PV = "2.14.1+git${SRCPV}"
+SRCREV = "ed867c4fd17e4102a133c313a13af37baccf14a4"
inherit setuptools3
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 55423b75238f..28d37f14717c 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 += " \
python3-pbr-native \
"
-RDEPENDS:${PN} +=" \
+RDEPENDS:${PN} += " \
python3-pbr \
python3-requests \
python3-six \
diff --git a/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb b/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb
index 23e326bb9f8c..16b4a70f9856 100644
--- a/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb
+++ b/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb
@@ -2,7 +2,7 @@ SUMMARY = "An image containing the cirros cloud guest"
DESCRIPTION = "CirrOS a tiny cloud guest"
HOMEPAGE = "https://launchpad.net/cirros"
-LICENSE="GPL-2.0-only"
+LICENSE = "GPL-2.0-only"
SRC_URI = "http://download.cirros-cloud.net/${PV}/${PN}-${PV}-x86_64-disk.img"
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "a2ca56aeded5a5bcaa6104fb14ec07b1ceb65222e2890bef8a89b8d2da
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
-INHIBIT_PACKAGE_STRIP="1"
+INHIBIT_PACKAGE_STRIP = "1"
do_install() {
install -d ${D}/${ROOT_HOME}/images
diff --git a/meta-openstack/recipes-extended/qpid/qpid_0.20.bb b/meta-openstack/recipes-extended/qpid/qpid_0.20.bb
index b879dcc6ca30..f83eb65ec010 100644
--- a/meta-openstack/recipes-extended/qpid/qpid_0.20.bb
+++ b/meta-openstack/recipes-extended/qpid/qpid_0.20.bb
@@ -24,7 +24,7 @@ export PERLCONFIGTARGET = "${@is_target(d)}"
export PERL_INC = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl/${@get_perl_version(d)}/CORE"
export PERL_LIB = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl/${@get_perl_version(d)}"
export PERL_ARCHLIB = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl/${@get_perl_version(d)}"
-export PERL="${STAGING_BINDIR}/perl"
+export PERL = "${STAGING_BINDIR}/perl"
EXTRA_OECONF += " --without-help2man SASL_PASSWD=/usr/sbin/saslpasswd2"
EXTRA_OEMAKE += " CPPFLAGS=-Wno-unused-function \
diff --git a/meta-openstack/recipes-extended/tempest/tempest_git.bb b/meta-openstack/recipes-extended/tempest/tempest_git.bb
index 545d71f5362f..881b0917989a 100644
--- a/meta-openstack/recipes-extended/tempest/tempest_git.bb
+++ b/meta-openstack/recipes-extended/tempest/tempest_git.bb
@@ -14,11 +14,11 @@ SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=master;protocol=http
file://logging.conf \
"
-SRCREV="2707a0f065e52d8331d12c983ead95de1224cb32"
-PV="2014.1+git${SRCPV}"
+SRCREV = "2707a0f065e52d8331d12c983ead95de1224cb32"
+PV = "2014.1+git${SRCPV}"
SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-setup-altdemo ${SRCNAME}-setup-admin"
-KEYSTONE_HOST="${CONTROLLER_IP}"
+KEYSTONE_HOST = "${CONTROLLER_IP}"
# USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
# 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-extended/uwsgi/uwsgi_git.bb b/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb
index c6e225c8ce75..255439acd5f8 100644
--- a/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb
+++ b/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb
@@ -10,8 +10,8 @@ SRC_URI = "git://github.com/unbit/uwsgi.git;branch=uwsgi-2.0;protocol=https \
file://more-Add-explicit-breaks-to-avoid-implicit-passthrough.patch \
"
-SRCREV="af44211739136e22471a2897383f34586284bf86"
-PV="2.0.14+git${SRCPV}"
+SRCREV = "af44211739136e22471a2897383f34586284bf86"
+PV = "2.0.14+git${SRCPV}"
inherit setuptools3 pkgconfig
diff --git a/meta-openstack/recipes-support/salt/salt_3001.1.bb b/meta-openstack/recipes-support/salt/salt_3001.1.bb
index 967ee6fc85cb..101ce21d2586 100644
--- a/meta-openstack/recipes-support/salt/salt_3001.1.bb
+++ b/meta-openstack/recipes-support/salt/salt_3001.1.bb
@@ -95,13 +95,13 @@ CONFFILES:${PN}-minion = "${sysconfdir}/${PN}/minion"
FILES:${PN}-minion = "${bindir}/${PN}-minion ${sysconfdir}/${PN}/minion.d/ ${CONFFILES_${PN}-minion} ${bindir}/${PN}-proxy ${systemd_system_unitdir}/salt-minion.service"
SUMMARY:${PN}-common = "shared libraries that salt requires for all packages"
-DESCRIPTION:${PN}-common ="${DESCRIPTION_COMMON} This particular package provides shared libraries that \
+DESCRIPTION:${PN}-common = "${DESCRIPTION_COMMON} This particular package provides shared libraries that \
salt-master, salt-minion, and salt-syndic require to function."
RDEPENDS:${PN}-common = "python3-dateutil python3-jinja2 python3-pyyaml python3-requests (>= 1.0.0) python3-distro"
RRECOMMENDS:${PN}-common = "lsb-release"
RSUGGESTS:${PN}-common = "python3-mako python3-git"
RCONFLICTS:${PN}-common = "python3-mako (< 0.7.0)"
-CONFFILES:${PN}-common="${sysconfdir}/logrotate.d/${PN}"
+CONFFILES:${PN}-common = "${sysconfdir}/logrotate.d/${PN}"
FILES:${PN}-common = "${bindir}/${PN}-call ${PYTHON_SITEPACKAGES_DIR}/* ${CONFFILES_${PN}-common}"
SUMMARY:${PN}-ssh = "remote manager to administer servers via salt"
@@ -109,7 +109,7 @@ DESCRIPTION:${PN}-ssh = "${DESCRIPTION_COMMON} This particular package provides
is able to run salt modules and states on remote hosts via ssh. No minion or other salt specific software needs\
to be installed on the remote host."
RDEPENDS:${PN}-ssh = "${PN}-common (= ${EXTENDPKGV}) python3-msgpack"
-CONFFILES:${PN}-ssh="${sysconfdir}/${PN}/roster"
+CONFFILES:${PN}-ssh = "${sysconfdir}/${PN}/roster"
FILES:${PN}-ssh = "${bindir}/${PN}-ssh ${CONFFILES_${PN}-ssh}"
SUMMARY:${PN}-api = "generic, modular network access system"
@@ -124,11 +124,11 @@ CONFFILES:${PN}-api = "${sysconfdir}/init.d/${PN}-api"
FILES:${PN}-api = "${bindir}/${PN}-api ${CONFFILES_${PN}-api} ${systemd_system_unitdir}/${PN}-api.service"
SUMMARY:${PN}-master = "remote manager to administer servers via salt"
-DESCRIPTION:${PN}-master ="${DESCRIPTION_COMMON} This particular package provides the salt controller."
+DESCRIPTION:${PN}-master = "${DESCRIPTION_COMMON} This particular package provides the salt controller."
RDEPENDS:${PN}-master = "${PN}-common (= ${EXTENDPKGV}) python3-msgpack python3-pycryptodomex (>= 3.9.7)"
RDEPENDS:${PN}-master += "${@bb.utils.contains('PACKAGECONFIG', 'zeromq', 'python3-pycrypto python3-pyzmq (>= 13.1.0)', '',d)}"
RDEPENDS:${PN}-master += "${@bb.utils.contains('PACKAGECONFIG', 'tcp', 'python3-pycrypto', '',d)}"
-CONFFILES:${PN}-master="${sysconfdir}/init.d/${PN}-master ${sysconfdir}/${PN}/master"
+CONFFILES:${PN}-master = "${sysconfdir}/init.d/${PN}-master ${sysconfdir}/${PN}/master"
RSUGGESTS:${PN}-master = "python3-git"
FILES:${PN}-master = "${bindir}/${PN} ${bindir}/${PN}-cp ${bindir}/${PN}-key ${bindir}/${PN}-master ${bindir}/${PN}-run ${bindir}/${PN}-unity ${bindir}/spm ${CONFFILES_${PN}-master} ${systemd_system_unitdir}/${PN}-master.service"
@@ -136,7 +136,7 @@ SUMMARY:${PN}-syndic = "master-of-masters for salt, the distributed remote execu
DESCRIPTION:${PN}-syndic = "${DESCRIPTION_COMMON} This particular package provides the master of masters for \
salt; it enables the management of multiple masters at a time."
RDEPENDS:${PN}-syndic = "${PN}-master (= ${EXTENDPKGV})"
-CONFFILES:${PN}-syndic="${sysconfdir}/init.d/${PN}-syndic"
+CONFFILES:${PN}-syndic = "${sysconfdir}/init.d/${PN}-syndic"
FILES:${PN}-syndic = "${bindir}/${PN}-syndic ${CONFFILES_${PN}-syndic} ${systemd_system_unitdir}/${PN}-syndic.service"
SUMMARY:${PN}-cloud = "public cloud VM management system"
@@ -147,7 +147,7 @@ CONFFILES:${PN}-cloud = "${sysconfdir}/${PN}/cloud"
FILES:${PN}-cloud = "${bindir}/${PN}-cloud ${sysconfdir}/${PN}/cloud.conf.d/ ${sysconfdir}/${PN}/cloud.profiles.d/ ${sysconfdir}/${PN}/cloud.providers.d/ ${CONFFILES_${PN}-cloud}"
SUMMARY:${PN}-tests = "salt stack test suite"
-DESCRIPTION:${PN}-tests ="${DESCRIPTION_COMMON} This particular package provides the salt unit test suite."
+DESCRIPTION:${PN}-tests = "${DESCRIPTION_COMMON} This particular package provides the salt unit test suite."
RDEPENDS:${PN}-tests = "${PN}-common python3-pytest-salt python3-tests python3-image bash"
FILES:${PN}-tests = "${PYTHON_SITEPACKAGES_DIR}/salt-tests/tests/"
--
2.50.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [meta-virtualization][m-c-s][PATCH v2] meta-openstack: Fix whitespace warnings
2025-07-17 3:05 [meta-virtualization][m-c-s][PATCH v2] meta-openstack: Fix whitespace warnings Ryosuke Saito
@ 2025-07-18 3:50 ` Bruce Ashfield
0 siblings, 0 replies; 2+ messages in thread
From: Bruce Ashfield @ 2025-07-18 3:50 UTC (permalink / raw)
To: raitosyo; +Cc: meta-virtualization, ryosuke.saito
merged.
Bruce
In message: [meta-virtualization][m-c-s][PATCH v2] meta-openstack: Fix whitespace warnings
on 17/07/2025 Ryosuke Saito via lists.yoctoproject.org wrote:
> From: Ryosuke Saito <ryosuke.saito@linaro.org>
>
> 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>
> ---
> V1 -> V2: Rebased on to current master 24f0b028ecdd ("layer/global: update S assignments")
>
> meta-openstack/classes/monitor.bbclass | 12 ++++++------
> .../recipes-devtools/python/python-barbican_git.bb | 2 +-
> .../python/python-ceilometer_git.bb | 2 +-
> .../recipes-devtools/python/python-cinder_git.bb | 2 +-
> .../python/python-cinderclient_git.bb | 4 ++--
> .../recipes-devtools/python/python-glance_git.bb | 2 +-
> .../recipes-devtools/python/python-heat_git.bb | 2 +-
> .../python/python-heatclient_git.bb | 2 +-
> .../python/python-keystone-hybrid-backend_git.bb | 4 ++--
> .../recipes-devtools/python/python-keystone_git.bb | 2 +-
> .../python/python-neutron-lib_git.bb | 4 ++--
> .../recipes-devtools/python/python-neutron_git.bb | 2 +-
> .../recipes-devtools/python/python-nova_git.bb | 2 +-
> .../recipes-devtools/python/python-rally_git.bb | 4 ++--
> .../recipes-devtools/python/python-swift_git.bb | 6 +++---
> .../recipes-devtools/python/python-trove_git.bb | 6 +++---
> .../python/python3-glance-store_git.bb | 4 ++--
> .../python/python3-magnumclient_3.3.0.bb | 2 +-
> .../python/python3-manilaclient_2.4.0.bb | 2 +-
> .../python/python3-mistralclient_4.1.1.bb | 2 +-
> .../python/python3-taskflow_git.bb | 4 ++--
> .../python/python3-zaqarclient_2.0.0.bb | 2 +-
> .../recipes-extended/guest-images/cirros_0.3.2.bb | 4 ++--
> meta-openstack/recipes-extended/qpid/qpid_0.20.bb | 2 +-
> .../recipes-extended/tempest/tempest_git.bb | 6 +++---
> meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb | 4 ++--
> meta-openstack/recipes-support/salt/salt_3001.1.bb | 14 +++++++-------
> 27 files changed, 52 insertions(+), 52 deletions(-)
> mode change 100755 => 100644 meta-openstack/recipes-devtools/python/python-trove_git.bb
>
> diff --git a/meta-openstack/classes/monitor.bbclass b/meta-openstack/classes/monitor.bbclass
> index e21778003618..7810b9b93c31 100644
> --- a/meta-openstack/classes/monitor.bbclass
> +++ b/meta-openstack/classes/monitor.bbclass
> @@ -1,9 +1,9 @@
> -MONITOR_STAGING_DIR="${STAGING_DIR}/monitor"
> -MONITOR_STAGING_SERVICES_DIR="${MONITOR_STAGING_DIR}/services"
> -MONITOR_STAGING_CHECKS_DIR="${MONITOR_STAGING_DIR}/checks"
> -MONITOR_CONFIG_DIR="${IMAGE_ROOTFS}/etc/monitor"
> -MONITOR_CONFIG_SERVICES_DIR="${MONITOR_CONFIG_DIR}/services"
> -MONITOR_CONFIG_CHECKS_DIR="${MONITOR_CONFIG_DIR}/checks"
> +MONITOR_STAGING_DIR = "${STAGING_DIR}/monitor"
> +MONITOR_STAGING_SERVICES_DIR = "${MONITOR_STAGING_DIR}/services"
> +MONITOR_STAGING_CHECKS_DIR = "${MONITOR_STAGING_DIR}/checks"
> +MONITOR_CONFIG_DIR = "${IMAGE_ROOTFS}/etc/monitor"
> +MONITOR_CONFIG_SERVICES_DIR = "${MONITOR_CONFIG_DIR}/services"
> +MONITOR_CONFIG_CHECKS_DIR = "${MONITOR_CONFIG_DIR}/checks"
>
> addtask monitor_install before do_package after do_install
> addtask monitor_clean before do_clean
> diff --git a/meta-openstack/recipes-devtools/python/python-barbican_git.bb b/meta-openstack/recipes-devtools/python/python-barbican_git.bb
> index 90ed8d778dfd..ffc7a63c5df7 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}"
> inherit update-rc.d setuptools3 identity hosts useradd default_configs monitor
>
> SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
> # 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 1592cd200436..9eec72cd2cd9 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}"
> CEILOMETER_SECRET ?= "12121212"
>
> SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-reseller"
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
> # 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 5f5602474b1e..f72036dbf22c 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
>
> CINDER_BACKUP_BACKEND_DRIVER ?= "cinder.backup.drivers.swift"
>
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> CINDER_LVM_VOLUME_BACKING_FILE_SIZE ?= "2G"
> 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 2f6267747d19..02000306d7d2 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 = "\
> file://cinder-api-check.sh \
> "
>
> -PV="3.1.0+git${SRCPV}"
> -SRCREV="3640aeab6e11987288a2f149fbeedb1c026045e2"
> +PV = "3.1.0+git${SRCPV}"
> +SRCREV = "3640aeab6e11987288a2f149fbeedb1c026045e2"
>
> inherit setuptools3 monitor
>
> diff --git a/meta-openstack/recipes-devtools/python/python-glance_git.bb b/meta-openstack/recipes-devtools/python/python-glance_git.bb
> index 06e4d9352133..5e7bd88ac86f 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,\
> glance.store.http.Store"
>
> SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
> # 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 c46fc7a3f429..cb833fbfd849 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"
> PV = "5.0.0+git${SRCPV}"
>
> SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-templates ${SRCNAME}-cfn"
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
> # 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 b1f7b4ffaba3..40ac44b8cc40 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 += " \
> python-pbr-native \
> "
>
> -RDEPENDS:${PN} +="python-cliff \
> +RDEPENDS:${PN} += "python-cliff \
> python-httplib2 \
> python-iso8601 \
> 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 375969bc4638..4b7c18898e4a 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"
>
> SRC_URI = "git://github.com/SUSE-Cloud/keystone-hybrid-backend.git;branch=havana;protocol=https"
>
> -PV="git${SRCPV}"
> -SRCREV="0bd376242f8522edef7031d2339b9533b86c17aa"
> +PV = "git${SRCPV}"
> +SRCREV = "0bd376242f8522edef7031d2339b9533b86c17aa"
>
> inherit python3-dir
>
> diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb
> index 5ec5af2c8aa8..7fae4c7121bb 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"
> LDAP_DN ?= "dc=my-domain,dc=com"
>
> SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be
> # 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 84e766dc3724..adefdd9be332 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 = "\
> git://git.openstack.org/openstack/neutron-lib.git;branch=stable/pike \
> "
>
> -PV="1.9.1+git${SRCPV}"
> -SRCREV="f0d7e470c2ef1702b2715ceb2fd8a00fce2a23be"
> +PV = "1.9.1+git${SRCPV}"
> +SRCREV = "f0d7e470c2ef1702b2715ceb2fd8a00fce2a23be"
>
> inherit setuptools3
>
> diff --git a/meta-openstack/recipes-devtools/python/python-neutron_git.bb b/meta-openstack/recipes-devtools/python/python-neutron_git.bb
> index 7229e47fd160..7ed21af9702b 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}"
> USERADD_PARAM:${PN} = "--system -m -d ${localstatedir}/lib/neutron -s /bin/false -g ${GROUP} ${USER}"
>
> SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
> # 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 fc96b514d645..247e81669db5 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
> PLACEMENT_USER = "placement"
>
> SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-ec2"
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
> # 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 11bd331fcbab..015c34a918cc 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
> file://verification-subunit2json-fail-to-open-result-file.patch \
> "
>
> -SRCREV="b297cf00750f263b8b5bdeb71f6952f672e87f5a"
> -PV="git${SRCPV}"
> +SRCREV = "b297cf00750f263b8b5bdeb71f6952f672e87f5a"
> +PV = "git${SRCPV}"
>
> inherit setuptools3 update-rc.d hosts identity default_configs
>
> diff --git a/meta-openstack/recipes-devtools/python/python-swift_git.bb b/meta-openstack/recipes-devtools/python/python-swift_git.bb
> index e734d24b3254..08836d2d0a2e 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
> file://cluster.conf \
> "
>
> -SRCREV="4ca08cc395e686265574366497a6869e94eebcb2"
> -PV="2.2.2+git${SRCPV}"
> +SRCREV = "4ca08cc395e686265574366497a6869e94eebcb2"
> +PV = "2.2.2+git${SRCPV}"
>
> inherit setuptools3 python3-dir update-rc.d hosts identity
>
> @@ -29,7 +29,7 @@ inherit setuptools3 python3-dir update-rc.d hosts identity
> SWIFT_BACKING_FILE_SIZE ?= "2G"
>
> SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
> # 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
> old mode 100755
> new mode 100644
> index a0dfaa4faf4d..16d8f220de2a
> --- 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 \
> file://trove-init \
> "
>
> -SRCREV="11996635299396f181f5aec3c6825f8011d45e2c"
> -PV="4.0.0+git${SRCPV}"
> +SRCREV = "11996635299396f181f5aec3c6825f8011d45e2c"
> +PV = "4.0.0+git${SRCPV}"
>
> inherit update-rc.d setuptools3 identity hosts useradd default_configs
>
> SERVICECREATE_PACKAGES = "${SRCNAME}-setup"
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be
> # 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 9c923f642098..3ecd5ebb741b 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 = "\
> git://git.openstack.org/openstack/glance_store.git;branch=stable/pike \
> "
>
> -PV="0.22.0+git${SRCPV}"
> -SRCREV="49c915f498fc8d91c98fcf4e07ceecdcf167fc5a"
> +PV = "0.22.0+git${SRCPV}"
> +SRCREV = "49c915f498fc8d91c98fcf4e07ceecdcf167fc5a"
>
> inherit setuptools3
>
> 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 68676000a63b..fa23937e6be7 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 += " \
> python3-pbr-native \
> "
>
> -RDEPENDS:${PN} +=" \
> +RDEPENDS:${PN} += " \
> python3-pbr \
> python3-babel \
> 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 7e51ec664fbd..809260751c97 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 += " \
> python3-pbr-native \
> "
>
> -RDEPENDS:${PN} +=" \
> +RDEPENDS:${PN} += " \
> python3-pbr \
> python3-iso8601 \
> 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 7f7975486258..98027dca1384 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 += " \
> python3-pbr-native \
> "
>
> -RDEPENDS:${PN} +=" \
> +RDEPENDS:${PN} += " \
> python3-cliff \
> python3-pbr \
> 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 7425580599d2..44a1660e289b 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 = "\
> git://git.openstack.org/openstack/taskflow.git;branch=stable/pike \
> "
>
> -PV="2.14.1+git${SRCPV}"
> -SRCREV="ed867c4fd17e4102a133c313a13af37baccf14a4"
> +PV = "2.14.1+git${SRCPV}"
> +SRCREV = "ed867c4fd17e4102a133c313a13af37baccf14a4"
>
> inherit setuptools3
>
> 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 55423b75238f..28d37f14717c 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 += " \
> python3-pbr-native \
> "
>
> -RDEPENDS:${PN} +=" \
> +RDEPENDS:${PN} += " \
> python3-pbr \
> python3-requests \
> python3-six \
> diff --git a/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb b/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb
> index 23e326bb9f8c..16b4a70f9856 100644
> --- a/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb
> +++ b/meta-openstack/recipes-extended/guest-images/cirros_0.3.2.bb
> @@ -2,7 +2,7 @@ SUMMARY = "An image containing the cirros cloud guest"
> DESCRIPTION = "CirrOS a tiny cloud guest"
> HOMEPAGE = "https://launchpad.net/cirros"
>
> -LICENSE="GPL-2.0-only"
> +LICENSE = "GPL-2.0-only"
>
> SRC_URI = "http://download.cirros-cloud.net/${PV}/${PN}-${PV}-x86_64-disk.img"
>
> @@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "a2ca56aeded5a5bcaa6104fb14ec07b1ceb65222e2890bef8a89b8d2da
>
> LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
>
> -INHIBIT_PACKAGE_STRIP="1"
> +INHIBIT_PACKAGE_STRIP = "1"
>
> do_install() {
> install -d ${D}/${ROOT_HOME}/images
> diff --git a/meta-openstack/recipes-extended/qpid/qpid_0.20.bb b/meta-openstack/recipes-extended/qpid/qpid_0.20.bb
> index b879dcc6ca30..f83eb65ec010 100644
> --- a/meta-openstack/recipes-extended/qpid/qpid_0.20.bb
> +++ b/meta-openstack/recipes-extended/qpid/qpid_0.20.bb
> @@ -24,7 +24,7 @@ export PERLCONFIGTARGET = "${@is_target(d)}"
> export PERL_INC = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl/${@get_perl_version(d)}/CORE"
> export PERL_LIB = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl/${@get_perl_version(d)}"
> export PERL_ARCHLIB = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl/${@get_perl_version(d)}"
> -export PERL="${STAGING_BINDIR}/perl"
> +export PERL = "${STAGING_BINDIR}/perl"
>
> EXTRA_OECONF += " --without-help2man SASL_PASSWD=/usr/sbin/saslpasswd2"
> EXTRA_OEMAKE += " CPPFLAGS=-Wno-unused-function \
> diff --git a/meta-openstack/recipes-extended/tempest/tempest_git.bb b/meta-openstack/recipes-extended/tempest/tempest_git.bb
> index 545d71f5362f..881b0917989a 100644
> --- a/meta-openstack/recipes-extended/tempest/tempest_git.bb
> +++ b/meta-openstack/recipes-extended/tempest/tempest_git.bb
> @@ -14,11 +14,11 @@ SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=master;protocol=http
> file://logging.conf \
> "
>
> -SRCREV="2707a0f065e52d8331d12c983ead95de1224cb32"
> -PV="2014.1+git${SRCPV}"
> +SRCREV = "2707a0f065e52d8331d12c983ead95de1224cb32"
> +PV = "2014.1+git${SRCPV}"
>
> SERVICECREATE_PACKAGES = "${SRCNAME}-setup ${SRCNAME}-setup-altdemo ${SRCNAME}-setup-admin"
> -KEYSTONE_HOST="${CONTROLLER_IP}"
> +KEYSTONE_HOST = "${CONTROLLER_IP}"
>
> # USERCREATE_PARAM and SERVICECREATE_PARAM contain the list of parameters to be set.
> # 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-extended/uwsgi/uwsgi_git.bb b/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb
> index c6e225c8ce75..255439acd5f8 100644
> --- a/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb
> +++ b/meta-openstack/recipes-extended/uwsgi/uwsgi_git.bb
> @@ -10,8 +10,8 @@ SRC_URI = "git://github.com/unbit/uwsgi.git;branch=uwsgi-2.0;protocol=https \
> file://more-Add-explicit-breaks-to-avoid-implicit-passthrough.patch \
> "
>
> -SRCREV="af44211739136e22471a2897383f34586284bf86"
> -PV="2.0.14+git${SRCPV}"
> +SRCREV = "af44211739136e22471a2897383f34586284bf86"
> +PV = "2.0.14+git${SRCPV}"
>
> inherit setuptools3 pkgconfig
>
> diff --git a/meta-openstack/recipes-support/salt/salt_3001.1.bb b/meta-openstack/recipes-support/salt/salt_3001.1.bb
> index 967ee6fc85cb..101ce21d2586 100644
> --- a/meta-openstack/recipes-support/salt/salt_3001.1.bb
> +++ b/meta-openstack/recipes-support/salt/salt_3001.1.bb
> @@ -95,13 +95,13 @@ CONFFILES:${PN}-minion = "${sysconfdir}/${PN}/minion"
> FILES:${PN}-minion = "${bindir}/${PN}-minion ${sysconfdir}/${PN}/minion.d/ ${CONFFILES_${PN}-minion} ${bindir}/${PN}-proxy ${systemd_system_unitdir}/salt-minion.service"
>
> SUMMARY:${PN}-common = "shared libraries that salt requires for all packages"
> -DESCRIPTION:${PN}-common ="${DESCRIPTION_COMMON} This particular package provides shared libraries that \
> +DESCRIPTION:${PN}-common = "${DESCRIPTION_COMMON} This particular package provides shared libraries that \
> salt-master, salt-minion, and salt-syndic require to function."
> RDEPENDS:${PN}-common = "python3-dateutil python3-jinja2 python3-pyyaml python3-requests (>= 1.0.0) python3-distro"
> RRECOMMENDS:${PN}-common = "lsb-release"
> RSUGGESTS:${PN}-common = "python3-mako python3-git"
> RCONFLICTS:${PN}-common = "python3-mako (< 0.7.0)"
> -CONFFILES:${PN}-common="${sysconfdir}/logrotate.d/${PN}"
> +CONFFILES:${PN}-common = "${sysconfdir}/logrotate.d/${PN}"
> FILES:${PN}-common = "${bindir}/${PN}-call ${PYTHON_SITEPACKAGES_DIR}/* ${CONFFILES_${PN}-common}"
>
> SUMMARY:${PN}-ssh = "remote manager to administer servers via salt"
> @@ -109,7 +109,7 @@ DESCRIPTION:${PN}-ssh = "${DESCRIPTION_COMMON} This particular package provides
> is able to run salt modules and states on remote hosts via ssh. No minion or other salt specific software needs\
> to be installed on the remote host."
> RDEPENDS:${PN}-ssh = "${PN}-common (= ${EXTENDPKGV}) python3-msgpack"
> -CONFFILES:${PN}-ssh="${sysconfdir}/${PN}/roster"
> +CONFFILES:${PN}-ssh = "${sysconfdir}/${PN}/roster"
> FILES:${PN}-ssh = "${bindir}/${PN}-ssh ${CONFFILES_${PN}-ssh}"
>
> SUMMARY:${PN}-api = "generic, modular network access system"
> @@ -124,11 +124,11 @@ CONFFILES:${PN}-api = "${sysconfdir}/init.d/${PN}-api"
> FILES:${PN}-api = "${bindir}/${PN}-api ${CONFFILES_${PN}-api} ${systemd_system_unitdir}/${PN}-api.service"
>
> SUMMARY:${PN}-master = "remote manager to administer servers via salt"
> -DESCRIPTION:${PN}-master ="${DESCRIPTION_COMMON} This particular package provides the salt controller."
> +DESCRIPTION:${PN}-master = "${DESCRIPTION_COMMON} This particular package provides the salt controller."
> RDEPENDS:${PN}-master = "${PN}-common (= ${EXTENDPKGV}) python3-msgpack python3-pycryptodomex (>= 3.9.7)"
> RDEPENDS:${PN}-master += "${@bb.utils.contains('PACKAGECONFIG', 'zeromq', 'python3-pycrypto python3-pyzmq (>= 13.1.0)', '',d)}"
> RDEPENDS:${PN}-master += "${@bb.utils.contains('PACKAGECONFIG', 'tcp', 'python3-pycrypto', '',d)}"
> -CONFFILES:${PN}-master="${sysconfdir}/init.d/${PN}-master ${sysconfdir}/${PN}/master"
> +CONFFILES:${PN}-master = "${sysconfdir}/init.d/${PN}-master ${sysconfdir}/${PN}/master"
> RSUGGESTS:${PN}-master = "python3-git"
> FILES:${PN}-master = "${bindir}/${PN} ${bindir}/${PN}-cp ${bindir}/${PN}-key ${bindir}/${PN}-master ${bindir}/${PN}-run ${bindir}/${PN}-unity ${bindir}/spm ${CONFFILES_${PN}-master} ${systemd_system_unitdir}/${PN}-master.service"
>
> @@ -136,7 +136,7 @@ SUMMARY:${PN}-syndic = "master-of-masters for salt, the distributed remote execu
> DESCRIPTION:${PN}-syndic = "${DESCRIPTION_COMMON} This particular package provides the master of masters for \
> salt; it enables the management of multiple masters at a time."
> RDEPENDS:${PN}-syndic = "${PN}-master (= ${EXTENDPKGV})"
> -CONFFILES:${PN}-syndic="${sysconfdir}/init.d/${PN}-syndic"
> +CONFFILES:${PN}-syndic = "${sysconfdir}/init.d/${PN}-syndic"
> FILES:${PN}-syndic = "${bindir}/${PN}-syndic ${CONFFILES_${PN}-syndic} ${systemd_system_unitdir}/${PN}-syndic.service"
>
> SUMMARY:${PN}-cloud = "public cloud VM management system"
> @@ -147,7 +147,7 @@ CONFFILES:${PN}-cloud = "${sysconfdir}/${PN}/cloud"
> FILES:${PN}-cloud = "${bindir}/${PN}-cloud ${sysconfdir}/${PN}/cloud.conf.d/ ${sysconfdir}/${PN}/cloud.profiles.d/ ${sysconfdir}/${PN}/cloud.providers.d/ ${CONFFILES_${PN}-cloud}"
>
> SUMMARY:${PN}-tests = "salt stack test suite"
> -DESCRIPTION:${PN}-tests ="${DESCRIPTION_COMMON} This particular package provides the salt unit test suite."
> +DESCRIPTION:${PN}-tests = "${DESCRIPTION_COMMON} This particular package provides the salt unit test suite."
> RDEPENDS:${PN}-tests = "${PN}-common python3-pytest-salt python3-tests python3-image bash"
> FILES:${PN}-tests = "${PYTHON_SITEPACKAGES_DIR}/salt-tests/tests/"
>
> --
> 2.50.0
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#9317): https://lists.yoctoproject.org/g/meta-virtualization/message/9317
> Mute This Topic: https://lists.yoctoproject.org/mt/114197814/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-07-18 3:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-17 3:05 [meta-virtualization][m-c-s][PATCH v2] meta-openstack: Fix whitespace warnings Ryosuke Saito
2025-07-18 3:50 ` Bruce Ashfield
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.