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 76A90138334 for ; Sun, 29 Dec 2019 08:53:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C9CBE0BA3; Sun, 29 Dec 2019 08:53:31 +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 BE6B6E0BA3 for ; Sun, 29 Dec 2019 08:53:30 +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 5DD1834DCB7 for ; Sun, 29 Dec 2019 08:53:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 80F85A5 for ; Sun, 29 Dec 2019 08:53:25 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1577609581.feaf5dc94fd78182e793d40b81064f40315afdac.soap@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.3.4.ebuild X-VCS-Directories: dev-python/ws4py/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: feaf5dc94fd78182e793d40b81064f40315afdac X-VCS-Branch: master Date: Sun, 29 Dec 2019 08:53:25 +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: 6e69f9dd-9633-457b-a98b-cdacc44f0a79 X-Archives-Hash: 4d42a573cc6c012d98294f1bea2a2198 commit: feaf5dc94fd78182e793d40b81064f40315afdac Author: David Seifert gentoo org> AuthorDate: Sun Dec 29 08:53:01 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Dec 29 08:53:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feaf5dc9 dev-python/ws4py: Remove old Package-Manager: Portage-2.3.83, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> dev-python/ws4py/ws4py-0.3.4.ebuild | 52 ------------------------------------- 1 file changed, 52 deletions(-) diff --git a/dev-python/ws4py/ws4py-0.3.4.ebuild b/dev-python/ws4py/ws4py-0.3.4.ebuild deleted file mode 100644 index 25713f224f7..00000000000 --- a/dev-python/ws4py/ws4py-0.3.4.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2019 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=5 -PYTHON_COMPAT=( python{2_7,3_5} ) -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/v${PV} -> ${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}] - $(python_gen_cond_dep 'dev-python/gevent[${PYTHON_USEDEP}]' python2_7) - >=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 -}