From patchwork Thu Aug 8 06:47:16 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 47507 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 A1D36C52D73 for ; Thu, 8 Aug 2024 06:46:05 +0000 (UTC) Received: from mailout10.t-online.de (mailout10.t-online.de [194.25.134.21]) by mx.groups.io with SMTP id smtpd.web11.53926.1723099559431980793 for ; Wed, 07 Aug 2024 23:45:59 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.21, mailfrom: f_l_k@t-online.de) Received: from fwd87.aul.t-online.de (fwd87.aul.t-online.de [10.223.144.113]) by mailout10.t-online.de (Postfix) with SMTP id D37E822360 for ; Thu, 8 Aug 2024 08:45:56 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.154.166.49]) by fwd87.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1sbwuJ-25Vl8z0; Thu, 8 Aug 2024 08:45:55 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-networking][PATCHv2] blueman: skip buildpath error Date: Thu, 8 Aug 2024 08:47:16 +0200 Message-ID: <20240808064716.4482-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.45.2 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1723099555-C6FED20D-048109FE/0/0 CLEAN NORMAL X-TOI-MSGID: d9b44301-3589-45b8-b937-8eb4a0118011 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 ; Thu, 08 Aug 2024 06:46:05 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/111642 Blueman has compiled the buildpath into _blueman.so. The underlying issue is related to the cython compiler, so theres nothing that can be done from the blueman side. [https://github.com/cython/cython/issues/5949] Disable the buildpath error to keep blueman usable until the problem is fixed. Signed-off-by: Markus Volk --- meta-networking/recipes-connectivity/blueman/blueman_2.4.3.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-networking/recipes-connectivity/blueman/blueman_2.4.3.bb b/meta-networking/recipes-connectivity/blueman/blueman_2.4.3.bb index 5aa3b2bd5..07e594db2 100644 --- a/meta-networking/recipes-connectivity/blueman/blueman_2.4.3.bb +++ b/meta-networking/recipes-connectivity/blueman/blueman_2.4.3.bb @@ -64,3 +64,5 @@ do_install:append() { chmod 700 ${D}/${datadir}/polkit-1/rules.d chown polkitd:root ${D}/${datadir}/polkit-1/rules.d } + +INSANE_SKIP:${PN} += "buildpaths"