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 4F493138350 for ; Thu, 26 Mar 2020 11:48:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CE99E0E0B; Thu, 26 Mar 2020 11:48:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 3CF65E0E0B for ; Thu, 26 Mar 2020 11:48:14 +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 111E834FAA0 for ; Thu, 26 Mar 2020 11:48:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F05010A for ; Thu, 26 Mar 2020 11:48:11 +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: <1585223263.f5f1e5b1737c8694c1652251aa4f31bc1bbb4058.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/argh/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/argh/argh-0.26.2-r1.ebuild X-VCS-Directories: dev-python/argh/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f5f1e5b1737c8694c1652251aa4f31bc1bbb4058 X-VCS-Branch: master Date: Thu, 26 Mar 2020 11:48:11 +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: 22b47df7-c13f-4719-9ba6-a830a132edb9 X-Archives-Hash: f07a8eb0e7696d33c7080940f81bcab4 commit: f5f1e5b1737c8694c1652251aa4f31bc1bbb4058 Author: Michał Górny gentoo org> AuthorDate: Thu Mar 26 11:30:17 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 26 11:47:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5f1e5b1 dev-python/argh: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/argh/argh-0.26.2-r1.ebuild | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/dev-python/argh/argh-0.26.2-r1.ebuild b/dev-python/argh/argh-0.26.2-r1.ebuild deleted file mode 100644 index 6d91520add1..00000000000 --- a/dev-python/argh/argh-0.26.2-r1.ebuild +++ /dev/null @@ -1,30 +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="A simple argparse wrapper" -HOMEPAGE="https://pythonhosted.org/argh/" -SRC_URI="mirror://pypi/a/${PN}/${P}.tar.gz" - -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc x86" -LICENSE="LGPL-3" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/iocapture[${PYTHON_USEDEP}] - ${RDEPEND} - )" - -python_test() { - py.test || die "Tests fail with ${EPYTHON}" -}