diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-08-22 14:50:36 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-23 08:25:52 +0100 |
| commit | d3c6f3b9683b7599a34e0ec5073a581c37dc8966 (patch) | |
| tree | 8c01ff6639edb64b40aa044dc76e9c60a7753066 /meta/recipes-devtools/python/python3-pip_21.2.4.bb | |
| parent | 381645b0b5d35f98eb36a7f60b7d112ea101732e (diff) | |
| download | poky-d3c6f3b9683b7599a34e0ec5073a581c37dc8966.tar.gz | |
python3-pip: upgrade 21.2.1 -> 21.2.4
(From OE-Core rev: 80ff47cc2f19996b4109f0a2396e61fdcfede5cf)
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-pip_21.2.4.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-pip_21.2.4.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pip_21.2.4.bb b/meta/recipes-devtools/python/python3-pip_21.2.4.bb new file mode 100644 index 0000000000..1f0f707f4b --- /dev/null +++ b/meta/recipes-devtools/python/python3-pip_21.2.4.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | SUMMARY = "The PyPA recommended tool for installing Python packages" | ||
| 2 | HOMEPAGE = "https://pypi.org/project/pip" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c4fa2b50f55649f43060fa04b0919b9b" | ||
| 6 | |||
| 7 | DEPENDS += "python3 python3-setuptools-native" | ||
| 8 | |||
| 9 | inherit pypi distutils3 | ||
| 10 | |||
| 11 | SRC_URI += "file://0001-change-shebang-to-python3.patch" | ||
| 12 | |||
| 13 | SRC_URI[sha256sum] = "0eb8a1516c3d138ae8689c0c1a60fde7143310832f9dc77e11d8a4bc62de193b" | ||
| 14 | |||
| 15 | do_install:append() { | ||
| 16 | # Install as pip3 and leave pip2 as default | ||
| 17 | rm ${D}/${bindir}/pip | ||
| 18 | } | ||
| 19 | |||
| 20 | RDEPENDS:${PN} = "\ | ||
| 21 | python3-compile \ | ||
| 22 | python3-io \ | ||
| 23 | python3-html \ | ||
| 24 | python3-json \ | ||
| 25 | python3-multiprocessing \ | ||
| 26 | python3-netserver \ | ||
| 27 | python3-setuptools \ | ||
| 28 | python3-unixadmin \ | ||
| 29 | python3-xmlrpc \ | ||
| 30 | python3-pickle \ | ||
| 31 | " | ||
| 32 | |||
| 33 | BBCLASSEXTEND = "native nativesdk" | ||
