From patchwork Tue Mar 7 20:33:17 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 20540 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 4A6A8C678D5 for ; Tue, 7 Mar 2023 20:33:35 +0000 (UTC) Received: from mailout12.t-online.de (mailout12.t-online.de [194.25.134.22]) by mx.groups.io with SMTP id smtpd.web10.5238.1678221207459095108 for ; Tue, 07 Mar 2023 12:33:27 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.22, mailfrom: f_l_k@t-online.de) Received: from fwd73.dcpf.telekom.de (fwd73.aul.t-online.de [10.223.144.99]) by mailout12.t-online.de (Postfix) with SMTP id 46D60F180 for ; Tue, 7 Mar 2023 21:33:25 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([79.219.228.81]) by fwd73.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pZdzw-4JMlHd0; Tue, 7 Mar 2023 21:33:24 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-oe][PATCH 1/2] xdg-dbus-proxy: add recipe Date: Tue, 7 Mar 2023 21:33:17 +0100 Message-Id: <20230307203318.689651-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1678221204-B73A5DF7-6B45BC06/0/0 CLEAN NORMAL X-TOI-MSGID: 5cf11b39-f067-4c78-9628-c6233542ec6b 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 ; Tue, 07 Mar 2023 20:33:35 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101407 xdg-dbus-proxy-native is needed for sandboxing webkitgtk Signed-off-by: Markus Volk --- .../xdg-dbus-proxy/xdg-dbus-proxy_0.1.4.bb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 meta-oe/recipes-support/xdg-dbus-proxy/xdg-dbus-proxy_0.1.4.bb diff --git a/meta-oe/recipes-support/xdg-dbus-proxy/xdg-dbus-proxy_0.1.4.bb b/meta-oe/recipes-support/xdg-dbus-proxy/xdg-dbus-proxy_0.1.4.bb new file mode 100644 index 000000000..35dee632a --- /dev/null +++ b/meta-oe/recipes-support/xdg-dbus-proxy/xdg-dbus-proxy_0.1.4.bb @@ -0,0 +1,19 @@ +SUMMARY = "xdg-dbus-proxy is a filtering proxy for D-Bus connections" +HOMEPAGE = "https://github.com/flatpak/xdg-dbus-proxy" +LICENSE = "LGPL-2.1-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" + +DEPENDS = " \ + glib-2.0 \ + libxslt-native \ + docbook-xsl-stylesheets-native \ +" + +inherit meson pkgconfig + +SRC_URI = "git://github.com/flatpak/xdg-dbus-proxy.git;protocol=https;branch=main" + +S = "${WORKDIR}/git" +SRCREV = "6bfe8c32ab23f8c1d80af7a70b3d318a79a17652" + +BBCLASSEXTEND = "native"