diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-02-02 05:02:42 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-02-02 05:12:22 +0100 |
commit | 912c83b4b6726a1d0a953242704b67751b0132fd (patch) | |
tree | 8f9454a6e60cf0e6bce6d01bb26340ee5b988cc7 /dev-python/pytz/pytz-2024.1.ebuild | |
parent | dev-python/cachecontrol: Bump to 0.14.0 (diff) | |
download | gentoo-912c83b4b6726a1d0a953242704b67751b0132fd.tar.gz gentoo-912c83b4b6726a1d0a953242704b67751b0132fd.tar.bz2 gentoo-912c83b4b6726a1d0a953242704b67751b0132fd.zip |
dev-python/pytz: Bump to 2024.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pytz/pytz-2024.1.ebuild')
-rw-r--r-- | dev-python/pytz/pytz-2024.1.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/dev-python/pytz/pytz-2024.1.ebuild b/dev-python/pytz/pytz-2024.1.ebuild new file mode 100644 index 000000000000..dc593325174c --- /dev/null +++ b/dev-python/pytz/pytz-2024.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} pypy3 ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 pypi + +DESCRIPTION="World timezone definitions for Python" +HOMEPAGE=" + https://pythonhosted.org/pytz/ + https://github.com/stub42/pytz/ + https://pypi.org/project/pytz/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + || ( + >=sys-libs/timezone-data-2023b + sys-libs/glibc[vanilla] + ) +" +BDEPEND=" + test? ( + ${RDEPEND} + ) +" + +src_prepare() { + distutils-r1_src_prepare + + # unbundle timezone-data + rm -r pytz/zoneinfo || die + # remove hardcoded list of all timezones but leave subjective set + # of "common timezones" + sed -i -e '/^_all_timezones_unchecked/,/^all_timezones_set/d' pytz/__init__.py || die + eapply "${FILESDIR}"/pytz-2023.2-system-tzinfo.patch +} + +python_test() { + "${EPYTHON}" pytz/tests/test_tzinfo.py -v || + die "Tests fail with ${EPYTHON}" +} |