Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytz/
Date: Thu, 30 Apr 2020 09:45:31
Message-Id: 1588239905.c18ac22708e6f09dfc027344ac162eff5366a48f.mgorny@gentoo
1 commit: c18ac22708e6f09dfc027344ac162eff5366a48f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 30 07:00:28 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 30 09:45:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c18ac227
7
8 dev-python/pytz: Bump to 2020.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytz/Manifest | 1 +
13 dev-python/pytz/pytz-2020.1.ebuild | 35 +++++++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-python/pytz/Manifest b/dev-python/pytz/Manifest
17 index 11eb73b73f9..234d1c2ba72 100644
18 --- a/dev-python/pytz/Manifest
19 +++ b/dev-python/pytz/Manifest
20 @@ -1 +1,2 @@
21 DIST pytz-2019.3.tar.gz 312286 BLAKE2B 8a81caf3ead284a66404fadeca4f17a603a4f0ab2404f9b73b2b06a209d0094a25549065aa14d254239d6d842804c6924bc7658a876517b170f535be71868ead SHA512 b925b59d197e7007dae8098d35518a470e4b7588d9114f51e4d8816813243a9f816f662055f690bedf56b86cc9ece06428ed8c55e5b3ed676ba0f504f7cb43af
22 +DIST pytz-2020.1.tar.gz 311771 BLAKE2B 2d7dd9987fd912dd2a62b5c4ab1667a13f3704ff407796c00fd76b6f3ac4dfcffba9f58740f9456ddfade6c2ef6deacc754f57f5e434b97da36b36fca3024d0f SHA512 4f652ab400bac0bd83ed305be7540094e674029a0cbde7da280adfd911b8c0a44023799b7c61971a5a61a1d6e3992c5b621e5e95bbfe962f310d5f26d4fda3ce
23
24 diff --git a/dev-python/pytz/pytz-2020.1.ebuild b/dev-python/pytz/pytz-2020.1.ebuild
25 new file mode 100644
26 index 00000000000..af515aa6eef
27 --- /dev/null
28 +++ b/dev-python/pytz/pytz-2020.1.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
36 +PYTHON_REQ_USE="threads(+)"
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="World timezone definitions for Python"
41 +HOMEPAGE="https://pythonhosted.org/pytz/ https://pypi.org/project/pytz/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
47 +IUSE=""
48 +
49 +RDEPEND="
50 + dev-python/setuptools[${PYTHON_USEDEP}]
51 + || ( >=sys-libs/timezone-data-2017a sys-libs/glibc[vanilla] )"
52 +DEPEND="${RDEPEND}
53 + app-arch/unzip"
54 +
55 +PATCHES=(
56 + # Use timezone-data zoneinfo.
57 + "${FILESDIR}"/2018.4-zoneinfo.patch
58 + # ...and do not install a copy of it.
59 + "${FILESDIR}"/${PN}-2018.4-zoneinfo-noinstall.patch
60 +)
61 +
62 +python_test() {
63 + "${EPYTHON}" pytz/tests/test_tzinfo.py -v || die "Tests fail with ${EPYTHON}"
64 +}