From 3e668a679565d6d0a73c56506278415100bdc11f Mon Sep 17 00:00:00 2001 From: Markus Volk Date: Mon, 21 Sep 2026 14:00:57 +0200 Subject: [PATCH] python3-cucumber-expressions: add recipe 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) Signed-off-by: Khem Raj --- .../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"