From patchwork Sun May 12 09:15:22 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 43483 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 04B13C25B5F for ; Sun, 12 May 2024 09:15:12 +0000 (UTC) Received: from mailout10.t-online.de (mailout10.t-online.de [194.25.134.21]) by mx.groups.io with SMTP id smtpd.web11.31932.1715505304208787817 for ; Sun, 12 May 2024 02:15:04 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.21, mailfrom: f_l_k@t-online.de) Received: from fwd85.aul.t-online.de (fwd85.aul.t-online.de [10.223.144.111]) by mailout10.t-online.de (Postfix) with SMTP id 749EA4583C for ; Sun, 12 May 2024 11:15:02 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.163.32.90]) by fwd85.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1s65IK-3LS1ar0; Sun, 12 May 2024 11:15:00 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-oe][PATCH 1/3] glib-testing: add recipe Date: Sun, 12 May 2024 11:15:22 +0200 Message-ID: <20240512091524.90050-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1715505300-D27FBD0F-450CC0B5/0/0 CLEAN NORMAL X-TOI-MSGID: 48ff636a-82b7-412a-985c-171485f15dd0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sun, 12 May 2024 09:15:11 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/110315 glib-testing is a build dependency for malcontent, where building the tests cant be disabled. We can only disable the run of installed tests in malcontent. Normally glib-testing gets included as a subproject wrap which is inappropriate for yocto/oe. Thus we need to provide a recipe for it. Signed-off-by: Markus Volk --- .../recipes-core/glib-2.0/glib-testing_0.1.1.bb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 meta-oe/recipes-core/glib-2.0/glib-testing_0.1.1.bb diff --git a/meta-oe/recipes-core/glib-2.0/glib-testing_0.1.1.bb b/meta-oe/recipes-core/glib-2.0/glib-testing_0.1.1.bb new file mode 100644 index 000000000..0f6ea7643 --- /dev/null +++ b/meta-oe/recipes-core/glib-2.0/glib-testing_0.1.1.bb @@ -0,0 +1,14 @@ +SUMMARY = "libglib-testing provides test harnesses and mock classes to complement GLib classes" +HOMEPAGE = "https://gitlab.gnome.org/pwithnall/libglib-testing" +LICENSE = "LGPL-2.1-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" + +SRC_URI = "git://gitlab.gnome.org/pwithnall/libglib-testing.git;protocol=https;branch=main" + +PV = "0.1.1" +S = "${WORKDIR}/git" +SRCREV = "e326f73a7139c5e54fcf926896ae6e4cc899a1a7" + +inherit meson pkgconfig + +DEPENDS = "glib-2.0 gtk-doc-native" From patchwork Sun May 12 09:15:23 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 43484 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0074FC10F1A for ; Sun, 12 May 2024 09:15:11 +0000 (UTC) Received: from mailout10.t-online.de (mailout10.t-online.de [194.25.134.21]) by mx.groups.io with SMTP id smtpd.web10.31726.1715505304290957299 for ; Sun, 12 May 2024 02:15:04 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.21, mailfrom: f_l_k@t-online.de) Received: from fwd85.aul.t-online.de (fwd85.aul.t-online.de [10.223.144.111]) by mailout10.t-online.de (Postfix) with SMTP id 766E04583D for ; Sun, 12 May 2024 11:15:02 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.163.32.90]) by fwd85.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1s65IK-3LS1as0; Sun, 12 May 2024 11:15:00 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-oe][PATCH 2/3] malcontent: add recipe Date: Sun, 12 May 2024 11:15:23 +0200 Message-ID: <20240512091524.90050-2-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240512091524.90050-1-f_l_k@t-online.de> References: <20240512091524.90050-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1715505300-D27FBD0F-206A3EB0/0/0 CLEAN NORMAL X-TOI-MSGID: 3f1c1313-f4e4-4995-867a-3709a14a7e48 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sun, 12 May 2024 09:15:11 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/110316 malcontent is an optional dependency for flatpak and gnome-software Signed-off-by: Markus Volk --- .../malcontent/malcontent_0.12.0.bb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 meta-oe/recipes-gnome/malcontent/malcontent_0.12.0.bb diff --git a/meta-oe/recipes-gnome/malcontent/malcontent_0.12.0.bb b/meta-oe/recipes-gnome/malcontent/malcontent_0.12.0.bb new file mode 100644 index 000000000..daae6dd85 --- /dev/null +++ b/meta-oe/recipes-gnome/malcontent/malcontent_0.12.0.bb @@ -0,0 +1,31 @@ +SUMMARY = "malcontent implements support for restricting the type of content." +HOMEPAGE = "https://gitlab.freedesktop.org/pwithnall/malcontent" +LICENSE = "LGPL-2.1-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" + +SRC_URI = "git://gitlab.freedesktop.org/pwithnall/malcontent.git;protocol=https;branch=main" + +S = "${WORKDIR}/git" +SRCREV = "3ba80995bb25b7aeda7e21d547f9e39ff9a81736" + +DEPENDS = " \ + accountsservice \ + glib-2.0 \ + glib-testing \ + dbus \ + desktop-file-utils-native \ + itstool-native \ + libpam \ + polkit \ +" + +GTKIC_VERSION = "4" +inherit meson pkgconfig gtk-icon-cache gobject-introspection-data gettext features_check + +REQUIRED_DISTRO_FEATURES = "pam polkit" + +# If building with ui, we run into circular dependency flatpak <-> malcontent +PACKAGECONFIG ?= "" +PACKAGECONFIG[ui] = "-Dui=enabled,-Dui=disabled,flatpak libadwaita gtk4" + +FILES:${PN} += "${libdir} ${datadir}" From patchwork Sun May 12 09:15:24 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 43485 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 01A23C41513 for ; Sun, 12 May 2024 09:15:12 +0000 (UTC) Received: from mailout10.t-online.de (mailout10.t-online.de [194.25.134.21]) by mx.groups.io with SMTP id smtpd.web11.31931.1715505304208632354 for ; Sun, 12 May 2024 02:15:04 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.21, mailfrom: f_l_k@t-online.de) Received: from fwd85.aul.t-online.de (fwd85.aul.t-online.de [10.223.144.111]) by mailout10.t-online.de (Postfix) with SMTP id 7847345840 for ; Sun, 12 May 2024 11:15:02 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.163.32.90]) by fwd85.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1s65IK-3LS1at0; Sun, 12 May 2024 11:15:00 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-oe][PATCH 3/3] flatpak: add PACKAGECONFIG for malcontent Date: Sun, 12 May 2024 11:15:24 +0200 Message-ID: <20240512091524.90050-3-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240512091524.90050-1-f_l_k@t-online.de> References: <20240512091524.90050-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1715505300-D27FBD0F-2CFA4B38/0/0 CLEAN NORMAL X-TOI-MSGID: eb278cbd-d490-47c5-85c0-a7d695b102f7 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sun, 12 May 2024 09:15:11 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/110314 Signed-off-by: Markus Volk --- meta-oe/recipes-extended/flatpak/flatpak_1.15.8.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-extended/flatpak/flatpak_1.15.8.bb b/meta-oe/recipes-extended/flatpak/flatpak_1.15.8.bb index fba7bc49a..488765272 100644 --- a/meta-oe/recipes-extended/flatpak/flatpak_1.15.8.bb +++ b/meta-oe/recipes-extended/flatpak/flatpak_1.15.8.bb @@ -50,6 +50,7 @@ GTKDOC_MESON_DISABLE_FLAG = 'disabled' PACKAGECONFIG[curl] = "-Dhttp_backend=curl,,curl" PACKAGECONFIG[docbook_docs] = "-Ddocbook_docs=enabled,-Ddocbook_docs=disabled,xmlto-native" +PACKAGECONFIG[malcontent] = "-Dmalcontent=enabled,-Dmalcontent=disabled,malcontent" PACKAGECONFIG[man] = "-Dman=enabled,-Dman=disabled,libxslt-native" PACKAGECONFIG[soup] = "-Dhttp_backend=soup,,libsoup-2.4" PACKAGECONFIG[tests] = "-Dtests=true,-Dtests=false,xauth socat-native"