From: Michal Sieron <michalwsieron@gmail.com>
To: openembedded-devel@lists.openembedded.org
Cc: Michal Sieron <michalwsieron@gmail.com>,
Stefan Wiehler <me@sephalon.net>
Subject: [PATCH 00/13] Confusing and invalid conditional appends
Date: Sun, 29 Mar 2026 23:37:01 +0200 [thread overview]
Message-ID: <20260329-fix-confusing-appends-v1-0-df7e87b8b879@gmail.com> (raw)
This patchset fixes several findings for variable assignments of form:
A:someoverride += "foo"
and transforms them into:
A:append:someoverride = " foo"
It is a continuation of similar changes in openembedded-core [1], which
are currently in master-next.
In most of those cases I assume the original intent was to have a
conditional append, but what was actually happening was append to
a conditional override.
Changes I made, which weren't simple syntax conversions:
1. gnome-bluetooth3 - typo fix
2. libgusb - invalid append changed to actual assignment (like libffi in
openembedded-core)
3. postgresql - here EXTRA_OECONF's value was being overridden
4. graphviz - value was overridden, but shouldn't have impact
5. syzkaller - dropping qemu-system-native dependency
[1]: https://lists.openembedded.org/g/openembedded-core/message/233335
Signed-off-by: Michal Sieron <michalwsieron@gmail.com>
---
Michal Sieron (13):
meta-python: Convert confusing appends to override syntax
gnome-bluetooth3: Fix RRECOMMENS typo
aufs-util: Convert confusing append to override syntax
accountsservice: Convert confusing append to override syntax
pipewire: Convert confusing appends to override syntax
postfix: Convert confusing appends to override syntax
libgusb: Convert confusing append to assignment
postgresql: Fix append overriding value
graphviz: Fix append overriding value
syzkaller: Drop qemu-system-native dependency
syzkaller: Fix appends overriding values
pcsc-lite: Convert confusing append to override syntax
flatbuffers: Convert confusing append to override syntax
meta-filesystems/recipes-utils/aufs-util/aufs-util_git.bb | 2 +-
meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth3_3.34.5.bb | 2 +-
meta-gnome/recipes-support/accountsservice/accountsservice_23.13.9.bb | 2 +-
meta-multimedia/recipes-multimedia/pipewire/pipewire_1.6.2.bb | 2 +-
meta-networking/recipes-daemons/postfix/postfix_3.10.8.bb | 4 ++--
meta-oe/recipes-dbs/postgresql/postgresql.inc | 2 +-
meta-oe/recipes-devtools/flatbuffers/flatbuffers.bb | 2 +-
meta-oe/recipes-graphics/graphviz/graphviz_14.1.4.bb | 2 +-
meta-oe/recipes-support/libgusb/libgusb_0.4.9.bb | 2 +-
meta-oe/recipes-support/pcsc-lite/pcsc-lite_2.0.3.bb | 2 +-
meta-oe/recipes-test/syzkaller/syzkaller-licenses.inc | 4 ++--
meta-oe/recipes-test/syzkaller/syzkaller_git.bb | 4 ----
meta-python/recipes-devtools/python/python3-astroid_4.1.2.bb | 4 ++--
meta-python/recipes-devtools/python/python3-humanfriendly_10.0.bb | 2 +-
meta-python/recipes-devtools/python/python3-msgpack_1.1.2.bb | 2 +-
meta-python/recipes-devtools/python/python3-progress_1.6.1.bb | 2 +-
meta-python/recipes-devtools/python/python3-wrapt_2.1.2.bb | 2 +-
meta-python/recipes-devtools/python/python3-yamlloader_1.6.0.bb | 2 +-
meta-python/recipes-devtools/python/python3-zopeinterface_8.2.bb | 2 +-
.../recipes-extended/python-pyparted/python3-pyparted_3.13.0.bb | 2 +-
meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.3.1.bb | 2 +-
21 files changed, 23 insertions(+), 27 deletions(-)
---
base-commit: c3c094cf8d8df28c7db0f44890e092aee395cb99
change-id: 20260329-fix-confusing-appends-eada2ec9ac4a
Best regards,
--
Michal Sieron <michalwsieron@gmail.com>
next reply other threads:[~2026-03-29 21:39 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-29 21:37 Michal Sieron [this message]
2026-03-29 21:37 ` [PATCH 01/13] meta-python: Convert confusing appends to override syntax Michal Sieron
2026-03-29 21:37 ` [PATCH 02/13] gnome-bluetooth3: Fix RRECOMMENS typo Michal Sieron
2026-03-29 21:37 ` [PATCH 03/13] aufs-util: Convert confusing append to override syntax Michal Sieron
2026-03-29 21:37 ` [PATCH 04/13] accountsservice: " Michal Sieron
2026-03-29 21:37 ` [PATCH 05/13] pipewire: Convert confusing appends " Michal Sieron
2026-03-29 21:37 ` [PATCH 06/13] postfix: " Michal Sieron
2026-03-29 21:37 ` [PATCH 07/13] libgusb: Convert confusing append to assignment Michal Sieron
2026-03-29 21:37 ` [PATCH 08/13] postgresql: Fix append overriding value Michal Sieron
2026-03-29 21:37 ` [PATCH 09/13] graphviz: " Michal Sieron
2026-03-29 21:37 ` [PATCH 10/13] syzkaller: Drop qemu-system-native dependency Michal Sieron
2026-03-29 21:37 ` [PATCH 11/13] syzkaller: Fix appends overriding values Michal Sieron
2026-03-29 21:37 ` [PATCH 12/13] pcsc-lite: Convert confusing append to override syntax Michal Sieron
2026-03-29 21:37 ` [PATCH 13/13] flatbuffers: " Michal Sieron
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260329-fix-confusing-appends-v1-0-df7e87b8b879@gmail.com \
--to=michalwsieron@gmail.com \
--cc=me@sephalon.net \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox