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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1AE1A15813A for ; Tue, 14 Jan 2025 12:24:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1A303E07EE; Tue, 14 Jan 2025 12:24:14 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 F40BDE07F1 for ; Tue, 14 Jan 2025 12:24:13 +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 C13EA340C53 for ; Tue, 14 Jan 2025 12:24:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A332B2C for ; Tue, 14 Jan 2025 12:24:11 +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: <1736856879.dd5aedb5562eb6ae4d7725a528cead5f558e0c55.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/dd-rescue/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/dd-rescue/dd-rescue-1.99.17.ebuild X-VCS-Directories: sys-fs/dd-rescue/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: dd5aedb5562eb6ae4d7725a528cead5f558e0c55 X-VCS-Branch: master Date: Tue, 14 Jan 2025 12:24:11 +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: b859af7f-5567-4ba4-a4a8-9bb2f83fb18a X-Archives-Hash: 85867fda40f7269b7c1d5fca44d793be commit: dd5aedb5562eb6ae4d7725a528cead5f558e0c55 Author: Sam James gentoo org> AuthorDate: Tue Jan 14 12:14:39 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 14 12:14:39 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd5aedb5 sys-fs/dd-rescue: drop rdrnd and friends changes from 1.99.17 Undo the CPU_FLAGS_X86 changes from ec703e4ce5de46e4f427836d18988786190e5d2b which are clearly too brittle. Closes: https://bugs.gentoo.org/947105 Signed-off-by: Sam James gentoo.org> sys-fs/dd-rescue/dd-rescue-1.99.17.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sys-fs/dd-rescue/dd-rescue-1.99.17.ebuild b/sys-fs/dd-rescue/dd-rescue-1.99.17.ebuild index 49fa8eb2ea56..f4d8e24954eb 100644 --- a/sys-fs/dd-rescue/dd-rescue-1.99.17.ebuild +++ b/sys-fs/dd-rescue/dd-rescue-1.99.17.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="|| ( GPL-2 GPL-3 )" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="cpu_flags_x86_aes cpu_flags_x86_avx2 lzo lzma cpu_flags_x86_rdrand cpu_flags_x86_sha cpu_flags_x86_sse4_2 static test xattr" +IUSE="cpu_flags_x86_avx2 lzo lzma cpu_flags_x86_sse4_2 static test xattr" RESTRICT="!test? ( test )" RDEPEND=" @@ -81,14 +81,13 @@ _emake() { local os=$(usex kernel_linux Linux IDK) # HAVE_LZO is special as it's checked for emptiness in test_crypt.sh. + # We could try make RDRND and friends controlled via USE but it's too brittle, + # see bug #947105. emake \ MACH="${arch}" \ OS="${os}" \ HAVE_SSE42=$(usex cpu_flags_x86_sse4_2 1 0) \ - HAVE_AES=$(usex cpu_flags_x86_aes 1 0) \ HAVE_AVX2=$(usex cpu_flags_x86_avx2 1 0) \ - HAVE_SHA=$(usex cpu_flags_x86_sha 1 0) \ - HAVE_RDRND=$(usex cpu_flags_x86_rdrand 1 0) \ HAVE_LZMA=$(usex lzma 1 0) \ HAVE_LZO=$(usev lzo 1) \ HAVE_OPENSSL=0 \