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 023731382C5 for ; Wed, 10 Jun 2020 15:11:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1662DE0823; Wed, 10 Jun 2020 15:11:05 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 F1439E0823 for ; Wed, 10 Jun 2020 15:11:04 +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 B142A34E92D for ; Wed, 10 Jun 2020 15:11:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E7F0291 for ; Wed, 10 Jun 2020 15:11:02 +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: <1591801854.9d89f7fcb84c89b49af4aa5d0ef6ca3c54112148.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/websocket-client/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/websocket-client/websocket-client-0.57.0.ebuild X-VCS-Directories: dev-python/websocket-client/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9d89f7fcb84c89b49af4aa5d0ef6ca3c54112148 X-VCS-Branch: master Date: Wed, 10 Jun 2020 15:11:02 +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: 20c7a392-ab75-471e-9f0e-60a6c1b119d5 X-Archives-Hash: 194bc93821267cae10c209fe825dbb51 commit: 9d89f7fcb84c89b49af4aa5d0ef6ca3c54112148 Author: Michał Górny gentoo org> AuthorDate: Wed Jun 10 14:26:34 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 10 15:10:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d89f7fc dev-python/websocket-client: Port to py3.9 Signed-off-by: Michał Górny gentoo.org> dev-python/websocket-client/websocket-client-0.57.0.ebuild | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/dev-python/websocket-client/websocket-client-0.57.0.ebuild b/dev-python/websocket-client/websocket-client-0.57.0.ebuild index cddf08f9b26..490708f1f97 100644 --- a/dev-python/websocket-client/websocket-client-0.57.0.ebuild +++ b/dev-python/websocket-client/websocket-client-0.57.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( pypy3 python3_{6,7,8} ) +PYTHON_COMPAT=( pypy3 python3_{6..9} ) inherit distutils-r1 @@ -16,16 +16,11 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 x86 ~x64-macos" -IUSE="examples test" - -RESTRICT="!test? ( test )" +IUSE="examples" RDEPEND=" dev-python/six[${PYTHON_USEDEP}] " -DEPEND=" - test? ( ${RDEPEND} ) -" S="${WORKDIR}/${MY_PN}-${PV}"