diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-05-12 17:03:24 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-05-13 10:29:21 +0100 |
| commit | 2755265b8cc229dd8f9d264e852b88811406af5b (patch) | |
| tree | f8e69515950c6de4df20b2187e044fe30116b00c /meta/recipes-devtools/python/python3-mako_1.3.10.bb | |
| parent | 8593897a29f3d3019fa7ff6d59157b378c5d8b8a (diff) | |
| download | poky-2755265b8cc229dd8f9d264e852b88811406af5b.tar.gz | |
python3-mako: upgrade 1.3.9 -> 1.3.10
Changelog:
- Fix undefined variable errors when strict_undefined=True when using a
nested list comprehension.
(From OE-Core rev: 40a60f0ca45116604430f8b0d1ee4f70e1f9843e)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-mako_1.3.10.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-mako_1.3.10.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-mako_1.3.10.bb b/meta/recipes-devtools/python/python3-mako_1.3.10.bb new file mode 100644 index 0000000000..4facce9233 --- /dev/null +++ b/meta/recipes-devtools/python/python3-mako_1.3.10.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | SUMMARY = "Templating library for Python" | ||
| 2 | HOMEPAGE = "http://www.makotemplates.org/" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=73026b50800163bd3c75cfdc121d9eb5" | ||
| 6 | |||
| 7 | PYPI_PACKAGE = "mako" | ||
| 8 | |||
| 9 | inherit pypi python_setuptools_build_meta ptest-python-pytest | ||
| 10 | |||
| 11 | |||
| 12 | |||
| 13 | SRC_URI[sha256sum] = "99579a6f39583fa7e5630a28c3c1f440e4e97a414b80372649c0ce338da2ea28" | ||
| 14 | |||
| 15 | RDEPENDS:${PN} = "python3-html \ | ||
| 16 | python3-markupsafe \ | ||
| 17 | python3-misc \ | ||
| 18 | python3-netclient \ | ||
| 19 | python3-pygments \ | ||
| 20 | python3-threading \ | ||
| 21 | " | ||
| 22 | |||
| 23 | PTEST_PYTEST_DIR = "test" | ||
| 24 | |||
| 25 | do_install_ptest:append() { | ||
| 26 | install -m 0644 ${S}/setup.cfg ${D}${PTEST_PATH}/ | ||
| 27 | } | ||
| 28 | |||
| 29 | BBCLASSEXTEND = "native nativesdk" | ||
