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>
34 lines
671 B
BlitzBasic
34 lines
671 B
BlitzBasic
require python-setuptools.inc
|
|
|
|
DEPENDS += "python3"
|
|
DEPENDS_class-native += "python3-native"
|
|
DEPENDS_class-nativesdk += "nativesdk-python3"
|
|
|
|
inherit setuptools3
|
|
|
|
do_install_append() {
|
|
mv ${D}${bindir}/easy_install ${D}${bindir}/easy3_install
|
|
}
|
|
|
|
RDEPENDS_${PN}_class-native = "\
|
|
python3-distutils \
|
|
python3-compression \
|
|
"
|
|
RDEPENDS_${PN} = "\
|
|
python3-ctypes \
|
|
python3-distutils \
|
|
python3-email \
|
|
python3-importlib \
|
|
python3-numbers \
|
|
python3-compression \
|
|
python3-shell \
|
|
python3-subprocess \
|
|
python3-textutils \
|
|
python3-pkgutil \
|
|
python3-threading \
|
|
python3-misc \
|
|
python3-unittest \
|
|
python3-xml \
|
|
"
|
|
BBCLASSEXTEND = "native nativesdk"
|