diff options
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-zopeinterface/0001-Allow-using-setuptools-74.patch | 24 | ||||
-rw-r--r-- | meta-python/recipes-devtools/python/python3-zopeinterface_7.1.1.bb | 1 |
2 files changed, 25 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-zopeinterface/0001-Allow-using-setuptools-74.patch b/meta-python/recipes-devtools/python/python3-zopeinterface/0001-Allow-using-setuptools-74.patch new file mode 100644 index 0000000000..a01247fe5a --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-zopeinterface/0001-Allow-using-setuptools-74.patch | |||
@@ -0,0 +1,24 @@ | |||
1 | From 5060ecfe6cff5110cbfbc781fc7342ad08fc6f90 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sat, 23 Nov 2024 18:30:40 -0800 | ||
4 | Subject: [PATCH] Allow using setuptools > 74 | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | --- | ||
9 | pyproject.toml | 2 +- | ||
10 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
11 | |||
12 | diff --git a/pyproject.toml b/pyproject.toml | ||
13 | index 17da486..7906a37 100644 | ||
14 | --- a/pyproject.toml | ||
15 | +++ b/pyproject.toml | ||
16 | @@ -3,7 +3,7 @@ | ||
17 | # https://github.com/zopefoundation/meta/tree/master/config/c-code | ||
18 | |||
19 | [build-system] | ||
20 | -requires = ["setuptools<74"] | ||
21 | +requires = ["setuptools"] | ||
22 | build-backend = "setuptools.build_meta" | ||
23 | |||
24 | [tool.coverage.run] | ||
diff --git a/meta-python/recipes-devtools/python/python3-zopeinterface_7.1.1.bb b/meta-python/recipes-devtools/python/python3-zopeinterface_7.1.1.bb index 76b0641817..dcf660d419 100644 --- a/meta-python/recipes-devtools/python/python3-zopeinterface_7.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-zopeinterface_7.1.1.bb | |||
@@ -5,6 +5,7 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e54fd776274c1b7423 | |||
5 | PYPI_PACKAGE = "zope.interface" | 5 | PYPI_PACKAGE = "zope.interface" |
6 | 6 | ||
7 | inherit pypi python_setuptools_build_meta | 7 | inherit pypi python_setuptools_build_meta |
8 | SRC_URI += "file://0001-Allow-using-setuptools-74.patch" | ||
8 | SRC_URI[sha256sum] = "4284d664ef0ff7b709836d4de7b13d80873dc5faeffc073abdb280058bfac5e3" | 9 | SRC_URI[sha256sum] = "4284d664ef0ff7b709836d4de7b13d80873dc5faeffc073abdb280058bfac5e3" |
9 | PACKAGES =. "${PN}-test " | 10 | PACKAGES =. "${PN}-test " |
10 | 11 | ||