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 7830E139360 for ; Wed, 11 Aug 2021 18:16:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E9EDE081E; Wed, 11 Aug 2021 18:16:41 +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 D9DAAE081E for ; Wed, 11 Aug 2021 18:16:40 +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 10272340924 for ; Wed, 11 Aug 2021 18:16:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73B1A7DC for ; Wed, 11 Aug 2021 18:16:35 +0000 (UTC) From: "Mike Gilbert" 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 Gilbert" Message-ID: <1628705756.4adb495757c67c5e9ee168264dfe38e66fedf6fb.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/openssl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/openssl/openssl-1.1.1k-r1.ebuild dev-libs/openssl/openssl-3.0.0_beta1-r1.ebuild dev-libs/openssl/openssl-3.0.0_beta2.ebuild X-VCS-Directories: dev-libs/openssl/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 4adb495757c67c5e9ee168264dfe38e66fedf6fb X-VCS-Branch: master Date: Wed, 11 Aug 2021 18:16:35 +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: f67adf50-a84e-4022-84ec-336bc17fa7a6 X-Archives-Hash: 17b09f3bf93abf21d084ee991e98f6e7 commit: 4adb495757c67c5e9ee168264dfe38e66fedf6fb Author: Mike Gilbert gentoo org> AuthorDate: Wed Aug 11 18:15:56 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Aug 11 18:15:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4adb4957 dev-libs/openssl: replace "has test ${FEATURES}" with "use test" Signed-off-by: Mike Gilbert gentoo.org> dev-libs/openssl/openssl-1.1.1k-r1.ebuild | 2 +- dev-libs/openssl/openssl-3.0.0_beta1-r1.ebuild | 2 +- dev-libs/openssl/openssl-3.0.0_beta2.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/openssl/openssl-1.1.1k-r1.ebuild b/dev-libs/openssl/openssl-1.1.1k-r1.ebuild index d212bef1be7..5b98e5cde55 100644 --- a/dev-libs/openssl/openssl-1.1.1k-r1.ebuild +++ b/dev-libs/openssl/openssl-1.1.1k-r1.ebuild @@ -63,7 +63,7 @@ pkg_setup() { [[ ${MERGE_TYPE} == binary ]] && return # must check in pkg_setup; sysctl don't work with userpriv! - if has test ${FEATURES} && use sctp; then + if use test && use sctp; then # test_ssl_new will fail with "Ensure SCTP AUTH chunks are enabled in kernel" # if sctp.auth_enable is not enabled. local sctp_auth_status=$(sysctl -n net.sctp.auth_enable 2>/dev/null) diff --git a/dev-libs/openssl/openssl-3.0.0_beta1-r1.ebuild b/dev-libs/openssl/openssl-3.0.0_beta1-r1.ebuild index f07fa0d1b07..d434698778c 100644 --- a/dev-libs/openssl/openssl-3.0.0_beta1-r1.ebuild +++ b/dev-libs/openssl/openssl-3.0.0_beta1-r1.ebuild @@ -68,7 +68,7 @@ pkg_setup() { [[ ${MERGE_TYPE} == binary ]] && return # must check in pkg_setup; sysctl don't work with userpriv! - if has test ${FEATURES} && use sctp ; then + if use test && use sctp ; then # test_ssl_new will fail with "Ensure SCTP AUTH chunks are enabled in kernel" # if sctp.auth_enable is not enabled. local sctp_auth_status=$(sysctl -n net.sctp.auth_enable 2>/dev/null) diff --git a/dev-libs/openssl/openssl-3.0.0_beta2.ebuild b/dev-libs/openssl/openssl-3.0.0_beta2.ebuild index f07fa0d1b07..d434698778c 100644 --- a/dev-libs/openssl/openssl-3.0.0_beta2.ebuild +++ b/dev-libs/openssl/openssl-3.0.0_beta2.ebuild @@ -68,7 +68,7 @@ pkg_setup() { [[ ${MERGE_TYPE} == binary ]] && return # must check in pkg_setup; sysctl don't work with userpriv! - if has test ${FEATURES} && use sctp ; then + if use test && use sctp ; then # test_ssl_new will fail with "Ensure SCTP AUTH chunks are enabled in kernel" # if sctp.auth_enable is not enabled. local sctp_auth_status=$(sysctl -n net.sctp.auth_enable 2>/dev/null)