mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 00:38:45 +01:00
Both python-scons and python-scons-native need to be upgraded to latest upstream version. LIC_FILES_CHKSUM changed due to updated year in date, but rest of file remain the same. Following dependencies were added to enable appropriate package usage: python-shell, python-pprint and python-importlib. A patch was taken from upstream to support python2 print statements in SConscripts. This should be included in next version. These changes were tested in qemux86 with core-image-minimal. (From OE-Core rev: 4fe7774f08ba46bd1d68e56eff3f4912db107c25) 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>
28 lines
778 B
BlitzBasic
28 lines
778 B
BlitzBasic
SUMMARY = "Software Construction tool (make/autotools replacement)"
|
|
SECTION = "devel/python"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=46ddf66004e5be5566367cb525a66fc6"
|
|
SRCNAME = "scons"
|
|
|
|
SRC_URI = "https://files.pythonhosted.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
|
|
file://SConscript-Support-python2-print-statements.patch"
|
|
|
|
SRC_URI[md5sum] = "7ca558edaaa1942fe38f3105ca2400fb"
|
|
SRC_URI[sha256sum] = "aa5afb33c2bbd33c311e47e912412195739e9ffb2e933534a31f85fba8f3470e"
|
|
|
|
UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/SCons/"
|
|
|
|
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
|
|
|
inherit setuptools
|
|
|
|
RDEPENDS_${PN} = "\
|
|
python-fcntl \
|
|
python-io \
|
|
python-json \
|
|
python-subprocess \
|
|
python-shell \
|
|
python-pprint \
|
|
python-importlib \
|
|
"
|