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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 991F5158042 for ; Tue, 22 Oct 2024 05:00:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC8D2E08C2; Tue, 22 Oct 2024 05:00:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 583E8E08C2 for ; Tue, 22 Oct 2024 05:00: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 288CF33BF36 for ; Tue, 22 Oct 2024 05:00:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1ABCD10BB for ; Tue, 22 Oct 2024 04:59:59 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1729573151.59608aa2c8e4627f56541e2795f7bdefd080d903.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/tor/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/tor/tor-0.4.8.12-r1.ebuild net-vpn/tor/tor-9999.ebuild X-VCS-Directories: net-vpn/tor/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 59608aa2c8e4627f56541e2795f7bdefd080d903 X-VCS-Branch: master Date: Tue, 22 Oct 2024 04:59:59 +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: e7ca00cc-91e0-488a-a747-6508c810e889 X-Archives-Hash: fa45279ab387d01eb07097158d27be0b commit: 59608aa2c8e4627f56541e2795f7bdefd080d903 Author: Eli Schwartz gentoo org> AuthorDate: Mon Oct 21 13:04:22 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Tue Oct 22 04:59:11 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59608aa2 net-vpn/tor: mark implicit function decl as FP It correctly fails anyway. Gentoo doesn't even provide a nacl package but intriguingly this configure script doesn't bother to use builtin autoconf library checking routines... Closes: https://bugs.gentoo.org/900092 Signed-off-by: Eli Schwartz gentoo.org> net-vpn/tor/tor-0.4.8.12-r1.ebuild | 6 ++++++ net-vpn/tor/tor-9999.ebuild | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/net-vpn/tor/tor-0.4.8.12-r1.ebuild b/net-vpn/tor/tor-0.4.8.12-r1.ebuild index 9bd15b87b19b..2cc565cd9bfa 100644 --- a/net-vpn/tor/tor-0.4.8.12-r1.ebuild +++ b/net-vpn/tor/tor-0.4.8.12-r1.ebuild @@ -73,6 +73,12 @@ PATCHES=( "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch ) +QA_CONFIG_IMPL_DECL_SKIP=( + # test correctly fails because -lnacl fails if not available + # https://bugs.gentoo.org/900092 + crypto_scalarmult_curve25519 +) + pkg_setup() { use test && python-any-r1_pkg_setup } diff --git a/net-vpn/tor/tor-9999.ebuild b/net-vpn/tor/tor-9999.ebuild index 089779d771f6..22759b502bcd 100644 --- a/net-vpn/tor/tor-9999.ebuild +++ b/net-vpn/tor/tor-9999.ebuild @@ -73,6 +73,12 @@ PATCHES=( "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch ) +QA_CONFIG_IMPL_DECL_SKIP=( + # test correctly fails because -lnacl fails if not available + # https://bugs.gentoo.org/900092 + crypto_scalarmult_curve25519 +) + pkg_setup() { use test && python-any-r1_pkg_setup }