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 5FB8F159C9B for ; Mon, 22 Jul 2024 15:50:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CB26E29EC; Mon, 22 Jul 2024 15:50:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D7DFEE29EC for ; Mon, 22 Jul 2024 15:50:19 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD8BA340C7C for ; Mon, 22 Jul 2024 15:50:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0954A1DF4 for ; Mon, 22 Jul 2024 15:50:17 +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: <1721663282.494c6410ba408204129d2c7642c10755506df60b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gnutls/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/gnutls/gnutls-3.8.6-r1.ebuild net-libs/gnutls/gnutls-3.8.6.ebuild X-VCS-Directories: net-libs/gnutls/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 494c6410ba408204129d2c7642c10755506df60b X-VCS-Branch: master Date: Mon, 22 Jul 2024 15:50:17 +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: b28be538-5451-4310-8847-b6cfd468cd6a X-Archives-Hash: a6dca9a76165d6a08272408d276611c1 commit: 494c6410ba408204129d2c7642c10755506df60b Author: Sam James gentoo org> AuthorDate: Mon Jul 22 15:48:02 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jul 22 15:48:02 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=494c6410 net-libs/gnutls: depend on >=nettle-3.10 As a workaround for the backport/import upstream of sha3_* being broken, it seems. Closes: https://bugs.gentoo.org/936011 Signed-off-by: Sam James gentoo.org> net-libs/gnutls/{gnutls-3.8.6.ebuild => gnutls-3.8.6-r1.ebuild} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-libs/gnutls/gnutls-3.8.6.ebuild b/net-libs/gnutls/gnutls-3.8.6-r1.ebuild similarity index 97% rename from net-libs/gnutls/gnutls-3.8.6.ebuild rename to net-libs/gnutls/gnutls-3.8.6-r1.ebuild index 19002c19728c..d05034054f7f 100644 --- a/net-libs/gnutls/gnutls-3.8.6.ebuild +++ b/net-libs/gnutls/gnutls-3.8.6-r1.ebuild @@ -22,10 +22,11 @@ IUSE="brotli +cxx dane doc examples +idn nls +openssl pkcs11 seccomp sslv2 sslv3 REQUIRED_USE="test-full? ( cxx dane doc examples idn nls openssl pkcs11 seccomp tls-heartbeat tools )" RESTRICT="!test? ( test )" +# >=nettle-3.10 as a workaround for bug #936011 RDEPEND=" >=dev-libs/libtasn1-4.9:=[${MULTILIB_USEDEP}] dev-libs/libunistring:=[${MULTILIB_USEDEP}] - >=dev-libs/nettle-3.6:=[gmp,${MULTILIB_USEDEP}] + >=dev-libs/nettle-3.10:=[gmp,${MULTILIB_USEDEP}] >=dev-libs/gmp-5.1.3-r1:=[${MULTILIB_USEDEP}] brotli? ( >=app-arch/brotli-1.0.0:=[${MULTILIB_USEDEP}] ) dane? ( >=net-dns/unbound-1.4.20:=[${MULTILIB_USEDEP}] )