diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-04-26 17:04:40 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-04-26 17:16:20 +0200 |
commit | 235519006cc392036a01937352e2dadc285a497e (patch) | |
tree | 3519f9d99b0c0cfaf8aaccf3d2863b25ced152c0 /dev-python/wsaccel | |
parent | dev-python/whelk: Remove python@ (diff) | |
download | gentoo-235519006cc392036a01937352e2dadc285a497e.tar.gz gentoo-235519006cc392036a01937352e2dadc285a497e.tar.bz2 gentoo-235519006cc392036a01937352e2dadc285a497e.zip |
dev-python/wsaccel: Enable py3.{7,8}, modernize
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/wsaccel')
-rw-r--r-- | dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild | 13 |
1 files 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 c436d65ad6d2..d9e9393a9a2f 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 |