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 B2B76138334 for ; Mon, 8 Apr 2019 00:11:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5576E085A; Mon, 8 Apr 2019 00:11:07 +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 AF49CE085A for ; Mon, 8 Apr 2019 00:11:07 +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 30D30335CF7 for ; Mon, 8 Apr 2019 00:11:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E33657E for ; Mon, 8 Apr 2019 00:11:03 +0000 (UTC) From: "Aaron W. Swenson" 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 W. Swenson" Message-ID: <1554682243.bc28cbaec6871e5a546ecfbecf79411276fe3066.titanofold@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sshtunnel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sshtunnel/sshtunnel-0.1.4.ebuild X-VCS-Directories: dev-python/sshtunnel/ X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron W. Swenson X-VCS-Revision: bc28cbaec6871e5a546ecfbecf79411276fe3066 X-VCS-Branch: master Date: Mon, 8 Apr 2019 00:11:03 +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: 715e0fa7-13cb-4f60-a1da-34c996cc66ae X-Archives-Hash: f24f13a33efae85f185ef18b6a1318dc commit: bc28cbaec6871e5a546ecfbecf79411276fe3066 Author: Aaron W. Swenson gentoo org> AuthorDate: Mon Apr 8 00:10:37 2019 +0000 Commit: Aaron W. Swenson gentoo org> CommitDate: Mon Apr 8 00:10:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc28cbae dev-python/sshtunnel: Remove broken Closes: https://bugs.gentoo.org/682260 Closes: https://bugs.gentoo.org/668146 Package-Manager: Portage-2.3.62, Repoman-2.3.11 Signed-off-by: Aaron W. Swenson gentoo.org> dev-python/sshtunnel/sshtunnel-0.1.4.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/dev-python/sshtunnel/sshtunnel-0.1.4.ebuild b/dev-python/sshtunnel/sshtunnel-0.1.4.ebuild deleted file mode 100644 index 4aeb081ac92..00000000000 --- a/dev-python/sshtunnel/sshtunnel-0.1.4.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) - -inherit distutils-r1 - -DESCRIPTION="Pure python SSH tunnels" -HOMEPAGE="https://pypi.python.org/pypi/sshtunnel" -SRC_URI="mirror://pypi/s/sshtunnel/${P}.tar.gz" - -KEYWORDS="~amd64 ~x86 ~arm" -LICENSE="MIT" -SLOT="0" - -IUSE="test" - -RDEPEND="dev-python/paramiko[${PYTHON_USEDEP}]" - -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/tox[${PYTHON_USEDEP}] ) -" - -python_test() { - esetup.py test -}