Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/autobahn/
Date: Sun, 03 Jan 2016 16:08:58
Message-Id: 1451837280.973c3282b0e5d924900ccb653431dd15aab66a7c.patrick@gentoo
1 commit: 973c3282b0e5d924900ccb653431dd15aab66a7c
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 3 16:06:19 2016 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 3 16:08:00 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=973c3282
7
8 dev-python/autobahn: Bump
9
10 Package-Manager: portage-2.2.26
11
12 dev-python/autobahn/Manifest | 1 +
13 dev-python/autobahn/autobahn-0.11.0.ebuild | 48 ++++++++++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/dev-python/autobahn/Manifest b/dev-python/autobahn/Manifest
17 index ed6a65c..e6a9769 100644
18 --- a/dev-python/autobahn/Manifest
19 +++ b/dev-python/autobahn/Manifest
20 @@ -1,2 +1,3 @@
21 DIST autobahn-0.10.4.tar.gz 148147 SHA256 3dd7a7793cead942cb0c06bef5a9f69e64edc174e47fb822702eafd41085933d SHA512 1eb43df9b0c986f1788c6463875765266cfc562155399c326b4e9bf447119fbfc967dcc53f8f8844700d21ebf37df6c596ead8c105918af5c6a8ec09585ce797 WHIRLPOOL b5be6d7f6348dc627fcbd2c60699cbd60e3e14e6494f787275d3890c30bca5804783b7a010faab5d19d19097ac90ddfdfdb1a3aaf6d37e4daef943916bf5422f
22 +DIST autobahn-0.11.0.tar.gz 149680 SHA256 e7aea216e2a3bb41a4fec235399ece8bfbc0be4ef9567e1ed6927db7fa35f851 SHA512 9f53e2ef7637ddf9aec263fa2db8977c5b7a0d8a1bea6b21c030660d5d17e343cab5f84ebda8b0f97d55e1e4a77a0313805294a3a1487fce004c10a4cddfdc86 WHIRLPOOL f5ade4fc98a14585a8ee9a3e4141a6739668d402ff8c4fd42854062c01de33492093752e08a000f708bef232ce30039b51e0c53553f779da898ef526c861315f
23 DIST autobahn-0.9.4-2.zip 175894 SHA256 5bb64191cfdd1cbdd90d8e359b389ef62c0acdffd2f68d16ec01fa0a287262f0 SHA512 7e0d4246b8b1c552b25c2ae36f1923ed9931e3d3ca684039a422773fecd92ca04734a0b24394a9bbc787f245c72b5552522351a7c1c8e500128e7c46c740a3d5 WHIRLPOOL aa0f06b82acbebb97ca2e3c424429ada7169dca5b39237ce082a17440ec9701a307e9fc7f162f957023cfc4c067f8e8b82b9923cb056ffcab7b3e64a61a4aae8
24
25 diff --git a/dev-python/autobahn/autobahn-0.11.0.ebuild b/dev-python/autobahn/autobahn-0.11.0.ebuild
26 new file mode 100644
27 index 0000000..4df3100
28 --- /dev/null
29 +++ b/dev-python/autobahn/autobahn-0.11.0.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{3,4} )
38 +
39 +RESTRICT="test"
40 +
41 +inherit distutils-r1 versionator
42 +
43 +MY_P="${PN}-$(replace_version_separator 3 -)"
44 +
45 +DESCRIPTION="WebSocket and WAMP for Twisted and Asyncio"
46 +HOMEPAGE="https://pypi.python.org/pypi/autobahn http://autobahn.ws/python/"
47 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
48 +
49 +SLOT="0"
50 +LICENSE="MIT"
51 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
52 +IUSE="test"
53 +
54 +RDEPEND="
55 + $(python_gen_cond_dep 'virtual/python-asyncio[${PYTHON_USEDEP}]' 'python3*')
56 + virtual/python-futures[${PYTHON_USEDEP}]
57 + >=dev-python/lz4-0.2.1[${PYTHON_USEDEP}]
58 + >=dev-python/msgpack-0.4.0[${PYTHON_USEDEP}]
59 + >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
60 + >=dev-python/snappy-0.5[${PYTHON_USEDEP}]
61 + >=dev-python/trollius-0.1.2[${PYTHON_USEDEP}]
62 + >=dev-python/twisted-core-11.1[$(python_gen_usedep 'python2*')]
63 + >=dev-python/txaio-2.2.0[${PYTHON_USEDEP}]
64 + >=dev-python/ujson-1.33[${PYTHON_USEDEP}]
65 + >=dev-python/wsaccel-0.6.2[${PYTHON_USEDEP}]
66 + >=dev-python/zope-interface-3.6[${PYTHON_USEDEP}]
67 + "
68 +DEPEND="${RDEPEND}
69 + test? (
70 + dev-python/mock[${PYTHON_USEDEP}]
71 + dev-python/pytest[${PYTHON_USEDEP}]
72 + )"
73 +
74 +S="${WORKDIR}"/${MY_P}
75 +
76 +python_test() {
77 + esetup.py test
78 +}