mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: ========== -Fix type of UnicodeDecodeError.object inferred as str instead of bytes. -Fix no-member false positives for args and kwargs on ParamSpec under Python 3.12. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
38 lines
973 B
BlitzBasic
38 lines
973 B
BlitzBasic
SUMMARY = "An abstract syntax tree for Python with inference support."
|
|
HOMEPAGE = "https://pypi.python.org/pypi/astroid"
|
|
SECTION = "devel/python"
|
|
LICENSE = "LGPL-2.1-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1"
|
|
|
|
SRC_URI[sha256sum] = "4148645659b08b70d72460ed1921158027a9e53ae8b7234149b1400eddacbb93"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
DEPENDS += "\
|
|
${PYTHON_PN}-pytest-runner-native \
|
|
${PYTHON_PN}-wheel-native \
|
|
"
|
|
|
|
PACKAGES =+ "${PN}-tests"
|
|
|
|
FILES:${PN}-tests += " \
|
|
${PYTHON_SITEPACKAGES_DIR}/astroid/test* \
|
|
${PYTHON_SITEPACKAGES_DIR}/astroid/__pycache__/test* \
|
|
"
|
|
|
|
RDEPENDS:${PN}:class-target += "\
|
|
${PYTHON_PN}-lazy-object-proxy \
|
|
${PYTHON_PN}-logging \
|
|
${PYTHON_PN}-six \
|
|
${PYTHON_PN}-wrapt \
|
|
${PYTHON_PN}-setuptools \
|
|
${PYTHON_PN}-typing-extensions \
|
|
"
|
|
|
|
RDEPENDS:${PN}-tests:class-target += "\
|
|
${PYTHON_PN}-unittest \
|
|
${PYTHON_PN}-xml \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|