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 96D5E138350 for ; Thu, 23 Jan 2020 06:51:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AADEE077F; Thu, 23 Jan 2020 06:51:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 597A9E077F for ; Thu, 23 Jan 2020 06:51:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3CB7134E3CC for ; Thu, 23 Jan 2020 06:51:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDF38D5 for ; Thu, 23 Jan 2020 06:51:42 +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: <1579762292.1cd317bed44f9614066eb1df7d3b060c92927eca.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/freezegun/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/freezegun/freezegun-0.3.11.ebuild X-VCS-Directories: dev-python/freezegun/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1cd317bed44f9614066eb1df7d3b060c92927eca X-VCS-Branch: master Date: Thu, 23 Jan 2020 06:51:42 +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: 0e72d936-0547-424d-a6f5-e3510aef1ec6 X-Archives-Hash: 72a667dafba30529b07d8619a0d24c19 commit: 1cd317bed44f9614066eb1df7d3b060c92927eca Author: Michał Górny gentoo org> AuthorDate: Thu Jan 23 05:45:52 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jan 23 06:51:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cd317be dev-python/freezegun: Remove redundant version Signed-off-by: Michał Górny gentoo.org> dev-python/freezegun/freezegun-0.3.11.ebuild | 34 ---------------------------- 1 file changed, 34 deletions(-) diff --git a/dev-python/freezegun/freezegun-0.3.11.ebuild b/dev-python/freezegun/freezegun-0.3.11.ebuild deleted file mode 100644 index 7fbca36505a..00000000000 --- a/dev-python/freezegun/freezegun-0.3.11.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python{2_7,3_6,3_7} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Let your Python tests travel through time" -HOMEPAGE="https://github.com/spulec/freezegun" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - >dev-python/python-dateutil-2.0[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - $(python_gen_impl_dep sqlite) - dev-python/mock[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - ) -" - -python_test() { - nosetests -v || die "Tests fail with ${EPYTHON}" -}