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 970A0138353 for ; Fri, 27 Mar 2020 21:25:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74F75E0998; Fri, 27 Mar 2020 21:25:18 +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 58BDDE098A for ; Fri, 27 Mar 2020 21:25:18 +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 A5B3B34F82A for ; Fri, 27 Mar 2020 21:25:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FE5971 for ; Fri, 27 Mar 2020 21:25:14 +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: <1585343399.93a23323c9943f9934394e0eec7a33702af0402f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mamba/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/mamba/mamba-0.8.6.ebuild X-VCS-Directories: dev-python/mamba/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 93a23323c9943f9934394e0eec7a33702af0402f X-VCS-Branch: master Date: Fri, 27 Mar 2020 21:25:14 +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: b156a222-4d26-47e0-b0f2-d3919e4c8626 X-Archives-Hash: 52f9d5d926fd809f891feb2375102884 commit: 93a23323c9943f9934394e0eec7a33702af0402f Author: Michał Górny gentoo org> AuthorDate: Fri Mar 27 21:09:59 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 27 21:09:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a23323 dev-python/mamba: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/mamba/mamba-0.8.6.ebuild | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/dev-python/mamba/mamba-0.8.6.ebuild b/dev-python/mamba/mamba-0.8.6.ebuild deleted file mode 100644 index 91ab921fc60..00000000000 --- a/dev-python/mamba/mamba-0.8.6.ebuild +++ /dev/null @@ -1,37 +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="... testing tool ... Born under the banner of Behavior Driven Development" -HOMEPAGE="http://nestorsalceda.github.io/mamba" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64" -IUSE="test" -RESTRICT="!test? ( test )" - -CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND=" - ${CDEPEND} - test? ( - >=dev-python/doublex-expects-0.7.0_rc1[${PYTHON_USEDEP}] - >=dev-python/expects-0.8.0_rc2[${PYTHON_USEDEP}] - >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] - ) -" -RDEPEND=" - ${CDEPEND} - >=dev-python/clint-0.3.1[${PYTHON_USEDEP}] - >=dev-python/coverage-3.7.1[${PYTHON_USEDEP}] - >=dev-python/watchdog-0.8.1[${PYTHON_USEDEP}] -" - -python_test() { - "${PYTHON}" -m mamba.cli || die "Tests failed under ${EPYTHON}" -}