summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools
diff options
context:
space:
mode:
authorKhem Raj <khem.raj@oss.qualcomm.com>2026-05-14 11:51:23 -0700
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-05-14 23:15:55 -0700
commit205defa2c4e59a8a57ca62debe3ac15089f8692c (patch)
treed49c61082eb40084cd0feced3511b29d0627bd0e /meta-python/recipes-devtools
parentc6e778b38730c370a98d8b72694de28a748d06e0 (diff)
downloadmeta-openembedded-205defa2c4e59a8a57ca62debe3ac15089f8692c.tar.gz
python3-croniter: Fix build with newer trove and pathspec modules
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-python/recipes-devtools')
-rw-r--r--meta-python/recipes-devtools/python/python3-croniter/0001-Allow-using-newer-versions-of-trove-classifiers-and-.patch28
-rw-r--r--meta-python/recipes-devtools/python/python3-croniter_6.2.2.bb2
2 files changed, 30 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-croniter/0001-Allow-using-newer-versions-of-trove-classifiers-and-.patch b/meta-python/recipes-devtools/python/python3-croniter/0001-Allow-using-newer-versions-of-trove-classifiers-and-.patch
new file mode 100644
index 0000000000..a20075a76f
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-croniter/0001-Allow-using-newer-versions-of-trove-classifiers-and-.patch
@@ -0,0 +1,28 @@
1From 297d149636d063a82b33d95ab59928a88db51e4e Mon Sep 17 00:00:00 2001
2From: Khem Raj <khem.raj@oss.qualcomm.com>
3Date: Thu, 14 May 2026 11:44:44 -0700
4Subject: [PATCH] Allow using newer versions of trove-classifiers and pathspec
5
6Upstream-Status: Pending
7
8Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
9---
10 pyproject.toml | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13diff --git a/pyproject.toml b/pyproject.toml
14index 657cc21..d1b9ce3 100644
15--- a/pyproject.toml
16+++ b/pyproject.toml
17@@ -2,9 +2,9 @@
18 requires = [
19 "hatchling==1.29.0",
20 "packaging==26.0",
21- "pathspec==1.0.4",
22+ "pathspec>=1.0.4",
23 "pluggy==1.6.0",
24- "trove-classifiers==2026.1.14.14",
25+ "trove-classifiers>=2026.1.14.14",
26 ]
27 build-backend = "hatchling.build"
28
diff --git a/meta-python/recipes-devtools/python/python3-croniter_6.2.2.bb b/meta-python/recipes-devtools/python/python3-croniter_6.2.2.bb
index d217161d7d..a52dc5cbbb 100644
--- a/meta-python/recipes-devtools/python/python3-croniter_6.2.2.bb
+++ b/meta-python/recipes-devtools/python/python3-croniter_6.2.2.bb
@@ -5,10 +5,12 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=b8ee59850b882cbf623188489ea748e2"
5 5
6PYPI_PACKAGE = "croniter" 6PYPI_PACKAGE = "croniter"
7 7
8SRC_URI += "file://0001-Allow-using-newer-versions-of-trove-classifiers-and-.patch"
8SRC_URI[sha256sum] = "ba60832a5ec8e12e51b8691c3309a113d1cf6526bdf1a48150ce8ec7a532d0ab" 9SRC_URI[sha256sum] = "ba60832a5ec8e12e51b8691c3309a113d1cf6526bdf1a48150ce8ec7a532d0ab"
9 10
10inherit pypi python_hatchling 11inherit pypi python_hatchling
11 12
13DEPENDS += "python3-pathspec python3-trove-classifiers"
12RDEPENDS:${PN} += " \ 14RDEPENDS:${PN} += " \
13 python3-dateutil \ 15 python3-dateutil \
14 python3-natsort \ 16 python3-natsort \