blob: 171d320152ef32931958aab868cdeee6d52c3a71 [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 Bishop2d39a062019-10-28 08:33:36 -04007SRC_URI[md5sum] = "b2cd5c0383ff33c1410e737c2607aa7a"
8SRC_URI[sha256sum] = "09a3fba616519311f1af8a461f804b68f0370e100c9264a035aa7846d7852e33"
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"