summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python-setuptools.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python/python-setuptools.inc')
-rw-r--r--meta/recipes-devtools/python/python-setuptools.inc42
1 files changed, 36 insertions, 6 deletions
diff --git a/meta/recipes-devtools/python/python-setuptools.inc b/meta/recipes-devtools/python/python-setuptools.inc
index 1eae0b6174..d28a60c456 100644
--- a/meta/recipes-devtools/python/python-setuptools.inc
+++ b/meta/recipes-devtools/python/python-setuptools.inc
@@ -5,17 +5,47 @@ LICENSE = "MIT"
5 5
6LIC_FILES_CHKSUM = "file://LICENSE;beginline=1;endline=19;md5=9a33897f1bca1160d7aad3835152e158" 6LIC_FILES_CHKSUM = "file://LICENSE;beginline=1;endline=19;md5=9a33897f1bca1160d7aad3835152e158"
7 7
8SRCNAME = "setuptools" 8PYPI_PACKAGE_EXT = "zip"
9 9
10SRC_URI = "https://files.pythonhosted.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.zip" 10inherit pypi
11 11
12SRC_URI[md5sum] = "704f500dd55f4bd0be905444f3ba892c" 12SRC_URI[md5sum] = "e8e05d4f8162c9341e1089c80f742f64"
13SRC_URI[sha256sum] = "ce2007c1cea3359870b80657d634253a0765b0c7dc5a988d77ba803fc86f2c64" 13SRC_URI[sha256sum] = "9c671a6291a5b1171fb9da81665eb4f9625c7dbddc613d82abdc6002a4bce896"
14 14
15UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/setuptools" 15DEPENDS += "${PYTHON_PN}"
16DEPENDS_class-native += "${PYTHON_PN}-native"
17DEPENDS_class-nativesdk += "nativesdk-${PYTHON_PN}"
16 18
17S = "${WORKDIR}/${SRCNAME}-${PV}" 19DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${PYTHON_SITEPACKAGES_DIR} \
20 --script-dir=${bindir}"
21
22RDEPENDS_${PN}_class-native = "\
23 ${PYTHON_PN}-distutils \
24 ${PYTHON_PN}-compression \
25"
26RDEPENDS_${PN} = "\
27 ${PYTHON_PN}-compile \
28 ${PYTHON_PN}-compression \
29 ${PYTHON_PN}-ctypes \
30 ${PYTHON_PN}-distutils \
31 ${PYTHON_PN}-email \
32 ${PYTHON_PN}-html \
33 ${PYTHON_PN}-importlib \
34 ${PYTHON_PN}-netserver \
35 ${PYTHON_PN}-numbers \
36 ${PYTHON_PN}-pkgutil \
37 ${PYTHON_PN}-plistlib \
38 ${PYTHON_PN}-shell \
39 ${PYTHON_PN}-subprocess \
40 ${PYTHON_PN}-stringold \
41 ${PYTHON_PN}-textutils \
42 ${PYTHON_PN}-threading \
43 ${PYTHON_PN}-unittest \
44 ${PYTHON_PN}-xml \
45"
18 46
19do_install_prepend() { 47do_install_prepend() {
20 install -d ${D}${PYTHON_SITEPACKAGES_DIR} 48 install -d ${D}${PYTHON_SITEPACKAGES_DIR}
21} 49}
50
51BBCLASSEXTEND = "native nativesdk"