mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
* distutils[3].bbclass was not including pkg_resources module * Drop uneeded DISTUTILS_INSTALL_ARGS as setuptools[3].bbclass provides it Fixes [YOCTO #12148] (From OE-Core rev: 4e09525c73348c2b47b07654ac31ffc6cbd3d5fe) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
37 lines
671 B
BlitzBasic
37 lines
671 B
BlitzBasic
require python-setuptools.inc
|
|
|
|
PROVIDES = "python-distribute"
|
|
|
|
DEPENDS += "python"
|
|
DEPENDS_class-native += "python-native"
|
|
|
|
inherit setuptools
|
|
|
|
RDEPENDS_${PN} = "\
|
|
python-stringold \
|
|
python-email \
|
|
python-shell \
|
|
python-distutils \
|
|
python-compression \
|
|
python-pkgutil \
|
|
python-plistlib \
|
|
python-numbers \
|
|
python-html \
|
|
python-netserver \
|
|
python-ctypes \
|
|
python-subprocess \
|
|
python-unittest \
|
|
python-compile \
|
|
"
|
|
|
|
RDEPENDS_${PN}_class-native = "\
|
|
python-distutils \
|
|
python-compression \
|
|
"
|
|
|
|
RREPLACES_${PN} = "python-distribute"
|
|
RPROVIDES_${PN} = "python-distribute"
|
|
RCONFLICTS_${PN} = "python-distribute"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|