diff options
author | wangmy <wangmy@fujitsu.com> | 2021-11-22 22:58:33 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-11-23 10:53:15 +0000 |
commit | 0e7d1889aa2c732d92958ff64e8be3b6b6948ccc (patch) | |
tree | 4f9582b02953c3e13843c380ad6eab854265032f /meta/recipes-devtools/python/python3-mako_1.1.6.bb | |
parent | b781b1f2404e09f816f4708a85dd333bad4ccf6e (diff) | |
download | poky-0e7d1889aa2c732d92958ff64e8be3b6b6948ccc.tar.gz |
python3-mako: upgrade 1.1.5 -> 1.1.6
Fixed issue where control statements on multi lines with a backslash would
not parse correctly if the template itself contained CR/LF pairs as on
Windows.
(From OE-Core rev: 2fa42b223a9bdafd52a7feb335001ef0b5713af8)
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.1.6.bb')
-rw-r--r-- | meta/recipes-devtools/python/python3-mako_1.1.6.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-mako_1.1.6.bb b/meta/recipes-devtools/python/python3-mako_1.1.6.bb new file mode 100644 index 0000000000..ec8c9cc12a --- /dev/null +++ b/meta/recipes-devtools/python/python3-mako_1.1.6.bb | |||
@@ -0,0 +1,18 @@ | |||
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=943eb67718222db21d44a4ef1836675f" | ||
6 | |||
7 | PYPI_PACKAGE = "Mako" | ||
8 | |||
9 | inherit pypi setuptools3 | ||
10 | |||
11 | SRC_URI[sha256sum] = "4e9e345a41924a954251b95b4b28e14a301145b544901332e658907a7464b6b2" | ||
12 | |||
13 | RDEPENDS:${PN} = "${PYTHON_PN}-html \ | ||
14 | ${PYTHON_PN}-netclient \ | ||
15 | ${PYTHON_PN}-threading \ | ||
16 | " | ||
17 | |||
18 | BBCLASSEXTEND = "native nativesdk" | ||