Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cryptography/
Date: Wed, 30 Sep 2015 10:33:03
Message-Id: 1443609165.fb75adeebde24c4ff6e75fdada349d78c0c16335.jlec@gentoo
1 commit: fb75adeebde24c4ff6e75fdada349d78c0c16335
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 30 06:35:35 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 30 10:32:45 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb75adee
7
8 dev-python/cryptography: Add back libressl support
9
10 Package-Manager: portage-2.2.22
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/cryptography/cryptography-1.0.2.ebuild | 5 +++--
14 1 file changed, 3 insertions(+), 2 deletions(-)
15
16 diff --git a/dev-python/cryptography/cryptography-1.0.2.ebuild b/dev-python/cryptography/cryptography-1.0.2.ebuild
17 index 6bc770e..e797982 100644
18 --- a/dev-python/cryptography/cryptography-1.0.2.ebuild
19 +++ b/dev-python/cryptography/cryptography-1.0.2.ebuild
20 @@ -16,10 +16,11 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
21 LICENSE="|| ( Apache-2.0 BSD )"
22 SLOT="0"
23 KEYWORDS="alpha amd64 ~arm hppa ppc64 x86 ~amd64-linux ~x86-linux"
24 -IUSE="test"
25 +IUSE="libressl test"
26
27 RDEPEND="
28 - dev-libs/openssl:0
29 + !libressl? ( dev-libs/openssl:0 )
30 + libressl? ( dev-libs/libressl )
31 $(python_gen_cond_dep '>=dev-python/cffi-1.1.0:=[${PYTHON_USEDEP}]' 'python*')
32 $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7 python3_3 pypy)
33 >=dev-python/idna-2.0[${PYTHON_USEDEP}]