summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-pytz_2022.6.bb
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2022-11-01 20:18:27 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-11-03 07:46:46 +0000
commit9e108095c4c87d46d9b4345ff417ede8b78d4e44 (patch)
tree566cf522ad3b256cdcd8e2cc67ba71046030ed88 /meta/recipes-devtools/python/python3-pytz_2022.6.bb
parent57522528c0a456d715b597a959ed7c4141ca7c6d (diff)
downloadpoky-9e108095c4c87d46d9b4345ff417ede8b78d4e44.tar.gz
python3-pytz: upgrade 2022.4 -> 2022.6
https://launchpad.net/pytz/+announcement/30743 pytz 2022.6, containing the 2022f IANA database, has been released. There are no code changes. https://launchpad.net/pytz/+announcement/30736 pytz 2022.5 has been released containing the IANA 2022e database release. There are no code changes. (From OE-Core rev: b78ce30f0fcd5702f79a14bbc0c33f6492d81ecd) Signed-off-by: Tim Orling <tim.orling@konsulko.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-pytz_2022.6.bb')
-rw-r--r--meta/recipes-devtools/python/python3-pytz_2022.6.bb35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pytz_2022.6.bb b/meta/recipes-devtools/python/python3-pytz_2022.6.bb
new file mode 100644
index 0000000000..9631f59288
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-pytz_2022.6.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] = "e89512406b793ca39f5971bc999cc538ce125c0e51c27941bef4568b460095e2"
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}