Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe(s) *kbd* to *2.10.0* has 
Succeeded.

Next steps:
    - apply the patch: git am 0001-kbd-upgrade-2.9.0-2.10.0.patch
    - check the changes to upstream patches and summarize them in the commit 
message,
    - compile an image that contains the package
    - perform some basic sanity tests
    - amend the patch and sign it off: git commit -s --reset-author --amend
    - send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
From 3dcd2e4e48bd31ae143ecc09fc418c63d54035d6 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Mon, 1 Jun 2026 07:34:21 +0000
Subject: [PATCH] kbd: upgrade 2.9.0 -> 2.10.0

---
 ...ly-necessary-metadata-during-install.patch | 54 ------------------
 ...x-problem-with-undeclared-sym_gzopen.patch | 57 -------------------
 .../kbd/{kbd_2.9.0.bb => kbd_2.10.0.bb}       |  7 +--
 3 files changed, 2 insertions(+), 116 deletions(-)
 delete mode 100644 
meta/recipes-core/kbd/kbd/0001-Preserve-only-necessary-metadata-during-install.patch
 delete mode 100644 
meta/recipes-core/kbd/kbd/0001-libkbdfile-Fix-problem-with-undeclared-sym_gzopen.patch
 rename meta/recipes-core/kbd/{kbd_2.9.0.bb => kbd_2.10.0.bb} (87%)

diff --git 
a/meta/recipes-core/kbd/kbd/0001-Preserve-only-necessary-metadata-during-install.patch
 
b/meta/recipes-core/kbd/kbd/0001-Preserve-only-necessary-metadata-during-install.patch
deleted file mode 100644
index 87275040c1..0000000000
--- 
a/meta/recipes-core/kbd/kbd/0001-Preserve-only-necessary-metadata-during-install.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From d9d1c22592b6ce21bf455a22bca9000bf9b3fe61 Mon Sep 17 00:00:00 2001
-From: Alexey Gladkov <[email protected]>
-Date: Wed, 10 Sep 2025 10:45:25 +0200
-Subject: [PATCH] Preserve only necessary metadata during install
-
-"cp -a" tries to preserve all attributes if possible. This implies
-preserving mode, any ACL, xattr permissions, and security context.
-
-In some cases (such as fakeroot), it is not possible to preserve that
-all attributes are preserved.
-
-  cp: failed to preserve ownership for 
/tmp/.pkgmk/pkg/usr/share/kbd/keymaps/i386/qwertz/sr-latin.map.gz: Operation 
not supported
-
-To avoid this, we will require that only the necessary attributes be
-preserved. It is important for us to preserve the simlinks.
-
-Signed-off-by: Alexey Gladkov <[email protected]>
-Upstream-Status: Backport 
[https://github.com/legionus/kbd/commit/db82eb6f86e6c0b8ac4260e88b88d66e1cd7c077]
-Signed-off-by: Alexander Kanavin <[email protected]>
----
- data/Makefile.am | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/data/Makefile.am b/data/Makefile.am
-index a730062..4d2ae3d 100644
---- a/data/Makefile.am
-+++ b/data/Makefile.am
-@@ -44,21 +44,21 @@ endif
- 
- install-consolefonts: $(SRC_FONTDIR) $(SRC_PARTIALDIR)
-       mkdir -p -m 755 -- $(DESTDIR)$(datadir)/$(FONTDIR)
--      cp -a -- $(SRC_FONTDIR)/* $(DESTDIR)$(datadir)/$(FONTDIR)/
-+      cp -dPR -- $(SRC_FONTDIR)/* $(DESTDIR)$(datadir)/$(FONTDIR)/
-       mkdir -p -m 755 -- $(DESTDIR)$(datadir)/$(FONTDIR)/$(PARTIALDIR)
--      cp -a -- $(SRC_PARTIALDIR)/* 
$(DESTDIR)$(datadir)/$(FONTDIR)/$(PARTIALDIR)/
-+      cp -dPR -- $(SRC_PARTIALDIR)/* 
$(DESTDIR)$(datadir)/$(FONTDIR)/$(PARTIALDIR)/
- 
- install-consoletrans:
-       mkdir -p -m 755 -- $(DESTDIR)$(datadir)/$(TRANSDIR)
--      cp -a -- $(srcdir)/$(TRANSDIR)/* $(DESTDIR)$(datadir)/$(TRANSDIR)/
-+      cp -dPR -- $(srcdir)/$(TRANSDIR)/* $(DESTDIR)$(datadir)/$(TRANSDIR)/
- 
- install-unimaps:
-       mkdir -p -m 755 -- $(DESTDIR)$(datadir)/$(UNIMAPDIR)
--      cp -a -- $(srcdir)/$(UNIMAPDIR)/* $(DESTDIR)$(datadir)/$(UNIMAPDIR)/
-+      cp -dPR -- $(srcdir)/$(UNIMAPDIR)/* $(DESTDIR)$(datadir)/$(UNIMAPDIR)/
- 
- install-keymaps: $(SRC_KEYMAPDIR)
-       mkdir -p -m 755 -- $(DESTDIR)$(datadir)/$(KEYMAPDIR)
--      cp -ar -- $(SRC_KEYMAPDIR)/* $(DESTDIR)$(datadir)/$(KEYMAPDIR)/
-+      cp -dPR -- $(SRC_KEYMAPDIR)/* $(DESTDIR)$(datadir)/$(KEYMAPDIR)/
-       cd "$(DESTDIR)$(datadir)/$(KEYMAPDIR)"; \
-         for f in $(IGNORE_KEYMAPS); do ! test -e "$$f" || rm -f -- "$$f"; done
-       rm -f $(DESTDIR)$(datadir)/$(KEYMAPDIR)/ppc
diff --git 
a/meta/recipes-core/kbd/kbd/0001-libkbdfile-Fix-problem-with-undeclared-sym_gzopen.patch
 
b/meta/recipes-core/kbd/kbd/0001-libkbdfile-Fix-problem-with-undeclared-sym_gzopen.patch
deleted file mode 100644
index 84d273c19a..0000000000
--- 
a/meta/recipes-core/kbd/kbd/0001-libkbdfile-Fix-problem-with-undeclared-sym_gzopen.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From 2f9a4e56c2ef245fbe840677aad9d5932e17f50d Mon Sep 17 00:00:00 2001
-From: Alexey Gladkov <[email protected]>
-Date: Mon, 8 Dec 2025 11:28:24 +0100
-Subject: [PATCH] libkbdfile: Fix problem with undeclared sym_gzopen
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-A compile error occurs on certain systems:
-
-kbdfile-zlib.c: In function 'dlopen_note':
-elf-note.h:27:30: error: 'sym_gzopen' undeclared (first use in this function); 
did you mean 'sym_gzopen64'?
-   27 | #define DLSYM_ARG(symbol__) &sym_##symbol__, STRINGIFY(symbol__),
-
-kbdfile-zlib.c: In function 'kbdfile_decompressor_zlib': kbdfile-zlib.c:61:15: 
error: implicit declaration of function 'sym_gzopen'; did you mean 
'sym_gzopen64'?
- [-Wimplicit-function-declaration]
-   61 |         gzf = sym_gzopen(file->pathname, "rb");
-
-The problem arises because if -D_FILE_OFFSET_BITS=64 is specified, which
-in zlib ultimately makes gzopen a macro that expands to gzopen64.
-DECLARE_SYM(gzopen) from elf-note.h then expands gzopen to gzopen64,
-resulting in sym_gzopen64 declared. That's why no sym_gzopen exists.
-
-Link: https://github.com/legionus/kbd/pull/150
-Suggested-by: Jan Čermák <[email protected]>
-Signed-off-by: Bernd Kuhls <[email protected]>
-Signed-off-by: Alexey Gladkov <[email protected]>
-
-Upstream-Status: Backport 
[https://github.com/legionus/kbd/commit/2f9a4e56c2ef245fbe840677aad9d5932e17f50d]
-Signed-off-by: Hongxu Jia <[email protected]>
----
- src/libkbdfile/elf-note.h | 5 +----
- 1 file changed, 1 insertion(+), 4 deletions(-)
-
-diff --git a/src/libkbdfile/elf-note.h b/src/libkbdfile/elf-note.h
-index a0fd9e2..d3b8d5c 100644
---- a/src/libkbdfile/elf-note.h
-+++ b/src/libkbdfile/elf-note.h
-@@ -26,14 +26,11 @@ int dlsym_many(void **dlp, const char *filename, ...);
-  */
- #define DLSYM_ARG(symbol__) &sym_##symbol__, STRINGIFY(symbol__),
- 
--/* For symbols being dynamically loaded */
--#define DECLARE_DLSYM(symbol) static typeof(symbol) *sym_##symbol
--
- /*
-  * Helper defines, to be done locally before including this header to switch 
between
-  * implementations
-  */
--#define DECLARE_SYM(sym__) DECLARE_DLSYM(sym__);
-+#define DECLARE_SYM(sym__) static typeof(sym__) *sym_##sym__;
- 
- /*
-  * Originally from systemd codebase.
--- 
-2.49.0
-
diff --git a/meta/recipes-core/kbd/kbd_2.9.0.bb 
b/meta/recipes-core/kbd/kbd_2.10.0.bb
similarity index 87%
rename from meta/recipes-core/kbd/kbd_2.9.0.bb
rename to meta/recipes-core/kbd/kbd_2.10.0.bb
index 79b011e529..5a877b9c04 100644
--- a/meta/recipes-core/kbd/kbd_2.9.0.bb
+++ b/meta/recipes-core/kbd/kbd_2.10.0.bb
@@ -23,12 +23,9 @@ RREPLACES:${PN} = "console-tools"
 RPROVIDES:${PN} = "console-tools"
 RCONFLICTS:${PN} = "console-tools"
 
-SRC_URI = "${KERNELORG_MIRROR}/linux/utils/${BPN}/${BP}.tar.xz \
-           file://0001-Preserve-only-necessary-metadata-during-install.patch \
-           file://0001-libkbdfile-Fix-problem-with-undeclared-sym_gzopen.patch 
\
-           "
+SRC_URI = "${KERNELORG_MIRROR}/linux/utils/${BPN}/${BP}.tar.xz"
 
-SRC_URI[sha256sum] = 
"fb3197f17a99eb44d22a3a1a71f755f9622dd963e66acfdea1a45120951b02ed"
+SRC_URI[sha256sum] = 
"6e5ca4f8d76ee9e3a8db700b667f13e12aac9933828a64e1aaad93d26be9b479"
 
 # 'gzip -n' is set due to https://github.com/legionus/kbd/issues/124
 EXTRA_OECONF = "--disable-tests --enable-compress='gzip -n'"
-- 
2.47.1

packages/x86-64-v3-poky-linux/kbd/kbd-keymaps: FILELIST: added 
"/usr/share/keymaps/i386/qwerty/mac-no.map.gz"
Changes to packages/x86-64-v3-poky-linux/kbd (sysroot):
  /usr/share/keymaps/i386/qwerty/mac-no.map.gz was added

Attachment: 0001-kbd-upgrade-2.9.0-2.10.0.patch
Description: Binary data

packages/x86-64-v3-poky-linux/kbd/kbd-consolefonts: PV changed from "2.9.0" to 
"2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-consolefonts: PKGV changed from 2.9.0 
[default] to 2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd-consoletrans: PV changed from "2.9.0" to 
"2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-consoletrans: PKGV changed from 2.9.0 
[default] to 2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd-dbg: PKGSIZE changed from 1641488 to 
1673280 (+2%)
packages/x86-64-v3-poky-linux/kbd/kbd-dbg: PV changed from "2.9.0" to "2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-dbg: PKGV changed from 2.9.0 [default] to 
2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd-dev: PV changed from "2.9.0" to "2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-dev: PKGV changed from 2.9.0 [default] to 
2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd-doc: PKGSIZE changed from 72261 to 72666 
(+1%)
packages/x86-64-v3-poky-linux/kbd/kbd-doc: PV changed from "2.9.0" to "2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-doc: PKGV changed from 2.9.0 [default] to 
2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd-keymaps-pine: PKGSIZE changed from 1987 
to 1997 (+1%)
packages/x86-64-v3-poky-linux/kbd/kbd-keymaps-pine: PV changed from "2.9.0" to 
"2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-keymaps-pine: PKGV changed from 2.9.0 
[default] to 2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd-keymaps: FILELIST: added 
"/usr/share/keymaps/i386/qwerty/mac-no.map.gz"
packages/x86-64-v3-poky-linux/kbd/kbd-keymaps: PKGSIZE changed from 574008 to 
576550 (+0%)
packages/x86-64-v3-poky-linux/kbd/kbd-keymaps: PV changed from "2.9.0" to 
"2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-keymaps: PKGV changed from 2.9.0 
[default] to 2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd-locale: PV changed from "2.9.0" to 
"2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-locale: PKGV changed from 2.9.0 [default] 
to 2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd-src: FILELIST: directory renamed 
/usr/src/debug/kbd/2.9.0/src/include/kbd/keymap -> 
/usr/src/debug/kbd/2.10.0/src/include/kbd/keymap, directory renamed 
/usr/src/debug/kbd/2.9.0/src/include/kbd -> 
/usr/src/debug/kbd/2.10.0/src/include/kbd, directory renamed 
/usr/src/debug/kbd/2.9.0/src/libkfont -> 
/usr/src/debug/kbd/2.10.0/src/libkfont, directory renamed 
/usr/src/debug/kbd/2.9.0/src/libkbdfile -> 
/usr/src/debug/kbd/2.10.0/src/libkbdfile, directory renamed 
/usr/src/debug/kbd/2.9.0/src/libkeymap -> 
/usr/src/debug/kbd/2.10.0/src/libkeymap, directory renamed 
/usr/src/debug/kbd/2.9.0/src -> /usr/src/debug/kbd/2.10.0/src, directory 
renamed /usr/src/debug/kbd/2.9.0/src/vlock -> 
/usr/src/debug/kbd/2.10.0/src/vlock, directory renamed 
/usr/src/debug/kbd/2.9.0/src/libcommon -> 
/usr/src/debug/kbd/2.10.0/src/libcommon
packages/x86-64-v3-poky-linux/kbd/kbd-src: PKGSIZE changed from 595950 to 
608229 (+2%)
packages/x86-64-v3-poky-linux/kbd/kbd-src: PV changed from "2.9.0" to "2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-src: PKGV changed from 2.9.0 [default] to 
2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd-staticdev: PV changed from "2.9.0" to 
"2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-staticdev: PKGV changed from 2.9.0 
[default] to 2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd-unimaps: PV changed from "2.9.0" to 
"2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd-unimaps: PKGV changed from 2.9.0 
[default] to 2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd/kbd: PKGSIZE changed from 908368 to 924752 
(+2%)
packages/x86-64-v3-poky-linux/kbd/kbd: PV changed from "2.9.0" to "2.10.0"
packages/x86-64-v3-poky-linux/kbd/kbd: PKGV changed from 2.9.0 [default] to 
2.10.0 [default]
packages/x86-64-v3-poky-linux/kbd: SRC_URI changed from 
"https://cdn.kernel.org/pub/linux/utils/kbd/kbd-2.9.0.tar.xz 
file://0001-Preserve-only-necessary-metadata-during-install.patch 
file://0001-libkbdfile-Fix-problem-with-undeclared-sym_gzopen.patch" to 
"https://cdn.kernel.org/pub/linux/utils/kbd/kbd-2.10.0.tar.xz";
packages/x86-64-v3-poky-linux/kbd: PV changed from "2.9.0" to "2.10.0"
packages/x86-64-v3-poky-linux/kbd: PKGV changed from 2.9.0 [default] to 2.10.0 
[default]
Changes to packages/x86-64-v3-poky-linux/kbd (sysroot):
  /usr/share/keymaps/i386/qwerty/mac-no.map.gz was added
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#237863): 
https://lists.openembedded.org/g/openembedded-core/message/237863
Mute This Topic: https://lists.openembedded.org/mt/119594410/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

  • [OE-core] [AUH] kbd: upgrad... Auto Upgrade Helper via lists.openembedded.org

Reply via email to