From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 858E61396D9 for ; Sat, 11 Nov 2017 19:22:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2BEAE1139; Sat, 11 Nov 2017 19:22:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F59AE1139 for ; Sat, 11 Nov 2017 19:22:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 401A9335DEF for ; Sat, 11 Nov 2017 19:22:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C953B9988 for ; Sat, 11 Nov 2017 19:22:40 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1510428155.666548ecd3011cfa4530a29420ee3d3765e49747.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy3-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypy3-bin/pypy3-bin-5.9.0-r1.ebuild X-VCS-Directories: dev-python/pypy3-bin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 666548ecd3011cfa4530a29420ee3d3765e49747 X-VCS-Branch: master Date: Sat, 11 Nov 2017 19:22:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 639520d7-09ea-42b8-a026-5ed9e3457b5e X-Archives-Hash: d1643296386dabf16b653e42534bcc04 commit: 666548ecd3011cfa4530a29420ee3d3765e49747 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 11 19:20:24 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 11 19:22:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=666548ec 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. dev-python/pypy3-bin/pypy3-bin-5.9.0-r1.ebuild | 5 +++-- 1 file 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 5d3c7e340ec..9f1abcf1f68 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=