diff options
| author | Trevor Gamblin <tgamblin@baylibre.com> | 2024-08-09 08:22:16 -0400 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-08-13 09:29:15 +0100 |
| commit | 0aac243aecfab95d9d5b59ffaff414cdef726cbb (patch) | |
| tree | 44c67f811971f2396b6da2236111e508de3955fc /meta/recipes-devtools/python/python3-setuptools_72.1.0.bb | |
| parent | 68e102c3a67f67f0af4e1fb6ecb62ec8366a0db9 (diff) | |
| download | poky-0aac243aecfab95d9d5b59ffaff414cdef726cbb.tar.gz | |
python3-setuptools: upgrade 71.1.0 -> 72.1.0
Changelog (https://github.com/pypa/setuptools/blob/main/NEWS.rst#v7210):
Features
- Restore the tests command and deprecate access to the module. (#4519) (#4520)
(From OE-Core rev: 8760d37e4b6275016a8dcdabc04dfb85185649b7)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-setuptools_72.1.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-setuptools_72.1.0.bb | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-setuptools_72.1.0.bb b/meta/recipes-devtools/python/python3-setuptools_72.1.0.bb new file mode 100644 index 0000000000..945d443aff --- /dev/null +++ b/meta/recipes-devtools/python/python3-setuptools_72.1.0.bb | |||
| @@ -0,0 +1,55 @@ | |||
| 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 | SRC_URI:append:class-native = " file://0001-conditionally-do-not-fetch-code-by-easy_install.patch" | ||
| 10 | |||
| 11 | SRC_URI += " \ | ||
| 12 | file://0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch" | ||
| 13 | |||
| 14 | SRC_URI[sha256sum] = "8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec" | ||
| 15 | |||
| 16 | DEPENDS += "python3" | ||
| 17 | |||
| 18 | RDEPENDS:${PN} = "\ | ||
| 19 | python3-compile \ | ||
| 20 | python3-compression \ | ||
| 21 | python3-ctypes \ | ||
| 22 | python3-email \ | ||
| 23 | python3-html \ | ||
| 24 | python3-json \ | ||
| 25 | python3-netserver \ | ||
| 26 | python3-numbers \ | ||
| 27 | python3-pickle \ | ||
| 28 | python3-pkg-resources \ | ||
| 29 | python3-pkgutil \ | ||
| 30 | python3-plistlib \ | ||
| 31 | python3-shell \ | ||
| 32 | python3-stringold \ | ||
| 33 | python3-threading \ | ||
| 34 | python3-unittest \ | ||
| 35 | python3-unixadmin \ | ||
| 36 | python3-xml \ | ||
| 37 | " | ||
| 38 | |||
| 39 | BBCLASSEXTEND = "native nativesdk" | ||
| 40 | |||
| 41 | # The pkg-resources module can be used by itself, without the package downloader | ||
| 42 | # and easy_install. Ship it in a separate package so that it can be used by | ||
| 43 | # minimal distributions. | ||
| 44 | PACKAGES =+ "python3-pkg-resources " | ||
| 45 | FILES:python3-pkg-resources = "${PYTHON_SITEPACKAGES_DIR}/pkg_resources/*" | ||
| 46 | RDEPENDS:python3-pkg-resources = "\ | ||
| 47 | python3-compression \ | ||
| 48 | python3-email \ | ||
| 49 | python3-plistlib \ | ||
| 50 | python3-pprint \ | ||
| 51 | " | ||
| 52 | |||
| 53 | # This used to use the bootstrap install which didn't compile. Until we bump the | ||
| 54 | # tmpdir version we can't compile the native otherwise the sysroot unpack fails | ||
| 55 | INSTALL_WHEEL_COMPILE_BYTECODE:class-native = "--no-compile-bytecode" | ||
