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 78A6B138359 for ; Sun, 12 Jul 2020 16:57:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C04A4E0805; Sun, 12 Jul 2020 16:57:48 +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 A8ABEE0805 for ; Sun, 12 Jul 2020 16:57:48 +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 8DC9F34FBAA for ; Sun, 12 Jul 2020 16:57:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D8EE2E3 for ; Sun, 12 Jul 2020 16:57:44 +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: <1594572983.1c4b1d30a208e9541b05c2596e17a36932c24343.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ws4py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ws4py/ws4py-0.5.1.ebuild X-VCS-Directories: dev-python/ws4py/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1c4b1d30a208e9541b05c2596e17a36932c24343 X-VCS-Branch: master Date: Sun, 12 Jul 2020 16:57:44 +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: c726dfed-f7cb-4892-a2f3-f12cf670cab8 X-Archives-Hash: 62d3e705c1bbad66720bac2cbc72d5b3 commit: 1c4b1d30a208e9541b05c2596e17a36932c24343 Author: Michał Górny gentoo org> AuthorDate: Sun Jul 12 16:46:04 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jul 12 16:56:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c4b1d30 dev-python/ws4py: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/ws4py/ws4py-0.5.1.ebuild | 51 ------------------------------------- 1 file changed, 51 deletions(-) diff --git a/dev-python/ws4py/ws4py-0.5.1.ebuild b/dev-python/ws4py/ws4py-0.5.1.ebuild deleted file mode 100644 index 38507310ab2..00000000000 --- a/dev-python/ws4py/ws4py-0.5.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# We could depend on dev-python/cherrypy when USE=server, but -# that is an optional component ... -# Same for www-servers/tornado and USE=client ... so why not??? -# pypy is viable but better with a cutdown set of deps - -EAPI=6 -PYTHON_COMPAT=( python3_6 ) -PYTHON_REQ_USE="threads?" - -inherit distutils-r1 -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/Lawouach/WebSocket-for-Python.git" - inherit git-r3 -else - inherit vcs-snapshot - SRC_URI="https://github.com/Lawouach/WebSocket-for-Python/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 arm x86" -fi - -DESCRIPTION="WebSocket client and server library for Python 2 and 3 as well as PyPy" -HOMEPAGE="https://github.com/Lawouach/WebSocket-for-Python" - -LICENSE="BSD" -SLOT="0" -IUSE="+client +server test +threads" -RESTRICT="!test? ( test )" -# doc build requires sphinxcontrib ext packages absent from portage - -RDEPEND=">=dev-python/greenlet-0.4.1[${PYTHON_USEDEP}] - >=dev-python/cython-0.19.1[${PYTHON_USEDEP}] - client? ( >=www-servers/tornado-3.1[${PYTHON_USEDEP}] ) - server? ( >=dev-python/cherrypy-3.2.4[${PYTHON_USEDEP}] )" -DEPEND="test? ( - >=dev-python/cherrypy-3.2.4[${PYTHON_USEDEP}] - dev-python/unittest2[${PYTHON_USEDEP}] - >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] - )" - -python_test() { - # testsuite displays an issue with mock under py3 but is non fatal - "${PYTHON}" -m unittest discover || die "Tests failed under ${EPYTHON}" -} - -python_install() { - distutils-r1_python_install - use client || rm -rf "${D}$(python_get_sitedir)"/ws4py/client - use server || rm -rf "${D}$(python_get_sitedir)"/ws4py/server -}