summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-tzlocal_5.3.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-02-26 07:24:35 +0800
committerKhem Raj <raj.khem@gmail.com>2025-02-26 08:30:55 -0800
commitc2805f300d5a84d27197754e7230f66339029065 (patch)
treef8ed647fcafb3733c93578522e71bcdaa0df5d1b /meta-python/recipes-devtools/python/python3-tzlocal_5.3.bb
parentf4e12b6d36884825b9a7830eb9bc8fb137a4026f (diff)
downloadmeta-openembedded-c2805f300d5a84d27197754e7230f66339029065.tar.gz
python3-tzlocal: upgrade 5.2 -> 5.3
Changelog: =========== - Now supports Python 3.9 to 3.13, and no longer requires backports.zoneinfo. - Debian is for some reason removing support for /etc/timezone, which is bad, because that's the only place where the timezone is stated in plain text, and what's worse, they don't delete it. So we can't trust it now, so when we have multiple configs, we are forced to just ignore it. - Attempts to return a ZoneInfo object also for UTC. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-tzlocal_5.3.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-tzlocal_5.3.bb14
1 files changed, 14 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-tzlocal_5.3.bb b/meta-python/recipes-devtools/python/python3-tzlocal_5.3.bb
new file mode 100644
index 0000000000..eaa80e83f7
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-tzlocal_5.3.bb
@@ -0,0 +1,14 @@
1SUMMARY = "Library to return tzinfo with the local timezone information"
2HOMEPAGE = "https://pypi.org/project/tzlocal/"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=57e0bd61643d81d05683cdce65b11d10"
5
6SRC_URI[sha256sum] = "2fafbfc07e9d8b49ade18f898d6bcd37ae88ce3ad6486842a2e4f03af68323d2"
7
8inherit pypi python_setuptools_build_meta
9
10RDEPENDS:${PN} += " \
11 python3-datetime \
12 python3-logging \
13 python3-zoneinfo \
14"