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 459CD1382C5 for ; Mon, 29 Jan 2018 20:10:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DB52E0A07; Mon, 29 Jan 2018 20:10:33 +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 6AD6CE0A07 for ; Mon, 29 Jan 2018 20:10:32 +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 D6C12335C09 for ; Mon, 29 Jan 2018 20:10:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6AC041D9 for ; Mon, 29 Jan 2018 20:10:29 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1517256611.532f3c6baad1718c9c1b25b8ce4e26cc4791511d.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/nghttp2/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/nghttp2/nghttp2-1.29.0.ebuild net-libs/nghttp2/nghttp2-9999.ebuild X-VCS-Directories: net-libs/nghttp2/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 532f3c6baad1718c9c1b25b8ce4e26cc4791511d X-VCS-Branch: master Date: Mon, 29 Jan 2018 20:10:29 +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: 97ff6f0a-45ac-43c6-8e0b-a796726801cf X-Archives-Hash: 15d0459194e946702d6d537b498ed49d commit: 532f3c6baad1718c9c1b25b8ce4e26cc4791511d Author: Mike Frysinger gentoo org> AuthorDate: Mon Jan 29 20:09:04 2018 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Jan 29 20:10:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=532f3c6b net-libs/nghttp2: depend on ssl for USE=cxx too #561492 Closes: https://bugs.gentoo.org/561492 net-libs/nghttp2/nghttp2-1.29.0.ebuild | 12 +++++++++--- net-libs/nghttp2/nghttp2-9999.ebuild | 12 +++++++++--- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/net-libs/nghttp2/nghttp2-1.29.0.ebuild b/net-libs/nghttp2/nghttp2-1.29.0.ebuild index b3f6d04b3ea..f9087275773 100644 --- a/net-libs/nghttp2/nghttp2-1.29.0.ebuild +++ b/net-libs/nghttp2/nghttp2-1.29.0.ebuild @@ -22,14 +22,20 @@ LICENSE="MIT" SLOT="0/1.14" # . SONAMEs IUSE="cxx debug hpack-tools jemalloc libressl static-libs test +threads utils xml" +SSL_DEPEND=" + !libressl? ( >=dev-libs/openssl-1.0.2:0[-bindist,${MULTILIB_USEDEP}] ) + libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) +" RDEPEND=" - cxx? ( dev-libs/boost:=[${MULTILIB_USEDEP},threads] ) + cxx? ( + ${SSL_DEPEND} + dev-libs/boost:=[${MULTILIB_USEDEP},threads] + ) hpack-tools? ( >=dev-libs/jansson-2.5 ) jemalloc? ( dev-libs/jemalloc[${MULTILIB_USEDEP}] ) utils? ( + ${SSL_DEPEND} >=dev-libs/libev-4.15[${MULTILIB_USEDEP}] - !libressl? ( >=dev-libs/openssl-1.0.2:0[-bindist,${MULTILIB_USEDEP}] ) - libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) >=sys-libs/zlib-1.2.3[${MULTILIB_USEDEP}] net-dns/c-ares:=[${MULTILIB_USEDEP}] ) diff --git a/net-libs/nghttp2/nghttp2-9999.ebuild b/net-libs/nghttp2/nghttp2-9999.ebuild index f7c762907e0..7df2072eee1 100644 --- a/net-libs/nghttp2/nghttp2-9999.ebuild +++ b/net-libs/nghttp2/nghttp2-9999.ebuild @@ -22,14 +22,20 @@ LICENSE="MIT" SLOT="0/1.14" # . SONAMEs IUSE="cxx debug hpack-tools jemalloc libressl static-libs test +threads utils xml" +SSL_DEPEND=" + !libressl? ( >=dev-libs/openssl-1.0.2:0[-bindist,${MULTILIB_USEDEP}] ) + libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) +" RDEPEND=" - cxx? ( dev-libs/boost:=[${MULTILIB_USEDEP},threads] ) + cxx? ( + ${SSL_DEPEND} + dev-libs/boost:=[${MULTILIB_USEDEP},threads] + ) hpack-tools? ( >=dev-libs/jansson-2.5 ) jemalloc? ( dev-libs/jemalloc[${MULTILIB_USEDEP}] ) utils? ( + ${SSL_DEPEND} >=dev-libs/libev-4.15[${MULTILIB_USEDEP}] - !libressl? ( >=dev-libs/openssl-1.0.2:0[-bindist,${MULTILIB_USEDEP}] ) - libressl? ( dev-libs/libressl[${MULTILIB_USEDEP}] ) >=sys-libs/zlib-1.2.3[${MULTILIB_USEDEP}] net-dns/c-ares:=[${MULTILIB_USEDEP}] )