From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2355138239 for ; Sun, 29 Mar 2020 10:13:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9032E0B50; Sun, 29 Mar 2020 10:13:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C0648E0B50 for ; Sun, 29 Mar 2020 10:13:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7FE5A34F9D5 for ; Sun, 29 Mar 2020 10:13:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D7DF91C5 for ; Sun, 29 Mar 2020 10:13:36 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1585476805.07b36d3e39d6e65b27ffc2af3d2988c05832ff49.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tzlocal/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tzlocal/Manifest dev-python/tzlocal/tzlocal-1.2.ebuild X-VCS-Directories: dev-python/tzlocal/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 07b36d3e39d6e65b27ffc2af3d2988c05832ff49 X-VCS-Branch: master Date: Sun, 29 Mar 2020 10:13:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 51429efa-7ba7-452c-8135-e2f85e2ae497 X-Archives-Hash: 698ec932ca4f6145444d3d49cd4109a7 commit: 07b36d3e39d6e65b27ffc2af3d2988c05832ff49 Author: Michał Górny gentoo org> AuthorDate: Sun Mar 29 10:07:11 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Mar 29 10:13:25 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b36d3e dev-python/tzlocal: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/tzlocal/Manifest | 1 - dev-python/tzlocal/tzlocal-1.2.ebuild | 25 ------------------------- 2 files changed, 26 deletions(-) diff --git a/dev-python/tzlocal/Manifest b/dev-python/tzlocal/Manifest index 2d7aa028f35..959b0d8e079 100644 --- a/dev-python/tzlocal/Manifest +++ b/dev-python/tzlocal/Manifest @@ -1,2 +1 @@ -DIST tzlocal-1.2.tar.gz 16149 BLAKE2B 3852fdf9672bdb3f5b5340eaa14682f0f64bf3bad3e920680ce8ae7e12e3a2fb475237f6b645075e5058a30eff07c8ceec3ba4fa2bf90d4ea65663788cbcd772 SHA512 eb4d1f73983579e109249884d2a343c441942fb0d4dc76aed693c4a05100b10a2337d72794fdb9c0cd28c3b73e11dbd030bdf6dc2f75e57c958655219973c814 DIST tzlocal-2.0.0.gh.tar.gz 18223 BLAKE2B 46c3132c60140ebe93a7bc0848f97d7ee7481f29544ba93d11bd6de3a6ff2d17c9e6643a844c2dc6236ef26baebec070bc60e829a95283b7c037624bdb1bda7f SHA512 b758f6ed9677e9aca3909a65f64c45ed21e8301d20ddd620be58312661c9e2a2305bed90e8b86afeae92e6be9e38a35385c8b76ccd7cb12b027c341585d7a6a6 diff --git a/dev-python/tzlocal/tzlocal-1.2.ebuild b/dev-python/tzlocal/tzlocal-1.2.ebuild deleted file mode 100644 index 8b39fde36e7..00000000000 --- a/dev-python/tzlocal/tzlocal-1.2.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python3_6 ) - -inherit distutils-r1 - -DESCRIPTION="tzinfo object for the local timezone" -HOMEPAGE="https://github.com/regebro/tzlocal" -SRC_URI="mirror://pypi/t/${PN}/${P}.tar.gz" - -LICENSE="CC0-1.0" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDPEND="dev-python/pytz[${PYTHON_USEDEP}]" - -python_test() { - unset TZ - "${PYTHON}" -m unittest discover || die "Testing failed with ${EPYTHON}" -}