Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1 | SUMMARY = "An abstract syntax tree for Python with inference support." |
| 2 | HOMEPAGE = "https://pypi.python.org/pypi/astroid" |
| 3 | SECTION = "devel/python" |
| 4 | LICENSE = "LGPL-2.1" |
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
| 6 | |
Brad Bishop | 87b3cb8 | 2019-11-15 16:35:37 -0500 | [diff] [blame^] | 7 | SRC_URI[md5sum] = "5f3d73d82d1753b59bb49a6bc6046dee" |
| 8 | SRC_URI[sha256sum] = "71ea07f44df9568a75d0f354c49143a4575d90645e9fead6dfb52c26a85ed13a" |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 9 | |
| 10 | inherit pypi |
| 11 | |
Brad Bishop | 2d39a06 | 2019-10-28 08:33:36 -0400 | [diff] [blame] | 12 | DEPENDS += "${PYTHON_PN}-pytest-runner-native" |
| 13 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 14 | PACKAGES =+ "${PN}-tests" |
| 15 | |
| 16 | FILES_${PN}-tests += " \ |
| 17 | ${PYTHON_SITEPACKAGES_DIR}/astroid/test* \ |
| 18 | ${PYTHON_SITEPACKAGES_DIR}/astroid/__pycache__/test* \ |
| 19 | " |
| 20 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 21 | RDEPENDS_${PN}_class-target += "\ |
| 22 | ${PYTHON_PN}-distutils \ |
| 23 | ${PYTHON_PN}-lazy-object-proxy \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 24 | ${PYTHON_PN}-logging \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 25 | ${PYTHON_PN}-six \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 26 | ${PYTHON_PN}-wrapt \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 27 | ${PYTHON_PN}-setuptools \ |
| 28 | " |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 29 | |
| 30 | RDEPENDS_${PN}-tests_class-target += "\ |
| 31 | ${PYTHON_PN}-unittest \ |
| 32 | ${PYTHON_PN}-xml \ |
| 33 | " |