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/tzlocal/
Date: Sun, 29 Mar 2020 10:13:47
Message-Id: 1585476805.07b36d3e39d6e65b27ffc2af3d2988c05832ff49.mgorny@gentoo
1 commit: 07b36d3e39d6e65b27ffc2af3d2988c05832ff49
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 10:07:11 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 10:13:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b36d3e
7
8 dev-python/tzlocal: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/tzlocal/Manifest | 1 -
13 dev-python/tzlocal/tzlocal-1.2.ebuild | 25 -------------------------
14 2 files changed, 26 deletions(-)
15
16 diff --git a/dev-python/tzlocal/Manifest b/dev-python/tzlocal/Manifest
17 index 2d7aa028f35..959b0d8e079 100644
18 --- a/dev-python/tzlocal/Manifest
19 +++ b/dev-python/tzlocal/Manifest
20 @@ -1,2 +1 @@
21 -DIST tzlocal-1.2.tar.gz 16149 BLAKE2B 3852fdf9672bdb3f5b5340eaa14682f0f64bf3bad3e920680ce8ae7e12e3a2fb475237f6b645075e5058a30eff07c8ceec3ba4fa2bf90d4ea65663788cbcd772 SHA512 eb4d1f73983579e109249884d2a343c441942fb0d4dc76aed693c4a05100b10a2337d72794fdb9c0cd28c3b73e11dbd030bdf6dc2f75e57c958655219973c814
22 DIST tzlocal-2.0.0.gh.tar.gz 18223 BLAKE2B 46c3132c60140ebe93a7bc0848f97d7ee7481f29544ba93d11bd6de3a6ff2d17c9e6643a844c2dc6236ef26baebec070bc60e829a95283b7c037624bdb1bda7f SHA512 b758f6ed9677e9aca3909a65f64c45ed21e8301d20ddd620be58312661c9e2a2305bed90e8b86afeae92e6be9e38a35385c8b76ccd7cb12b027c341585d7a6a6
23
24 diff --git a/dev-python/tzlocal/tzlocal-1.2.ebuild b/dev-python/tzlocal/tzlocal-1.2.ebuild
25 deleted file mode 100644
26 index 8b39fde36e7..00000000000
27 --- a/dev-python/tzlocal/tzlocal-1.2.ebuild
28 +++ /dev/null
29 @@ -1,25 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="tzinfo object for the local timezone"
40 -HOMEPAGE="https://github.com/regebro/tzlocal"
41 -SRC_URI="mirror://pypi/t/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="CC0-1.0"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm ~arm64 x86"
46 -IUSE=""
47 -
48 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
49 -RDPEND="dev-python/pytz[${PYTHON_USEDEP}]"
50 -
51 -python_test() {
52 - unset TZ
53 - "${PYTHON}" -m unittest discover || die "Testing failed with ${EPYTHON}"
54 -}