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 86D13139085 for ; Fri, 27 Jan 2017 19:14:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CBB9234013; Fri, 27 Jan 2017 19:14:27 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7B3DE234013 for ; Fri, 27 Jan 2017 19:14:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2FA7C3413C3 for ; Fri, 27 Jan 2017 19:14:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55F7631BC for ; Fri, 27 Jan 2017 19:14:24 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1485544416.96092c3ed8dd300e3db02cd898cbc85f09f6065f.gokturk@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.0.1.ebuild X-VCS-Directories: app-crypt/libu2f-server/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 96092c3ed8dd300e3db02cd898cbc85f09f6065f X-VCS-Branch: master Date: Fri, 27 Jan 2017 19:14:24 +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: 0e779bb9-79c6-455e-8276-1befb9a48e5f X-Archives-Hash: 49d5bacb0c6aa15e590cd6b051db276f commit: 96092c3ed8dd300e3db02cd898cbc85f09f6065f Author: Luis Ressel aixah de> AuthorDate: Thu Jan 19 20:56:43 2017 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Fri Jan 27 19:13:36 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96092c3e app-crypt/libu2f-server: Add libressl USE flag In my tests, libu2f-server has worked fine with libressl; no patches are necessary. app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild index e59d574..6c8eb77 100644 --- a/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild +++ b/app-crypt/libu2f-server/libu2f-server-1.0.1.ebuild @@ -13,10 +13,11 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz" LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="static-libs test" +IUSE="libressl static-libs test" RDEPEND=" - dev-libs/openssl:0=[${MULTILIB_USEDEP}] + !libressl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] ) + libressl? ( dev-libs/libressl:=[${MULTILIB_USEDEP}] ) dev-libs/hidapi[${MULTILIB_USEDEP}] dev-libs/json-c[${MULTILIB_USEDEP}] "