diff options
| author | Trevor Gamblin <tgamblin@baylibre.com> | 2024-10-22 15:46:03 -0400 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-10-24 15:18:54 +0100 |
| commit | 816e7d3550dc7ac5bc14810a0ffe773d7985ca3d (patch) | |
| tree | 58224d64eb6d0c7c6ee4cf78c6038e87f4ec8ca1 /meta/recipes-devtools/python/python3-mako_1.3.6.bb | |
| parent | af0cffb9cc96b7d6245a9429fa3688754c34e07e (diff) | |
| download | poky-816e7d3550dc7ac5bc14810a0ffe773d7985ca3d.tar.gz | |
python3-mako: upgrade 1.3.5 -> 1.3.6
Update PYPI_PACKAGE to lowercase since that's what the upstream tarball
now uses.
ptest results:
|============================================================================
|Testsuite summary
|# TOTAL: 500
|# PASS: 447
|# SKIP: 53
|# XFAIL: 0
|# FAIL: 0
|# XPASS: 0
|# ERROR: 0
|DURATION: 2
|END: /usr/lib/python3-mako/ptest
|2024-10-22T17:30
|STOP: ptest-runner
|TOTAL: 1 FAIL: 0
Changelog (https://docs.makotemplates.org/en/latest/changelog.html):
- Fixed long standing bug where the sequence <& would be
misinterpreted by the lexer. It’s not clear why the ampersand
character was part of the characters being consumed here and it may
have been an inadvertent bit of code from one of Mako’s predecessor
languages.
References: #412
(From OE-Core rev: 3871ceb5927d4540e0a109d47d5a08a12a0d48a5)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-mako_1.3.6.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-mako_1.3.6.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-mako_1.3.6.bb b/meta/recipes-devtools/python/python3-mako_1.3.6.bb new file mode 100644 index 0000000000..27e2082dc0 --- /dev/null +++ b/meta/recipes-devtools/python/python3-mako_1.3.6.bb | |||
| @@ -0,0 +1,36 @@ | |||
| 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=d0995d6f7ba3f186a03118f244e88f57" | ||
| 6 | |||
| 7 | PYPI_PACKAGE = "mako" | ||
| 8 | |||
| 9 | inherit pypi python_setuptools_build_meta ptest | ||
| 10 | |||
| 11 | SRC_URI:append = " \ | ||
| 12 | file://run-ptest \ | ||
| 13 | " | ||
| 14 | |||
| 15 | SRC_URI[sha256sum] = "9ec3a1583713479fae654f83ed9fa8c9a4c16b7bb0daba0e6bbebff50c0d983d" | ||
| 16 | |||
| 17 | RDEPENDS:${PN} = "python3-html \ | ||
| 18 | python3-markupsafe \ | ||
| 19 | python3-misc \ | ||
| 20 | python3-netclient \ | ||
| 21 | python3-pygments \ | ||
| 22 | python3-threading \ | ||
| 23 | " | ||
| 24 | |||
| 25 | RDEPENDS:${PN}-ptest += "\ | ||
| 26 | python3-pytest \ | ||
| 27 | python3-unittest-automake-output \ | ||
| 28 | " | ||
| 29 | |||
| 30 | do_install_ptest() { | ||
| 31 | install -d ${D}${PTEST_PATH}/test | ||
| 32 | install -m 0644 ${S}/setup.cfg ${D}${PTEST_PATH}/ | ||
| 33 | cp -rf ${S}/test/* ${D}${PTEST_PATH}/test/ | ||
| 34 | } | ||
| 35 | |||
| 36 | BBCLASSEXTEND = "native nativesdk" | ||
