mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
This upgrade fixes most of the ptest errors that have been seen with pylint, which were caused by a tomlkit issue. Changelog (see also https://github.com/pylint-dev/pylint/releases/tag/v2.17.4): False Positives Fixed - Fix a false positive for bad-dunder-name when there is a user-defined __index__ method. Closes #8613 Other Bug Fixes - pyreverse: added escaping of vertical bar character in annotation labels produced by DOT printer to ensure it is not treated as field separator of record-based nodes. Closes #8603 - Fixed a crash when generating a configuration file: tomlkit.exceptions.TOMLKitError: Can't add a table to a dotted key caused by tomlkit v0.11.8. Closes #8632 Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
51 lines
1.6 KiB
BlitzBasic
51 lines
1.6 KiB
BlitzBasic
SUMMARY="Pylint is a Python source code analyzer"
|
|
HOMEPAGE= "http://www.pylint.org/"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=c107cf754550e65755c42985a5d4e9c9"
|
|
|
|
SRC_URI += " \
|
|
git://github.com/pylint-dev/pylint;branch=main;protocol=https \
|
|
file://run-ptest \
|
|
file://0001-pyproject.toml-Remove-hard-coded-dependencies.patch \
|
|
"
|
|
SRCREV ?= "fc34a4b6abe56f3ac07ca15d846b1c1955545f85"
|
|
|
|
inherit python_setuptools_build_meta ptest
|
|
|
|
RDEPENDS:${PN} += "${PYTHON_PN}-astroid \
|
|
${PYTHON_PN}-dill \
|
|
${PYTHON_PN}-isort \
|
|
${PYTHON_PN}-mccabe \
|
|
${PYTHON_PN}-numbers \
|
|
${PYTHON_PN}-platformdirs \
|
|
${PYTHON_PN}-shell \
|
|
${PYTHON_PN}-json \
|
|
${PYTHON_PN}-pkgutil \
|
|
${PYTHON_PN}-difflib \
|
|
${PYTHON_PN}-netserver \
|
|
${PYTHON_PN}-tomlkit \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
${PYTHON_PN}-core \
|
|
${PYTHON_PN}-git \
|
|
${PYTHON_PN}-py \
|
|
${PYTHON_PN}-pytest \
|
|
${PYTHON_PN}-pytest-benchmark \
|
|
${PYTHON_PN}-pytest-runner \
|
|
${PYTHON_PN}-pytest-timeout \
|
|
${PYTHON_PN}-pytest-xdist \
|
|
${PYTHON_PN}-requests \
|
|
${PYTHON_PN}-statistics \
|
|
${PYTHON_PN}-tomllib \
|
|
${PYTHON_PN}-typing-extensions \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
sed -i 's#/usr/bin/python$#/usr/bin/python3#g' ${D}${PTEST_PATH}/tests/data/ascript
|
|
}
|