* [PATCH 1/2 v2] blueprint-compiler: add recipe
@ 2026-01-16 9:01 Yi Zhao
2026-01-16 9:01 ` [PATCH 2/2 v2] epiphany: upgrade 48.5 -> 49.2 Yi Zhao
2026-01-19 8:44 ` [OE-core] [PATCH 1/2 v2] blueprint-compiler: add recipe Antonin Godard
0 siblings, 2 replies; 5+ messages in thread
From: Yi Zhao @ 2026-01-16 9:01 UTC (permalink / raw)
To: openembedded-core; +Cc: liuyd.fnst
Blueprint-compiler is a markup language and compiler for GTK 4 user
interfaces.
Move it from meta-openembedded to openembedded-core as it is required by
epiphany 49.2.
The original author Liu Yiding, is willing to continue maintaining the
recipe. Add him as maintainer for this.
CC: Liu Yiding <liuyd.fnst@fujitsu.com>
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
meta/conf/distro/include/maintainers.inc | 1 +
.../blueprint-compiler_0.18.0.bb | 16 ++++++++++++++++
2 files changed, 17 insertions(+)
create mode 100644 meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.18.0.bb
diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc
index e830648945..b231daf485 100644
--- a/meta/conf/distro/include/maintainers.inc
+++ b/meta/conf/distro/include/maintainers.inc
@@ -71,6 +71,7 @@ RECIPE_MAINTAINER:pn-binutils-testsuite = "Khem Raj <raj.khem@gmail.com>"
RECIPE_MAINTAINER:pn-binutils-crosssdk-${SDK_SYS} = "Khem Raj <raj.khem@gmail.com>"
RECIPE_MAINTAINER:pn-bison = "Chen Qi <Qi.Chen@windriver.com>"
RECIPE_MAINTAINER:pn-blktrace = "Unassigned <unassigned@yoctoproject.org>"
+RECIPE_MAINTAINER:pn-blueprint-compiler = "Liu Yiding <liuyd.fnst@fujitsu.com>"
RECIPE_MAINTAINER:pn-bluez5 = "Unassigned <unassigned@yoctoproject.org>"
RECIPE_MAINTAINER:pn-bmaptool = "Trevor Woerner <twoerner@gmail.com>"
RECIPE_MAINTAINER:pn-boost = "Unassigned <unassigned@yoctoproject.org>"
diff --git a/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.18.0.bb b/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.18.0.bb
new file mode 100644
index 0000000000..10ac93d452
--- /dev/null
+++ b/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.18.0.bb
@@ -0,0 +1,16 @@
+SUMMARY = "A markup language for GTK user interface files."
+HOMEPAGE = "https://gitlab.gnome.org/GNOME/blueprint-compiler"
+LICENSE = "LGPL-3.0-only"
+LIC_FILES_CHKSUM = "file://COPYING;md5=3000208d539ec061b899bce1d9ce9404"
+
+SRC_URI = "git://gitlab.gnome.org/GNOME/blueprint-compiler;protocol=https;branch=main;tag=${PV}"
+SRCREV = "07c9c9df9cd1b6b4454ecba21ee58211e9144a4b"
+
+inherit meson pkgconfig
+
+PACKAGES += "${PN}-python"
+
+FILES:${PN}-python = "${PYTHON_SITEPACKAGES_DIR}"
+RDEPENDS:${PN}-python = "python3-pygobject"
+
+BBCLASSEXTEND = "native"
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/2 v2] epiphany: upgrade 48.5 -> 49.2
2026-01-16 9:01 [PATCH 1/2 v2] blueprint-compiler: add recipe Yi Zhao
@ 2026-01-16 9:01 ` Yi Zhao
2026-01-19 8:44 ` [OE-core] [PATCH 1/2 v2] blueprint-compiler: add recipe Antonin Godard
1 sibling, 0 replies; 5+ messages in thread
From: Yi Zhao @ 2026-01-16 9:01 UTC (permalink / raw)
To: openembedded-core; +Cc: liuyd.fnst
ChangeLog:
https://gitlab.gnome.org/GNOME/epiphany/-/blob/49.2/NEWS
Add a dependency on blueprint-compiler-native.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
.../epiphany/{epiphany_48.5.bb => epiphany_49.2.bb} | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
rename meta/recipes-gnome/epiphany/{epiphany_48.5.bb => epiphany_49.2.bb} (88%)
diff --git a/meta/recipes-gnome/epiphany/epiphany_48.5.bb b/meta/recipes-gnome/epiphany/epiphany_49.2.bb
similarity index 88%
rename from meta/recipes-gnome/epiphany/epiphany_48.5.bb
rename to meta/recipes-gnome/epiphany/epiphany_49.2.bb
index 6a1abdc553..4c27a6b6c7 100644
--- a/meta/recipes-gnome/epiphany/epiphany_48.5.bb
+++ b/meta/recipes-gnome/epiphany/epiphany_49.2.bb
@@ -21,6 +21,7 @@ DEPENDS = " \
glib-2.0-native \
coreutils-native \
desktop-file-utils-native \
+ blueprint-compiler-native \
"
inherit gnomebase gsettings features_check gettext mime-xdg gtk-icon-cache
@@ -31,7 +32,9 @@ SRC_URI += "\
file://migrator.patch \
file://distributor.patch \
"
-SRC_URI[archive.sha256sum] = "0f66552ad6593c7952a3ddee5bf515656c8c434871076d9f1a91a7af9346b1b4"
+SRC_URI[archive.sha256sum] = "b3ba3d68213e87f81f1733e85500c37b82b5938f9009e4fe89994963d5fb2b8e"
+
+export GI_TYPELIB_PATH = "${STAGING_LIBDIR}/girepository-1.0/"
# Developer mode enables debugging
PACKAGECONFIG[developer-mode] = "-Ddeveloper_mode=true,-Ddeveloper_mode=false"
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [OE-core] [PATCH 1/2 v2] blueprint-compiler: add recipe
2026-01-16 9:01 [PATCH 1/2 v2] blueprint-compiler: add recipe Yi Zhao
2026-01-16 9:01 ` [PATCH 2/2 v2] epiphany: upgrade 48.5 -> 49.2 Yi Zhao
@ 2026-01-19 8:44 ` Antonin Godard
2026-01-19 12:56 ` Alexander Kanavin
1 sibling, 1 reply; 5+ messages in thread
From: Antonin Godard @ 2026-01-19 8:44 UTC (permalink / raw)
To: yi.zhao, openembedded-core; +Cc: liuyd.fnst
Hi,
On Fri Jan 16, 2026 at 10:01 AM CET, Yi Zhao via lists.openembedded.org wrote:
> Blueprint-compiler is a markup language and compiler for GTK 4 user
> interfaces.
>
> Move it from meta-openembedded to openembedded-core as it is required by
> epiphany 49.2.
>
> The original author Liu Yiding, is willing to continue maintaining the
> recipe. Add him as maintainer for this.
>
> CC: Liu Yiding <liuyd.fnst@fujitsu.com>
> Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
> ---
> meta/conf/distro/include/maintainers.inc | 1 +
> .../blueprint-compiler_0.18.0.bb | 16 ++++++++++++++++
> 2 files changed, 17 insertions(+)
> create mode 100644 meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.18.0.bb
>
> diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc
> index e830648945..b231daf485 100644
> --- a/meta/conf/distro/include/maintainers.inc
> +++ b/meta/conf/distro/include/maintainers.inc
> @@ -71,6 +71,7 @@ RECIPE_MAINTAINER:pn-binutils-testsuite = "Khem Raj <raj.khem@gmail.com>"
> RECIPE_MAINTAINER:pn-binutils-crosssdk-${SDK_SYS} = "Khem Raj <raj.khem@gmail.com>"
> RECIPE_MAINTAINER:pn-bison = "Chen Qi <Qi.Chen@windriver.com>"
> RECIPE_MAINTAINER:pn-blktrace = "Unassigned <unassigned@yoctoproject.org>"
> +RECIPE_MAINTAINER:pn-blueprint-compiler = "Liu Yiding <liuyd.fnst@fujitsu.com>"
> RECIPE_MAINTAINER:pn-bluez5 = "Unassigned <unassigned@yoctoproject.org>"
> RECIPE_MAINTAINER:pn-bmaptool = "Trevor Woerner <twoerner@gmail.com>"
> RECIPE_MAINTAINER:pn-boost = "Unassigned <unassigned@yoctoproject.org>"
> diff --git a/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.18.0.bb b/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.18.0.bb
> new file mode 100644
> index 0000000000..10ac93d452
> --- /dev/null
> +++ b/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.18.0.bb
> @@ -0,0 +1,16 @@
> +SUMMARY = "A markup language for GTK user interface files."
> +HOMEPAGE = "https://gitlab.gnome.org/GNOME/blueprint-compiler"
> +LICENSE = "LGPL-3.0-only"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=3000208d539ec061b899bce1d9ce9404"
> +
> +SRC_URI = "git://gitlab.gnome.org/GNOME/blueprint-compiler;protocol=https;branch=main;tag=${PV}"
> +SRCREV = "07c9c9df9cd1b6b4454ecba21ee58211e9144a4b"
> +
> +inherit meson pkgconfig
> +
> +PACKAGES += "${PN}-python"
> +
> +FILES:${PN}-python = "${PYTHON_SITEPACKAGES_DIR}"
> +RDEPENDS:${PN}-python = "python3-pygobject"
> +
> +BBCLASSEXTEND = "native"
This failed to build:
ERROR: blueprint-compiler-0.18.0-r0 do_package: QA Issue: blueprint-compiler: Files/directories were installed but not shipped in any package:
/usr/lib
/usr/lib/python3.14
/usr/lib/python3.14/site-packages
/usr/lib/python3.14/site-packages/blueprintcompiler
/usr/lib/python3.14/site-packages/blueprintcompiler/formatter.py
/usr/lib/python3.14/site-packages/blueprintcompiler/decompiler.py
/usr/lib/python3.14/site-packages/blueprintcompiler/interactive_port.py
/usr/lib/python3.14/site-packages/blueprintcompiler/__init__.py
/usr/lib/python3.14/site-packages/blueprintcompiler/errors.py
/usr/lib/python3.14/site-packages/blueprintcompiler/gir.py
/usr/lib/python3.14/site-packages/blueprintcompiler/main.py
/usr/lib/python3.14/site-packages/blueprintcompiler/ast_utils.py
/usr/lib/python3.14/site-packages/blueprintcompiler/utils.py
/usr/lib/python3.14/site-packages/blueprintcompiler/reference_docs.json
/usr/lib/python3.14/site-packages/blueprintcompiler/completions_utils.py
/usr/lib/python3.14/site-packages/blueprintcompiler/parse_tree.py
/usr/lib/python3.14/site-packages/blueprintcompiler/tokenizer.py
/usr/lib/python3.14/site-packages/blueprintcompiler/typelib.py
/usr/lib/python3.14/site-packages/blueprintcompiler/lsp_utils.py
/usr/lib/python3.14/site-packages/blueprintcompiler/parser.py
/usr/lib/python3.14/site-packages/blueprintcompiler/completions.py
/usr/lib/python3.14/site-packages/blueprintcompiler/xml_reader.py
/usr/lib/python3.14/site-packages/blueprintcompiler/lsp.py
Log: https://autobuilder.yoctoproject.org/valkyrie/api/v2/logs/4986196/raw_inline
Parent build: https://autobuilder.yoctoproject.org/valkyrie/#/builders/17/builds/2884
It only seemed to happen with the qemux86-64 builds.
Can you have a look?
Antonin
--
Antonin Godard, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [OE-core] [PATCH 1/2 v2] blueprint-compiler: add recipe
2026-01-19 8:44 ` [OE-core] [PATCH 1/2 v2] blueprint-compiler: add recipe Antonin Godard
@ 2026-01-19 12:56 ` Alexander Kanavin
2026-01-19 13:15 ` Yi Zhao
0 siblings, 1 reply; 5+ messages in thread
From: Alexander Kanavin @ 2026-01-19 12:56 UTC (permalink / raw)
To: antonin.godard; +Cc: yi.zhao, openembedded-core, liuyd.fnst
On Mon, 19 Jan 2026 at 09:44, Antonin Godard via
lists.openembedded.org
<antonin.godard=bootlin.com@lists.openembedded.org> wrote:
> This failed to build:
>
> ERROR: blueprint-compiler-0.18.0-r0 do_package: QA Issue: blueprint-compiler: Files/directories were installed but not shipped in any package:
> /usr/lib
> /usr/lib/python3.14
> /usr/lib/python3.14/site-packages
> /usr/lib/python3.14/site-packages/blueprintcompiler
> /usr/lib/python3.14/site-packages/blueprintcompiler/formatter.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/decompiler.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/interactive_port.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/__init__.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/errors.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/gir.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/main.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/ast_utils.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/utils.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/reference_docs.json
> /usr/lib/python3.14/site-packages/blueprintcompiler/completions_utils.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/parse_tree.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/tokenizer.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/typelib.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/lsp_utils.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/parser.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/completions.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/xml_reader.py
> /usr/lib/python3.14/site-packages/blueprintcompiler/lsp.py
>
> Log: https://autobuilder.yoctoproject.org/valkyrie/api/v2/logs/4986196/raw_inline
> Parent build: https://autobuilder.yoctoproject.org/valkyrie/#/builders/17/builds/2884
>
> It only seemed to happen with the qemux86-64 builds.
>
> Can you have a look?
I suspect the issue is in multilib setups, e.g. upstream is hardcoding
'/usr/lib/' prefix instead of $libdir.
Alex
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [OE-core] [PATCH 1/2 v2] blueprint-compiler: add recipe
2026-01-19 12:56 ` Alexander Kanavin
@ 2026-01-19 13:15 ` Yi Zhao
0 siblings, 0 replies; 5+ messages in thread
From: Yi Zhao @ 2026-01-19 13:15 UTC (permalink / raw)
To: Alexander Kanavin, antonin.godard; +Cc: openembedded-core, liuyd.fnst
On 1/19/26 20:56, Alexander Kanavin wrote:
> On Mon, 19 Jan 2026 at 09:44, Antonin Godard via
> lists.openembedded.org
> <antonin.godard=bootlin.com@lists.openembedded.org> wrote:
>> This failed to build:
>>
>> ERROR: blueprint-compiler-0.18.0-r0 do_package: QA Issue: blueprint-compiler: Files/directories were installed but not shipped in any package:
>> /usr/lib
>> /usr/lib/python3.14
>> /usr/lib/python3.14/site-packages
>> /usr/lib/python3.14/site-packages/blueprintcompiler
>> /usr/lib/python3.14/site-packages/blueprintcompiler/formatter.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/decompiler.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/interactive_port.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/__init__.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/errors.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/gir.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/main.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/ast_utils.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/utils.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/reference_docs.json
>> /usr/lib/python3.14/site-packages/blueprintcompiler/completions_utils.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/parse_tree.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/tokenizer.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/typelib.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/lsp_utils.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/parser.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/completions.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/xml_reader.py
>> /usr/lib/python3.14/site-packages/blueprintcompiler/lsp.py
>>
>> Log: https://autobuilder.yoctoproject.org/valkyrie/api/v2/logs/4986196/raw_inline
>> Parent build: https://autobuilder.yoctoproject.org/valkyrie/#/builders/17/builds/2884
>>
>> It only seemed to happen with the qemux86-64 builds.
>>
>> Can you have a look?
> I suspect the issue is in multilib setups, e.g. upstream is hardcoding
> '/usr/lib/' prefix instead of $libdir.
Yes, I think so too. I'll take a look.
//Yi
>
> Alex
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-01-19 13:15 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-16 9:01 [PATCH 1/2 v2] blueprint-compiler: add recipe Yi Zhao
2026-01-16 9:01 ` [PATCH 2/2 v2] epiphany: upgrade 48.5 -> 49.2 Yi Zhao
2026-01-19 8:44 ` [OE-core] [PATCH 1/2 v2] blueprint-compiler: add recipe Antonin Godard
2026-01-19 12:56 ` Alexander Kanavin
2026-01-19 13:15 ` Yi Zhao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox