diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2017-04-10 09:11:21 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2017-05-15 19:07:10 -0700 |
commit | 59675662f0672ea205971e2c5626722dbef5305c (patch) | |
tree | 61a193bc48f7052a31353c6bc94f65efdaa6a473 /dev-python/wsaccel | |
parent | dev-python/sphinxcontrib-blockdiag: Add python-3.5, 3.6 to PYTHON_COMPAT (diff) | |
download | gentoo-59675662f0672ea205971e2c5626722dbef5305c.tar.gz gentoo-59675662f0672ea205971e2c5626722dbef5305c.tar.bz2 gentoo-59675662f0672ea205971e2c5626722dbef5305c.zip |
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
Diffstat (limited to 'dev-python/wsaccel')
-rw-r--r-- | dev-python/wsaccel/Manifest | 1 | ||||
-rw-r--r-- | dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/wsaccel/Manifest b/dev-python/wsaccel/Manifest index 433cb423ae0a..85d1bac7e4a9 100644 --- a/dev-python/wsaccel/Manifest +++ b/dev-python/wsaccel/Manifest @@ -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 diff --git a/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild b/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild new file mode 100644 index 000000000000..97d3e9b5b778 --- /dev/null +++ b/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild @@ -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 +} |