dev-python/wsaccel: Version bump, Adds python-3.5, 3.6 support and tests

Create git commit release to include recent changes for newer python support.

Package-Manager: Portage-2.3.5, Repoman-2.3.2_p30
This commit is contained in:
Brian Dolbec
2017-04-10 09:11:21 -07:00
parent dd7a8c8e3c
commit 59675662f0
2 changed files with 30 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST wsaccel-0.6.2.tar.gz 35773 SHA256 425706acf0724d2f6bfa391ec37b4ef121d3432c956029de3cea4e101c218e0c SHA512 fbc59803cbb6b113a3e412390eb02f41a68513b9fda6e4408d5e2e3c976a3f62eacc6bf87adf9295a63238390cce00f4abe13daf397a28ce8f3ed3e3bff622ee WHIRLPOOL 2c66ff720fcaecaa8c7fe29d93bb8f32e620898b0ccf31d3dc3f4dbfe4b1623dde6484e3c347649cd4140ec51b52c9a8c0e81b0c24e6135481ebae7a26c09063
DIST wsaccel-0.6.2_p20170108.zip 21344 SHA256 f8ee5c61c2166c16ca9aeb5ac2c39647423053ac3c123b25ecca5b4a773f8b5f SHA512 d0cf13360bd6cc0b51b8bee1d36a8ee544816c318e828bf6129ff85827636642cfebae4ef0e99d841cdf64f6c67006a649994804aa42d3d76e977a861aafb3b9 WHIRLPOOL da46bea0232b67461eacb116c6f35bf485d8e113a3014a86f3ceeb95f0170b8259e1a48c850c2fa703c5128890d967f0a9f47bde0da24916edc401b993520bde

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
COMMIT="0fbd074c257c51b73de05b25ccb6488801320a32"
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit distutils-r1
DESCRIPTION="Accelerator for ws4py, autobahn and tornado"
HOMEPAGE="https://pypi.python.org/pypi/wsaccel https://github.com/methane/wsaccel"
SRC_URI="https://github.com/methane/wsaccel/archive/${COMMIT}.zip -> ${P}.zip"
SLOT="0"
LICENSE="Apache-2.0"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="
test? ( dev-python/pytest[${PYTHON_USEDEP}] )
"
S="${WORKDIR}/${PN}-${COMMIT}"
python_test() {
py.test -v || die
}