* [PATCH] alsa-utils: fix packaging of alsabat
@ 2026-01-26 9:36 max.oss.09
2026-02-04 9:50 ` Max Krummenacher
0 siblings, 1 reply; 3+ messages in thread
From: max.oss.09 @ 2026-01-26 9:36 UTC (permalink / raw)
To: openembedded-core; +Cc: Ross Burton, Max Krummenacher
From: Max Krummenacher <max.krummenacher@toradex.com>
If bat is in PACKAGECONFIG two additional binaries are created which
by the dynamic package split creates two additional packages.
However due to explicitely adding the file alsabat-test.sh to the
alsabat package the alsa-utils-alsabat-test package now is empty
and not created.
Complete commit 4c6d5f96990d ("alsa-utils: fix packaging") which fixed
the same issue for all other affected packages.
Fixes: 26a28ee79350 ("alsa-utils: dynamically split the packages instead of doing it manually")
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
---
meta/recipes-multimedia/alsa/alsa-utils_1.2.15.2.bb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.2.bb b/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.2.bb
index 6d75bff09e5c..b792302c9fae 100644
--- a/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.2.bb
+++ b/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.2.bb
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
DEPENDS = "alsa-lib ncurses libsamplerate0 bash"
# Only needed as the dynamic packaging was altered, remove on upgrade
-PR = "r1"
+PR = "r2"
# 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"
@@ -63,6 +63,7 @@ SUMMARY:${PN}-speaker-test = "ALSA surround speaker test utility"
RRECOMMENDS:${PN}-alsactl = "alsa-states"
+RPROVIDES:${PN}-alsabat += "${PN}-alsabat-test"
RPROVIDES:${PN}-aplay += "${PN}-arecord"
RPROVIDES:${PN}-amidi += "${PN}-aplaymidi ${PN}-aplaymidi2 ${PN}-arecordmidi ${PN}-arecordmidi2"
--
2.42.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] alsa-utils: fix packaging of alsabat
2026-01-26 9:36 [PATCH] alsa-utils: fix packaging of alsabat max.oss.09
@ 2026-02-04 9:50 ` Max Krummenacher
2026-02-04 15:10 ` [OE-core] " Mathieu Dubois-Briand
0 siblings, 1 reply; 3+ messages in thread
From: Max Krummenacher @ 2026-02-04 9:50 UTC (permalink / raw)
To: openembedded-core; +Cc: Ross Burton, Max Krummenacher
Hi all
Gentle ping.
The alsa-utils package is currently broken if one sets `bat` in PACKAGECONFIG.
Regards,
Max
On Mon, Jan 26, 2026 at 10:38 AM <max.oss.09@gmail.com> wrote:
>
> From: Max Krummenacher <max.krummenacher@toradex.com>
>
> If bat is in PACKAGECONFIG two additional binaries are created which
> by the dynamic package split creates two additional packages.
> However due to explicitely adding the file alsabat-test.sh to the
> alsabat package the alsa-utils-alsabat-test package now is empty
> and not created.
>
> Complete commit 4c6d5f96990d ("alsa-utils: fix packaging") which fixed
> the same issue for all other affected packages.
>
> Fixes: 26a28ee79350 ("alsa-utils: dynamically split the packages instead of doing it manually")
> Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
> ---
> meta/recipes-multimedia/alsa/alsa-utils_1.2.15.2.bb | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.2.bb b/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.2.bb
> index 6d75bff09e5c..b792302c9fae 100644
> --- a/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.2.bb
> +++ b/meta/recipes-multimedia/alsa/alsa-utils_1.2.15.2.bb
> @@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
> DEPENDS = "alsa-lib ncurses libsamplerate0 bash"
>
> # Only needed as the dynamic packaging was altered, remove on upgrade
> -PR = "r1"
> +PR = "r2"
>
> # 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"
> @@ -63,6 +63,7 @@ SUMMARY:${PN}-speaker-test = "ALSA surround speaker test utility"
>
> RRECOMMENDS:${PN}-alsactl = "alsa-states"
>
> +RPROVIDES:${PN}-alsabat += "${PN}-alsabat-test"
> RPROVIDES:${PN}-aplay += "${PN}-arecord"
> RPROVIDES:${PN}-amidi += "${PN}-aplaymidi ${PN}-aplaymidi2 ${PN}-arecordmidi ${PN}-arecordmidi2"
>
> --
> 2.42.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [OE-core] [PATCH] alsa-utils: fix packaging of alsabat
2026-02-04 9:50 ` Max Krummenacher
@ 2026-02-04 15:10 ` Mathieu Dubois-Briand
0 siblings, 0 replies; 3+ messages in thread
From: Mathieu Dubois-Briand @ 2026-02-04 15:10 UTC (permalink / raw)
To: max.oss.09, openembedded-core; +Cc: Ross Burton, Max Krummenacher
On Wed Feb 4, 2026 at 10:50 AM CET, Max Krummenacher via lists.openembedded.org wrote:
> Hi all
>
> Gentle ping.
>
Sorry, I'm pretty sure I confused your patch with another alsa-utils one
at some point, and so dropped it by error.
It will be back in my branch soon.
Thanks,
Mathieu
--
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-02-04 15:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-26 9:36 [PATCH] alsa-utils: fix packaging of alsabat max.oss.09
2026-02-04 9:50 ` Max Krummenacher
2026-02-04 15:10 ` [OE-core] " Mathieu Dubois-Briand
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox