diff options
-rw-r--r-- | meta/classes/setuptools3.bbclass | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-setuptools_15.2.bb (renamed from meta/recipes-devtools/python/python3-distribute_0.6.32.bb) | 40 |
2 files changed, 23 insertions, 19 deletions
diff --git a/meta/classes/setuptools3.bbclass b/meta/classes/setuptools3.bbclass index 40c18c8976..de6dd9440c 100644 --- a/meta/classes/setuptools3.bbclass +++ b/meta/classes/setuptools3.bbclass | |||
@@ -1,6 +1,6 @@ | |||
1 | inherit distutils3 | 1 | inherit distutils3 |
2 | 2 | ||
3 | DEPENDS += "python3-distribute-native" | 3 | DEPENDS += "python3-setuptools-native" |
4 | 4 | ||
5 | DISTUTILS_INSTALL_ARGS = "--root=${D} \ | 5 | DISTUTILS_INSTALL_ARGS = "--root=${D} \ |
6 | --prefix=${prefix} \ | 6 | --prefix=${prefix} \ |
diff --git a/meta/recipes-devtools/python/python3-distribute_0.6.32.bb b/meta/recipes-devtools/python/python3-setuptools_15.2.bb index 0ef3a8762f..97058c139c 100644 --- a/meta/recipes-devtools/python/python3-distribute_0.6.32.bb +++ b/meta/recipes-devtools/python/python3-setuptools_15.2.bb | |||
@@ -1,28 +1,21 @@ | |||
1 | SUMMARY = "Download, build, install, upgrade, and uninstall Python packages" | 1 | SUMMARY = "Download, build, install, upgrade, and uninstall Python packages" |
2 | HOMEPAGE = "http://packages.python.org/distribute" | 2 | HOMEPAGE = "http://packages.python.org/setuptools" |
3 | SECTION = "devel/python" | 3 | SECTION = "devel/python" |
4 | LICENSE = "PSF" | 4 | LICENSE = "PSF" |
5 | LIC_FILES_CHKSUM = "file://setup.py;beginline=234;endline=234;md5=26f6b02022b737126d3c88838782dddb" | 5 | LIC_FILES_CHKSUM = "file://setup.py;beginline=78;endline=78;md5=8a314270dd7a8dbca741775415f1716e" |
6 | 6 | ||
7 | SRCNAME = "distribute" | 7 | SRCNAME = "setuptools" |
8 | PR = "ml5" | ||
9 | DEPENDS += "python3" | 8 | DEPENDS += "python3" |
10 | DEPENDS_class-native += "python3-native" | 9 | DEPENDS_class-native += "python3-native" |
11 | 10 | ||
12 | SRC_URI = " \ | 11 | SRC_URI = " \ |
13 | http://pypi.python.org/packages/source/d/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ | 12 | http://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ |
14 | " | 13 | " |
15 | SRC_URI[md5sum] = "acb7a2da81e3612bfb1608abe4f0e568" | 14 | SRC_URI[md5sum] = "a9028a9794fc7ae02320d32e2d7e12ee" |
16 | SRC_URI[sha256sum] = "8970cd1e148b5d1fea9430584aea66c45ea22d80e0933393ec49ebc388f718df" | 15 | SRC_URI[sha256sum] = "381e78471fb0eff89c4b1a219e8739f48dd87c76ad2d3a790010ca3a62ee29a4" |
17 | 16 | ||
18 | S = "${WORKDIR}/${SRCNAME}-${PV}" | 17 | S = "${WORKDIR}/${SRCNAME}-${PV}" |
19 | 18 | ||
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 | 19 | inherit distutils3 |
27 | 20 | ||
28 | DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${libdir}/${PYTHON_DIR}/site-packages" | 21 | DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${libdir}/${PYTHON_DIR}/site-packages" |
@@ -37,15 +30,26 @@ do_install_append() { | |||
37 | rm ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth | 30 | rm ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth |
38 | mv ${D}${bindir}/easy_install ${D}${bindir}/easy3_install | 31 | mv ${D}${bindir}/easy_install ${D}${bindir}/easy3_install |
39 | echo "./${SRCNAME}-${PV}-py${PYTHON_BASEVERSION}.egg" > ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth | 32 | 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 | } | 33 | } |
43 | 34 | ||
44 | RDEPENDS_${PN} = "\ | 35 | RDEPENDS_${PN} = "\ |
45 | python3-distutils \ | 36 | python3-distutils \ |
46 | python3-compression \ | 37 | python3-compression \ |
47 | " | 38 | " |
48 | 39 | RDEPENDS_${PN}_class-target = "\ | |
49 | RPROVIDES_${PN} += "python3-setuptools" | 40 | python3-ctypes \ |
50 | 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 | " | ||
51 | BBCLASSEXTEND = "native" | 55 | BBCLASSEXTEND = "native" |