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 A45A01382C5 for ; Fri, 30 Apr 2021 11:01:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E687CE0869; Fri, 30 Apr 2021 11:01:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 CAF4CE0869 for ; Fri, 30 Apr 2021 11:01:28 +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 88459340F46 for ; Fri, 30 Apr 2021 11:01:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB2D24C3 for ; Fri, 30 Apr 2021 11:01:25 +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: <1619780482.e5bd558bfaf1b1bb87c39426237de389c6f31662.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/openvpn/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/openvpn/openvpn-2.4.9.ebuild net-vpn/openvpn/openvpn-2.5.0-r1.ebuild net-vpn/openvpn/openvpn-2.5.1-r1.ebuild X-VCS-Directories: net-vpn/openvpn/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: e5bd558bfaf1b1bb87c39426237de389c6f31662 X-VCS-Branch: master Date: Fri, 30 Apr 2021 11:01:25 +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: f03e64bd-e1fd-4b26-a4f6-ff83fe17355c X-Archives-Hash: 351429944418834e1a1e243677beb2c9 commit: e5bd558bfaf1b1bb87c39426237de389c6f31662 Author: Mikle Kolyada gentoo org> AuthorDate: Fri Apr 30 11:00:59 2021 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Fri Apr 30 11:01:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5bd558b net-vpn/openvpn: remove libressl logic Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Mikle Kolyada gentoo.org> net-vpn/openvpn/openvpn-2.4.9.ebuild | 2 +- net-vpn/openvpn/openvpn-2.5.0-r1.ebuild | 2 +- net-vpn/openvpn/openvpn-2.5.1-r1.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net-vpn/openvpn/openvpn-2.4.9.ebuild b/net-vpn/openvpn/openvpn-2.4.9.ebuild index b29d88937b0..fa2a4e2f026 100644 --- a/net-vpn/openvpn/openvpn-2.4.9.ebuild +++ b/net-vpn/openvpn/openvpn-2.4.9.ebuild @@ -66,7 +66,7 @@ src_configure() { myeconfargs+=( $(use_with ssl crypto-library $(usex mbedtls mbedtls openssl)) ) - if use libressl || ! use mbedtls; then + if ! use mbedtls; then myeconfargs+=( $(use_enable pkcs11) ) diff --git a/net-vpn/openvpn/openvpn-2.5.0-r1.ebuild b/net-vpn/openvpn/openvpn-2.5.0-r1.ebuild index f0b8f56f6fc..8ee40bcb156 100644 --- a/net-vpn/openvpn/openvpn-2.5.0-r1.ebuild +++ b/net-vpn/openvpn/openvpn-2.5.0-r1.ebuild @@ -62,7 +62,7 @@ src_prepare() { src_configure() { local -a myeconfargs - if use libressl || ! use mbedtls; then + if ! use mbedtls; then myeconfargs+=( $(use_enable pkcs11) ) diff --git a/net-vpn/openvpn/openvpn-2.5.1-r1.ebuild b/net-vpn/openvpn/openvpn-2.5.1-r1.ebuild index 5234e90577c..f6859b6c7e0 100644 --- a/net-vpn/openvpn/openvpn-2.5.1-r1.ebuild +++ b/net-vpn/openvpn/openvpn-2.5.1-r1.ebuild @@ -62,7 +62,7 @@ src_prepare() { src_configure() { local -a myeconfargs - if use libressl || ! use mbedtls; then + if ! use mbedtls; then myeconfargs+=( $(use_enable pkcs11) )