mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00: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: 147d9260eb79edfdf7a91fb8bc3d915f141dc685) Signed-off-by: Jose Lamego <jose.a.lamego@linux.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] = "b9e6c049617bac0f9e908a41ab4a29ac"
|
|
SRC_URI[sha256sum] = "b0fe5d432d922df595e918577c51458d63f245115d141b309ac32ecfca329df5"
|
|
|
|
UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/setuptools"
|
|
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
do_install_prepend() {
|
|
install -d ${D}${PYTHON_SITEPACKAGES_DIR}
|
|
}
|