diff options
author | Derek Straka <derek@asterius.io> | 2020-04-05 14:39:19 -0400 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-04-05 14:27:45 -0700 |
commit | 174fd7e019843d5bb3e74d38b97a31fdeac98353 (patch) | |
tree | 350854873ab088559718de44d42f0b0ac0b24466 /meta-python/recipes-devtools/python/python-pylint.inc | |
parent | a20a48b1adfc3480b756e7de19f5ae2b6e233206 (diff) | |
download | meta-openembedded-174fd7e019843d5bb3e74d38b97a31fdeac98353.tar.gz |
python-pylint: consolidate inc and bb files into a single bb file
Signed-off-by: Derek Straka <derek@asterius.io>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-pylint.inc')
-rw-r--r-- | meta-python/recipes-devtools/python/python-pylint.inc | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta-python/recipes-devtools/python/python-pylint.inc b/meta-python/recipes-devtools/python/python-pylint.inc deleted file mode 100644 index ba85b98878..0000000000 --- a/meta-python/recipes-devtools/python/python-pylint.inc +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | SUMMARY="Pylint is a Python source code analyzer" | ||
2 | HOMEPAGE= "http://www.pylint.org/" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=4325afd396febcb659c36b49533135d4" | ||
5 | |||
6 | SRC_URI[md5sum] = "2eb5f3cb8fe567eaf5420dd415012202" | ||
7 | SRC_URI[sha256sum] = "c77311859e0c2d7932095f30d2b1bfdc4b6fe111f534450ba727a52eae330ef2" | ||
8 | |||
9 | inherit pypi | ||
10 | |||
11 | DEPENDS += "${PYTHON_PN}-pytest-runner-native" | ||
12 | |||
13 | do_install_append(){ | ||
14 | rm ${D}${bindir}/pylint | ||
15 | cat >> ${D}${bindir}/pylint <<EOF | ||
16 | #!/usr/bin/env ${PYTHON_PN} | ||
17 | from pylint import run_pylint | ||
18 | run_pylint() | ||
19 | EOF | ||
20 | chmod 755 ${D}${bindir}/pylint | ||
21 | sed -i -e 's:^#!/usr/bin/python:#!/usr/bin/env\ ${PYTHON_PN}:g' ${D}/${PYTHON_SITEPACKAGES_DIR}/pylint/test/data/ascript | ||
22 | } | ||
23 | |||
24 | PACKAGES =+ "${PN}-tests" | ||
25 | FILES_${PN}-tests+= " \ | ||
26 | ${PYTHON_SITEPACKAGES_DIR}/pylint/test/ \ | ||
27 | ${PYTHON_SITEPACKAGES_DIR}/pylint/testutils.py \ | ||
28 | " | ||
29 | |||
30 | RDEPENDS_${PN} += "${PYTHON_PN}-astroid \ | ||
31 | ${PYTHON_PN}-isort \ | ||
32 | ${PYTHON_PN}-numbers \ | ||
33 | ${PYTHON_PN}-shell \ | ||
34 | ${PYTHON_PN}-json \ | ||
35 | ${PYTHON_PN}-pkgutil \ | ||
36 | ${PYTHON_PN}-difflib \ | ||
37 | ${PYTHON_PN}-netserver \ | ||
38 | " | ||