mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Fix file-rdeps error about "#!/usr/bin/python" in python3-pylint by inheriting python*-dir so we can change to "#!/usr/bin/env ${PYTHON_PN}" in ${PYTHON_SITEPACKAGES_DIR}. Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
SUMMARY="Pylint is a Python source code analyzer"
|
|
HOMEPAGE= "http://www.pylint.org/"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4325afd396febcb659c36b49533135d4"
|
|
|
|
SRC_URI[md5sum] = "27ee752cdcfacb05bf4940947e6b35c6"
|
|
SRC_URI[sha256sum] = "ea6afb93a9ed810cf52ff3838eb3a15e2bf6a81b80de0eaede1ce442caa5ca69"
|
|
|
|
inherit pypi
|
|
|
|
DEPENDS += "${PYTHON_PN}-pytest-runner-native"
|
|
|
|
RDEPENDS_${PN} += "${PYTHON_PN}-astroid \
|
|
${PYTHON_PN}-isort \
|
|
${PYTHON_PN}-numbers \
|
|
${PYTHON_PN}-shell \
|
|
${PYTHON_PN}-json \
|
|
${PYTHON_PN}-pkgutil \
|
|
${PYTHON_PN}-difflib \
|
|
${PYTHON_PN}-netserver \
|
|
"
|
|
|
|
do_install_append(){
|
|
rm ${D}${bindir}/pylint
|
|
cat >> ${D}${bindir}/pylint <<EOF
|
|
#!/usr/bin/env ${PYTHON_PN}
|
|
from pylint import run_pylint
|
|
run_pylint()
|
|
EOF
|
|
chmod 755 ${D}${bindir}/pylint
|
|
sed -i -e 's:^#!/usr/bin/python:#!/usr/bin/env\ ${PYTHON_PN}:g' ${D}/${PYTHON_SITEPACKAGES_DIR}/pylint/test/data/ascript
|
|
}
|