mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 08:18:43 +01:00
Use python-distribute-native in packagegroup-toolset-native
Also fixes warnings like
WARNING: The recipe python-setuptools is trying to install files into a
shared area when those files already exist. Those files and their
manifest location are:
/srv/ssd/sgw/builds/world/tmp/sysroots/qemux86-64/usr/lib/python2.7/site-packages/setuptools.pth
Matched in manifest-qemux86-64-python-distribute
/srv/ssd/sgw/builds/world/tmp/sysroots/qemux86-64/usr/lib/python2.7/site-packages/site.pyc
Matched in manifest-qemux86-64-python-distribute
/srv/ssd/sgw/builds/world/tmp/sysroots/qemux86-64/usr/lib/python2.7/site-packages/site.py
Matched in manifest-qemux86-64-python-distribute
Conflicts:
meta/recipes-devtools/python/python-setuptools_1.4.bb
(From OE-Core rev: ddb0c70a7d4d51a1f404c194a562325137222146)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
50 lines
1.4 KiB
BlitzBasic
50 lines
1.4 KiB
BlitzBasic
DESCRIPTION = "Download, build, install, upgrade, and uninstall Python packages"
|
|
HOMEPAGE = "http://packages.python.org/distribute"
|
|
SECTION = "devel/python"
|
|
LICENSE = "PSF"
|
|
LIC_FILES_CHKSUM = "file://setup.py;beginline=234;endline=234;md5=26f6b02022b737126d3c88838782dddb"
|
|
|
|
SRCNAME = "distribute"
|
|
PR = "ml5"
|
|
DEPENDS += "python3"
|
|
DEPENDS_virtclass-native += "python3-native"
|
|
|
|
SRC_URI = " \
|
|
http://pypi.python.org/packages/source/d/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
|
|
"
|
|
SRC_URI[md5sum] = "acb7a2da81e3612bfb1608abe4f0e568"
|
|
SRC_URI[sha256sum] = "8970cd1e148b5d1fea9430584aea66c45ea22d80e0933393ec49ebc388f718df"
|
|
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
# http://python-distribute.org/distribute_setup.py
|
|
|
|
# force the selection of python3
|
|
#PYTHON_BASEVERSION = "3.3"
|
|
#PYTHON_MAJMIN = "3.3"
|
|
|
|
inherit distutils3
|
|
|
|
DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${libdir}/${PYTHON_DIR}/site-packages"
|
|
|
|
do_install_prepend() {
|
|
install -d ${D}/${libdir}/${PYTHON_DIR}/site-packages
|
|
}
|
|
#
|
|
# The installer puts the wrong path in the setuptools.pth file. Correct it.
|
|
#
|
|
do_install_append() {
|
|
rm ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth
|
|
mv ${D}${bindir}/easy_install ${D}${bindir}/easy3_install
|
|
echo "./${SRCNAME}-${PV}-py${PYTHON_BASEVERSION}.egg" > ${D}${PYTHON_SITEPACKAGES_DIR}/setuptools.pth
|
|
}
|
|
|
|
RDEPENDS_${PN} = "\
|
|
python3-distutils \
|
|
python3-compression \
|
|
"
|
|
|
|
RPROVIDES_${PN} += "python3-setuptools"
|
|
|
|
BBCLASSEXTEND = "native"
|