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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D6AFD158020 for ; Tue, 15 Nov 2022 00:58:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0864AE08CA; Tue, 15 Nov 2022 00:58:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E292EE08CA for ; Tue, 15 Nov 2022 00:58:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E1F31340C15 for ; Tue, 15 Nov 2022 00:58:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E62A599 for ; Tue, 15 Nov 2022 00:58:00 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1668473861.eb876838e0744534dfbc59b87078ca374860e7bb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/curl/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/curl/curl-7.86.0-r1.ebuild net-misc/curl/curl-7.86.0-r2.ebuild X-VCS-Directories: net-misc/curl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: eb876838e0744534dfbc59b87078ca374860e7bb X-VCS-Branch: master Date: Tue, 15 Nov 2022 00:58:00 +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: 00f41b41-3833-4739-8a6a-685c61fecbf6 X-Archives-Hash: 6112b175dac389ef29cbaf4d456918c0 commit: eb876838e0744534dfbc59b87078ca374860e7bb Author: Krzesimir Nowak microsoft com> AuthorDate: Mon Nov 14 15:26:21 2022 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 15 00:57:41 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb876838 net-misc/curl: Fix typo in -without-gnutls option It should have a double hyphen in the beginning. Signed-off-by: Krzesimir Nowak microsoft.com> Closes: https://github.com/gentoo/gentoo/pull/28264 Signed-off-by: Sam James gentoo.org> net-misc/curl/{curl-7.86.0-r1.ebuild => curl-7.86.0-r2.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/curl/curl-7.86.0-r1.ebuild b/net-misc/curl/curl-7.86.0-r2.ebuild similarity index 99% rename from net-misc/curl/curl-7.86.0-r1.ebuild rename to net-misc/curl/curl-7.86.0-r2.ebuild index d83faa8a09fb..8342595fcd6a 100644 --- a/net-misc/curl/curl-7.86.0-r1.ebuild +++ b/net-misc/curl/curl-7.86.0-r2.ebuild @@ -115,7 +115,7 @@ multilib_src_configure() { myconf+=( --without-ca-fallback --with-ca-bundle="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt ) #myconf+=( --without-default-ssl-backend ) if use ssl ; then - myconf+=( -without-gnutls --without-mbedtls --without-nss ) + myconf+=( --without-gnutls --without-mbedtls --without-nss ) if use gnutls || use curl_ssl_gnutls; then einfo "SSL provided by gnutls"