diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3-pip_24.2.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-pip_24.2.bb | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pip_24.2.bb b/meta/recipes-devtools/python/python3-pip_24.2.bb new file mode 100644 index 0000000000..1f8aeb35fc --- /dev/null +++ b/meta/recipes-devtools/python/python3-pip_24.2.bb | |||
| @@ -0,0 +1,54 @@ | |||
| 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=11618cb6a975948679286b1211bd573c \ | ||
| 8 | file://src/pip/_vendor/distlib/LICENSE.txt;md5=f6a11430d5cd6e2cd3832ee94f22ddfc \ | ||
| 9 | file://src/pip/_vendor/distro/LICENSE;md5=d2794c0df5b907fdace235a619d80314 \ | ||
| 10 | file://src/pip/_vendor/idna/LICENSE.md;md5=204c0612e40a4dd46012a78d02c80fb1 \ | ||
| 11 | file://src/pip/_vendor/msgpack/COPYING;md5=cd9523181d9d4fbf7ffca52eaa2a5751 \ | ||
| 12 | file://src/pip/_vendor/packaging/LICENSE;md5=faadaedca9251a90b205c9167578ce91 \ | ||
| 13 | file://src/pip/_vendor/pkg_resources/LICENSE;md5=141643e11c48898150daa83802dbc65f \ | ||
| 14 | file://src/pip/_vendor/platformdirs/LICENSE;md5=ea4f5a41454746a9ed111e3d8723d17a \ | ||
| 15 | file://src/pip/_vendor/pygments/LICENSE;md5=36a13c90514e2899f1eba7f41c3ee592 \ | ||
| 16 | file://src/pip/_vendor/pyproject_hooks/LICENSE;md5=aad69c93f605003e3342b174d9b0708c \ | ||
| 17 | file://src/pip/_vendor/requests/LICENSE;md5=34400b68072d710fecd0a2940a0d1658 \ | ||
| 18 | file://src/pip/_vendor/resolvelib/LICENSE;md5=78e1c0248051c32a38a7f820c30bd7a5 \ | ||
| 19 | file://src/pip/_vendor/rich/LICENSE;md5=b5f0b94fbc94f5ad9ae4efcf8a778303 \ | ||
| 20 | file://src/pip/_vendor/tomli/LICENSE;md5=aaaaf0879d17df0110d1aa8c8c9f46f5 \ | ||
| 21 | file://src/pip/_vendor/truststore/LICENSE;md5=74420fc3965c4558a4a1529e63c2867f \ | ||
| 22 | file://src/pip/_vendor/typing_extensions.LICENSE;md5=fcf6b249c2641540219a727f35d8d2c2 \ | ||
| 23 | file://src/pip/_vendor/urllib3/LICENSE.txt;md5=c2823cb995439c984fd62a973d79815c \ | ||
| 24 | " | ||
| 25 | |||
| 26 | inherit pypi python_setuptools_build_meta | ||
| 27 | |||
| 28 | SRC_URI += "file://no_shebang_mangling.patch" | ||
| 29 | |||
| 30 | SRC_URI[sha256sum] = "5b5e490b5e9cb275c879595064adce9ebd31b854e3e803740b72f9ccf34a45b8" | ||
| 31 | |||
| 32 | do_install:append() { | ||
| 33 | rm -f ${D}/${bindir}/pip | ||
| 34 | } | ||
| 35 | |||
| 36 | RDEPENDS:${PN} = "\ | ||
| 37 | python3-compile \ | ||
| 38 | python3-io \ | ||
| 39 | python3-html \ | ||
| 40 | python3-json \ | ||
| 41 | python3-multiprocessing \ | ||
| 42 | python3-netserver \ | ||
| 43 | python3-setuptools \ | ||
| 44 | python3-unixadmin \ | ||
| 45 | python3-xmlrpc \ | ||
| 46 | python3-pickle \ | ||
| 47 | python3-image \ | ||
| 48 | " | ||
| 49 | |||
| 50 | BBCLASSEXTEND = "native nativesdk" | ||
| 51 | |||
| 52 | # This used to use the bootstrap install which didn't compile. Until we bump the | ||
| 53 | # tmpdir version we can't compile the native otherwise the sysroot unpack fails | ||
| 54 | INSTALL_WHEEL_COMPILE_BYTECODE:class-native = "--no-compile-bytecode" | ||
