From patchwork Fri May 16 16:26:17 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 63114 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 74550C3ABC9 for ; Fri, 16 May 2025 16:26:26 +0000 (UTC) Received: from mailout12.t-online.de (mailout12.t-online.de [194.25.134.22]) by mx.groups.io with SMTP id smtpd.web11.17632.1747412785699331147 for ; Fri, 16 May 2025 09:26:26 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.22, mailfrom: f_l_k@t-online.de) Received: from fwd85.aul.t-online.de (fwd85.aul.t-online.de [10.223.144.111]) by mailout12.t-online.de (Postfix) with SMTP id 690FEDEB for ; Fri, 16 May 2025 18:26:23 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.154.166.118]) by fwd85.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1uFxt9-0fs6jZ0; Fri, 16 May 2025 18:26:23 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH] librest: update 0.8.1 -> 0.9.1 Date: Fri, 16 May 2025 18:26:17 +0200 Message-ID: <20250516162617.2910805-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.49.0 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1747412783-79FF957E-FF302E77/0/0 CLEAN NORMAL X-TOI-MSGID: e6255ea6-fb73-4e89-b610-96f03b231fc9 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 ; Fri, 16 May 2025 16:26:26 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/117435 - switch to meson buildsystem - add missing dependencies - use libsoup-3 Signed-off-by: Markus Volk --- .../recipes-gnome/rest/librest_0.8.1.bb | 33 ------------------- .../recipes-gnome/rest/librest_0.9.1.bb | 23 +++++++++++++ 2 files changed, 23 insertions(+), 33 deletions(-) delete mode 100644 meta-gnome/recipes-gnome/rest/librest_0.8.1.bb create mode 100644 meta-gnome/recipes-gnome/rest/librest_0.9.1.bb diff --git a/meta-gnome/recipes-gnome/rest/librest_0.8.1.bb b/meta-gnome/recipes-gnome/rest/librest_0.8.1.bb deleted file mode 100644 index 63372afa5d..0000000000 --- a/meta-gnome/recipes-gnome/rest/librest_0.8.1.bb +++ /dev/null @@ -1,33 +0,0 @@ -SUMMARY = "library to access web services that claim to be "RESTful"" -HOMEPAGE = "https://wiki.gnome.org/Projects/Librest" -LICENSE = "LGPL-2.1-only" -LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" - -DEPENDS = " \ - glib-2.0 \ - glib-2.0-native \ - libsoup-2.4 \ - libxml2 \ -" - -GNOMEBASEBUILDCLASS = "autotools" -inherit gnomebase gobject-introspection vala pkgconfig gtk-doc - -GNOMEBN = "rest" - -SRC_URI[archive.sha256sum] = "0513aad38e5d3cedd4ae3c551634e3be1b9baaa79775e53b2dba9456f15b01c9" - -S = "${WORKDIR}/${GNOMEBN}-${PV}" -# * gnome environment requires libsoup build with in gnome PACKAGECONFIG -# * libsoup-gnome support was removed upstream three years ago [1] -# [1] https://gitlab.gnome.org/GNOME/librest/commit/8f904a8e2bb38a7bf72245cdf2f1ecad17e9a720 -EXTRA_OECONF = "--without-gnome" - -do_configure:prepend() { - # rest expects introspection.m4 at custom location (see aclocal.m4). - cp -f ${STAGING_DIR_TARGET}/${datadir}/aclocal/introspection.m4 ${S}/build -} - -do_compile:prepend() { - export GIR_EXTRA_LIBS_PATH="${B}/rest/.libs" -} diff --git a/meta-gnome/recipes-gnome/rest/librest_0.9.1.bb b/meta-gnome/recipes-gnome/rest/librest_0.9.1.bb new file mode 100644 index 0000000000..f923c7c1cd --- /dev/null +++ b/meta-gnome/recipes-gnome/rest/librest_0.9.1.bb @@ -0,0 +1,23 @@ +SUMMARY = "library to access web services that claim to be "RESTful"" +HOMEPAGE = "https://wiki.gnome.org/Projects/Librest" +LICENSE = "LGPL-2.1-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" + +DEPENDS = " \ + glib-2.0 \ + glib-2.0-native \ + gtksourceview5 \ + libadwaita \ + libsoup \ + libxml2 \ + json-glib \ +" + +inherit gnomebase gobject-introspection vala pkgconfig gi-docgen + +GNOMEBN = "rest" + +SRC_URI[archive.sha256sum] = "9266a5c10ece383e193dfb7ffb07b509cc1f51521ab8dad76af96ed14212c2e3" + +S = "${WORKDIR}/${GNOMEBN}-${PV}" +