summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-setuptools_57.0.0.bb
diff options
context:
space:
mode:
authorwangmy <wangmy@fujitsu.com>2021-07-12 15:56:48 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-13 14:27:53 +0100
commit262d2c6b6c4f357a8ec083af0934dcbb3acd169c (patch)
treeb15d8bf334bdec397f78b55b95ec6c33c8aafb81 /meta/recipes-devtools/python/python3-setuptools_57.0.0.bb
parent98185559344bf3d43d1253d0f1da466abcd4891c (diff)
downloadpoky-262d2c6b6c4f357a8ec083af0934dcbb3acd169c.tar.gz
python3-setuptools: upgrade 57.0.0 -> 57.1.0
reproducibility.patch deleted since it's been merged upstream. v57.1.0 ------- Changes ^^^^^^^ * #2692: Globs are now sorted in 'license_files' restoring reproducibility by eliminating variance from disk order. * #2714: Update to distutils at pypa/distutils@e2627b7. * #2715: Removed reliance on deprecated ssl.match_hostname by removing the ssl support. Now any index operations rely on the native SSL implementation. Documentation changes ^^^^^^^^^^^^^^^^^^^^^ * #2604: Revamped the backward/cross tool compatibility section to remove some confusion. Add some examples and the version since when ``entry_points`` are supported in declarative configuration. Tried to make the reading flow a bit leaner, gather some informations that were a bit dispersed. (From OE-Core rev: 9720cce06206895e2e85b171d58a289172bb9092) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-setuptools_57.0.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-setuptools_57.0.0.bb56
1 files changed, 0 insertions, 56 deletions
diff --git a/meta/recipes-devtools/python/python3-setuptools_57.0.0.bb b/meta/recipes-devtools/python/python3-setuptools_57.0.0.bb
deleted file mode 100644
index a15b51e31c..0000000000
--- a/meta/recipes-devtools/python/python3-setuptools_57.0.0.bb
+++ /dev/null
@@ -1,56 +0,0 @@
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;beginline=1;endline=19;md5=7a7126e068206290f3fe9f8d6c713ea6"
6
7inherit pypi setuptools3
8
9SRC_URI_append_class-native = " file://0001-conditionally-do-not-fetch-code-by-easy_install.patch"
10
11SRC_URI += "file://0001-change-shebang-to-python3.patch \
12 file://reproducibility.patch"
13
14SRC_URI[sha256sum] = "401cbf33a7bf817d08014d51560fc003b895c4cdc1a5b521ad2969e928a07535"
15
16DEPENDS += "${PYTHON_PN}"
17
18RDEPENDS_${PN} = "\
19 ${PYTHON_PN}-2to3 \
20 ${PYTHON_PN}-compile \
21 ${PYTHON_PN}-compression \
22 ${PYTHON_PN}-ctypes \
23 ${PYTHON_PN}-distutils \
24 ${PYTHON_PN}-email \
25 ${PYTHON_PN}-html \
26 ${PYTHON_PN}-json \
27 ${PYTHON_PN}-netserver \
28 ${PYTHON_PN}-numbers \
29 ${PYTHON_PN}-pickle \
30 ${PYTHON_PN}-pkg-resources \
31 ${PYTHON_PN}-pkgutil \
32 ${PYTHON_PN}-plistlib \
33 ${PYTHON_PN}-shell \
34 ${PYTHON_PN}-stringold \
35 ${PYTHON_PN}-threading \
36 ${PYTHON_PN}-unittest \
37 ${PYTHON_PN}-xml \
38"
39
40do_install_prepend() {
41 install -d ${D}${PYTHON_SITEPACKAGES_DIR}
42}
43
44BBCLASSEXTEND = "native nativesdk"
45
46# The pkg-resources module can be used by itself, without the package downloader
47# and easy_install. Ship it in a separate package so that it can be used by
48# minimal distributions.
49PACKAGES =+ "${PYTHON_PN}-pkg-resources "
50FILES_${PYTHON_PN}-pkg-resources = "${PYTHON_SITEPACKAGES_DIR}/pkg_resources/*"
51RDEPENDS_${PYTHON_PN}-pkg-resources = "\
52 ${PYTHON_PN}-compression \
53 ${PYTHON_PN}-email \
54 ${PYTHON_PN}-plistlib \
55 ${PYTHON_PN}-pprint \
56"