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 0FE6E138334 for ; Fri, 21 Jun 2019 11:50:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 402B2E08AE; Fri, 21 Jun 2019 11:50:19 +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 2455CE08AE for ; Fri, 21 Jun 2019 11:50:19 +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 4FE06346681 for ; Fri, 21 Jun 2019 11:50:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E0B1326 for ; Fri, 21 Jun 2019 11:50:00 +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: <1561117787.26e44933f80f8d0a9c1589e387fa4d7571d5dc7d.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-r1.ebuild X-VCS-Directories: dev-python/sshtunnel/ X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron W. Swenson X-VCS-Revision: 26e44933f80f8d0a9c1589e387fa4d7571d5dc7d X-VCS-Branch: master Date: Fri, 21 Jun 2019 11:50:00 +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: fb5815bf-8612-4c29-a97e-59e8607eba33 X-Archives-Hash: 92beb0d0bd222f03093274f65c1e85c7 commit: 26e44933f80f8d0a9c1589e387fa4d7571d5dc7d Author: Aaron W. Swenson gentoo org> AuthorDate: Fri Jun 21 11:49:39 2019 +0000 Commit: Aaron W. Swenson gentoo org> CommitDate: Fri Jun 21 11:49:47 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26e44933 dev-python/sshtunnel: Cleanup Closes: https://bugs.gentoo.org/683774 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-r1.ebuild | 34 -------------------------- 1 file changed, 34 deletions(-) diff --git a/dev-python/sshtunnel/sshtunnel-0.1.4-r1.ebuild b/dev-python/sshtunnel/sshtunnel-0.1.4-r1.ebuild deleted file mode 100644 index 64c28cd2372..00000000000 --- a/dev-python/sshtunnel/sshtunnel-0.1.4-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{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 ~arm ~x86" -LICENSE="MIT" -SLOT="0" - -IUSE="test" - -RDEPEND="dev-python/paramiko[${PYTHON_USEDEP}]" - -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/mock[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - dev-python/pytest-cov[${PYTHON_USEDEP}] - dev-python/pytest-xdist[${PYTHON_USEDEP}] - ) -" - -python_test() { - py.test --showlocals --cov sshtunnel --durations=10 -n4 tests -}