summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-setuptools_75.8.0.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-01 08:38:41 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-05 12:49:56 +0000
commit2eab360fb2e0fdea07188119ad64c649aa6d20db (patch)
tree4357c46b333b92f8c33f5fbd7ee585df1aee3bc8 /meta/recipes-devtools/python/python3-setuptools_75.8.0.bb
parent7e927835e8e78f5cc6425f4a87c069851ed277aa (diff)
downloadpoky-2eab360fb2e0fdea07188119ad64c649aa6d20db.tar.gz
python3-setuptools: upgrade 75.6.0 -> 75.8.0
(From OE-Core rev: 2f30a782ae5500d9b7dcc37e2cfc43312a470605) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-setuptools_75.8.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-setuptools_75.8.0.bb57
1 files changed, 57 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-setuptools_75.8.0.bb b/meta/recipes-devtools/python/python3-setuptools_75.8.0.bb
new file mode 100644
index 0000000000..02e299d0be
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-setuptools_75.8.0.bb
@@ -0,0 +1,57 @@
1SUMMARY = "Download, build, install, upgrade, and uninstall Python packages"
2HOMEPAGE = "https://pypi.org/project/setuptools"
3SECTION = "devel/python"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=141643e11c48898150daa83802dbc65f"
6
7inherit pypi python_setuptools_build_meta
8
9CVE_PRODUCT = "python3-setuptools python:setuptools"
10
11SRC_URI:append:class-native = " file://0001-conditionally-do-not-fetch-code-by-easy_install.patch"
12
13SRC_URI += " \
14 file://0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch"
15
16SRC_URI[sha256sum] = "c5afc8f407c626b8313a86e10311dd3f661c6cd9c09d4bf8c15c0e11f9f2b0e6"
17
18DEPENDS += "python3"
19
20RDEPENDS:${PN} = "\
21 python3-compile \
22 python3-compression \
23 python3-ctypes \
24 python3-email \
25 python3-html \
26 python3-json \
27 python3-netserver \
28 python3-numbers \
29 python3-pickle \
30 python3-pkg-resources \
31 python3-pkgutil \
32 python3-plistlib \
33 python3-shell \
34 python3-stringold \
35 python3-threading \
36 python3-unittest \
37 python3-unixadmin \
38 python3-xml \
39"
40
41BBCLASSEXTEND = "native nativesdk"
42
43# The pkg-resources module can be used by itself, without the package downloader
44# and easy_install. Ship it in a separate package so that it can be used by
45# minimal distributions.
46PACKAGES =+ "python3-pkg-resources "
47FILES:python3-pkg-resources = "${PYTHON_SITEPACKAGES_DIR}/pkg_resources/*"
48RDEPENDS:python3-pkg-resources = "\
49 python3-compression \
50 python3-email \
51 python3-plistlib \
52 python3-pprint \
53"
54
55# This used to use the bootstrap install which didn't compile. Until we bump the
56# tmpdir version we can't compile the native otherwise the sysroot unpack fails
57INSTALL_WHEEL_COMPILE_BYTECODE:class-native = "--no-compile-bytecode"