summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-markupsafe_2.1.1.bb
diff options
context:
space:
mode:
authorwangmy <wangmy@fujitsu.com>2022-03-22 18:39:46 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-23 12:13:50 +0000
commitb7d291f54f179e318728d450f3d5ccf731cf59ce (patch)
tree5c3a6b21b3f4cb6cb0814d925ce3290fdf81876d /meta/recipes-devtools/python/python3-markupsafe_2.1.1.bb
parentff8eca755a50b991153e78c23ac01f18d5728ff2 (diff)
downloadpoky-b7d291f54f179e318728d450f3d5ccf731cf59ce.tar.gz
python3-markupsafe: upgrade 2.1.0 -> 2.1.1
(From OE-Core rev: 82001dbcb2afe00f3a5367bff134c63351d09fc5) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-markupsafe_2.1.1.bb')
-rw-r--r--meta/recipes-devtools/python/python3-markupsafe_2.1.1.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-markupsafe_2.1.1.bb b/meta/recipes-devtools/python/python3-markupsafe_2.1.1.bb
new file mode 100644
index 0000000000..0544dd1b83
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-markupsafe_2.1.1.bb
@@ -0,0 +1,27 @@
1DESCRIPTION = "Implements a XML/HTML/XHTML Markup safe string for Python"
2HOMEPAGE = "http://github.com/mitsuhiko/markupsafe"
3LICENSE = "BSD-3-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75"
5
6SRC_URI[sha256sum] = "7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"
7
8PYPI_PACKAGE = "MarkupSafe"
9inherit pypi setuptools3
10inherit ${@bb.utils.filter('DISTRO_FEATURES', 'ptest', d)}
11
12RDEPENDS:${PN} += "${PYTHON_PN}-stringold"
13
14BBCLASSEXTEND = "native nativesdk"
15
16SRC_URI += " \
17 file://run-ptest \
18"
19
20RDEPENDS:${PN}-ptest += " \
21 ${PYTHON_PN}-pytest \
22"
23
24do_install_ptest() {
25 install -d ${D}${PTEST_PATH}/tests
26 cp -f ${S}/tests/* ${D}${PTEST_PATH}/tests/
27}