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-setuptools_15.2.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-setuptools_15.2.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-setuptools_15.2.bb | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-setuptools_15.2.bb b/meta/recipes-devtools/python/python3-setuptools_15.2.bb new file mode 100644 index 0000000000..97058c139c --- /dev/null +++ b/meta/recipes-devtools/python/python3-setuptools_15.2.bb | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | SUMMARY = "Download, build, install, upgrade, and uninstall Python packages" | ||
| 2 | HOMEPAGE = "http://packages.python.org/setuptools" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "PSF" | ||
| 5 | LIC_FILES_CHKSUM = "file://setup.py;beginline=78;endline=78;md5=8a314270dd7a8dbca741775415f1716e" | ||
| 6 | |||
| 7 | SRCNAME = "setuptools" | ||
| 8 | DEPENDS += "python3" | ||
| 9 | DEPENDS_class-native += "python3-native" | ||
| 10 | |||
| 11 | SRC_URI = " \ | ||
| 12 | http://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ | ||
| 13 | " | ||
| 14 | SRC_URI[md5sum] = "a9028a9794fc7ae02320d32e2d7e12ee" | ||
| 15 | SRC_URI[sha256sum] = "381e78471fb0eff89c4b1a219e8739f48dd87c76ad2d3a790010ca3a62ee29a4" | ||
| 16 | |||
| 17 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
| 18 | |||
| 19 | inherit distutils3 | ||
| 20 | |||
| 21 | DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${libdir}/${PYTHON_DIR}/site-packages" | ||
| 22 | |||
| 23 | do_install_prepend() { | ||
| 24 | install -d ${D}/${libdir}/${PYTHON_DIR}/site-packages | ||
| 25 | } | ||
| 26 | # | ||
| 27 | # The installer puts the wrong path in the setuptools.pth file. Correct it. | ||
| 28 | # | ||
| 29 | do_install_append() { | ||
| 30 | rm ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth | ||
| 31 | mv ${D}${bindir}/easy_install ${D}${bindir}/easy3_install | ||
| 32 | echo "./${SRCNAME}-${PV}-py${PYTHON_BASEVERSION}.egg" > ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth | ||
| 33 | } | ||
| 34 | |||
| 35 | RDEPENDS_${PN} = "\ | ||
| 36 | python3-distutils \ | ||
| 37 | python3-compression \ | ||
| 38 | " | ||
| 39 | RDEPENDS_${PN}_class-target = "\ | ||
| 40 | python3-ctypes \ | ||
| 41 | python3-distutils \ | ||
| 42 | python3-email \ | ||
| 43 | python3-importlib \ | ||
| 44 | python3-numbers \ | ||
| 45 | python3-compression \ | ||
| 46 | python3-shell \ | ||
| 47 | python3-subprocess \ | ||
| 48 | python3-textutils \ | ||
| 49 | python3-pkgutil \ | ||
| 50 | python3-threading \ | ||
| 51 | python3-misc \ | ||
| 52 | python3-unittest \ | ||
| 53 | python3-xml \ | ||
| 54 | " | ||
| 55 | BBCLASSEXTEND = "native" | ||
