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 A46DB1382C5 for ; Sat, 10 Feb 2018 02:50:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE972E09E8; Sat, 10 Feb 2018 02:50:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 98B78E09E8 for ; Sat, 10 Feb 2018 02:50:12 +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 A479D335C54 for ; Sat, 10 Feb 2018 02:50:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E18271E5 for ; Sat, 10 Feb 2018 02:50:01 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1518230985.1badf7a1bca143d3819cb076932a7d33778aaf79.kensington@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qtnetwork/ X-VCS-Repository: proj/qt X-VCS-Files: dev-qt/qtnetwork/qtnetwork-5.9.9999.ebuild X-VCS-Directories: dev-qt/qtnetwork/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 1badf7a1bca143d3819cb076932a7d33778aaf79 X-VCS-Branch: master Date: Sat, 10 Feb 2018 02:50:01 +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: 73db11ca-30ac-4295-b2cf-714a616dd155 X-Archives-Hash: f3703de98e1eb8a14380703e6754712a commit: 1badf7a1bca143d3819cb076932a7d33778aaf79 Author: Michael Palimaka gentoo org> AuthorDate: Sat Feb 10 02:49:08 2018 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Feb 10 02:49:45 2018 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=1badf7a1 dev-qt/qtnetwork: introduce libressl support This commit deliberately only targets 5.9.9999 until I can complete testing on later versions. Bug: https://bugs.gentoo.org/562050 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-qt/qtnetwork/qtnetwork-5.9.9999.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-qt/qtnetwork/qtnetwork-5.9.9999.ebuild b/dev-qt/qtnetwork/qtnetwork-5.9.9999.ebuild index 3cb59340..94849a21 100644 --- a/dev-qt/qtnetwork/qtnetwork-5.9.9999.ebuild +++ b/dev-qt/qtnetwork/qtnetwork-5.9.9999.ebuild @@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" fi -IUSE="bindist connman libproxy networkmanager +ssl" +IUSE="bindist connman libproxy libressl networkmanager +ssl" DEPEND=" ~dev-qt/qtcore-${PV} @@ -19,7 +19,10 @@ DEPEND=" connman? ( ~dev-qt/qtdbus-${PV} ) libproxy? ( net-libs/libproxy ) networkmanager? ( ~dev-qt/qtdbus-${PV} ) - ssl? ( dev-libs/openssl:0=[bindist=] ) + ssl? ( + !libressl? ( dev-libs/openssl:0=[bindist=] ) + libressl? ( dev-libs/libressl:0= ) + ) " RDEPEND="${DEPEND} connman? ( net-misc/connman )