mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-27 09:41:06 -09:00
Add optional c extension for python-ruamel-yaml which can speed up yaml loading/parsing. Extend the ruamel-yaml runtime test to check if the c extension works correctly. Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 lines
624 B
Makefile
15 lines
624 B
Makefile
################################################################################
|
|
#
|
|
# python-ruamel-yaml-clib
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_RUAMEL_YAML_CLIB_VERSION = 0.2.8
|
|
PYTHON_RUAMEL_YAML_CLIB_SOURCE = ruamel.yaml.clib-$(PYTHON_RUAMEL_YAML_CLIB_VERSION).tar.gz
|
|
PYTHON_RUAMEL_YAML_CLIB_SITE = https://files.pythonhosted.org/packages/46/ab/bab9eb1566cd16f060b54055dd39cf6a34bfa0240c53a7218c43e974295b
|
|
PYTHON_RUAMEL_YAML_CLIB_SETUP_TYPE = setuptools
|
|
PYTHON_RUAMEL_YAML_CLIB_LICENSE = MIT
|
|
PYTHON_RUAMEL_YAML_CLIB_LICENSE_FILES = LICENSE
|
|
|
|
$(eval $(python-package))
|