From patchwork Tue Feb 27 10:15:22 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_M=C3=BCtzel?= X-Patchwork-Id: 40119 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 EEC5DC5478C for ; Tue, 27 Feb 2024 10:15:39 +0000 (UTC) Received: from mx1.emlix.com (mx1.emlix.com [178.63.209.131]) by mx.groups.io with SMTP id smtpd.web10.9302.1709028930652475238 for ; Tue, 27 Feb 2024 02:15:30 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: emlix.com, ip: 178.63.209.131, mailfrom: andreas.muetzel@emlix.com) Received: from mailer.emlix.com (unknown [81.20.112.87]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.emlix.com (Postfix) with ESMTPS id EE1195F86F for ; Tue, 27 Feb 2024 11:15:28 +0100 (CET) From: =?utf-8?q?Andreas_M=C3=BCtzel?= To: poky@lists.yoctoproject.org Cc: =?utf-8?q?Andreas_M=C3=BCtzel?= Subject: [PATCH] python3-bcrypt: allow building native package Date: Tue, 27 Feb 2024 11:15:22 +0100 Message-ID: <20240227101522.3155724-1-andreas.muetzel@emlix.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 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, 27 Feb 2024 10:15:39 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/poky/message/13278 The native and nativesdk variants of this package build fine, but the corresponding BBCLASSEXTENDS was missing. Add it. Signed-off-by: Andreas Mützel --- meta/recipes-devtools/python/python3-bcrypt_4.1.2.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/python/python3-bcrypt_4.1.2.bb b/meta/recipes-devtools/python/python3-bcrypt_4.1.2.bb index 8328594bad..72216c39c2 100644 --- a/meta/recipes-devtools/python/python3-bcrypt_4.1.2.bb +++ b/meta/recipes-devtools/python/python3-bcrypt_4.1.2.bb @@ -34,3 +34,5 @@ RDEPENDS:${PN}:class-target += "\ python3-shell \ python3-six \ " + +BBCLASSEXTEND = "native nativesdk"