From: Yi Zhao Date: Wed, 28 Jan 2026 03:19:11 +0000 (+0800) Subject: blueprint-compiler: add recipe X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4212392ca7ebf890e1e192ddd0e7dbe1f8dabcf2;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git blueprint-compiler: add recipe 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 Signed-off-by: Yi Zhao Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- 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 " RECIPE_MAINTAINER:pn-binutils-crosssdk-${SDK_SYS} = "Khem Raj " RECIPE_MAINTAINER:pn-bison = "Chen Qi " RECIPE_MAINTAINER:pn-blktrace = "Unassigned " +RECIPE_MAINTAINER:pn-blueprint-compiler = "Liu Yiding " RECIPE_MAINTAINER:pn-bluez5 = "Unassigned " RECIPE_MAINTAINER:pn-bmaptool = "Trevor Woerner " RECIPE_MAINTAINER:pn-boost = "Unassigned " diff --git a/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.19.0.bb b/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.19.0.bb new file mode 100644 index 0000000000..6e2ebd741d --- /dev/null +++ b/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.19.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 = "de8e15f7791bd6243279cef1efc27edf4cb93674" + +inherit meson pkgconfig python3targetconfig + +PACKAGES += "${PN}-python" + +FILES:${PN}-python = "${PYTHON_SITEPACKAGES_DIR}" +RDEPENDS:${PN}-python = "python3-pygobject" + +BBCLASSEXTEND = "native"