diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-11-11 20:20:24 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-11-11 20:22:35 +0100 |
commit | 666548ecd3011cfa4530a29420ee3d3765e49747 (patch) | |
tree | 1db5add9cd4efed143613a22e22ae6cc91d4c2a0 | |
parent | profiles: drop use.stable.mask for python-3.5 on hppa/sparc, bug #620940 (diff) | |
download | gentoo-666548ecd3011cfa4530a29420ee3d3765e49747.tar.gz gentoo-666548ecd3011cfa4530a29420ee3d3765e49747.tar.bz2 gentoo-666548ecd3011cfa4530a29420ee3d3765e49747.zip |
dev-python/pypy3-bin: Allow using dev-libs/libressl
PyPy3 no longer links directly to libssl/libcrypto, and uses
a CFFI-based _ssl module instead. Since we are compiling it locally,
we can just enable libressl support like in dev-python/pypy3.
-rw-r--r-- | dev-python/pypy3-bin/pypy3-bin-5.9.0-r1.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dev-python/pypy3-bin/pypy3-bin-5.9.0-r1.ebuild b/dev-python/pypy3-bin/pypy3-bin-5.9.0-r1.ebuild index 5d3c7e340ec2..9f1abcf1f689 100644 --- a/dev-python/pypy3-bin/pypy3-bin-5.9.0-r1.ebuild +++ b/dev-python/pypy3-bin/pypy3-bin-5.9.0-r1.ebuild @@ -34,18 +34,19 @@ LICENSE="MIT" # pypy -c 'import sysconfig; print sysconfig.get_config_var("SOABI")' SLOT="0/59" KEYWORDS="~amd64 ~x86" -IUSE="gdbm +jit sqlite cpu_flags_x86_sse2 test tk" +IUSE="gdbm +jit libressl sqlite cpu_flags_x86_sse2 test tk" RDEPEND=" app-arch/bzip2:0/1 dev-libs/expat:0/0 dev-libs/libffi:0/0 - dev-libs/openssl:0/0[-bindist] sys-devel/gcc:* sys-libs/glibc sys-libs/ncurses:0/6 sys-libs/zlib:0/1 gdbm? ( sys-libs/gdbm:0= ) + !libressl? ( dev-libs/openssl:0=[-bindist] ) + libressl? ( dev-libs/libressl:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= |