All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-gnome][PATCH 1/2] gnome-console: Add recipe
@ 2023-11-11 20:12 Markus Volk
  2023-11-11 20:12 ` [meta-gnome][PATCH 2/2] vte9: Fix build with api-documentation enabled Markus Volk
  2023-11-13 18:33 ` [meta-gnome][PATCH 1/2] gnome-console: Add recipe Khem Raj
  0 siblings, 2 replies; 3+ messages in thread
From: Markus Volk @ 2023-11-11 20:12 UTC (permalink / raw)
  To: openembedded-devel

gnome-console ist gnomes gtk4 terminal emulator

Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
 .../gnome-console/gnome-console_45.0.bb       | 26 +++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 meta-gnome/recipes-gnome/gnome-console/gnome-console_45.0.bb

diff --git a/meta-gnome/recipes-gnome/gnome-console/gnome-console_45.0.bb b/meta-gnome/recipes-gnome/gnome-console/gnome-console_45.0.bb
new file mode 100644
index 000000000..3282a6d5d
--- /dev/null
+++ b/meta-gnome/recipes-gnome/gnome-console/gnome-console_45.0.bb
@@ -0,0 +1,26 @@
+SUMMARY = "GNOME Console"
+LICENSE = "GPL-3.0-only"
+LIC_FILES_CHKSUM = "file://COPYING;md5=8f0e2cd40e05189ec81232da84bd6e1a"
+
+GTKIC_VERSION = "4"
+inherit gnomebase gsettings pkgconfig gtk-icon-cache
+
+DEPENDS = " \
+    desktop-file-utils-native \
+    glib-2.0 \
+    gsettings-desktop-schemas \
+    gtk4 \
+    hicolor-icon-theme \
+    libadwaita \
+    libgtop \
+    pcre2 \
+    vte9 \
+"
+
+SRC_URI[archive.sha256sum] = "e7462128d2df2324a1d748062c40429cd0504af09e407067b33f3a9d0c59c8e1"
+
+PACKAGECONFIG ?= ""
+PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false"
+PACKAGECONFIG[devel] = "-Ddevel=true,-Ddevel=false"
+
+FILES:${PN} += "${datadir}"
-- 
2.42.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-gnome][PATCH 2/2] vte9: Fix build with api-documentation enabled
  2023-11-11 20:12 [meta-gnome][PATCH 1/2] gnome-console: Add recipe Markus Volk
@ 2023-11-11 20:12 ` Markus Volk
  2023-11-13 18:33 ` [meta-gnome][PATCH 1/2] gnome-console: Add recipe Khem Raj
  1 sibling, 0 replies; 3+ messages in thread
From: Markus Volk @ 2023-11-11 20:12 UTC (permalink / raw)
  To: openembedded-devel

This fixes:
| Program gi-docgen found: NO
|
| ../vte-0.74.1/doc/reference/meson.build:18:11: ERROR: Program 'gi-docgen' not
found or not executable

Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
 meta-oe/recipes-gnome/vte9/vte9_0.74.1.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-gnome/vte9/vte9_0.74.1.bb b/meta-oe/recipes-gnome/vte9/vte9_0.74.1.bb
index 30319ddd6..098c84ba5 100644
--- a/meta-oe/recipes-gnome/vte9/vte9_0.74.1.bb
+++ b/meta-oe/recipes-gnome/vte9/vte9_0.74.1.bb
@@ -11,10 +11,10 @@ S = "${WORKDIR}/vte-${PV}"
 
 SRC_URI[archive.sha256sum] = "2328c3f1c998350a18e0e513348e9fc581d57ea4e7b89aedf11e0e3c65042b4f"
 
-inherit gnomebase gtk-doc gobject-introspection features_check systemd upstream-version-is-even vala
+inherit gnomebase gi-docgen gobject-introspection features_check systemd upstream-version-is-even vala
 ANY_OF_DISTRO_FEATURES = "${GTK2DISTROFEATURES}"
 GIR_MESON_OPTION = "gir"
-GTKDOC_MESON_OPTION = "docs"
+GIDOCGEN_MESON_OPTION = "docs"
 
 PACKAGECONFIG ?= "gnutls"
 PACKAGECONFIG[gnutls] = "-Dgnutls=true,-Dgnutls=false,gnutls"
-- 
2.42.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [meta-gnome][PATCH 1/2] gnome-console: Add recipe
  2023-11-11 20:12 [meta-gnome][PATCH 1/2] gnome-console: Add recipe Markus Volk
  2023-11-11 20:12 ` [meta-gnome][PATCH 2/2] vte9: Fix build with api-documentation enabled Markus Volk
@ 2023-11-13 18:33 ` Khem Raj
  1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2023-11-13 18:33 UTC (permalink / raw)
  To: openembedded-devel, Markus Volk


On Sat, 11 Nov 2023 21:12:23 +0100, Markus Volk wrote:
> gnome-console ist gnomes gtk4 terminal emulator
> 
> 

Applied, thanks!

[1/2] gnome-console: Add recipe
      commit: 6408ebb96495752cf8d23be68ade863c6bc9c0a7
[2/2] vte9: Fix build with api-documentation enabled
      commit: 017c56d47ee003ea8106dd94d21d45b8432bc05a

Best regards,
-- 
Khem Raj <raj.khem@gmail.com>



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-11-13 18:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-11 20:12 [meta-gnome][PATCH 1/2] gnome-console: Add recipe Markus Volk
2023-11-11 20:12 ` [meta-gnome][PATCH 2/2] vte9: Fix build with api-documentation enabled Markus Volk
2023-11-13 18:33 ` [meta-gnome][PATCH 1/2] gnome-console: Add recipe Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.