diff options
author | Tim Orling <tim.orling@konsulko.com> | 2022-03-12 13:21:40 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-16 08:48:08 +0000 |
commit | 6b7ee7eec30654c18ab0fd9f52250f6b83ced434 (patch) | |
tree | 3975da0f6c41145ebcb8aba6b08d4eb2cd2d91b8 /meta/recipes-devtools | |
parent | c903d596499cd7487312b176fb116c4047b0d558 (diff) | |
download | poky-6b7ee7eec30654c18ab0fd9f52250f6b83ced434.tar.gz |
python3-pytz: move from meta-python
Dependency for python3-cryptography
(From OE-Core rev: 5831114f881752212704474381570139f01919f1)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/python/python3-pytz/run-ptest | 3 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-pytz_2021.3.bb | 35 |
2 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pytz/run-ptest b/meta/recipes-devtools/python/python3-pytz/run-ptest new file mode 100644 index 0000000000..b63c4de0d9 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pytz/run-ptest | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | pytest -o log_cli=true -o log_cli_level=INFO | sed -e 's/\[...%\]//g'| sed -e 's/PASSED/PASS/g'| sed -e 's/FAILED/FAIL/g'|sed -e 's/SKIPPED/SKIP/g'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS"){printf "%s: %s\n", $NF, $0}else{print}}'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS") {$NF="";print $0}else{print}}' | ||
diff --git a/meta/recipes-devtools/python/python3-pytz_2021.3.bb b/meta/recipes-devtools/python/python3-pytz_2021.3.bb new file mode 100644 index 0000000000..119342a4bd --- /dev/null +++ b/meta/recipes-devtools/python/python3-pytz_2021.3.bb | |||
@@ -0,0 +1,35 @@ | |||
1 | SUMMARY = "World timezone definitions, modern and historical" | ||
2 | HOMEPAGE = "http://pythonhosted.org/pytz" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=1a67fc46c1b596cce5d21209bbe75999" | ||
5 | |||
6 | inherit pypi setuptools3 ptest | ||
7 | |||
8 | SRC_URI[sha256sum] = "acad2d8b20a1af07d4e4c9d2e9285c5ed9104354062f275f3fcd88dcef4f1326" | ||
9 | |||
10 | RDEPENDS:${PN}:class-target += "\ | ||
11 | ${PYTHON_PN}-datetime \ | ||
12 | ${PYTHON_PN}-doctest \ | ||
13 | ${PYTHON_PN}-io \ | ||
14 | ${PYTHON_PN}-pickle \ | ||
15 | ${PYTHON_PN}-pprint \ | ||
16 | ${PYTHON_PN}-threading \ | ||
17 | " | ||
18 | |||
19 | BBCLASSEXTEND = "native nativesdk" | ||
20 | |||
21 | SRC_URI += " \ | ||
22 | file://run-ptest \ | ||
23 | " | ||
24 | |||
25 | RDEPENDS:${PN}-ptest += " \ | ||
26 | ${PYTHON_PN}-pytest \ | ||
27 | " | ||
28 | |||
29 | do_install_ptest() { | ||
30 | install -d ${D}${PTEST_PATH}/pytz | ||
31 | install -d ${D}${PTEST_PATH}/pytz/tests | ||
32 | cp -rf ${S}/pytz/tests/* ${D}${PTEST_PATH}/pytz/tests/ | ||
33 | cp -f ${S}/README.rst ${D}${PTEST_PATH}/ | ||
34 | |||
35 | } | ||