diff options
| author | wangmy <wangmy@fujitsu.com> | 2022-03-22 18:39:46 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-23 12:13:50 +0000 |
| commit | b7d291f54f179e318728d450f3d5ccf731cf59ce (patch) | |
| tree | 5c3a6b21b3f4cb6cb0814d925ce3290fdf81876d /meta/recipes-devtools/python/python3-markupsafe_2.1.1.bb | |
| parent | ff8eca755a50b991153e78c23ac01f18d5728ff2 (diff) | |
| download | poky-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.bb | 27 |
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 @@ | |||
| 1 | DESCRIPTION = "Implements a XML/HTML/XHTML Markup safe string for Python" | ||
| 2 | HOMEPAGE = "http://github.com/mitsuhiko/markupsafe" | ||
| 3 | LICENSE = "BSD-3-Clause" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=ffeffa59c90c9c4a033c7574f8f3fb75" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b" | ||
| 7 | |||
| 8 | PYPI_PACKAGE = "MarkupSafe" | ||
| 9 | inherit pypi setuptools3 | ||
| 10 | inherit ${@bb.utils.filter('DISTRO_FEATURES', 'ptest', d)} | ||
| 11 | |||
| 12 | RDEPENDS:${PN} += "${PYTHON_PN}-stringold" | ||
| 13 | |||
| 14 | BBCLASSEXTEND = "native nativesdk" | ||
| 15 | |||
| 16 | SRC_URI += " \ | ||
| 17 | file://run-ptest \ | ||
| 18 | " | ||
| 19 | |||
| 20 | RDEPENDS:${PN}-ptest += " \ | ||
| 21 | ${PYTHON_PN}-pytest \ | ||
| 22 | " | ||
| 23 | |||
| 24 | do_install_ptest() { | ||
| 25 | install -d ${D}${PTEST_PATH}/tests | ||
| 26 | cp -f ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 27 | } | ||
