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 92C661382C5 for ; Fri, 30 Apr 2021 12:41:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D6DFE0869; Fri, 30 Apr 2021 12:41:30 +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 81745E0869 for ; Fri, 30 Apr 2021 12:41:30 +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 B5119340E1C for ; Fri, 30 Apr 2021 12:41:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 291734C3 for ; Fri, 30 Apr 2021 12:41:26 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1619786483.d914d3b10fa013b6dc697f43b29f4ea215847f93.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libu2f-server/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild X-VCS-Directories: app-crypt/libu2f-server/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: d914d3b10fa013b6dc697f43b29f4ea215847f93 X-VCS-Branch: master Date: Fri, 30 Apr 2021 12:41:26 +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: 19e05e30-f9b7-4b7f-ae31-e26abf6048eb X-Archives-Hash: 9ba498f7135ed7de895092e4bd9c7df6 commit: d914d3b10fa013b6dc697f43b29f4ea215847f93 Author: Mikle Kolyada gentoo org> AuthorDate: Fri Apr 30 12:40:38 2021 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Fri Apr 30 12:41:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d914d3b1 app-crypt/libu2f-server: remove libressl support Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Mikle Kolyada gentoo.org> app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild b/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild index a16820c036e..b90c56b3120 100644 --- a/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild +++ b/app-crypt/libu2f-server/libu2f-server-1.1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -12,12 +12,11 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz" LICENSE="BSD-2" SLOT="0/0.1" KEYWORDS="amd64 x86" -IUSE="libressl static-libs test" +IUSE="static-libs test" RESTRICT="!test? ( test )" RDEPEND=" - !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] ) - libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] ) + dev-libs/openssl:0=[${MULTILIB_USEDEP}] dev-libs/hidapi[${MULTILIB_USEDEP}] dev-libs/json-c:=[${MULTILIB_USEDEP}] "