diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-03-04 17:09:08 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-03-06 11:16:47 +0000 |
| commit | 612da826b0cb6d628fb2329df731ab19167ad28b (patch) | |
| tree | c51dbf379d44b8401af5e990107345853c4554c3 /meta/recipes-devtools/python/python3-setuptools_75.8.2.bb | |
| parent | 225403f0b6bc3bf9bf98c1e9ae625326cf8e6319 (diff) | |
| download | poky-612da826b0cb6d628fb2329df731ab19167ad28b.tar.gz | |
python3-setuptools: upgrade 75.8.0 -> 75.8.2
0001-conditionally-do-not-fetch-code-by-easy_install.patch
refreshed for 75.8.2
(From OE-Core rev: 7afde38357bb214d3685e84e2db73c26074dd354)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-setuptools_75.8.2.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-setuptools_75.8.2.bb | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-setuptools_75.8.2.bb b/meta/recipes-devtools/python/python3-setuptools_75.8.2.bb new file mode 100644 index 0000000000..e9e6e9b2b6 --- /dev/null +++ b/meta/recipes-devtools/python/python3-setuptools_75.8.2.bb | |||
| @@ -0,0 +1,57 @@ | |||
| 1 | SUMMARY = "Download, build, install, upgrade, and uninstall Python packages" | ||
| 2 | HOMEPAGE = "https://pypi.org/project/setuptools" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=141643e11c48898150daa83802dbc65f" | ||
| 6 | |||
| 7 | inherit pypi python_setuptools_build_meta | ||
| 8 | |||
| 9 | CVE_PRODUCT = "python3-setuptools python:setuptools" | ||
| 10 | |||
| 11 | SRC_URI:append:class-native = " file://0001-conditionally-do-not-fetch-code-by-easy_install.patch" | ||
| 12 | |||
| 13 | SRC_URI += " \ | ||
| 14 | file://0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch" | ||
| 15 | |||
| 16 | SRC_URI[sha256sum] = "4880473a969e5f23f2a2be3646b2dfd84af9028716d398e46192f84bc36900d2" | ||
| 17 | |||
| 18 | DEPENDS += "python3" | ||
| 19 | |||
| 20 | RDEPENDS:${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 | |||
| 41 | BBCLASSEXTEND = "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. | ||
| 46 | PACKAGES =+ "python3-pkg-resources " | ||
| 47 | FILES:python3-pkg-resources = "${PYTHON_SITEPACKAGES_DIR}/pkg_resources/*" | ||
| 48 | RDEPENDS: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 | ||
| 57 | INSTALL_WHEEL_COMPILE_BYTECODE:class-native = "--no-compile-bytecode" | ||
