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" From patchwork Tue Mar 7 20:33:18 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 20539 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 4928FC6FA99 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.5242.1678221210371094012 for ; Tue, 07 Mar 2023 12:33:30 -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 52D62F184 for ; Tue, 7 Mar 2023 21:33:28 +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 1pZdzz-4JMlHe0; Tue, 7 Mar 2023 21:33:27 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-oe][PATCH 2/2] libnice: upgrade 0.1.18 -> 0.1.21 Date: Tue, 7 Mar 2023 21:33:18 +0100 Message-Id: <20230307203318.689651-2-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230307203318.689651-1-f_l_k@t-online.de> References: <20230307203318.689651-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1678221207-B73A5DF7-A4F474CC/0/0 CLEAN NORMAL X-TOI-MSGID: f8563ae0-5bf8-4ae9-896c-3e1b5c66302a 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/101408 webkitgtk 2.40 will require the update Signed-off-by: Markus Volk --- .../farsight/{libnice_0.1.18.bb => libnice_0.1.21.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-oe/recipes-support/farsight/{libnice_0.1.18.bb => libnice_0.1.21.bb} (94%) diff --git a/meta-oe/recipes-support/farsight/libnice_0.1.18.bb b/meta-oe/recipes-support/farsight/libnice_0.1.21.bb similarity index 94% rename from meta-oe/recipes-support/farsight/libnice_0.1.18.bb rename to meta-oe/recipes-support/farsight/libnice_0.1.21.bb index e7eaf0392..210d4d822 100644 --- a/meta-oe/recipes-support/farsight/libnice_0.1.18.bb +++ b/meta-oe/recipes-support/farsight/libnice_0.1.21.bb @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=9c42325015702feda4f4d2f19a55b767 \ " SRC_URI = "http://nice.freedesktop.org/releases/libnice-${PV}.tar.gz" -SRC_URI[sha256sum] = "5eabd25ba2b54e817699832826269241abaa1cf78f9b240d1435f936569273f4" +SRC_URI[sha256sum] = "72e73a2acf20f59093e21d5601606e405873503eb35f346fa621de23e99b3b39" DEPENDS = "glib-2.0 gnutls"