From patchwork Wed May 13 10:52:06 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 88030 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 B66DACD4F3D for ; Wed, 13 May 2026 10:52:19 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.4716.1778669536737708536 for ; Wed, 13 May 2026 03:52:16 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@arm.com header.s=foss header.b=Przw6Fyr; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 0E69E1655 for ; Wed, 13 May 2026 03:52:11 -0700 (PDT) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id E7DB73F7B4 for ; Wed, 13 May 2026 03:52:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1778669536; bh=C+Phs692SECpeURNrq3b62nd1T5TQrhuoiLDWVGC7j0=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Przw6FyrJdty6L0komLZAlpdaRE4bD/zgaUuMe74WpkbGhZQPEfS4oTCYNhm+ltsU dkS1f6q4jSZgB7PkmCD0DXKQJOy95dd4+wKv+NLHZ6ACIVQJ8hC5Uuzq2bTxTVUB+Y xqtDU7j/EgxyUDTETWnf5uR1w2jHNz38qvxHiA44= From: Ross Burton To: openembedded-devel@lists.openembedded.org Subject: [PATCH v2 3/7] libhandy: add recipe (from oe-core) Date: Wed, 13 May 2026 11:52:06 +0100 Message-ID: <20260513105210.2109216-3-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260513105210.2109216-1-ross.burton@arm.com> References: <20260513105210.2109216-1-ross.burton@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 13 May 2026 10:52:19 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/126967 This was previously in oe-core but is being removed as it is no longer used by anything in that layer. Some changes were made in the process of moving the recipe to meta-oe: - Inherit gnomebase, as this is a GNOME package - Download the release tarball instead of a git clone - Set the correct license, this is -or-later not -only. Add handy.h to the license checksum to provide verification. The final output is identical to the recipe in oe-core. Signed-off-by: Ross Burton --- .../libhandy/libhandy_1.8.3.bb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 meta-gnome/recipes-support/libhandy/libhandy_1.8.3.bb diff --git a/meta-gnome/recipes-support/libhandy/libhandy_1.8.3.bb b/meta-gnome/recipes-support/libhandy/libhandy_1.8.3.bb new file mode 100644 index 0000000000..0c525bcae3 --- /dev/null +++ b/meta-gnome/recipes-support/libhandy/libhandy_1.8.3.bb @@ -0,0 +1,25 @@ +SUMMARY = "A library full of GTK+ widgets for mobile phones" +DESCRIPTION = "Library with GTK widgets for mobile phones. Libhandy provides \ +GTK widgets and GObjects to ease developing applications for mobile phones. \ +It was developed by Purism (and used by several official GNOME projects) \ +to extend Gtk by providing mobile-friendly widgets and make the creation of \ +responsive apps easier." +HOMEPAGE = "https://gitlab.gnome.org/GNOME/libhandy" +BUGTRACKER = "https://gitlab.gnome.org/GNOME/libhandy/-/issues" +LICENSE = "LGPL-2.1-or-later" +LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \ + file://src/handy.h;beginline=4;endline=4;md5=20a35c7a7509753627b8c372765d5f22" + +DEPENDS = "gtk+3" + +inherit gnomebase gobject-introspection vala gettext gi-docgen features_check + +SRC_URI[archive.sha256sum] = "05b497229073ff557f10b326e074c5066f8743a302d4820ab97bcb5cd2dab087" + +GIR_MESON_ENABLE_FLAG = 'enabled' +GIR_MESON_DISABLE_FLAG = 'disabled' + +PACKAGES =+ "${PN}-examples" +FILES:${PN}-examples = "${bindir}" + +ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}"