diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-11-07 15:54:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-11-08 22:47:16 +0000 |
commit | 5a86801bc237a21d97cfa98e03009a1682d38337 (patch) | |
tree | b5ad1e228df79a67f10bb0b2bf372cdf9ec65f93 | |
parent | e6cf85235048019c2f6dfd546e4b1ad7ef304ff3 (diff) | |
download | poky-5a86801bc237a21d97cfa98e03009a1682d38337.tar.gz |
python3-pip: upgrade 22.2.2 -> 22.3
License-Update: copyright years, formatting
(From OE-Core rev: 805f0471fff17a9d9a7aa91fda2e04d2ea6ba59f)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python3-pip_22.2.2.bb | 62 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-pip_22.3.bb | 61 |
2 files changed, 61 insertions, 62 deletions
diff --git a/meta/recipes-devtools/python/python3-pip_22.2.2.bb b/meta/recipes-devtools/python/python3-pip_22.2.2.bb deleted file mode 100644 index 5b6cccf7ed..0000000000 --- a/meta/recipes-devtools/python/python3-pip_22.2.2.bb +++ /dev/null | |||
@@ -1,62 +0,0 @@ | |||
1 | SUMMARY = "The PyPA recommended tool for installing Python packages" | ||
2 | HOMEPAGE = "https://pypi.org/project/pip" | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "MIT & Apache-2.0 & MPL-2.0 & LGPL-2.1-only & BSD-3-Clause & PSF-2.0 & BSD-2-Clause" | ||
5 | LIC_FILES_CHKSUM = "\ | ||
6 | file://LICENSE.txt;md5=63ec52baf95163b597008bb46db68030 \ | ||
7 | file://src/pip/_vendor/cachecontrol/LICENSE.txt;md5=6572692148079ebbbd800be4b9f36c6d \ | ||
8 | file://src/pip/_vendor/certifi/LICENSE;md5=67da0714c3f9471067b729eca6c9fbe8 \ | ||
9 | file://src/pip/_vendor/chardet/LICENSE;md5=4fbd65380cdd255951079008b364516c \ | ||
10 | file://src/pip/_vendor/colorama/LICENSE.txt;md5=b4936429a56a652b84c5c01280dcaa26 \ | ||
11 | file://src/pip/_vendor/distlib/LICENSE.txt;md5=f6a11430d5cd6e2cd3832ee94f22ddfc \ | ||
12 | file://src/pip/_vendor/distro/LICENSE;md5=d2794c0df5b907fdace235a619d80314 \ | ||
13 | file://src/pip/_vendor/idna/LICENSE.md;md5=239668a7c6066d9e0c5382e9c8c6c0e1 \ | ||
14 | file://src/pip/_vendor/msgpack/COPYING;md5=cd9523181d9d4fbf7ffca52eaa2a5751 \ | ||
15 | file://src/pip/_vendor/packaging/LICENSE;md5=faadaedca9251a90b205c9167578ce91 \ | ||
16 | file://src/pip/_vendor/packaging/LICENSE.APACHE;md5=2ee41112a44fe7014dce33e26468ba93 \ | ||
17 | file://src/pip/_vendor/pep517/LICENSE;md5=aad69c93f605003e3342b174d9b0708c \ | ||
18 | file://src/pip/_vendor/pkg_resources/LICENSE;md5=9a33897f1bca1160d7aad3835152e158 \ | ||
19 | file://src/pip/_vendor/platformdirs/LICENSE.txt;md5=282c970bb844954c8535dd6e9733db7f \ | ||
20 | file://src/pip/_vendor/pygments/LICENSE;md5=36a13c90514e2899f1eba7f41c3ee592 \ | ||
21 | file://src/pip/_vendor/pyparsing/LICENSE;md5=657a566233888513e1f07ba13e2f47f1 \ | ||
22 | file://src/pip/_vendor/requests/LICENSE;md5=34400b68072d710fecd0a2940a0d1658 \ | ||
23 | file://src/pip/_vendor/resolvelib/LICENSE;md5=78e1c0248051c32a38a7f820c30bd7a5 \ | ||
24 | file://src/pip/_vendor/rich/LICENSE;md5=b5f0b94fbc94f5ad9ae4efcf8a778303 \ | ||
25 | file://src/pip/_vendor/six.LICENSE;md5=43cfc9e4ac0e377acfb9b76f56b8415d \ | ||
26 | file://src/pip/_vendor/tenacity/LICENSE;md5=175792518e4ac015ab6696d16c4f607e \ | ||
27 | file://src/pip/_vendor/tomli/LICENSE;md5=aaaaf0879d17df0110d1aa8c8c9f46f5 \ | ||
28 | file://src/pip/_vendor/typing_extensions.LICENSE;md5=64fc2b30b67d0a8423c250e0386ed72f \ | ||
29 | file://src/pip/_vendor/urllib3/LICENSE.txt;md5=c2823cb995439c984fd62a973d79815c \ | ||
30 | file://src/pip/_vendor/webencodings/LICENSE;md5=81fb24cd7823cce23b69f721993dce4d \ | ||
31 | " | ||
32 | |||
33 | inherit pypi python_setuptools_build_meta | ||
34 | |||
35 | SRC_URI += "file://no_shebang_mangling.patch" | ||
36 | |||
37 | SRC_URI[sha256sum] = "3fd1929db052f056d7a998439176d3333fa1b3f6c1ad881de1885c0717608a4b" | ||
38 | |||
39 | do_install:append() { | ||
40 | rm -f ${D}/${bindir}/pip | ||
41 | } | ||
42 | |||
43 | RDEPENDS:${PN} = "\ | ||
44 | python3-compile \ | ||
45 | python3-io \ | ||
46 | python3-html \ | ||
47 | python3-json \ | ||
48 | python3-multiprocessing \ | ||
49 | python3-netserver \ | ||
50 | python3-setuptools \ | ||
51 | python3-unixadmin \ | ||
52 | python3-xmlrpc \ | ||
53 | python3-pickle \ | ||
54 | python3-distutils \ | ||
55 | python3-image \ | ||
56 | " | ||
57 | |||
58 | BBCLASSEXTEND = "native nativesdk" | ||
59 | |||
60 | # This used to use the bootstrap install which didn't compile. Until we bump the | ||
61 | # tmpdir version we can't compile the native otherwise the sysroot unpack fails | ||
62 | INSTALL_WHEEL_COMPILE_BYTECODE:class-native = "--no-compile-bytecode" | ||
diff --git a/meta/recipes-devtools/python/python3-pip_22.3.bb b/meta/recipes-devtools/python/python3-pip_22.3.bb new file mode 100644 index 0000000000..394c428675 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pip_22.3.bb | |||
@@ -0,0 +1,61 @@ | |||
1 | SUMMARY = "The PyPA recommended tool for installing Python packages" | ||
2 | HOMEPAGE = "https://pypi.org/project/pip" | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "MIT & Apache-2.0 & MPL-2.0 & LGPL-2.1-only & BSD-3-Clause & PSF-2.0 & BSD-2-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=63ec52baf95163b597008bb46db68030 \ | ||
6 | file://src/pip/_vendor/cachecontrol/LICENSE.txt;md5=6572692148079ebbbd800be4b9f36c6d \ | ||
7 | file://src/pip/_vendor/certifi/LICENSE;md5=3c2b7404369c587c3559afb604fce2f2 \ | ||
8 | file://src/pip/_vendor/chardet/LICENSE;md5=4fbd65380cdd255951079008b364516c \ | ||
9 | file://src/pip/_vendor/colorama/LICENSE.txt;md5=b4936429a56a652b84c5c01280dcaa26 \ | ||
10 | file://src/pip/_vendor/distlib/LICENSE.txt;md5=f6a11430d5cd6e2cd3832ee94f22ddfc \ | ||
11 | file://src/pip/_vendor/distro/LICENSE;md5=d2794c0df5b907fdace235a619d80314 \ | ||
12 | file://src/pip/_vendor/idna/LICENSE.md;md5=239668a7c6066d9e0c5382e9c8c6c0e1 \ | ||
13 | file://src/pip/_vendor/msgpack/COPYING;md5=cd9523181d9d4fbf7ffca52eaa2a5751 \ | ||
14 | file://src/pip/_vendor/packaging/LICENSE;md5=faadaedca9251a90b205c9167578ce91 \ | ||
15 | file://src/pip/_vendor/packaging/LICENSE.APACHE;md5=2ee41112a44fe7014dce33e26468ba93 \ | ||
16 | file://src/pip/_vendor/pep517/LICENSE;md5=aad69c93f605003e3342b174d9b0708c \ | ||
17 | file://src/pip/_vendor/pkg_resources/LICENSE;md5=9a33897f1bca1160d7aad3835152e158 \ | ||
18 | file://src/pip/_vendor/platformdirs/LICENSE.txt;md5=282c970bb844954c8535dd6e9733db7f \ | ||
19 | file://src/pip/_vendor/pygments/LICENSE;md5=36a13c90514e2899f1eba7f41c3ee592 \ | ||
20 | file://src/pip/_vendor/pyparsing/LICENSE;md5=657a566233888513e1f07ba13e2f47f1 \ | ||
21 | file://src/pip/_vendor/requests/LICENSE;md5=34400b68072d710fecd0a2940a0d1658 \ | ||
22 | file://src/pip/_vendor/resolvelib/LICENSE;md5=78e1c0248051c32a38a7f820c30bd7a5 \ | ||
23 | file://src/pip/_vendor/rich/LICENSE;md5=b5f0b94fbc94f5ad9ae4efcf8a778303 \ | ||
24 | file://src/pip/_vendor/six.LICENSE;md5=43cfc9e4ac0e377acfb9b76f56b8415d \ | ||
25 | file://src/pip/_vendor/tenacity/LICENSE;md5=175792518e4ac015ab6696d16c4f607e \ | ||
26 | file://src/pip/_vendor/tomli/LICENSE;md5=aaaaf0879d17df0110d1aa8c8c9f46f5 \ | ||
27 | file://src/pip/_vendor/typing_extensions.LICENSE;md5=f16b323917992e0f8a6f0071bc9913e2 \ | ||
28 | file://src/pip/_vendor/urllib3/LICENSE.txt;md5=c2823cb995439c984fd62a973d79815c \ | ||
29 | file://src/pip/_vendor/webencodings/LICENSE;md5=81fb24cd7823cce23b69f721993dce4d \ | ||
30 | " | ||
31 | |||
32 | inherit pypi python_setuptools_build_meta | ||
33 | |||
34 | SRC_URI += "file://no_shebang_mangling.patch" | ||
35 | |||
36 | SRC_URI[sha256sum] = "8182aec21dad6c0a49a2a3d121a87cd524b950e0b6092b181625f07ebdde7530" | ||
37 | |||
38 | do_install:append() { | ||
39 | rm -f ${D}/${bindir}/pip | ||
40 | } | ||
41 | |||
42 | RDEPENDS:${PN} = "\ | ||
43 | python3-compile \ | ||
44 | python3-io \ | ||
45 | python3-html \ | ||
46 | python3-json \ | ||
47 | python3-multiprocessing \ | ||
48 | python3-netserver \ | ||
49 | python3-setuptools \ | ||
50 | python3-unixadmin \ | ||
51 | python3-xmlrpc \ | ||
52 | python3-pickle \ | ||
53 | python3-distutils \ | ||
54 | python3-image \ | ||
55 | " | ||
56 | |||
57 | BBCLASSEXTEND = "native nativesdk" | ||
58 | |||
59 | # This used to use the bootstrap install which didn't compile. Until we bump the | ||
60 | # tmpdir version we can't compile the native otherwise the sysroot unpack fails | ||
61 | INSTALL_WHEEL_COMPILE_BYTECODE:class-native = "--no-compile-bytecode" | ||