diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-21 12:54:12 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-21 23:54:39 +0100 |
commit | 9c763f3b1d38eb5adfa0a458f8ac99eb42ebf44e (patch) | |
tree | e5502096bcca8dd1fe96089dddf8ae135f45e523 /meta/recipes-devtools | |
parent | e3ab221ee3212f8294dac4b839eb312f8df3af15 (diff) | |
download | poky-9c763f3b1d38eb5adfa0a458f8ac99eb42ebf44e.tar.gz |
python3-markupsafe: Import from meta-oe/meta-python
Needed as a dependency of python3-jinja2. ptest is disabled for OE-Core, at
least for now since it depends on python3-pytest which in turn has may other
dependencies.
Acked-by: Tim Orling <ticotimo@gmail.com>
(From OE-Core rev: 94a04a42826ee95a27abe52d43b31b0f053260d9)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/python/python3-markupsafe/run-ptest | 3 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-markupsafe_1.1.1.bb | 28 |
2 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-markupsafe/run-ptest b/meta/recipes-devtools/python/python3-markupsafe/run-ptest new file mode 100644 index 0000000000..5cec711696 --- /dev/null +++ b/meta/recipes-devtools/python/python3-markupsafe/run-ptest | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | pytest | ||
diff --git a/meta/recipes-devtools/python/python3-markupsafe_1.1.1.bb b/meta/recipes-devtools/python/python3-markupsafe_1.1.1.bb new file mode 100644 index 0000000000..403a98a43f --- /dev/null +++ b/meta/recipes-devtools/python/python3-markupsafe_1.1.1.bb | |||
@@ -0,0 +1,28 @@ | |||
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[md5sum] = "43fd756864fe42063068e092e220c57b" | ||
7 | SRC_URI[sha256sum] = "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b" | ||
8 | |||
9 | PYPI_PACKAGE = "MarkupSafe" | ||
10 | inherit pypi setuptools3 | ||
11 | # ptest disabled in OE-Core for now due to missing dependencies | ||
12 | |||
13 | RDEPENDS_${PN} += "${PYTHON_PN}-stringold" | ||
14 | |||
15 | BBCLASSEXTEND = "native nativesdk" | ||
16 | |||
17 | SRC_URI += " \ | ||
18 | file://run-ptest \ | ||
19 | " | ||
20 | |||
21 | RDEPENDS_${PN}-ptest += " \ | ||
22 | ${PYTHON_PN}-pytest \ | ||
23 | " | ||
24 | |||
25 | do_install_ptest() { | ||
26 | install -d ${D}${PTEST_PATH}/tests | ||
27 | cp -f ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
28 | } | ||