From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 8DC0A158088 for ; Fri, 31 Oct 2025 06:22:06 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 6843D340EFF for ; Fri, 31 Oct 2025 06:22:06 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 0DC4B110575; Fri, 31 Oct 2025 06:21:59 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 08F8A110574 for ; Fri, 31 Oct 2025 06:21:59 +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 B373D340DB7 for ; Fri, 31 Oct 2025 06:21:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10AD73BA4 for ; Fri, 31 Oct 2025 06:21:57 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1761891707.31bf8d01af9d78451db036ddce1d8d053e82fa7c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/sequoia-chameleon-gnupg/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/sequoia-chameleon-gnupg/sequoia-chameleon-gnupg-0.13.1-r2.ebuild X-VCS-Directories: app-crypt/sequoia-chameleon-gnupg/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 31bf8d01af9d78451db036ddce1d8d053e82fa7c X-VCS-Branch: master Date: Fri, 31 Oct 2025 06:21:57 +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: 6f1a973c-b7da-434e-ba9b-bda41dcc16da X-Archives-Hash: aaf8f5d044828386a0efed8d48b02307 commit: 31bf8d01af9d78451db036ddce1d8d053e82fa7c Author: Michał Górny gentoo org> AuthorDate: Thu Oct 30 18:49:45 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Oct 31 06:21:47 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31bf8d01 app-crypt/sequoia-chameleon-gnupg: Remove GNUPGHOME logic from tests Remove the unnecessary GNUPGHOME logic from tests -- upstream test code overrides GNUPGHOME internally, so this is never used. Furthermore, they actually expects the warning about insecure permissions -- all tests fail if we run with `umask 077`. Signed-off-by: Michał Górny gentoo.org> Part-of: https://github.com/gentoo/gentoo/pull/44387 Signed-off-by: Michał Górny gentoo.org> .../sequoia-chameleon-gnupg/sequoia-chameleon-gnupg-0.13.1-r2.ebuild | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app-crypt/sequoia-chameleon-gnupg/sequoia-chameleon-gnupg-0.13.1-r2.ebuild b/app-crypt/sequoia-chameleon-gnupg/sequoia-chameleon-gnupg-0.13.1-r2.ebuild index 9b327012360d..6a0d6fb2f188 100644 --- a/app-crypt/sequoia-chameleon-gnupg/sequoia-chameleon-gnupg-0.13.1-r2.ebuild +++ b/app-crypt/sequoia-chameleon-gnupg/sequoia-chameleon-gnupg-0.13.1-r2.ebuild @@ -81,13 +81,9 @@ src_configure() { } src_test() { - local -x GNUPGHOME="${T}"/.gnupg local -x REAL_GPG_BIN="${BROOT}"/usr/bin/gpg local -x REAL_GPGV_BIN="${BROOT}"/usr/bin/gpgv - mkdir "${GNUPGHOME}" || die - chmod 700 "${GNUPGHOME}" || die - xdg_environment_reset RUST_BACKTRACE=full cargo_src_test -vv }