blob: e9a68789e06566bb8a624af3e5e3aee8bfa8f994 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001SUMMARY = "An abstract syntax tree for Python with inference support."
2HOMEPAGE = "https://pypi.python.org/pypi/astroid"
3SECTION = "devel/python"
4LICENSE = "LGPL-2.1"
5LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
6
Brad Bishop87b3cb82019-11-15 16:35:37 -05007SRC_URI[md5sum] = "5f3d73d82d1753b59bb49a6bc6046dee"
8SRC_URI[sha256sum] = "71ea07f44df9568a75d0f354c49143a4575d90645e9fead6dfb52c26a85ed13a"
Brad Bishopd7bf8c12018-02-25 22:55:05 -05009
10inherit pypi
11
Brad Bishop2d39a062019-10-28 08:33:36 -040012DEPENDS += "${PYTHON_PN}-pytest-runner-native"
13
Brad Bishop316dfdd2018-06-25 12:45:53 -040014PACKAGES =+ "${PN}-tests"
15
16FILES_${PN}-tests += " \
17 ${PYTHON_SITEPACKAGES_DIR}/astroid/test* \
18 ${PYTHON_SITEPACKAGES_DIR}/astroid/__pycache__/test* \
19"
20
Brad Bishopd7bf8c12018-02-25 22:55:05 -050021RDEPENDS_${PN}_class-target += "\
22 ${PYTHON_PN}-distutils \
23 ${PYTHON_PN}-lazy-object-proxy \
Brad Bishop316dfdd2018-06-25 12:45:53 -040024 ${PYTHON_PN}-logging \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025 ${PYTHON_PN}-six \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050026 ${PYTHON_PN}-wrapt \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050027 ${PYTHON_PN}-setuptools \
28"
Brad Bishop316dfdd2018-06-25 12:45:53 -040029
30RDEPENDS_${PN}-tests_class-target += "\
31 ${PYTHON_PN}-unittest \
32 ${PYTHON_PN}-xml \
33"