mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 08:18:43 +01:00
Both python-setuptools and python3-setuptools must be updated to latest stable release. These changes were tested on qemu with core-image-minimal (From OE-Core rev: 5b784c37f1be769a2abcc5bef5b03eb3b349138b) Signed-off-by: Jose Lamego <jose.a.lamego@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
699 B
PHP
22 lines
699 B
PHP
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"
|
|
|
|
SRCNAME = "setuptools"
|
|
|
|
SRC_URI = "https://files.pythonhosted.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.zip"
|
|
|
|
SRC_URI[md5sum] = "704f500dd55f4bd0be905444f3ba892c"
|
|
SRC_URI[sha256sum] = "ce2007c1cea3359870b80657d634253a0765b0c7dc5a988d77ba803fc86f2c64"
|
|
|
|
UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/setuptools"
|
|
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
do_install_prepend() {
|
|
install -d ${D}${PYTHON_SITEPACKAGES_DIR}
|
|
}
|