summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python-setuptools_18.2.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2015-12-04 15:35:38 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-12 23:42:54 +0000
commitdec8d20c290d68c1b741a818e4bc56c51a9da5f4 (patch)
tree6b32219bedb5bc4f8fcd8a261ade5497069a2902 /meta/recipes-devtools/python/python-setuptools_18.2.bb
parentb3535e24361a076f21abfd3817254e328031e17b (diff)
downloadpoky-dec8d20c290d68c1b741a818e4bc56c51a9da5f4.tar.gz
python-setuptools: update to 18.7.1
(From OE-Core rev: 3df78d4850e06ba4febd638bf52ee3b2927c5094) Signed-off-by: Alexander Kanavin <alexander.kanavin@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/python-setuptools_18.2.bb')
-rw-r--r--meta/recipes-devtools/python/python-setuptools_18.2.bb46
1 files changed, 0 insertions, 46 deletions
diff --git a/meta/recipes-devtools/python/python-setuptools_18.2.bb b/meta/recipes-devtools/python/python-setuptools_18.2.bb
deleted file mode 100644
index 1de2b2e927..0000000000
--- a/meta/recipes-devtools/python/python-setuptools_18.2.bb
+++ /dev/null
@@ -1,46 +0,0 @@
1SUMMARY = "Downloads, builds, installs, upgrades, and uninstalls Python packages"
2HOMEPAGE = "https://pypi.python.org/pypi/setuptools"
3SECTION = "devel/python"
4LICENSE = "Python-2.0 | ZPL-2.0"
5LIC_FILES_CHKSUM = "file://setup.py;beginline=78;endline=78;md5=8a314270dd7a8dbca741775415f1716e"
6
7SRCNAME = "setuptools"
8
9PROVIDES = "python-distribute"
10
11DEPENDS += "python"
12DEPENDS_class-native += "python-native"
13
14inherit distutils
15
16SRC_URI = "https://pypi.python.org/packages/source/s/setuptools/setuptools-${PV}.tar.gz"
17SRC_URI[md5sum] = "52b4e48939ef311d7204f8fe940764f4"
18SRC_URI[sha256sum] = "0994a58df27ea5dc523782a601357a2198b7493dcc99a30d51827a23585b5b1d"
19
20S = "${WORKDIR}/${SRCNAME}-${PV}"
21
22
23DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${libdir}/${PYTHON_DIR}/site-packages"
24
25do_install_prepend() {
26 install -d ${D}/${libdir}/${PYTHON_DIR}/site-packages
27}
28
29RDEPENDS_${PN} = "\
30 python-stringold \
31 python-email \
32 python-shell \
33 python-distutils \
34 python-compression \
35"
36
37RDEPENDS_${PN}_class-native = "\
38 python-distutils \
39 python-compression \
40"
41
42RREPLACES_${PN} = "python-distribute"
43RPROVIDES_${PN} = "python-distribute"
44RCONFLICTS_${PN} = "python-distribute"
45
46BBCLASSEXTEND = "native nativesdk"