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 BE08E138350 for ; Sun, 26 Apr 2020 15:16:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05A12E0AB7; Sun, 26 Apr 2020 15:16:36 +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 DD4B4E0AB7 for ; Sun, 26 Apr 2020 15:16:35 +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 B5DE534F754 for ; Sun, 26 Apr 2020 15:16:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C366F1F3 for ; Sun, 26 Apr 2020 15:16:32 +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: <1587914180.235519006cc392036a01937352e2dadc285a497e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wsaccel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild X-VCS-Directories: dev-python/wsaccel/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 235519006cc392036a01937352e2dadc285a497e X-VCS-Branch: master Date: Sun, 26 Apr 2020 15:16:32 +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: 1fef2725-1362-44a1-8a91-9462a4de67ab X-Archives-Hash: 459733d25a6ac404797fcfa190b56021 commit: 235519006cc392036a01937352e2dadc285a497e Author: Michał Górny gentoo org> AuthorDate: Sun Apr 26 15:04:40 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Apr 26 15:16:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23551900 dev-python/wsaccel: Enable py3.{7,8}, modernize Signed-off-by: Michał Górny gentoo.org> dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild b/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild index c436d65ad6d..d9e9393a9a2 100644 --- a/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild +++ b/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild @@ -4,28 +4,21 @@ EAPI=5 COMMIT="0fbd074c257c51b73de05b25ccb6488801320a32" -PYTHON_COMPAT=( python3_6 ) +PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 DESCRIPTION="Accelerator for ws4py, autobahn and tornado" HOMEPAGE="https://pypi.org/project/wsaccel/ https://github.com/methane/wsaccel" SRC_URI="https://github.com/methane/wsaccel/archive/${COMMIT}.zip -> ${P}.zip" +S="${WORKDIR}/${PN}-${COMMIT}" SLOT="0" LICENSE="Apache-2.0" KEYWORDS="amd64 arm ~arm64 x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" -RDEPEND="" DEPEND=" dev-python/cython[${PYTHON_USEDEP}] - test? ( dev-python/pytest[${PYTHON_USEDEP}] ) " -S="${WORKDIR}/${PN}-${COMMIT}" - -python_test() { - py.test -v || die -} +distutils_enable_tests pytest