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 A00DC138334 for ; Sat, 16 Feb 2019 18:58:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D165E08A8; Sat, 16 Feb 2019 18:58:40 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 6E0C0E082F for ; Sat, 16 Feb 2019 18:58:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 D6CF7335CFE for ; Sat, 16 Feb 2019 18:58:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A50B545 for ; Sat, 16 Feb 2019 18:58:37 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1550343503.32b8f87ba495f77f07f788fb53c881cd3db4fb85.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/i2pd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/i2pd/i2pd-2.23.0.ebuild X-VCS-Directories: net-vpn/i2pd/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 32b8f87ba495f77f07f788fb53c881cd3db4fb85 X-VCS-Branch: master Date: Sat, 16 Feb 2019 18:58:37 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 63b342c7-8620-4cac-9e6c-77d5c42dd1bf X-Archives-Hash: 1d8af36f99a05546ed40a4e61d0bf405 commit: 32b8f87ba495f77f07f788fb53c881cd3db4fb85 Author: Stefan Strogin gmail com> AuthorDate: Sat Feb 16 08:13:38 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Feb 16 18:58:23 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32b8f87b net-vpn/i2pd: fix slot operators for dependencies Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Stefan Strogin gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11068 Signed-off-by: Aaron Bauman gentoo.org> net-vpn/i2pd/i2pd-2.23.0.ebuild | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/net-vpn/i2pd/i2pd-2.23.0.ebuild b/net-vpn/i2pd/i2pd-2.23.0.ebuild index 963416b932a..719f88b1a2c 100644 --- a/net-vpn/i2pd/i2pd-2.23.0.ebuild +++ b/net-vpn/i2pd/i2pd-2.23.0.ebuild @@ -15,23 +15,23 @@ IUSE="cpu_flags_x86_aes cpu_flags_x86_avx i2p-hardening libressl static +upnp we # if using libressl, require >=boost-1.65, see #597798 RDEPEND=" !static? ( - dev-libs/boost[threads] - !libressl? ( dev-libs/openssl:0[-bindist] ) + dev-libs/boost:=[threads] + !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( - dev-libs/libressl:0 - >=dev-libs/boost-1.65 + dev-libs/libressl:0= + >=dev-libs/boost-1.65:= ) upnp? ( net-libs/miniupnpc ) )" DEPEND="${RDEPEND} static? ( - dev-libs/boost[static-libs,threads] - !libressl? ( dev-libs/openssl:0[static-libs] ) + dev-libs/boost:=[static-libs,threads] + !libressl? ( dev-libs/openssl:0=[static-libs] ) libressl? ( - dev-libs/libressl:0[static-libs] - >=dev-libs/boost-1.65 + dev-libs/libressl:0=[static-libs] + >=dev-libs/boost-1.65:= ) - sys-libs/zlib[static-libs] + sys-libs/zlib:=[static-libs] upnp? ( net-libs/miniupnpc[static-libs] ) ) websocket? ( dev-cpp/websocketpp )"