Gentoo Archives: gentoo-commits

From: Julian Ospald <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/vertex/
Date: Sat, 03 Oct 2015 15:24:56
Message-Id: 1443885882.2dfbe9873886fc03621c69b429195fef29532486.hasufell@gentoo
1 commit: 2dfbe9873886fc03621c69b429195fef29532486
2 Author: Julian Ospald <hasufell <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 15:24:13 2015 +0000
4 Commit: Julian Ospald <hasufell <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 15:24:42 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dfbe987
7
8 dev-python/vertex: add libressl support
9
10 dev-python/vertex/vertex-0.3.1-r1.ebuild | 29 +++++++++++++++++++++++++++++
11 1 file changed, 29 insertions(+)
12
13 diff --git a/dev-python/vertex/vertex-0.3.1-r1.ebuild b/dev-python/vertex/vertex-0.3.1-r1.ebuild
14 new file mode 100644
15 index 0000000..c790604
16 --- /dev/null
17 +++ b/dev-python/vertex/vertex-0.3.1-r1.ebuild
18 @@ -0,0 +1,29 @@
19 +# Copyright 1999-2015 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI="5"
24 +PYTHON_COMPAT=( python2_7 )
25 +
26 +inherit twisted-r1
27 +
28 +DESCRIPTION="An implementation of the Q2Q protocol"
29 +HOMEPAGE="http://divmod.org/trac/wiki/DivmodVertex https://pypi.python.org/pypi/Vertex"
30 +SRC_URI="mirror://pypi/${TWISTED_PN:0:1}/${TWISTED_PN}/${TWISTED_P}.tar.gz"
31 +
32 +KEYWORDS="~amd64 ~x86"
33 +IUSE="libressl"
34 +
35 +DEPEND="
36 + !libressl? ( dev-libs/openssl:0 )
37 + libressl? ( dev-libs/libressl )
38 + >=dev-python/epsilon-0.6.0-r1[${PYTHON_USEDEP}]
39 + >=dev-python/pyopenssl-0.13-r1[${PYTHON_USEDEP}]
40 + dev-python/twisted-core[${PYTHON_USEDEP}]"
41 +RDEPEND="${DEPEND}"
42 +
43 +python_install_all() {
44 + distutils-r1_python_install_all
45 +
46 + dodoc NAME.txt
47 +}