diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-12-15 23:40:17 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-12-17 09:56:14 +0000 |
| commit | fa60634f037f2bca5f9c0c9c79f10dcb8176af6a (patch) | |
| tree | f36f71abe22321ed36eb8c136957b0033881368e /meta/recipes-devtools/python/python3-setuptools_59.5.0.bb | |
| parent | 1f1f12feca749b0f3b1b67ea188a14db7e86e47e (diff) | |
| download | poky-fa60634f037f2bca5f9c0c9c79f10dcb8176af6a.tar.gz | |
python3-setuptools: upgrade 59.4.0 -> 59.5.0
(From OE-Core rev: 6dd8b4c08a6b4b5ab879d53f1e73d97ad02faa04)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-setuptools_59.5.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-setuptools_59.5.0.bb | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-setuptools_59.5.0.bb b/meta/recipes-devtools/python/python3-setuptools_59.5.0.bb new file mode 100644 index 0000000000..878fa08404 --- /dev/null +++ b/meta/recipes-devtools/python/python3-setuptools_59.5.0.bb | |||
| @@ -0,0 +1,58 @@ | |||
| 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;beginline=1;endline=19;md5=7a7126e068206290f3fe9f8d6c713ea6" | ||
| 6 | |||
| 7 | inherit pypi setuptools3 | ||
| 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-change-shebang-to-python3.patch \ | ||
| 13 | file://0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch \ | ||
| 14 | " | ||
| 15 | |||
| 16 | SRC_URI[sha256sum] = "d144f85102f999444d06f9c0e8c737fd0194f10f2f7e5fdb77573f6e2fa4fad0" | ||
| 17 | |||
| 18 | DEPENDS += "${PYTHON_PN}" | ||
| 19 | |||
| 20 | RDEPENDS:${PN} = "\ | ||
| 21 | ${PYTHON_PN}-2to3 \ | ||
| 22 | ${PYTHON_PN}-compile \ | ||
| 23 | ${PYTHON_PN}-compression \ | ||
| 24 | ${PYTHON_PN}-ctypes \ | ||
| 25 | ${PYTHON_PN}-distutils \ | ||
| 26 | ${PYTHON_PN}-email \ | ||
| 27 | ${PYTHON_PN}-html \ | ||
| 28 | ${PYTHON_PN}-json \ | ||
| 29 | ${PYTHON_PN}-netserver \ | ||
| 30 | ${PYTHON_PN}-numbers \ | ||
| 31 | ${PYTHON_PN}-pickle \ | ||
| 32 | ${PYTHON_PN}-pkg-resources \ | ||
| 33 | ${PYTHON_PN}-pkgutil \ | ||
| 34 | ${PYTHON_PN}-plistlib \ | ||
| 35 | ${PYTHON_PN}-shell \ | ||
| 36 | ${PYTHON_PN}-stringold \ | ||
| 37 | ${PYTHON_PN}-threading \ | ||
| 38 | ${PYTHON_PN}-unittest \ | ||
| 39 | ${PYTHON_PN}-xml \ | ||
| 40 | " | ||
| 41 | |||
| 42 | do_install:prepend() { | ||
| 43 | install -d ${D}${PYTHON_SITEPACKAGES_DIR} | ||
| 44 | } | ||
| 45 | |||
| 46 | BBCLASSEXTEND = "native nativesdk" | ||
| 47 | |||
| 48 | # The pkg-resources module can be used by itself, without the package downloader | ||
| 49 | # and easy_install. Ship it in a separate package so that it can be used by | ||
| 50 | # minimal distributions. | ||
| 51 | PACKAGES =+ "${PYTHON_PN}-pkg-resources " | ||
| 52 | FILES:${PYTHON_PN}-pkg-resources = "${PYTHON_SITEPACKAGES_DIR}/pkg_resources/*" | ||
| 53 | RDEPENDS:${PYTHON_PN}-pkg-resources = "\ | ||
| 54 | ${PYTHON_PN}-compression \ | ||
| 55 | ${PYTHON_PN}-email \ | ||
| 56 | ${PYTHON_PN}-plistlib \ | ||
| 57 | ${PYTHON_PN}-pprint \ | ||
| 58 | " | ||
