package/python-yamllint: new package

This host package is needed since u-boot 2024.04 for building ti defconfigs.

This is an requirement for using buildman/binman [1].

[1] https://source.denx.de/u-boot/u-boot/-/blob/v2024.04/tools/buildman/requirements.txt?ref_type=tags#L3

Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Heiko Thiery 2024-04-12 07:53:57 +02:00 committed by Yann E. MORIN
parent 7fa769dae3
commit 2258fc413a
6 changed files with 51 additions and 0 deletions

View File

@ -1437,6 +1437,7 @@ menu "External python modules"
source "package/python-xmljson/Config.in"
source "package/python-xmltodict/Config.in"
source "package/python-xmodem/Config.in"
source "package/python-yamllint/Config.in"
source "package/python-yarl/Config.in"
source "package/python-yatl/Config.in"
source "package/python-zc-lockfile/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_YAMLLINT
bool "python-yamllint"
select BR2_PACKAGE_PYTHON_PATHSPEC # runtime
select BR2_PACKAGE_PYTHON_PYYAML # runtime
help
A linter for YAML files.
https://github.com/adrienverge/yamllint

View File

@ -0,0 +1,3 @@
# Locally computed sha256 checksums
sha256 7a003809f88324fd2c877734f2d575ee7881dd9043360657cc8049c809eba6cd yamllint-1.35.1.tar.gz
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-yamllint
#
################################################################################
PYTHON_YAMLLINT_VERSION = 1.35.1
PYTHON_YAMLLINT_SOURCE = yamllint-$(PYTHON_YAMLLINT_VERSION).tar.gz
PYTHON_YAMLLINT_SITE = https://files.pythonhosted.org/packages/da/06/d8cee5c3dfd550cc0a466ead8b321138198485d1034130ac1393cc49d63e
PYTHON_YAMLLINT_SETUP_TYPE = pep517
PYTHON_YAMLLINT_LICENSE = GPL-3.0
PYTHON_YAMLLINT_LICENSE_FILES = LICENSE
$(eval $(python-package))
$(eval $(host-python-package))

View File

@ -0,0 +1,13 @@
# example form https://yamllint.readthedocs.io/en/stable/development.html
from yamllint import (config, linter)
data = '''---
- &anchor
foo: bar
- *anchor
'''
yaml_config = config.YamlLintConfig("extends: default")
for p in linter.run(data, yaml_config):
print(p.desc, p.line, p.rule)

View File

@ -0,0 +1,11 @@
from tests.package.test_python import TestPythonPackageBase
class TestPythonYamllint(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_YAMLLINT=y
"""
sample_scripts = ["tests/package/sample_python_yamllint.py"]