summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-pytz_2022.2.1.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-08-19 09:27:18 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-21 22:51:42 +0100
commit4e5b0dbea8ec018ad9e23bffb59940174d00a900 (patch)
tree6e26e521489eb4fc877dee8720301554f8865018 /meta/recipes-devtools/python/python3-pytz_2022.2.1.bb
parent2938fff2d6ce3314952021781363515720aa821d (diff)
downloadpoky-4e5b0dbea8ec018ad9e23bffb59940174d00a900.tar.gz
python3-pytz: upgrade 2022.1 -> 2022.2.1
(From OE-Core rev: eff1c2ecae7eb7672ec9000b8a3f3cd9632be291) Signed-off-by: Alexander Kanavin <alex@linutronix.de> 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-pytz_2022.2.1.bb')
-rw-r--r--meta/recipes-devtools/python/python3-pytz_2022.2.1.bb35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pytz_2022.2.1.bb b/meta/recipes-devtools/python/python3-pytz_2022.2.1.bb
new file mode 100644
index 0000000000..bb7aeeec35
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-pytz_2022.2.1.bb
@@ -0,0 +1,35 @@
1SUMMARY = "World timezone definitions, modern and historical"
2HOMEPAGE = "http://pythonhosted.org/pytz"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=1a67fc46c1b596cce5d21209bbe75999"
5
6inherit pypi setuptools3 ptest
7
8SRC_URI[sha256sum] = "cea221417204f2d1a2aa03ddae3e867921971d0d76f14d87abb4414415bbdcf5"
9
10RDEPENDS:${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
19BBCLASSEXTEND = "native nativesdk"
20
21SRC_URI += " \
22 file://run-ptest \
23"
24
25RDEPENDS:${PN}-ptest += " \
26 ${PYTHON_PN}-pytest \
27"
28
29do_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}