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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 74043158090 for ; Thu, 19 May 2022 15:23:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D79D9E0845; Thu, 19 May 2022 15:23:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B39DE0845 for ; Thu, 19 May 2022 15:23:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4922B34172D for ; Thu, 19 May 2022 15:23:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B188F46A for ; Thu, 19 May 2022 15:23:43 +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: <1652973808.ce8948c485e6b3d1759822cff1138fbf1536622c.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.3-r1.ebuild X-VCS-Directories: dev-python/wsaccel/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ce8948c485e6b3d1759822cff1138fbf1536622c X-VCS-Branch: master Date: Thu, 19 May 2022 15:23:43 +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: 24a9d632-0afc-484e-a071-82e21fd7f24d X-Archives-Hash: 4c61797dd477472ca4e921c5c4d2c116 commit: ce8948c485e6b3d1759822cff1138fbf1536622c Author: Michał Górny gentoo org> AuthorDate: Thu May 19 14:17:21 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu May 19 15:23:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce8948c4 dev-python/wsaccel: Use PEP517 build Signed-off-by: Michał Górny gentoo.org> dev-python/wsaccel/wsaccel-0.6.3-r1.ebuild | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-python/wsaccel/wsaccel-0.6.3-r1.ebuild b/dev-python/wsaccel/wsaccel-0.6.3-r1.ebuild new file mode 100644 index 000000000000..3145f9bb625d --- /dev/null +++ b/dev-python/wsaccel/wsaccel-0.6.3-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Accelerator for ws4py, autobahn and tornado" +HOMEPAGE=" + https://github.com/methane/wsaccel/ + https://pypi.org/project/wsaccel/ +" +SRC_URI=" + https://github.com/methane/wsaccel/archive/v${PV}.tar.gz + -> ${P}.tar.gz +" + +SLOT="0" +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux" + +BDEPEND=" + dev-python/cython[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +python_test() { + cd tests || die + epytest +}