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 B31BA138353 for ; Fri, 27 Mar 2020 08:58:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4752E0E75; Fri, 27 Mar 2020 08:58:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 9A609E0E74 for ; Fri, 27 Mar 2020 08:58:32 +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 C281B34FA7A for ; Fri, 27 Mar 2020 08:58:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E3F31B0 for ; Fri, 27 Mar 2020 08:58:27 +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: <1585299476.f645c639ea35275ee4639212609fe38323af597d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/expects/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/expects/expects-0.8.0.ebuild X-VCS-Directories: dev-python/expects/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f645c639ea35275ee4639212609fe38323af597d X-VCS-Branch: master Date: Fri, 27 Mar 2020 08:58:27 +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: 380077a2-65ae-4999-b267-3625bf18ad3d X-Archives-Hash: 1e47c9a79a2d0de19ed0a1b132dec378 commit: f645c639ea35275ee4639212609fe38323af597d Author: Michał Górny gentoo org> AuthorDate: Fri Mar 27 08:44:02 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 27 08:57:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f645c639 dev-python/expects: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/expects/expects-0.8.0.ebuild | 38 --------------------------------- 1 file changed, 38 deletions(-) diff --git a/dev-python/expects/expects-0.8.0.ebuild b/dev-python/expects/expects-0.8.0.ebuild deleted file mode 100644 index 28a0c94321f..00000000000 --- a/dev-python/expects/expects-0.8.0.ebuild +++ /dev/null @@ -1,38 +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="Expressive and extensible TDD/BDD assertion library for Python" -HOMEPAGE="https://github.com/jaimegildesagredo/expects" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64" -IUSE="doc test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/mamba[${PYTHON_USEDEP}] ) -" -RDEPEND="" - -python_compile_all() { - use doc && emake -C docs html -} - -python_test() { - mamba || die "tests failed under ${EPYTHON}" -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) - - distutils-r1_python_install_all -}