mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 09:46:38 +01:00
python-setuptools.inc: avoid using += with an over-ride
An over-ride replaces the original value regardless of whether or not it's set up with +=. As replacing the original value seems to be the intention here, drop the += to make it more explicit. Also some minor recipe formatting tweaks. (From OE-Core rev: bda531e65bb6cc9f654c333e2f71283eccd17f27) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
8df7480d1c
commit
30ea610d04
@@ -2,7 +2,6 @@ SUMMARY = "Download, build, install, upgrade, and uninstall Python packages"
|
||||
HOMEPAGE = "https://pypi.python.org/pypi/setuptools"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "MIT"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;beginline=1;endline=19;md5=9a33897f1bca1160d7aad3835152e158"
|
||||
|
||||
PYPI_PACKAGE_EXT = "zip"
|
||||
@@ -13,16 +12,12 @@ SRC_URI[md5sum] = "260630ae1a64bafa39dcc53404d63829"
|
||||
SRC_URI[sha256sum] = "012adb8e25fbfd64c652e99e7bab58799a3aaf05d39ab38561f69190a909015f"
|
||||
|
||||
DEPENDS += "${PYTHON_PN}"
|
||||
DEPENDS_class-native += "${PYTHON_PN}-native"
|
||||
DEPENDS_class-nativesdk += "nativesdk-${PYTHON_PN}"
|
||||
DEPENDS_class-native = "${PYTHON_PN}-native"
|
||||
DEPENDS_class-nativesdk = "nativesdk-${PYTHON_PN}"
|
||||
|
||||
DISTUTILS_INSTALL_ARGS += "--install-lib=${D}${PYTHON_SITEPACKAGES_DIR} \
|
||||
--script-dir=${bindir}"
|
||||
|
||||
RDEPENDS_${PN}_class-native = "\
|
||||
${PYTHON_PN}-distutils \
|
||||
${PYTHON_PN}-compression \
|
||||
"
|
||||
RDEPENDS_${PN} = "\
|
||||
${PYTHON_PN}-compile \
|
||||
${PYTHON_PN}-compression \
|
||||
@@ -41,6 +36,11 @@ RDEPENDS_${PN} = "\
|
||||
${PYTHON_PN}-xml \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN}_class-native = "\
|
||||
${PYTHON_PN}-compression \
|
||||
${PYTHON_PN}-distutils \
|
||||
"
|
||||
|
||||
do_install_prepend() {
|
||||
install -d ${D}${PYTHON_SITEPACKAGES_DIR}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user