diff options
| author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2015-05-14 16:49:56 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-08 17:34:04 +0100 |
| commit | c4553e07cdbec5c29a74a43e0c5fdb2bb5583f7a (patch) | |
| tree | ab34d9c7f606de393312f998ae4e4d1c26bd2b91 /meta/recipes-devtools/python/python3-distribute_0.6.32.bb | |
| parent | ae67f744a512b86eb145ed9da525a11d2f67ece9 (diff) | |
| download | poky-c4553e07cdbec5c29a74a43e0c5fdb2bb5583f7a.tar.gz | |
python3-distribute: Upgrade to python3-setuptools 15.2
python3-distribute was merged back to python3-setuptools in 2013,
and it is no longer being maintained, this upgrade also provides
functionality that will be needed for python3-pip.
[YOCTO #7763]
(From OE-Core rev: 8922e609cb947e34cde6e48b82ff37a932d8d8db)
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-distribute_0.6.32.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-distribute_0.6.32.bb | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/meta/recipes-devtools/python/python3-distribute_0.6.32.bb b/meta/recipes-devtools/python/python3-distribute_0.6.32.bb deleted file mode 100644 index 0ef3a8762f..0000000000 --- a/meta/recipes-devtools/python/python3-distribute_0.6.32.bb +++ /dev/null | |||
| @@ -1,51 +0,0 @@ | |||
| 1 | SUMMARY = "Download, build, install, upgrade, and uninstall Python packages" | ||
| 2 | HOMEPAGE = "http://packages.python.org/distribute" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "PSF" | ||
| 5 | LIC_FILES_CHKSUM = "file://setup.py;beginline=234;endline=234;md5=26f6b02022b737126d3c88838782dddb" | ||
| 6 | |||
| 7 | SRCNAME = "distribute" | ||
| 8 | PR = "ml5" | ||
| 9 | DEPENDS += "python3" | ||
| 10 | DEPENDS_class-native += "python3-native" | ||
| 11 | |||
| 12 | SRC_URI = " \ | ||
| 13 | http://pypi.python.org/packages/source/d/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ | ||
| 14 | " | ||
| 15 | SRC_URI[md5sum] = "acb7a2da81e3612bfb1608abe4f0e568" | ||
| 16 | SRC_URI[sha256sum] = "8970cd1e148b5d1fea9430584aea66c45ea22d80e0933393ec49ebc388f718df" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 19 | |||
| 20 | # http://python-distribute.org/distribute_setup.py | ||
| 21 | |||
| 22 | # force the selection of python3 | ||
| 23 | #PYTHON_BASEVERSION = "3.3" | ||
| 24 | #PYTHON_MAJMIN = "3.3" | ||
| 25 | |||
| 26 | inherit distutils3 | ||
| 27 | |||
| 28 | DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${libdir}/${PYTHON_DIR}/site-packages" | ||
| 29 | |||
| 30 | do_install_prepend() { | ||
| 31 | install -d ${D}/${libdir}/${PYTHON_DIR}/site-packages | ||
| 32 | } | ||
| 33 | # | ||
| 34 | # The installer puts the wrong path in the setuptools.pth file. Correct it. | ||
| 35 | # | ||
| 36 | do_install_append() { | ||
| 37 | rm ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth | ||
| 38 | mv ${D}${bindir}/easy_install ${D}${bindir}/easy3_install | ||
| 39 | echo "./${SRCNAME}-${PV}-py${PYTHON_BASEVERSION}.egg" > ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth | ||
| 40 | sed -i -e '1s|^#!.*python|#!/usr/bin/env python3|' \ | ||
| 41 | ${D}${PYTHON_SITEPACKAGES_DIR}/distribute-${PV}-py${PYTHON_BASEVERSION}.egg/setuptools/tests/test_resources.py | ||
| 42 | } | ||
| 43 | |||
| 44 | RDEPENDS_${PN} = "\ | ||
| 45 | python3-distutils \ | ||
| 46 | python3-compression \ | ||
| 47 | " | ||
| 48 | |||
| 49 | RPROVIDES_${PN} += "python3-setuptools" | ||
| 50 | |||
| 51 | BBCLASSEXTEND = "native" | ||
