From a246e26a4686863290998a1be2d4989cbe996ba9 Mon Sep 17 00:00:00 2001 From: Mingli Yu Date: Wed, 27 Mar 2024 15:16:36 +0800 Subject: python3-pyyaml-include: Upgrade 1.3.2 -> 1.4.1 * Upgrade to 1.4.1 to make it work with setuptools 59.x as it doesn't support pep 621 [1], so remove pyproject.toml and add setup.cfg back [2]. * Add python3-toml to RDEPENDS to fix below error: self = def __call__(self): if sys.version_info >= (3, 11): with open(self._path, "rb") as fp: return tomllib.load(fp) else: try: import toml except ImportError as err: # pragma: no cover > raise ImportError(f'Un-supported file "{self._path}".\n`pip install toml` should solve the problem.\n\n{err}') E ImportError: Un-supported file "tests/data/include.d/1.toml". E `pip install toml` should solve the problem. E E No module named 'toml' ../../python3.10/site-packages/yamlinclude/readers.py:69: ImportError [1] https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html [2] https://github.com/tanbro/pyyaml-include/issues/43 Signed-off-by: Mingli Yu Signed-off-by: Armin Kuster --- .../python/python3-pyyaml-include_1.4.1.bb | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-pyyaml-include_1.4.1.bb (limited to 'meta-python/recipes-devtools/python/python3-pyyaml-include_1.4.1.bb') diff --git a/meta-python/recipes-devtools/python/python3-pyyaml-include_1.4.1.bb b/meta-python/recipes-devtools/python/python3-pyyaml-include_1.4.1.bb new file mode 100644 index 0000000000..6768e959f4 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pyyaml-include_1.4.1.bb @@ -0,0 +1,29 @@ +SUMMARY = "Extending PyYAML with a custom constructor for including YAML files within YAML files" +HOMEPAGE = "https://github.com/tanbro/pyyaml-include" +LICENSE = "GPL-3.0-only" +LIC_FILES_CHKSUM = "file://LICENSE;md5=d32239bcb673463ab874e80d47fae504" +SRCREV = "0f86bf16343d2ad52b53b793e0b35bb7ed7cd85b" + +SRC_URI = " \ + git://github.com/tanbro/pyyaml-include;protocol=https;branch=1.x \ + file://run-ptest \ + " + +S = "${WORKDIR}/git" + +inherit python_setuptools_build_meta ptest + +do_install_ptest() { + install -d ${D}${PTEST_PATH}/tests + cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ +} + +RDEPENDS:${PN} += " \ + python3-pyyaml \ + python3-toml \ +" +RDEPENDS:${PN}-ptest += " \ + python3-pytest \ + python3-unittest-automake-output \ +" + -- cgit v1.2.3-54-g00ecf