* [PATCH v3 1/5] alsa-lib: upgrade 1.2.14 -> 1.2.15
2025-12-22 17:43 [PATCH v3 0/5] ALSA 1.2.15 updates michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 2/5] alsa-utils: upgrade 1.2.14 -> 1.2.15 michael.opdenacker
@ 2025-12-22 17:43 ` michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 4/5] alsa-ucm-conf: " michael.opdenacker
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: michael.opdenacker @ 2025-12-22 17:43 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Include a fix from upstream that's needed with uclibc:
https://github.com/alsa-project/alsa-lib/commit/a068cf08ad67447893b707cddfce31c9cafee643
Upstream changes:
https://www.alsa-project.org/wiki/Changes_v1.2.14_v1.2.15#alsa-lib
Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
...use-closefrom-instead-of-close_range.patch | 50 +++++++++++++++++++
...{alsa-lib_1.2.14.bb => alsa-lib_1.2.15.bb} | 5 +-
2 files changed, 53 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-multimedia/alsa/alsa-lib-1.2.15/0001-ucm-use-closefrom-instead-of-close_range.patch
rename meta/recipes-multimedia/alsa/{alsa-lib_1.2.14.bb => alsa-lib_1.2.15.bb} (89%)
diff --git a/meta/recipes-multimedia/alsa/alsa-lib-1.2.15/0001-ucm-use-closefrom-instead-of-close_range.patch b/meta/recipes-multimedia/alsa/alsa-lib-1.2.15/0001-ucm-use-closefrom-instead-of-close_range.patch
new file mode 100644
index 0000000000..815aca8019
--- /dev/null
+++ b/meta/recipes-multimedia/alsa/alsa-lib-1.2.15/0001-ucm-use-closefrom-instead-of-close_range.patch
@@ -0,0 +1,50 @@
+From a068cf08ad67447893b707cddfce31c9cafee643 Mon Sep 17 00:00:00 2001
+From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
+Date: Mon, 8 Dec 2025 23:46:17 -0500
+Subject: [PATCH] ucm: use closefrom instead of close_range
+
+From: Mike Gilbert <floppym@gentoo.org>
+
+closefrom is a library function with a fallback mechanism for when the
+kernel does not support the close_range syscall.
+
+Also check for the function properly instead of assuming it is available
+with _GNU_SOURCE defined.
+
+Closes: https://github.com/alsa-project/alsa-lib/pull/486
+Fixes: https://github.com/alsa-project/alsa-lib/issues/485
+Signed-off-by: Mike Gilbert <floppym@gentoo.org>
+Signed-off-by: Jaroslav Kysela <perex@perex.cz>
+Upstream-Status: Backport [a068cf08ad67447893b707cddfce31c9cafee643]
+---
+ configure.ac | 1 +
+ src/ucm/ucm_exec.c | 4 ++--
+ 2 files changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 8f4bd0de..f4862f64 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -52,6 +52,7 @@ dnl Checks for library functions.
+ AC_PROG_GCC_TRADITIONAL
+ AC_CHECK_FUNCS([uselocale])
+ AC_CHECK_FUNCS([eaccess])
++AC_CHECK_DECLS([closefrom])
+
+ dnl Enable largefile support
+ AC_SYS_LARGEFILE
+diff --git a/src/ucm/ucm_exec.c b/src/ucm/ucm_exec.c
+index b5a22023..713039b4 100644
+--- a/src/ucm/ucm_exec.c
++++ b/src/ucm/ucm_exec.c
+@@ -259,8 +259,8 @@ int uc_mgr_exec(const char *prog)
+
+ close(f);
+
+-#if defined(_GNU_SOURCE)
+- close_range(3, maxfd, 0);
++#if HAVE_DECL_CLOSEFROM
++ closefrom(3);
+ #else
+ for (f = 3; f < maxfd; f++)
+ close(f);
diff --git a/meta/recipes-multimedia/alsa/alsa-lib_1.2.14.bb b/meta/recipes-multimedia/alsa/alsa-lib_1.2.15.bb
similarity index 89%
rename from meta/recipes-multimedia/alsa/alsa-lib_1.2.14.bb
rename to meta/recipes-multimedia/alsa/alsa-lib_1.2.15.bb
index 41a42f9ecc..6ecdeefa46 100644
--- a/meta/recipes-multimedia/alsa/alsa-lib_1.2.14.bb
+++ b/meta/recipes-multimedia/alsa/alsa-lib_1.2.15.bb
@@ -9,8 +9,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7 \
file://src/socket.c;md5=285675b45e83f571c6a957fe4ab79c93;beginline=9;endline=24 \
"
-SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2"
-SRC_URI[sha256sum] = "be9c88a0b3604367dd74167a2b754a35e142f670292ae47a2fdef27a2ee97a32"
+SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2 \
+ file://0001-ucm-use-closefrom-instead-of-close_range.patch"
+SRC_URI[sha256sum] = "83770841585e766a60c99fd23f8c574c22643ae0cb1f2d20b793c3d84eb95a8d"
inherit autotools pkgconfig
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 2/5] alsa-utils: upgrade 1.2.14 -> 1.2.15
2025-12-22 17:43 [PATCH v3 0/5] ALSA 1.2.15 updates michael.opdenacker
@ 2025-12-22 17:43 ` michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 1/5] alsa-lib: " michael.opdenacker
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: michael.opdenacker @ 2025-12-22 17:43 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Include a fix from upstream fixing a build issue:
https://github.com/alsa-project/alsa-utils/commit/10587067fcf5b05e7fa5a84c38238dbffd079c4f
Upstream changes:
https://www.alsa-project.org/wiki/Changes_v1.2.14_v1.2.15#alsa-utils
Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
...sactl-fix-build-when-in-subdirectory.patch | 29 +++++++++++++++++++
...a-utils_1.2.14.bb => alsa-utils_1.2.15.bb} | 5 ++--
2 files changed, 32 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-multimedia/alsa/alsa-utils-1.2.15/0001-alsactl-fix-build-when-in-subdirectory.patch
rename meta/recipes-multimedia/alsa/{alsa-utils_1.2.14.bb => alsa-utils_1.2.15.bb} (97%)
diff --git a/meta/recipes-multimedia/alsa/alsa-utils-1.2.15/0001-alsactl-fix-build-when-in-subdirectory.patch b/meta/recipes-multimedia/alsa/alsa-utils-1.2.15/0001-alsactl-fix-build-when-in-subdirectory.patch
new file mode 100644
index 0000000000..d1c6b3d830
--- /dev/null
+++ b/meta/recipes-multimedia/alsa/alsa-utils-1.2.15/0001-alsactl-fix-build-when-in-subdirectory.patch
@@ -0,0 +1,29 @@
+From 10587067fcf5b05e7fa5a84c38238dbffd079c4f Mon Sep 17 00:00:00 2001
+From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
+Date: Mon, 8 Dec 2025 11:12:34 +0000
+Subject: [PATCH] alsactl: fix build when in subdirectory
+
+From: Rudi Heitbaum <rudi@heitbaum.com>
+
+create the conf directory as part of the edit recipe
+
+Closes: https://github.com/alsa-project/alsa-utils/pull/311
+Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
+Signed-off-by: Jaroslav Kysela <perex@perex.cz>
+Upstream-Status: Backport [10587067fcf5b05e7fa5a84c38238dbffd079c4f]
+---
+ alsactl/Makefile.am | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/alsactl/Makefile.am b/alsactl/Makefile.am
+index 48b7c7a..c8729e0 100644
+--- a/alsactl/Makefile.am
++++ b/alsactl/Makefile.am
+@@ -47,6 +47,7 @@ endif
+ edit = \
+ extratest=$$(echo ' $(ALSACTL_UDEV_EXTRATEST)' | sed -e 's/__/ /g' -e 's/^ $$//'); \
+ args=$$(echo ' $(ALSACTL_UDEV_ARGS)' | sed -e 's/__/ /g' -e 's/^ $$//'); \
++ mkdir -p conf; \
+ $(SED) -r -e 's,@sbindir\@,$(sbindir),g' \
+ -e 's,@mydatadir\@,$(mydatadir),g' \
+ -e 's,@daemonswitch\@,$(ALSACTL_DAEMONSWITCH),g' \
diff --git a/meta/recipes-multimedia/alsa/alsa-utils_1.2.14.bb b/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.bb
similarity index 97%
rename from meta/recipes-multimedia/alsa/alsa-utils_1.2.14.bb
rename to meta/recipes-multimedia/alsa/alsa-utils_1.2.15.bb
index 3cbb9b464b..09b3de81f4 100644
--- a/meta/recipes-multimedia/alsa/alsa-utils_1.2.14.bb
+++ b/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.bb
@@ -24,8 +24,9 @@ PACKAGECONFIG[udev] = "--with-udev-rules-dir=`pkg-config --variable=udevdir udev
PACKAGECONFIG[manpages] = "--enable-xmlto, --disable-xmlto, xmlto-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native"
# alsa-utils specified in SRC_URI due to alsa-utils-scripts recipe
-SRC_URI = "https://www.alsa-project.org/files/pub/utils/alsa-utils-${PV}.tar.bz2"
-SRC_URI[sha256sum] = "0794c74d33fed943e7c50609c13089e409312b6c403d6ae8984fc429c0960741"
+SRC_URI = "https://www.alsa-project.org/files/pub/utils/alsa-utils-${PV}.tar.bz2 \
+ file://0001-alsactl-fix-build-when-in-subdirectory.patch"
+SRC_URI[sha256sum] = "d3183d2ed2d69e9143c5beb97036267c3fdabfe8bfbea8bc6863f17b1f0b568e"
# On build machines with python-docutils (not python3-docutils !!) installed
# rst2man (not rst2man.py) is detected and compile fails with
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 0/5] ALSA 1.2.15 updates
@ 2025-12-22 17:43 michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 2/5] alsa-utils: upgrade 1.2.14 -> 1.2.15 michael.opdenacker
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: michael.opdenacker @ 2025-12-22 17:43 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
These changes update alsa-lib, alsa-utils, alsa-tools
and alsa-ucm-conf to the latest version: 1.2.15
Changes in V3:
- alsa-utils: keep this line in the recipe
EXTRA_OECONF = "--disable-rst2man"
It looks unnecessary, but will try to remove through
a later commit.
Changes in V2:
- alsa-lib: add this patch from upstream for uclibc:
https://github.com/alsa-project/alsa-lib/commit/a068cf08ad67447893b707cddfce31c9cafee643
Michael Opdenacker (5):
alsa-lib: upgrade 1.2.14 -> 1.2.15
alsa-utils: upgrade 1.2.14 -> 1.2.15
alsa-tools: upgrade 1.2.14 -> 1.2.15
alsa-ucm-conf: upgrade 1.2.14 -> 1.2.15
maintainers.inc: update e-mail address
meta/conf/distro/include/maintainers.inc | 22 ++++----
...use-closefrom-instead-of-close_range.patch | 50 +++++++++++++++++++
...{alsa-lib_1.2.14.bb => alsa-lib_1.2.15.bb} | 5 +-
...a-tools_1.2.14.bb => alsa-tools_1.2.15.bb} | 2 +-
...conf_1.2.14.bb => alsa-ucm-conf_1.2.15.bb} | 2 +-
...sactl-fix-build-when-in-subdirectory.patch | 29 +++++++++++
...a-utils_1.2.14.bb => alsa-utils_1.2.15.bb} | 5 +-
7 files changed, 98 insertions(+), 17 deletions(-)
create mode 100644 meta/recipes-multimedia/alsa/alsa-lib-1.2.15/0001-ucm-use-closefrom-instead-of-close_range.patch
rename meta/recipes-multimedia/alsa/{alsa-lib_1.2.14.bb => alsa-lib_1.2.15.bb} (89%)
rename meta/recipes-multimedia/alsa/{alsa-tools_1.2.14.bb => alsa-tools_1.2.15.bb} (97%)
rename meta/recipes-multimedia/alsa/{alsa-ucm-conf_1.2.14.bb => alsa-ucm-conf_1.2.15.bb} (89%)
create mode 100644 meta/recipes-multimedia/alsa/alsa-utils-1.2.15/0001-alsactl-fix-build-when-in-subdirectory.patch
rename meta/recipes-multimedia/alsa/{alsa-utils_1.2.14.bb => alsa-utils_1.2.15.bb} (97%)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v3 3/5] alsa-tools: upgrade 1.2.14 -> 1.2.15
2025-12-22 17:43 [PATCH v3 0/5] ALSA 1.2.15 updates michael.opdenacker
` (2 preceding siblings ...)
2025-12-22 17:43 ` [PATCH v3 4/5] alsa-ucm-conf: " michael.opdenacker
@ 2025-12-22 17:43 ` michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 5/5] maintainers.inc: update e-mail address michael.opdenacker
4 siblings, 0 replies; 6+ messages in thread
From: michael.opdenacker @ 2025-12-22 17:43 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Upstream changes:
https://www.alsa-project.org/wiki/Changes_v1.2.14_v1.2.15#alsa-tools
Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
.../alsa/{alsa-tools_1.2.14.bb => alsa-tools_1.2.15.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-multimedia/alsa/{alsa-tools_1.2.14.bb => alsa-tools_1.2.15.bb} (97%)
diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.2.14.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.2.15.bb
similarity index 97%
rename from meta/recipes-multimedia/alsa/alsa-tools_1.2.14.bb
rename to meta/recipes-multimedia/alsa/alsa-tools_1.2.15.bb
index 751d9e8a76..1228176fb9 100644
--- a/meta/recipes-multimedia/alsa/alsa-tools_1.2.14.bb
+++ b/meta/recipes-multimedia/alsa/alsa-tools_1.2.15.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=59530bdf33659b29e73d4adb9f9f65
SRC_URI = "https://www.alsa-project.org/files/pub/tools/${BP}.tar.bz2"
-SRC_URI[sha256sum] = "faef6fdd39ec79c9a5473dc63aa1b6331bf7664a9d452a0a8198cec7016cbc6f"
+SRC_URI[sha256sum] = "800498d35233672ef67f4bf74cc6e1d37e1fe70c0540e2d2e062f2319e7b5df7"
inherit autotools-brokensep pkgconfig
# brokensep as as10k1 (and probably more) fail out of tree
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 4/5] alsa-ucm-conf: upgrade 1.2.14 -> 1.2.15
2025-12-22 17:43 [PATCH v3 0/5] ALSA 1.2.15 updates michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 2/5] alsa-utils: upgrade 1.2.14 -> 1.2.15 michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 1/5] alsa-lib: " michael.opdenacker
@ 2025-12-22 17:43 ` michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 3/5] alsa-tools: " michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 5/5] maintainers.inc: update e-mail address michael.opdenacker
4 siblings, 0 replies; 6+ messages in thread
From: michael.opdenacker @ 2025-12-22 17:43 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Upstream changes:
https://www.alsa-project.org/wiki/Changes_v1.2.14_v1.2.15#alsa-ucm-conf
Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
.../alsa/{alsa-ucm-conf_1.2.14.bb => alsa-ucm-conf_1.2.15.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-multimedia/alsa/{alsa-ucm-conf_1.2.14.bb => alsa-ucm-conf_1.2.15.bb} (89%)
diff --git a/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.14.bb b/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.15.bb
similarity index 89%
rename from meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.14.bb
rename to meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.15.bb
index d9ef831937..1eaec98e3b 100644
--- a/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.14.bb
+++ b/meta/recipes-multimedia/alsa/alsa-ucm-conf_1.2.15.bb
@@ -8,7 +8,7 @@ LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=20d74d74db9741697903372ad001d3b4"
SRC_URI = "https://www.alsa-project.org/files/pub/lib/${BP}.tar.bz2"
-SRC_URI[sha256sum] = "32e9809f592d92b978aa1032e35293c33b8d0f1ec475f937022c3ee9a3069c21"
+SRC_URI[sha256sum] = "5510cb0947a3bb877b5ce218e3ecedd78bfa6643e372346c87d93d4844a45ffa"
# Something went wrong at upstream tarballing
inherit allarch
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 5/5] maintainers.inc: update e-mail address
2025-12-22 17:43 [PATCH v3 0/5] ALSA 1.2.15 updates michael.opdenacker
` (3 preceding siblings ...)
2025-12-22 17:43 ` [PATCH v3 3/5] alsa-tools: " michael.opdenacker
@ 2025-12-22 17:43 ` michael.opdenacker
4 siblings, 0 replies; 6+ messages in thread
From: michael.opdenacker @ 2025-12-22 17:43 UTC (permalink / raw)
To: openembedded-core; +Cc: Michael Opdenacker
From: Michael Opdenacker <michael.opdenacker@rootcommit.com>
Signed-off-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
---
meta/conf/distro/include/maintainers.inc | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc
index 8971b9b552..447faf8fb3 100644
--- a/meta/conf/distro/include/maintainers.inc
+++ b/meta/conf/distro/include/maintainers.inc
@@ -31,13 +31,13 @@ RECIPE_MAINTAINER:pn-acl = "Chen Qi <Qi.Chen@windriver.com>"
RECIPE_MAINTAINER:pn-acpica = "Ross Burton <ross.burton@arm.com>"
RECIPE_MAINTAINER:pn-acpid = "Ross Burton <ross.burton@arm.com>"
RECIPE_MAINTAINER:pn-adwaita-icon-theme = "Ross Burton <ross.burton@arm.com>"
-RECIPE_MAINTAINER:pn-alsa-lib = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-plugins = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-state = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-tools = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-topology-conf = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-ucm-conf = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-alsa-utils = "Michael Opdenacker <michael@opdenacker.org>"
+RECIPE_MAINTAINER:pn-alsa-lib = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-plugins = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-state = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-tools = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-topology-conf = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-ucm-conf = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-alsa-utils = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
RECIPE_MAINTAINER:pn-appstream = "Markus Volk <f_l_k@t-online.de>"
RECIPE_MAINTAINER:pn-apr = "Hongxu Jia <hongxu.jia@windriver.com>"
RECIPE_MAINTAINER:pn-apr-util = "Hongxu Jia <hongxu.jia@windriver.com>"
@@ -182,7 +182,7 @@ RECIPE_MAINTAINER:pn-ffmpeg = "Unassigned <unassigned@yoctoproject.org>"
RECIPE_MAINTAINER:pn-fastfloat = "Markus Volk <f_l_k@t-online.de>"
RECIPE_MAINTAINER:pn-file = "Yi Zhao <yi.zhao@windriver.com>"
RECIPE_MAINTAINER:pn-findutils = "Chen Qi <Qi.Chen@windriver.com>"
-RECIPE_MAINTAINER:pn-flac = "Michael Opdenacker <michael@opdenacker.org>"
+RECIPE_MAINTAINER:pn-flac = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
RECIPE_MAINTAINER:pn-flex = "Chen Qi <Qi.Chen@windriver.com>"
RECIPE_MAINTAINER:pn-fmt = "Robert Yang <liezhi.yang@windriver.com>"
RECIPE_MAINTAINER:pn-font-alias = "Unassigned <unassigned@yoctoproject.org>"
@@ -311,7 +311,7 @@ RECIPE_MAINTAINER:pn-keymaps = "Unassigned <unassigned@yoctoproject.org>"
RECIPE_MAINTAINER:pn-kmod = "Chen Qi <Qi.Chen@windriver.com>"
RECIPE_MAINTAINER:pn-kmscube = "Unassigned <unassigned@yoctoproject.org>"
RECIPE_MAINTAINER:pn-l3afpad = "Unassigned <unassigned@yoctoproject.org>"
-RECIPE_MAINTAINER:pn-lame = "Michael Opdenacker <michael@opdenacker.org>"
+RECIPE_MAINTAINER:pn-lame = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
RECIPE_MAINTAINER:pn-ldconfig-native = "Khem Raj <raj.khem@gmail.com>"
RECIPE_MAINTAINER:pn-less = "Yi Zhao <yi.zhao@windriver.com>"
RECIPE_MAINTAINER:pn-libacpi = "Unassigned <unassigned@yoctoproject.org>"
@@ -797,8 +797,8 @@ RECIPE_MAINTAINER:pn-shutdown-desktop = "Unassigned <unassigned@yoctoproject.org
RECIPE_MAINTAINER:pn-signing-keys = "Richard Purdie <richard.purdie@linuxfoundation.org>"
RECIPE_MAINTAINER:pn-slang = "Yi Zhao <yi.zhao@windriver.com>"
RECIPE_MAINTAINER:pn-socat = "Hongxu Jia <hongxu.jia@windriver.com>"
-RECIPE_MAINTAINER:pn-speex = "Michael Opdenacker <michael@opdenacker.org>"
-RECIPE_MAINTAINER:pn-speexdsp = "Michael Opdenacker <michael@opdenacker.org>"
+RECIPE_MAINTAINER:pn-speex = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
+RECIPE_MAINTAINER:pn-speexdsp = "Michael Opdenacker <michael.opdenacker@rootcommit.com>"
RECIPE_MAINTAINER:pn-spirv-headers = "Jose Quaresma <quaresma.jose@gmail.com>"
RECIPE_MAINTAINER:pn-spirv-llvm-translator = "Khem Raj <raj.khem@gmail.com>"
RECIPE_MAINTAINER:pn-spirv-tools = "Jose Quaresma <quaresma.jose@gmail.com>"
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-12-22 17:43 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-22 17:43 [PATCH v3 0/5] ALSA 1.2.15 updates michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 2/5] alsa-utils: upgrade 1.2.14 -> 1.2.15 michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 1/5] alsa-lib: " michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 4/5] alsa-ucm-conf: " michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 3/5] alsa-tools: " michael.opdenacker
2025-12-22 17:43 ` [PATCH v3 5/5] maintainers.inc: update e-mail address michael.opdenacker
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox