* [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage
@ 2026-03-11 12:29 Zoltán Böszörményi
2026-03-11 12:29 ` [PATCH 2/4] gawk: " Zoltán Böszörményi
` (3 more replies)
0 siblings, 4 replies; 12+ messages in thread
From: Zoltán Böszörményi @ 2026-03-11 12:29 UTC (permalink / raw)
To: openembedded-core; +Cc: Zoltán Böszörményi
This fixes a QA error:
ERROR: QA Issue: bash-ptest rdepends on locale-base-fr-fr.iso-8559-1,
but it isn't a build dependency? [build-deps]
Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com>
---
meta/recipes-extended/bash/bash.inc | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc
index 634209c911..b43b1cbf89 100644
--- a/meta/recipes-extended/bash/bash.inc
+++ b/meta/recipes-extended/bash/bash.inc
@@ -32,6 +32,7 @@ ALTERNATIVE_PRIORITY = "100"
RDEPENDS:${PN} += "base-files"
RDEPENDS:${PN}:class-nativesdk = ""
RDEPENDS:${PN}-ptest += "make coreutils perl sed shadow util-linux-setpriv"
+INSANE_SKIP:${PN}-ptest = "build-deps"
RDEPENDS:${PN}-ptest:append:libc-glibc = " \
glibc-gconv-big5hkscs \
--
2.53.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH 2/4] gawk: Add INSANE_SKIP=build-deps to ptest subpackage 2026-03-11 12:29 [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage Zoltán Böszörményi @ 2026-03-11 12:29 ` Zoltán Böszörményi 2026-03-11 12:29 ` [PATCH 3/4] glib-2.0: " Zoltán Böszörményi ` (2 subsequent siblings) 3 siblings, 0 replies; 12+ messages in thread From: Zoltán Böszörményi @ 2026-03-11 12:29 UTC (permalink / raw) To: openembedded-core; +Cc: Zoltán Böszörményi This fixes a QA error: ERROR: QA Issue: gawk-ptest rdepends on locale-base-en-us-iso8559-1, but it isn't a build dependency? [build-deps] Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> --- meta/recipes-extended/gawk/gawk_5.4.0.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-extended/gawk/gawk_5.4.0.bb b/meta/recipes-extended/gawk/gawk_5.4.0.bb index d7211f28f3..f4746bd041 100644 --- a/meta/recipes-extended/gawk/gawk_5.4.0.bb +++ b/meta/recipes-extended/gawk/gawk_5.4.0.bb @@ -101,6 +101,7 @@ do_install_ptest:append:libc-musl() { } RDEPENDS:${PN}-ptest += "make locale-base-en-us coreutils" +INSANE_SKIP:${PN}-ptest = "build-deps" RDEPENDS:${PN}-ptest:append:libc-glibc = " locale-base-en-us.iso-8859-1" RDEPENDS:${PN}-ptest:append:libc-musl = " musl-locales" -- 2.53.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 3/4] glib-2.0: Add INSANE_SKIP=build-deps to ptest subpackage 2026-03-11 12:29 [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage Zoltán Böszörményi 2026-03-11 12:29 ` [PATCH 2/4] gawk: " Zoltán Böszörményi @ 2026-03-11 12:29 ` Zoltán Böszörményi 2026-03-11 12:29 ` [PATCH 4/4] gtk4: Fix a build error in examples/application8 Zoltán Böszörményi 2026-03-11 12:44 ` [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage Marko, Peter 3 siblings, 0 replies; 12+ messages in thread From: Zoltán Böszörményi @ 2026-03-11 12:29 UTC (permalink / raw) To: openembedded-core; +Cc: Zoltán Böszörményi This fixes a QA error: ERROR: QA Issue: glib-2.0-ptest rdepends on locale-base-ja-jp.euc-jp, but it isn't a build dependency? [build-deps] Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> --- meta/recipes-core/glib-2.0/glib.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc index d1f25ef8f2..35293dd610 100644 --- a/meta/recipes-core/glib-2.0/glib.inc +++ b/meta/recipes-core/glib-2.0/glib.inc @@ -194,7 +194,7 @@ RDEPENDS:${PN}-ptest += "\ locale-base-fr-fr \ locale-base-ru-ru \ " -INSANE_SKIP:${PN}-ptest = "dev-deps" +INSANE_SKIP:${PN}-ptest = "dev-deps build-deps" RDEPENDS:${PN}-ptest:append:libc-glibc = "\ glibc-gconv-utf-16 \ -- 2.53.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 4/4] gtk4: Fix a build error in examples/application8 2026-03-11 12:29 [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage Zoltán Böszörményi 2026-03-11 12:29 ` [PATCH 2/4] gawk: " Zoltán Böszörményi 2026-03-11 12:29 ` [PATCH 3/4] glib-2.0: " Zoltán Böszörményi @ 2026-03-11 12:29 ` Zoltán Böszörményi 2026-03-11 12:44 ` [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage Marko, Peter 3 siblings, 0 replies; 12+ messages in thread From: Zoltán Böszörményi @ 2026-03-11 12:29 UTC (permalink / raw) To: openembedded-core; +Cc: Zoltán Böszörményi Add a backported patch from master to use underscore instead of space in a generated filename. This fixes the build error: | /usr/bin/ld: cannot find examples/application8/exampleapp8.p/meson-generated_.._exampleapp8: No such file or directory | /usr/bin/ld: cannot find resources.c.o: No such file or directory Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> --- ...-t-use-space-in-meson-generated-file.patch | 34 +++++++++++++++++++ meta/recipes-gnome/gtk+/gtk4_4.20.3.bb | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 meta/recipes-gnome/gtk+/gtk4/0001-application8-Don-t-use-space-in-meson-generated-file.patch diff --git a/meta/recipes-gnome/gtk+/gtk4/0001-application8-Don-t-use-space-in-meson-generated-file.patch b/meta/recipes-gnome/gtk+/gtk4/0001-application8-Don-t-use-space-in-meson-generated-file.patch new file mode 100644 index 0000000000..2a79fc637d --- /dev/null +++ b/meta/recipes-gnome/gtk+/gtk4/0001-application8-Don-t-use-space-in-meson-generated-file.patch @@ -0,0 +1,34 @@ +From d26453923a21de0d908af3bf83c69263aaee5705 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Zolt=C3=A1n=20B=C3=B6sz=C3=B6rm=C3=A9nyi?= + <zboszor@gmail.com> +Date: Wed, 11 Mar 2026 07:02:10 +0100 +Subject: [PATCH] application8: Don't use space in meson generated filename +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +All other example apps use underscore, examples/application8 +has a build error: + +| /usr/bin/ld: cannot find examples/application8/exampleapp8.p/meson-generated_.._exampleapp8: No such file or directory +| /usr/bin/ld: cannot find resources.c.o: No such file or directory + +Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> +Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/9627] +--- + examples/application8/meson.build | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/examples/application8/meson.build b/examples/application8/meson.build +index f2e1d7cea9..77987d554a 100644 +--- a/examples/application8/meson.build ++++ b/examples/application8/meson.build +@@ -1,4 +1,4 @@ +-app8_resources = gnome.compile_resources('exampleapp8 resources', ++app8_resources = gnome.compile_resources('exampleapp8_resources', + 'exampleapp.gresource.xml', + source_dir: meson.current_source_dir()) + +-- +2.53.0 + diff --git a/meta/recipes-gnome/gtk+/gtk4_4.20.3.bb b/meta/recipes-gnome/gtk+/gtk4_4.20.3.bb index ef9a05f7fe..0cca44fb5c 100644 --- a/meta/recipes-gnome/gtk+/gtk4_4.20.3.bb +++ b/meta/recipes-gnome/gtk+/gtk4_4.20.3.bb @@ -35,6 +35,8 @@ LIC_FILES_CHKSUM = " \ SRC_URI[archive.sha256sum] = "2873f2903088a66c71173ea2ed85ffae266a66b972c3a4842bbb2f6f187ec153" +SRC_URI += "file://0001-application8-Don-t-use-space-in-meson-generated-file.patch" + S = "${UNPACKDIR}/${GNOMEBN}-${PV}" CVE_PRODUCT = "gnome:gtk" -- 2.53.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* RE: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage 2026-03-11 12:29 [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage Zoltán Böszörményi ` (2 preceding siblings ...) 2026-03-11 12:29 ` [PATCH 4/4] gtk4: Fix a build error in examples/application8 Zoltán Böszörményi @ 2026-03-11 12:44 ` Marko, Peter 2026-03-11 13:12 ` Böszörményi Zoltán [not found] ` <189BCB9A4C18D9A2.1328210@lists.openembedded.org> 3 siblings, 2 replies; 12+ messages in thread From: Marko, Peter @ 2026-03-11 12:44 UTC (permalink / raw) To: zboszor@gmail.com, openembedded-core@lists.openembedded.org These INSANE_SKIP assignments are wrong. Use GLIBC_GENERATE_LOCALES = "all" (or select just those you need) in your distro. Peter > -----Original Message----- > From: openembedded-core@lists.openembedded.org <openembedded- > core@lists.openembedded.org> On Behalf Of Zoltan Boszormenyi via > lists.openembedded.org > Sent: Wednesday, March 11, 2026 13:29 > To: openembedded-core@lists.openembedded.org > Cc: Zoltán Böszörményi <zboszor@gmail.com> > Subject: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest > subpackage > > This fixes a QA error: > > ERROR: QA Issue: bash-ptest rdepends on locale-base-fr-fr.iso-8559-1, > but it isn't a build dependency? [build-deps] > > Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> > --- > meta/recipes-extended/bash/bash.inc | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes- > extended/bash/bash.inc > index 634209c911..b43b1cbf89 100644 > --- a/meta/recipes-extended/bash/bash.inc > +++ b/meta/recipes-extended/bash/bash.inc > @@ -32,6 +32,7 @@ ALTERNATIVE_PRIORITY = "100" > RDEPENDS:${PN} += "base-files" > RDEPENDS:${PN}:class-nativesdk = "" > RDEPENDS:${PN}-ptest += "make coreutils perl sed shadow util-linux-setpriv" > +INSANE_SKIP:${PN}-ptest = "build-deps" > > RDEPENDS:${PN}-ptest:append:libc-glibc = " \ > glibc-gconv-big5hkscs \ > -- > 2.53.0 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage 2026-03-11 12:44 ` [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage Marko, Peter @ 2026-03-11 13:12 ` Böszörményi Zoltán 2026-03-11 13:40 ` Marko, Peter [not found] ` <189BCB9A4C18D9A2.1328210@lists.openembedded.org> 1 sibling, 1 reply; 12+ messages in thread From: Böszörményi Zoltán @ 2026-03-11 13:12 UTC (permalink / raw) To: Marko, Peter, openembedded-core@lists.openembedded.org 2026. 03. 11. 13:44 keltezéssel, Marko, Peter írta: > These INSANE_SKIP assignments are wrong. > Use GLIBC_GENERATE_LOCALES = "all" (or select just those you need) in your distro. It doesn't help. > > Peter > >> -----Original Message----- >> From: openembedded-core@lists.openembedded.org <openembedded- >> core@lists.openembedded.org> On Behalf Of Zoltan Boszormenyi via >> lists.openembedded.org >> Sent: Wednesday, March 11, 2026 13:29 >> To: openembedded-core@lists.openembedded.org >> Cc: Zoltán Böszörményi <zboszor@gmail.com> >> Subject: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest >> subpackage >> >> This fixes a QA error: >> >> ERROR: QA Issue: bash-ptest rdepends on locale-base-fr-fr.iso-8559-1, >> but it isn't a build dependency? [build-deps] >> >> Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> >> --- >> meta/recipes-extended/bash/bash.inc | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes- >> extended/bash/bash.inc >> index 634209c911..b43b1cbf89 100644 >> --- a/meta/recipes-extended/bash/bash.inc >> +++ b/meta/recipes-extended/bash/bash.inc >> @@ -32,6 +32,7 @@ ALTERNATIVE_PRIORITY = "100" >> RDEPENDS:${PN} += "base-files" >> RDEPENDS:${PN}:class-nativesdk = "" >> RDEPENDS:${PN}-ptest += "make coreutils perl sed shadow util-linux-setpriv" >> +INSANE_SKIP:${PN}-ptest = "build-deps" >> >> RDEPENDS:${PN}-ptest:append:libc-glibc = " \ >> glibc-gconv-big5hkscs \ >> -- >> 2.53.0 ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage 2026-03-11 13:12 ` Böszörményi Zoltán @ 2026-03-11 13:40 ` Marko, Peter 2026-03-11 13:42 ` Böszörményi Zoltán 0 siblings, 1 reply; 12+ messages in thread From: Marko, Peter @ 2026-03-11 13:40 UTC (permalink / raw) To: Böszörményi Zoltán, openembedded-core@lists.openembedded.org > -----Original Message----- > From: Böszörményi Zoltán <zboszor@gmail.com> > Sent: Wednesday, March 11, 2026 14:12 > To: Marko, Peter (FT D EU SK BFS1) <Peter.Marko@siemens.com>; > openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest > subpackage > > 2026. 03. 11. 13:44 keltezéssel, Marko, Peter írta: > > These INSANE_SKIP assignments are wrong. > > Use GLIBC_GENERATE_LOCALES = "all" (or select just those you need) in your > distro. > > It doesn't help. I'm not sure why it down't work for you, since it works for me and for Yocto AB. Did you added it to your distro settings and not just to a recipe? The explanation about this is at: https://git.yoctoproject.org/meta-yocto/tree/meta-poky/conf/templates/default/local.conf.sample.extended#n61 Peter > > > > > Peter > > > >> -----Original Message----- > >> From: openembedded-core@lists.openembedded.org <openembedded- > >> core@lists.openembedded.org> On Behalf Of Zoltan Boszormenyi via > >> lists.openembedded.org > >> Sent: Wednesday, March 11, 2026 13:29 > >> To: openembedded-core@lists.openembedded.org > >> Cc: Zoltán Böszörményi <zboszor@gmail.com> > >> Subject: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest > >> subpackage > >> > >> This fixes a QA error: > >> > >> ERROR: QA Issue: bash-ptest rdepends on locale-base-fr-fr.iso-8559-1, > >> but it isn't a build dependency? [build-deps] > >> > >> Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> > >> --- > >> meta/recipes-extended/bash/bash.inc | 1 + > >> 1 file changed, 1 insertion(+) > >> > >> diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes- > >> extended/bash/bash.inc > >> index 634209c911..b43b1cbf89 100644 > >> --- a/meta/recipes-extended/bash/bash.inc > >> +++ b/meta/recipes-extended/bash/bash.inc > >> @@ -32,6 +32,7 @@ ALTERNATIVE_PRIORITY = "100" > >> RDEPENDS:${PN} += "base-files" > >> RDEPENDS:${PN}:class-nativesdk = "" > >> RDEPENDS:${PN}-ptest += "make coreutils perl sed shadow util-linux-setpriv" > >> +INSANE_SKIP:${PN}-ptest = "build-deps" > >> > >> RDEPENDS:${PN}-ptest:append:libc-glibc = " \ > >> glibc-gconv-big5hkscs \ > >> -- > >> 2.53.0 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage 2026-03-11 13:40 ` Marko, Peter @ 2026-03-11 13:42 ` Böszörményi Zoltán 2026-03-11 14:02 ` Marko, Peter 0 siblings, 1 reply; 12+ messages in thread From: Böszörményi Zoltán @ 2026-03-11 13:42 UTC (permalink / raw) To: Marko, Peter, openembedded-core@lists.openembedded.org 2026. 03. 11. 14:40 keltezéssel, Marko, Peter írta: > >> -----Original Message----- >> From: Böszörményi Zoltán <zboszor@gmail.com> >> Sent: Wednesday, March 11, 2026 14:12 >> To: Marko, Peter (FT D EU SK BFS1) <Peter.Marko@siemens.com>; >> openembedded-core@lists.openembedded.org >> Subject: Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest >> subpackage >> >> 2026. 03. 11. 13:44 keltezéssel, Marko, Peter írta: >>> These INSANE_SKIP assignments are wrong. >>> Use GLIBC_GENERATE_LOCALES = "all" (or select just those you need) in your >> distro. >> >> It doesn't help. > I'm not sure why it down't work for you, since it works for me and for Yocto AB. > Did you added it to your distro settings and not just to a recipe? > The explanation about this is at: https://git.yoctoproject.org/meta-yocto/tree/meta-poky/conf/templates/default/local.conf.sample.extended#n61 I added it to my distro include file. > > Peter > >>> Peter >>> >>>> -----Original Message----- >>>> From: openembedded-core@lists.openembedded.org <openembedded- >>>> core@lists.openembedded.org> On Behalf Of Zoltan Boszormenyi via >>>> lists.openembedded.org >>>> Sent: Wednesday, March 11, 2026 13:29 >>>> To: openembedded-core@lists.openembedded.org >>>> Cc: Zoltán Böszörményi <zboszor@gmail.com> >>>> Subject: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest >>>> subpackage >>>> >>>> This fixes a QA error: >>>> >>>> ERROR: QA Issue: bash-ptest rdepends on locale-base-fr-fr.iso-8559-1, >>>> but it isn't a build dependency? [build-deps] >>>> >>>> Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> >>>> --- >>>> meta/recipes-extended/bash/bash.inc | 1 + >>>> 1 file changed, 1 insertion(+) >>>> >>>> diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes- >>>> extended/bash/bash.inc >>>> index 634209c911..b43b1cbf89 100644 >>>> --- a/meta/recipes-extended/bash/bash.inc >>>> +++ b/meta/recipes-extended/bash/bash.inc >>>> @@ -32,6 +32,7 @@ ALTERNATIVE_PRIORITY = "100" >>>> RDEPENDS:${PN} += "base-files" >>>> RDEPENDS:${PN}:class-nativesdk = "" >>>> RDEPENDS:${PN}-ptest += "make coreutils perl sed shadow util-linux-setpriv" >>>> +INSANE_SKIP:${PN}-ptest = "build-deps" >>>> >>>> RDEPENDS:${PN}-ptest:append:libc-glibc = " \ >>>> glibc-gconv-big5hkscs \ >>>> -- >>>> 2.53.0 ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage 2026-03-11 13:42 ` Böszörményi Zoltán @ 2026-03-11 14:02 ` Marko, Peter 2026-03-11 15:26 ` Böszörményi Zoltán [not found] ` <189BD2EF133E31A4.2476321@lists.openembedded.org> 0 siblings, 2 replies; 12+ messages in thread From: Marko, Peter @ 2026-03-11 14:02 UTC (permalink / raw) To: Böszörményi Zoltán, openembedded-core@lists.openembedded.org > -----Original Message----- > From: Böszörményi Zoltán <zboszor@gmail.com> > Sent: Wednesday, March 11, 2026 14:43 > To: Marko, Peter (FT D EU SK BFS1) <Peter.Marko@siemens.com>; > openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest > subpackage > > 2026. 03. 11. 14:40 keltezéssel, Marko, Peter írta: > > > >> -----Original Message----- > >> From: Böszörményi Zoltán <zboszor@gmail.com> > >> Sent: Wednesday, March 11, 2026 14:12 > >> To: Marko, Peter (FT D EU SK BFS1) <Peter.Marko@siemens.com>; > >> openembedded-core@lists.openembedded.org > >> Subject: Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to > ptest > >> subpackage > >> > >> 2026. 03. 11. 13:44 keltezéssel, Marko, Peter írta: > >>> These INSANE_SKIP assignments are wrong. > >>> Use GLIBC_GENERATE_LOCALES = "all" (or select just those you need) in > your > >> distro. > >> > >> It doesn't help. > > I'm not sure why it down't work for you, since it works for me and for Yocto AB. > > Did you added it to your distro settings and not just to a recipe? > > The explanation about this is at: https://git.yoctoproject.org/meta- > yocto/tree/meta-poky/conf/templates/default/local.conf.sample.extended#n61 > > I added it to my distro include file. Have you verified the final value via bitbake-getvar? You are overriding the default (otherwise you would not see the warnings), So possibly you added it to a place where it anyway overwritten later. Peter > > > > > Peter > > > >>> Peter > >>> > >>>> -----Original Message----- > >>>> From: openembedded-core@lists.openembedded.org <openembedded- > >>>> core@lists.openembedded.org> On Behalf Of Zoltan Boszormenyi via > >>>> lists.openembedded.org > >>>> Sent: Wednesday, March 11, 2026 13:29 > >>>> To: openembedded-core@lists.openembedded.org > >>>> Cc: Zoltán Böszörményi <zboszor@gmail.com> > >>>> Subject: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to > ptest > >>>> subpackage > >>>> > >>>> This fixes a QA error: > >>>> > >>>> ERROR: QA Issue: bash-ptest rdepends on locale-base-fr-fr.iso-8559-1, > >>>> but it isn't a build dependency? [build-deps] > >>>> > >>>> Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> > >>>> --- > >>>> meta/recipes-extended/bash/bash.inc | 1 + > >>>> 1 file changed, 1 insertion(+) > >>>> > >>>> diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes- > >>>> extended/bash/bash.inc > >>>> index 634209c911..b43b1cbf89 100644 > >>>> --- a/meta/recipes-extended/bash/bash.inc > >>>> +++ b/meta/recipes-extended/bash/bash.inc > >>>> @@ -32,6 +32,7 @@ ALTERNATIVE_PRIORITY = "100" > >>>> RDEPENDS:${PN} += "base-files" > >>>> RDEPENDS:${PN}:class-nativesdk = "" > >>>> RDEPENDS:${PN}-ptest += "make coreutils perl sed shadow util-linux- > setpriv" > >>>> +INSANE_SKIP:${PN}-ptest = "build-deps" > >>>> > >>>> RDEPENDS:${PN}-ptest:append:libc-glibc = " \ > >>>> glibc-gconv-big5hkscs \ > >>>> -- > >>>> 2.53.0 ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage 2026-03-11 14:02 ` Marko, Peter @ 2026-03-11 15:26 ` Böszörményi Zoltán [not found] ` <189BD2EF133E31A4.2476321@lists.openembedded.org> 1 sibling, 0 replies; 12+ messages in thread From: Böszörményi Zoltán @ 2026-03-11 15:26 UTC (permalink / raw) To: Marko, Peter, openembedded-core@lists.openembedded.org 2026. 03. 11. 15:02 keltezéssel, Marko, Peter írta: > >> -----Original Message----- >> From: Böszörményi Zoltán <zboszor@gmail.com> >> Sent: Wednesday, March 11, 2026 14:43 >> To: Marko, Peter (FT D EU SK BFS1) <Peter.Marko@siemens.com>; >> openembedded-core@lists.openembedded.org >> Subject: Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest >> subpackage >> >> 2026. 03. 11. 14:40 keltezéssel, Marko, Peter írta: >>>> -----Original Message----- >>>> From: Böszörményi Zoltán <zboszor@gmail.com> >>>> Sent: Wednesday, March 11, 2026 14:12 >>>> To: Marko, Peter (FT D EU SK BFS1) <Peter.Marko@siemens.com>; >>>> openembedded-core@lists.openembedded.org >>>> Subject: Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to >> ptest >>>> subpackage >>>> >>>> 2026. 03. 11. 13:44 keltezéssel, Marko, Peter írta: >>>>> These INSANE_SKIP assignments are wrong. >>>>> Use GLIBC_GENERATE_LOCALES = "all" (or select just those you need) in >> your >>>> distro. >>>> >>>> It doesn't help. >>> I'm not sure why it down't work for you, since it works for me and for Yocto AB. >>> Did you added it to your distro settings and not just to a recipe? >>> The explanation about this is at: https://git.yoctoproject.org/meta- >> yocto/tree/meta-poky/conf/templates/default/local.conf.sample.extended#n61 >> >> I added it to my distro include file. > Have you verified the final value via bitbake-getvar? > You are overriding the default (otherwise you would not see the warnings), > So possibly you added it to a place where it anyway overwritten later. Yes, I just checked it. It's not set from anywhere else, only from my distro include file. It's set to "all". As I said, setting it does not help with all the build-deps QA errors. Previously it wasn't set at all, and I have not seen a similar QA error under Yocto 5.3. Isn't it possible that the ptest subpackages for bash, gawk, m4 and others have just gained extra locale-base-* dependencies that previously weren't there? And now they are not being covered by DYNAMIC_PACKAGES in glibc-locales for some reason? ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <189BD2EF133E31A4.2476321@lists.openembedded.org>]
* Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage [not found] ` <189BD2EF133E31A4.2476321@lists.openembedded.org> @ 2026-03-14 9:24 ` Böszörményi Zoltán 0 siblings, 0 replies; 12+ messages in thread From: Böszörményi Zoltán @ 2026-03-14 9:24 UTC (permalink / raw) To: Marko, Peter, openembedded-core@lists.openembedded.org 2026. 03. 11. 16:26 keltezéssel, Zoltan Boszormenyi via lists.openembedded.org írta: > 2026. 03. 11. 15:02 keltezéssel, Marko, Peter írta: >> >>> -----Original Message----- >>> From: Böszörményi Zoltán <zboszor@gmail.com> >>> Sent: Wednesday, March 11, 2026 14:43 >>> To: Marko, Peter (FT D EU SK BFS1) <Peter.Marko@siemens.com>; >>> openembedded-core@lists.openembedded.org >>> Subject: Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest >>> subpackage >>> >>> 2026. 03. 11. 14:40 keltezéssel, Marko, Peter írta: >>>>> -----Original Message----- >>>>> From: Böszörményi Zoltán <zboszor@gmail.com> >>>>> Sent: Wednesday, March 11, 2026 14:12 >>>>> To: Marko, Peter (FT D EU SK BFS1) <Peter.Marko@siemens.com>; >>>>> openembedded-core@lists.openembedded.org >>>>> Subject: Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to >>> ptest >>>>> subpackage >>>>> >>>>> 2026. 03. 11. 13:44 keltezéssel, Marko, Peter írta: >>>>>> These INSANE_SKIP assignments are wrong. >>>>>> Use GLIBC_GENERATE_LOCALES = "all" (or select just those you need) in >>> your >>>>> distro. >>>>> >>>>> It doesn't help. >>>> I'm not sure why it down't work for you, since it works for me and for Yocto AB. >>>> Did you added it to your distro settings and not just to a recipe? >>>> The explanation about this is at: https://git.yoctoproject.org/meta- >>> yocto/tree/meta-poky/conf/templates/default/local.conf.sample.extended#n61 >>> >>> I added it to my distro include file. >> Have you verified the final value via bitbake-getvar? >> You are overriding the default (otherwise you would not see the warnings), >> So possibly you added it to a place where it anyway overwritten later. > > Yes, I just checked it. It's not set from anywhere else, > only from my distro include file. It's set to "all". > > As I said, setting it does not help with all the build-deps QA errors. > Previously it wasn't set at all, and I have not seen a similar QA error under Yocto 5.3. > > Isn't it possible that the ptest subpackages for bash, gawk, m4 and others > have just gained extra locale-base-* dependencies that previously weren't there? > And now they are not being covered by DYNAMIC_PACKAGES in glibc-locales for some reason? Setting GLIBC_GENERATE_LOCALES = "all" is not needed, it seems to be the default. The issue was that I also had this in my local configuration: LOCALE_UTF8_ONLY = "1" This was not a problem up to Yocto 5.3. bitbake world and ptest packages should also be tested against UTF-8-only configuration. > > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#232894): https://lists.openembedded.org/g/openembedded-core/message/232894 > Mute This Topic: https://lists.openembedded.org/mt/118259058/3617728 > Group Owner: openembedded-core+owner@lists.openembedded.org > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [zboszor@gmail.com] > -=-=-=-=-=-=-=-=-=-=-=- > ^ permalink raw reply [flat|nested] 12+ messages in thread
[parent not found: <189BCB9A4C18D9A2.1328210@lists.openembedded.org>]
* Re: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage [not found] ` <189BCB9A4C18D9A2.1328210@lists.openembedded.org> @ 2026-03-11 13:38 ` Böszörményi Zoltán 0 siblings, 0 replies; 12+ messages in thread From: Böszörményi Zoltán @ 2026-03-11 13:38 UTC (permalink / raw) To: Marko, Peter, openembedded-core@lists.openembedded.org 2026. 03. 11. 14:12 keltezéssel, Zoltan Boszormenyi via lists.openembedded.org írta: > 2026. 03. 11. 13:44 keltezéssel, Marko, Peter írta: >> These INSANE_SKIP assignments are wrong. >> Use GLIBC_GENERATE_LOCALES = "all" (or select just those you need) in your distro. > > It doesn't help. Maybe moving the locale-base-* dependencies from RDEPENDS:${PN}-ptest to RRECOMMENDS:${PN}-ptest can work around this problem without INSANE_SKIP. I'll test this. > >> >> Peter >> >>> -----Original Message----- >>> From: openembedded-core@lists.openembedded.org <openembedded- >>> core@lists.openembedded.org> On Behalf Of Zoltan Boszormenyi via >>> lists.openembedded.org >>> Sent: Wednesday, March 11, 2026 13:29 >>> To: openembedded-core@lists.openembedded.org >>> Cc: Zoltán Böszörményi <zboszor@gmail.com> >>> Subject: [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest >>> subpackage >>> >>> This fixes a QA error: >>> >>> ERROR: QA Issue: bash-ptest rdepends on locale-base-fr-fr.iso-8559-1, >>> but it isn't a build dependency? [build-deps] >>> >>> Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> >>> --- >>> meta/recipes-extended/bash/bash.inc | 1 + >>> 1 file changed, 1 insertion(+) >>> >>> diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes- >>> extended/bash/bash.inc >>> index 634209c911..b43b1cbf89 100644 >>> --- a/meta/recipes-extended/bash/bash.inc >>> +++ b/meta/recipes-extended/bash/bash.inc >>> @@ -32,6 +32,7 @@ ALTERNATIVE_PRIORITY = "100" >>> RDEPENDS:${PN} += "base-files" >>> RDEPENDS:${PN}:class-nativesdk = "" >>> RDEPENDS:${PN}-ptest += "make coreutils perl sed shadow util-linux-setpriv" >>> +INSANE_SKIP:${PN}-ptest = "build-deps" >>> >>> RDEPENDS:${PN}-ptest:append:libc-glibc = " \ >>> glibc-gconv-big5hkscs \ >>> -- >>> 2.53.0 > > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#232878): https://lists.openembedded.org/g/openembedded-core/message/232878 > Mute This Topic: https://lists.openembedded.org/mt/118259058/3617728 > Group Owner: openembedded-core+owner@lists.openembedded.org > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [zboszor@gmail.com] > -=-=-=-=-=-=-=-=-=-=-=- > ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-03-14 9:24 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-11 12:29 [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage Zoltán Böszörményi
2026-03-11 12:29 ` [PATCH 2/4] gawk: " Zoltán Böszörményi
2026-03-11 12:29 ` [PATCH 3/4] glib-2.0: " Zoltán Böszörményi
2026-03-11 12:29 ` [PATCH 4/4] gtk4: Fix a build error in examples/application8 Zoltán Böszörményi
2026-03-11 12:44 ` [OE-core] [PATCH 1/4] bash: Add INSANE_SKIP=build-deps to ptest subpackage Marko, Peter
2026-03-11 13:12 ` Böszörményi Zoltán
2026-03-11 13:40 ` Marko, Peter
2026-03-11 13:42 ` Böszörményi Zoltán
2026-03-11 14:02 ` Marko, Peter
2026-03-11 15:26 ` Böszörményi Zoltán
[not found] ` <189BD2EF133E31A4.2476321@lists.openembedded.org>
2026-03-14 9:24 ` Böszörményi Zoltán
[not found] ` <189BCB9A4C18D9A2.1328210@lists.openembedded.org>
2026-03-11 13:38 ` Böszörményi Zoltán
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox