summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-markupsafe_2.0.1.bb
diff options
context:
space:
mode:
authorwangmy <wangmy@fujitsu.com>2022-02-23 15:44:57 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-25 15:07:51 +0000
commit8d5aae114a6da56052e63c81fa10a15b8a650a99 (patch)
tree7dc43a2a53a0f61de95441beb7d733f90475b2b9 /meta/recipes-devtools/python/python3-markupsafe_2.0.1.bb
parent881b0ab1b3637891ca9ead854b83ef1bb393acab (diff)
downloadpoky-8d5aae114a6da56052e63c81fa10a15b8a650a99.tar.gz
python3-markupsafe: upgrade 2.0.1 -> 2.1.0
Changelog: ========== Drop support for Python 3.6. :pr:'262' Remove soft_unicode, which was previously deprecated. Use soft_str instead. :pr:'261' Raise error on missing single placeholder during string interpolation. :issue:'225' Disable speedups module for GraalPython. :issue:'277' (From OE-Core rev: b953a11adcc014ee561af844b09e3513d534a4f9) 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-markupsafe_2.0.1.bb')
-rw-r--r--meta/recipes-devtools/python/python3-markupsafe_2.0.1.bb27
1 files changed, 0 insertions, 27 deletions
diff --git a/meta/recipes-devtools/python/python3-markupsafe_2.0.1.bb b/meta/recipes-devtools/python/python3-markupsafe_2.0.1.bb
deleted file mode 100644
index 857472cc7b..0000000000
--- a/meta/recipes-devtools/python/python3-markupsafe_2.0.1.bb
+++ /dev/null
@@ -1,27 +0,0 @@
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] = "594c67807fb16238b30c44bdf74f36c02cdf22d1c8cda91ef8a0ed8dabf5620a"
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}