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 1C3FB138334 for ; Thu, 5 Dec 2019 01:29:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FAD5E083D; Thu, 5 Dec 2019 01:29:57 +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 069C8E083D for ; Thu, 5 Dec 2019 01:29:56 +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 815F034D754 for ; Thu, 5 Dec 2019 01:29:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A10E8BC for ; Thu, 5 Dec 2019 01:29:54 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1575509386.d420e6e0727cda67fef479a0d96bae010f4f100a.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fabric/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/fabric/fabric-2.3.1.ebuild X-VCS-Directories: dev-python/fabric/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: d420e6e0727cda67fef479a0d96bae010f4f100a X-VCS-Branch: master Date: Thu, 5 Dec 2019 01:29:54 +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: 26943437-270e-4e64-bc0a-87f73ad01393 X-Archives-Hash: 71788d942d32a501c073327452a557ea commit: d420e6e0727cda67fef479a0d96bae010f4f100a Author: Aaron Bauman gentoo org> AuthorDate: Thu Dec 5 01:28:16 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Thu Dec 5 01:29:46 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d420e6e0 dev-python/fabric: drop py2.7 and other fixes Signed-off-by: Aaron Bauman gentoo.org> dev-python/fabric/fabric-2.3.1.ebuild | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/dev-python/fabric/fabric-2.3.1.ebuild b/dev-python/fabric/fabric-2.3.1.ebuild index 8265a238133..430bb1ca83d 100644 --- a/dev-python/fabric/fabric-2.3.1.ebuild +++ b/dev-python/fabric/fabric-2.3.1.ebuild @@ -3,18 +3,20 @@ EAPI=7 -PYTHON_COMPAT=( python2_7 python3_6 ) +PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 DESCRIPTION="A simple pythonic tool for remote execution and deployment" -HOMEPAGE="https://www.fabfile.org https://pypi.org/project/Fabric/" +HOMEPAGE="https://www.fabfile.org https://pypi.org/project/fabric/" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="2" KEYWORDS="~amd64 ~arm64 ~x86" IUSE="doc fab2" +# Depends on pytest-relaxed which is not in tree +RESTRICT="test" RDEPEND=" !fab2? ( !dev-python/fabric:0 ) @@ -26,24 +28,21 @@ BDEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] doc? ( dev-python/alabaster[${PYTHON_USEDEP}] - >=dev-python/sphinx-1.4[${PYTHON_USEDEP}] -