summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorTim Orling <timothy.t.orling@linux.intel.com>2017-11-18 15:57:29 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-12-13 14:00:52 +0000
commit36086ded7e72e3c249f3e221acbe7c0c3d3543d9 (patch)
treeae50c1a3921ad0a7bbc9fa6c60262d64a40624dd /meta/recipes-devtools
parent8aa71adf4932b4a7e62c1d66c3de25faa3db23c2 (diff)
downloadpoky-36086ded7e72e3c249f3e221acbe7c0c3d3543d9.tar.gz
python-setuptools: upgrade to 38.2.4; use pypi.bbclass; improvements
* Simplify python- and python3-setuptools with pypi.bbclass * inherit setuptools rather than distutils * Consolidate common settings in python-setuptools.inc - use PYTHON_PN variable to eliminate duplication - python3-setuptools had missing RDEPENDS (e.g., plistlib) - installer no longer creates setuptools.pth, drop fixes (From OE-Core rev: 624a6f209248a0c8e0759d43f246c903a8db6a71) Signed-off-by: Tim Orling <timothy.t.orling@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')
-rw-r--r--meta/recipes-devtools/python/python-setuptools.inc42
-rw-r--r--meta/recipes-devtools/python/python-setuptools_36.5.0.bb38
-rw-r--r--meta/recipes-devtools/python/python-setuptools_38.2.4.bb9
-rw-r--r--meta/recipes-devtools/python/python3-setuptools_36.5.0.bb38
-rw-r--r--meta/recipes-devtools/python/python3-setuptools_38.2.4.bb6
5 files changed, 51 insertions, 82 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"
diff --git a/meta/recipes-devtools/python/python-setuptools_36.5.0.bb b/meta/recipes-devtools/python/python-setuptools_36.5.0.bb
deleted file mode 100644
index 526474c7ea..0000000000
--- a/meta/recipes-devtools/python/python-setuptools_36.5.0.bb
+++ /dev/null
@@ -1,38 +0,0 @@
1require python-setuptools.inc
2
3PROVIDES = "python-distribute"
4
5DEPENDS += "python"
6DEPENDS_class-native += "python-native"
7
8inherit distutils
9
10DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${PYTHON_SITEPACKAGES_DIR}"
11
12RDEPENDS_${PN} = "\
13 python-stringold \
14 python-email \
15 python-shell \
16 python-distutils \
17 python-compression \
18 python-pkgutil \
19 python-plistlib \
20 python-numbers \
21 python-html \
22 python-netserver \
23 python-ctypes \
24 python-subprocess \
25 python-unittest \
26 python-compile \
27"
28
29RDEPENDS_${PN}_class-native = "\
30 python-distutils \
31 python-compression \
32"
33
34RREPLACES_${PN} = "python-distribute"
35RPROVIDES_${PN} = "python-distribute"
36RCONFLICTS_${PN} = "python-distribute"
37
38BBCLASSEXTEND = "native nativesdk"
diff --git a/meta/recipes-devtools/python/python-setuptools_38.2.4.bb b/meta/recipes-devtools/python/python-setuptools_38.2.4.bb
new file mode 100644
index 0000000000..cf9440495b
--- /dev/null
+++ b/meta/recipes-devtools/python/python-setuptools_38.2.4.bb
@@ -0,0 +1,9 @@
1require python-setuptools.inc
2
3PROVIDES = "python-distribute"
4
5inherit setuptools
6
7RREPLACES_${PN} = "python-distribute"
8RPROVIDES_${PN} = "python-distribute"
9RCONFLICTS_${PN} = "python-distribute"
diff --git a/meta/recipes-devtools/python/python3-setuptools_36.5.0.bb b/meta/recipes-devtools/python/python3-setuptools_36.5.0.bb
deleted file mode 100644
index 63f241809e..0000000000
--- a/meta/recipes-devtools/python/python3-setuptools_36.5.0.bb
+++ /dev/null
@@ -1,38 +0,0 @@
1require python-setuptools.inc
2
3DEPENDS += "python3"
4DEPENDS_class-native += "python3-native"
5DEPENDS_class-nativesdk += "nativesdk-python3"
6
7inherit distutils3
8
9DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${PYTHON_SITEPACKAGES_DIR}"
10
11# The installer puts the wrong path in the setuptools.pth file. Correct it.
12do_install_append() {
13 rm ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth
14 mv ${D}${bindir}/easy_install ${D}${bindir}/easy3_install
15 echo "./${SRCNAME}-${PV}-py${PYTHON_BASEVERSION}.egg" > ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth
16}
17
18RDEPENDS_${PN}_class-native = "\
19 python3-distutils \
20 python3-compression \
21"
22RDEPENDS_${PN} = "\
23 python3-ctypes \
24 python3-distutils \
25 python3-email \
26 python3-importlib \
27 python3-numbers \
28 python3-compression \
29 python3-shell \
30 python3-subprocess \
31 python3-textutils \
32 python3-pkgutil \
33 python3-threading \
34 python3-misc \
35 python3-unittest \
36 python3-xml \
37"
38BBCLASSEXTEND = "native nativesdk"
diff --git a/meta/recipes-devtools/python/python3-setuptools_38.2.4.bb b/meta/recipes-devtools/python/python3-setuptools_38.2.4.bb
new file mode 100644
index 0000000000..0dc1ed8622
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-setuptools_38.2.4.bb
@@ -0,0 +1,6 @@
1require python-setuptools.inc
2inherit setuptools3
3
4do_install_append() {
5 mv ${D}${bindir}/easy_install ${D}${bindir}/easy3_install
6}