From patchwork Mon Sep 21 12:00:57 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 98820 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 8AFE8C982E1 for ; Mon, 21 Sep 2026 12:01:52 +0000 (UTC) Received: from mailout07.t-online.de (mailout07.t-online.de [194.25.134.83]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.47266.1789992106351823777 for ; Mon, 21 Sep 2026 05:01:46 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=f_l_k@t-online.de header.s=20260216 header.b=dwXMnFSL; spf=pass (domain: t-online.de, ip: 194.25.134.83, mailfrom: f_l_k@t-online.de) Received: from fwd96.aul.t-online.de (fwd96.aul.t-online.de [10.223.144.122]) by mailout07.t-online.de (Postfix) with SMTP id 4F032E05B for ; Mon, 21 Sep 2026 14:01:13 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.163.35.133]) by fwd96.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1x8chq-1YmOCu0; Mon, 21 Sep 2026 14:01:10 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-python][RFC][PATCH 1/2] python3-cucumber-expressions: add recipe Date: Mon, 21 Sep 2026 14:00:57 +0200 Message-ID: <20260921120058.55586-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.55.0 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1789992070-B27FB9BA-F5397366/0/0 CLEAN NORMAL X-TOI-MSGID: cf7474c6-bae0-4baa-a06d-e5833b45a23b DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=t-online.de; s=20260216; t=1789992073; i=f_l_k@t-online.de; bh=Ny/jYUaPGb0ylYTg6ULtOyGdZoDWV2f3XztlED0rpds=; h=From:To:Subject:Date; b=dwXMnFSLJu+1nWrmKcxVHE2+ZyomVbCE3RxsVWjDo96B+WAICjhIQmXNt5okHxfGC +Mgd4rcLOy8Qrut1rD3zHWagPHFhinmaS+JhPXTPPP2FEPhq1Uuh6TMKYduEt6vRwh ZV3sL/aMlMEQmRPWtN1nSxxxYp5jPVl4cU4n2zgnEWynsXUGY42TqIYyk48BaMQzTQ UHAiBmC/kg5yb8kPBLkFDJ/VDkuJo90HRKs8gU9+xJINZl8vBTJFVN6HbTPf35PDcO X6IaqLXpWHcguKH8u3ViHMBY55Sr9VOmne33bpTy1Dhk29BzGeqoneIVmGMmwWivHW +nJliGPy/+D4A== 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 ; Mon, 21 Sep 2026 12:01:52 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/130156 cucumber-expressions provides the step-matcher expression parser that behave requires from 1.4 onwards. Pure Python, no runtime dependencies beyond the standard library, built with the uv backend that is already used for python3-cucumber-tag-expressions. Built for intel-corei7-64. AI-Generated: Uses Claude Code (Claude Opus 5) --- .../python3-cucumber-expressions_20.1.0.bb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-cucumber-expressions_20.1.0.bb diff --git a/meta-python/recipes-devtools/python/python3-cucumber-expressions_20.1.0.bb b/meta-python/recipes-devtools/python/python3-cucumber-expressions_20.1.0.bb new file mode 100644 index 0000000000..ffce52f03b --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-cucumber-expressions_20.1.0.bb @@ -0,0 +1,18 @@ +SUMMARY = "Cucumber Expressions - a simpler alternative to Regular Expressions" +DESCRIPTION = "Provides the cucumber-expression parser and matcher used by cucumber/behave" +HOMEPAGE = "https://github.com/cucumber/cucumber-expressions" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=2b2bb1048cefa23c375b8ce5f13313ea" + +SRC_URI[sha256sum] = "0d216ec26e36c71b3e5643f2e72c41f9b266ef04eaa0c7e47a6e3b2caf523b1a" + +inherit pypi python_uv_build + +PYPI_PACKAGE = "cucumber_expressions" + +RDEPENDS:${PN} += " \ + python3-core \ + python3-numbers \ +" + +BBCLASSEXTEND = "native nativesdk" From patchwork Mon Sep 21 12:00:58 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 98819 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 AE8B9C982ED for ; Mon, 21 Sep 2026 12:01:22 +0000 (UTC) Received: from mailout10.t-online.de (mailout10.t-online.de [194.25.134.21]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.47498.1789992075198603544 for ; Mon, 21 Sep 2026 05:01:15 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=f_l_k@t-online.de header.s=20260216 header.b=UY9P7b0M; spf=pass (domain: t-online.de, ip: 194.25.134.21, mailfrom: f_l_k@t-online.de) Received: from fwd96.aul.t-online.de (fwd96.aul.t-online.de [10.223.144.122]) by mailout10.t-online.de (Postfix) with SMTP id 57DDE380ED for ; Mon, 21 Sep 2026 14:01:13 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([84.163.35.133]) by fwd96.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1x8chq-1YmOCv0; Mon, 21 Sep 2026 14:01:10 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-python][RFC][PATCH 2/2] RFC: python3-behave: switch to a six-free main snapshot Date: Mon, 21 Sep 2026 14:00:58 +0200 Message-ID: <20260921120058.55586-2-f_l_k@t-online.de> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260921120058.55586-1-f_l_k@t-online.de> References: <20260921120058.55586-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1789992070-02FFA9BA-A5714DBB/0/0 CLEAN NORMAL X-TOI-MSGID: a060601a-65e9-4877-9e58-9c1350ae8d82 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=t-online.de; s=20260216; t=1789992073; i=f_l_k@t-online.de; bh=+2DVcw9klZn4AbPCPxwDfexQmvAYjVD+BWA4V54ZMxM=; h=From:To:Subject:Date:In-Reply-To:References; b=UY9P7b0Mlnlr0qXInheLaIpAHJ023Au0vlTbgi8Yp5LoxZD73Di1pnFJzvoznKw+J M+o8nCn4X2xKwX4bNL2tP/uBP6V4zgVOmXaupcYymvR1AnnsZoMB/9KqKVH6L/58hk /4S3jJR1Oc1DRqZGiT8swR7YLBKWkTgwjT773DTMrQjelFIbNlJuxgLMKQdCvYZgCm FKrx1QIE9A/vpT8e0Qw8SWnWjxvifzI2vk/D7LxpK4m7EDULzqOrFo/iqRIKilTcZT hEPLabjb4iXBSFFyLNBsGF2QxxigSm2ZcnQnTms6ElTn/JJgB+YFYgEfa3sCVGcm2s uasaHYn7/aKiA== 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 ; Mon, 21 Sep 2026 12:01:22 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/130155 The 1.3.3 snapshot on release/v1.3.x uses six in 68 files. Upstream has removed six on main, so take a snapshot from there instead of carrying a large local patch. main also replaces the cucumber-tag-expressions-only matcher setup with cucumber-expressions and drops the tomli dependency for Python 3.11 and newer. Sent as RFC because main has not been released yet: its own version file still says 1.4.0.dev0, so the version the recipe claims may still change before upstream tags 1.4.0. Built for intel-corei7-64. AI-Generated: Uses Claude Code (Claude Opus 5) --- .../{python3-behave_1.3.3.bb => python3-behave_1.4.0.bb} | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) rename meta-python/recipes-devtools/python/{python3-behave_1.3.3.bb => python3-behave_1.4.0.bb} (70%) diff --git a/meta-python/recipes-devtools/python/python3-behave_1.3.3.bb b/meta-python/recipes-devtools/python/python3-behave_1.4.0.bb similarity index 70% rename from meta-python/recipes-devtools/python/python3-behave_1.3.3.bb rename to meta-python/recipes-devtools/python/python3-behave_1.4.0.bb index 9be8f25b44..c514fe7792 100644 --- a/meta-python/recipes-devtools/python/python3-behave_1.3.3.bb +++ b/meta-python/recipes-devtools/python/python3-behave_1.4.0.bb @@ -4,8 +4,8 @@ LICENSE = "BSD-2-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=1fca0a9c7e4e4148d675b4dafd5c1e80" PV .= "+git${SRCREV}" -SRCREV = "7673da8324be5588642b23511ca4d7a134a0b0c1" -SRC_URI += "git://github.com/behave/behave;branch=release/v1.3.x;protocol=https" +SRCREV = "aca602b4410163fe4be045ce86c9d76ec34a717a" +SRC_URI += "git://github.com/behave/behave;branch=main;protocol=https" inherit python_setuptools_build_meta @@ -13,8 +13,9 @@ inherit python_setuptools_build_meta DEPENDS += "python3-wheel-native" RDEPENDS:${PN} += " \ + python3-cucumber-expressions \ + python3-cucumber-tag-expressions \ + python3-parse \ python3-parse-type \ python3-setuptools \ - python3-six \ - python3-cucumber-tag-expressions \ "