From patchwork Thu Jul 2 12:56:23 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 91570 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 2E522C43458 for ; Thu, 2 Jul 2026 12:56:33 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.68468.1782996990524081599 for ; Thu, 02 Jul 2026 05:56:30 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@arm.com header.s=foss header.b=s55mCjXT; 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 A457A1FCD for ; Thu, 2 Jul 2026 05:56:25 -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 A2F2D3F673 for ; Thu, 2 Jul 2026 05:56:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1782996990; bh=3L6bzOURRirn1o7jJxvsusnSsyQA2890iHJdaKxlGsE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=s55mCjXTTapV18edrzG5icMgnPmzTpa9SOrBi0YaedIHcIphP6Z9AG4WlOQhS+4wB 89KHmzv6bqUUKLfw4WWBUaEm9MB0cI+os+lKYUXriZX7lghBcj3K4RLUZ6YIUcfIvz GDJ1OwGfvryfZpsRCKHQbtdccwRJdvsRCEl8i5aQ= From: Ross Burton To: openembedded-core@lists.openembedded.org Subject: [PATCH v2 2/6] blueprint-compiler: inherit python3-dir not python3targetconfig Date: Thu, 2 Jul 2026 13:56:23 +0100 Message-ID: <20260702125627.977563-2-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260702125627.977563-1-ross.burton@arm.com> References: <20260702125627.977563-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 ; Thu, 02 Jul 2026 12:56:33 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/240038 Now that meson.bbclass tells meson where to install Python files this recipe just needs to know the value of PYTHON_SITEPACKAGES_DIR for FILES, so just inherit python3-dir to remove a dependency on the target python recipe. Signed-off-by: Ross Burton --- .../blueprint-compiler/blueprint-compiler_0.20.4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.20.4.bb b/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.20.4.bb index bf357872c39..5bd3a5439cf 100644 --- a/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.20.4.bb +++ b/meta/recipes-gnome/blueprint-compiler/blueprint-compiler_0.20.4.bb @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3000208d539ec061b899bce1d9ce9404" SRC_URI = "git://gitlab.gnome.org/GNOME/blueprint-compiler;protocol=https;branch=blueprint-0-20;tag=v${PV}" SRCREV = "31b62c24a72c1670d2d93dcdf2d130f1ae12778e" -inherit meson pkgconfig python3targetconfig +inherit meson pkgconfig python3-dir PACKAGES += "${PN}-python"