diff options
author | Tim Orling <timothy.t.orling@linux.intel.com> | 2017-11-18 18:22:12 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-13 14:00:52 +0000 |
commit | 2eed409aa729c4119d000c98bf2d209e0aa8ff3d (patch) | |
tree | 324c6f253ad8482ddf89010154d4a85f2fd6fd58 /meta/recipes-devtools/python | |
parent | 36086ded7e72e3c249f3e221acbe7c0c3d3543d9 (diff) | |
download | poky-2eed409aa729c4119d000c98bf2d209e0aa8ff3d.tar.gz |
python3-pip: use pypi.bbclass
* Simplify recipe by using pypi.bbclass
(From OE-Core rev: 120627640e74dd00adabc52657ab71e523a2f261)
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python3-pip_9.0.1.bb | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/meta/recipes-devtools/python/python3-pip_9.0.1.bb b/meta/recipes-devtools/python/python3-pip_9.0.1.bb index 9b907a2631..4ce13da410 100644 --- a/meta/recipes-devtools/python/python3-pip_9.0.1.bb +++ b/meta/recipes-devtools/python/python3-pip_9.0.1.bb | |||
@@ -1,22 +1,15 @@ | |||
1 | SUMMARY = "The PyPA recommended tool for installing Python packages" | 1 | SUMMARY = "The PyPA recommended tool for installing Python packages" |
2 | sHOMEPAGEsss = "https://pypi.python.org/pypi/pip" | 2 | HOMEPAGE = "https://pypi.python.org/pypi/pip" |
3 | SECTION = "devel/python" | 3 | SECTION = "devel/python" |
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=25fba45109565f87de20bae85bc39452" | 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=25fba45109565f87de20bae85bc39452" |
6 | 6 | ||
7 | SRCNAME = "pip" | ||
8 | DEPENDS += "python3 python3-setuptools-native" | 7 | DEPENDS += "python3 python3-setuptools-native" |
9 | 8 | ||
10 | SRC_URI = "https://files.pythonhosted.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
11 | |||
12 | SRC_URI[md5sum] = "35f01da33009719497f01a4ba69d63c9" | 9 | SRC_URI[md5sum] = "35f01da33009719497f01a4ba69d63c9" |
13 | SRC_URI[sha256sum] = "09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d" | 10 | SRC_URI[sha256sum] = "09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d" |
14 | 11 | ||
15 | UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/pip" | 12 | inherit pypi distutils3 |
16 | |||
17 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
18 | |||
19 | inherit distutils3 | ||
20 | 13 | ||
21 | DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${PYTHON_SITEPACKAGES_DIR}" | 14 | DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${PYTHON_SITEPACKAGES_DIR}" |
22 | 15 | ||
@@ -33,7 +26,7 @@ do_install_append() { | |||
33 | rm ${D}/${bindir}/pip | 26 | rm ${D}/${bindir}/pip |
34 | 27 | ||
35 | # Installed eggs need to be passed directly to the interpreter via a pth file | 28 | # Installed eggs need to be passed directly to the interpreter via a pth file |
36 | echo "./${SRCNAME}-${PV}-py${PYTHON_BASEVERSION}.egg" > ${D}${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}-${PV}.pth | 29 | echo "./${PYPI_PACKAGE}-${PV}-py${PYTHON_BASEVERSION}.egg" > ${D}${PYTHON_SITEPACKAGES_DIR}/${PYPI_PACKAGE}-${PV}.pth |
37 | 30 | ||
38 | # Make sure we use /usr/bin/env python3 | 31 | # Make sure we use /usr/bin/env python3 |
39 | for PYTHSCRIPT in `grep -rIl ${bindir} ${D}${bindir}/pip3*`; do | 32 | for PYTHSCRIPT in `grep -rIl ${bindir} ${D}${bindir}/pip3*`; do |