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 49CD0138334 for ; Tue, 31 Jul 2018 14:27:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DE21E0956; Tue, 31 Jul 2018 14:27:10 +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 DF86DE0956 for ; Tue, 31 Jul 2018 14:27:09 +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 C8C8D335C94 for ; Tue, 31 Jul 2018 14:27:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 37360376 for ; Tue, 31 Jul 2018 14:27:04 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1533047203.6e904fc90d2f287c1e2e2f801b01c37b637c7b88.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fabric/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/fabric/fabric-1.14.0-r1.ebuild X-VCS-Directories: dev-python/fabric/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 6e904fc90d2f287c1e2e2f801b01c37b637c7b88 X-VCS-Branch: master Date: Tue, 31 Jul 2018 14:27:04 +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-Archives-Salt: f7d9714f-02bf-4b3e-b343-88ea577ec25f X-Archives-Hash: 4d2988ff1031b9506340d44b555c99d5 commit: 6e904fc90d2f287c1e2e2f801b01c37b637c7b88 Author: Virgil Dupras gentoo org> AuthorDate: Tue Jul 31 14:26:43 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Tue Jul 31 14:26:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e904fc9 dev-python/fabric: fix broken completions in v1.14 Closes: https://bugs.gentoo.org/611830 Package-Manager: Portage-2.3.44, Repoman-2.3.10 dev-python/fabric/fabric-1.14.0-r1.ebuild | 75 +++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/dev-python/fabric/fabric-1.14.0-r1.ebuild b/dev-python/fabric/fabric-1.14.0-r1.ebuild new file mode 100644 index 00000000000..f3da6f17450 --- /dev/null +++ b/dev-python/fabric/fabric-1.14.0-r1.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 ) + +inherit bash-completion-r1 distutils-r1 + +MY_PN="Fabric" +MY_P="${MY_PN}-${PV}" + +COMP_HASH="83d303e9fb352deaf4885b6db0781b3d9115e9c6" + +DESCRIPTION="A simple pythonic tool for remote execution and deployment" +HOMEPAGE="http://fabfile.org https://pypi.org/project/Fabric/" +SRC_URI=" + mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz + https://raw.githubusercontent.com/kbakulin/fabric-completion/${COMP_HASH}/fabric-completion.bash -> ${P}-completion.bash" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="doc test" + +RDEPEND=" + >=dev-python/paramiko-1.10[${PYTHON_USEDEP}] +