blob: fae0f13cb8c8cfe5e925e1d9b2bd81b274779978 [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 Bishop1a4b7ee2018-12-16 17:11:34 -08007SRC_URI[md5sum] = "2dd01ef0d5b5f0fc754c1ba40137b61c"
8SRC_URI[sha256sum] = "fc9b582dba0366e63540982c3944a9230cbc6f303641c51483fa547dcc22393a"
Brad Bishopd7bf8c12018-02-25 22:55:05 -05009
10inherit pypi
11
Brad Bishop316dfdd2018-06-25 12:45:53 -040012PACKAGES =+ "${PN}-tests"
13
14FILES_${PN}-tests += " \
15 ${PYTHON_SITEPACKAGES_DIR}/astroid/test* \
16 ${PYTHON_SITEPACKAGES_DIR}/astroid/__pycache__/test* \
17"
18
Brad Bishopd7bf8c12018-02-25 22:55:05 -050019RDEPENDS_${PN}_class-target += "\
20 ${PYTHON_PN}-distutils \
21 ${PYTHON_PN}-lazy-object-proxy \
Brad Bishop316dfdd2018-06-25 12:45:53 -040022 ${PYTHON_PN}-logging \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050023 ${PYTHON_PN}-six \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050024 ${PYTHON_PN}-wrapt \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025 ${PYTHON_PN}-setuptools \
26"
Brad Bishop316dfdd2018-06-25 12:45:53 -040027
28RDEPENDS_${PN}-tests_class-target += "\
29 ${PYTHON_PN}-unittest \
30 ${PYTHON_PN}-xml \
31"