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 553541382C5 for ; Sat, 27 Feb 2021 21:39:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FB8FE0948; Sat, 27 Feb 2021 21:39:49 +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 7FEE1E0948 for ; Sat, 27 Feb 2021 21:39:49 +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 876533410A9 for ; Sat, 27 Feb 2021 21:39:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2380534 for ; Sat, 27 Feb 2021 21:39:45 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1614461960.410c96167901662df104df0aeadf9c53476b8d37.sam@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-r1.ebuild dev-python/ws4py/ws4py-9999.ebuild X-VCS-Directories: dev-python/ws4py/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 410c96167901662df104df0aeadf9c53476b8d37 X-VCS-Branch: master Date: Sat, 27 Feb 2021 21:39:45 +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: eda20916-ea5c-4193-96d4-75bfd5da8385 X-Archives-Hash: 7fa27471b88927601aa8368c576b7aef commit: 410c96167901662df104df0aeadf9c53476b8d37 Author: Sam James gentoo org> AuthorDate: Sat Feb 27 21:20:48 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 27 21:39:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=410c9616 dev-python/ws4py: add Python 3.9 Signed-off-by: Sam James gentoo.org> dev-python/ws4py/ws4py-0.5.1-r1.ebuild | 12 ++++++++---- dev-python/ws4py/ws4py-9999.ebuild | 12 ++++++++---- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/dev-python/ws4py/ws4py-0.5.1-r1.ebuild b/dev-python/ws4py/ws4py-0.5.1-r1.ebuild index 66d94c727f0..94d185d8670 100644 --- a/dev-python/ws4py/ws4py-0.5.1-r1.ebuild +++ b/dev-python/ws4py/ws4py-0.5.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # We could depend on dev-python/cherrypy when USE=server, but @@ -7,12 +7,14 @@ # pypy is viable but better with a cutdown set of deps EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) + +PYTHON_COMPAT=( python3_{7,8,9} ) PYTHON_REQ_USE="threads(+)?" MY_PN="WebSocket-for-Python" inherit distutils-r1 + if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://github.com/Lawouach/${MY_PN}.git" inherit git-r3 @@ -42,11 +44,13 @@ DEPEND="test? ( >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] )" -PATCHES=( "${FILESDIR}"/${PN}-0.5.1-python3.7+-compatibility.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-0.5.1-python3.7+-compatibility.patch +) python_test() { # testsuite displays an issue with mock under py3 but is non fatal - "${PYTHON}" -m unittest discover || die "Tests failed under ${EPYTHON}" + "${EPYTHON}" -m unittest discover || die "Tests failed under ${EPYTHON}" } python_install() { diff --git a/dev-python/ws4py/ws4py-9999.ebuild b/dev-python/ws4py/ws4py-9999.ebuild index 3561e1388c9..5d471f0ff14 100644 --- a/dev-python/ws4py/ws4py-9999.ebuild +++ b/dev-python/ws4py/ws4py-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # We could depend on dev-python/cherrypy when USE=server, but @@ -7,12 +7,14 @@ # pypy is viable but better with a cutdown set of deps EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) + +PYTHON_COMPAT=( python3_{7,8,9} ) PYTHON_REQ_USE="threads(+)?" MY_PN="WebSocket-for-Python" inherit distutils-r1 + if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://github.com/Lawouach/${MY_PN}.git" inherit git-r3 @@ -42,11 +44,13 @@ DEPEND="test? ( >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] )" -PATCHES=( "${FILESDIR}"/${PN}-0.5.1-python3.7+-compatibility.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-0.5.1-python3.7+-compatibility.patch +) python_test() { # testsuite displays an issue with mock under py3 but is non fatal - "${PYTHON}" -m unittest discover || die "Tests failed under ${EPYTHON}" + "${EPYTHON}" -m unittest discover || die "Tests failed under ${EPYTHON}" } python_install() {