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 88727158041 for ; Sun, 25 Feb 2024 08:42:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC47EE29CA; Sun, 25 Feb 2024 08:42:41 +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 ACD39E29CA for ; Sun, 25 Feb 2024 08:42:41 +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 DCD5A343052 for ; Sun, 25 Feb 2024 08:42:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29599B2F for ; Sun, 25 Feb 2024 08:42:39 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1708850553.5cadb75c92dcd146c598497e0a601a77476bfee3.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs/emacs-29.2-r1.ebuild app-editors/emacs/emacs-29.2.9999.ebuild app-editors/emacs/emacs-30.0.9999.ebuild X-VCS-Directories: app-editors/emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 5cadb75c92dcd146c598497e0a601a77476bfee3 X-VCS-Branch: master Date: Sun, 25 Feb 2024 08:42:39 +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: 02ed9218-c888-4257-8e46-7bab6aabe0c5 X-Archives-Hash: 8beb5e88f39cf53b81f73214f1791d71 commit: 5cadb75c92dcd146c598497e0a601a77476bfee3 Author: Ulrich Müller gentoo org> AuthorDate: Sun Feb 25 08:40:24 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Feb 25 08:42:33 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cadb75c app-editors/emacs: Shorten socket paths for gnupg Signed-off-by: Ulrich Müller gentoo.org> app-editors/emacs/emacs-29.2-r1.ebuild | 8 ++++---- app-editors/emacs/emacs-29.2.9999.ebuild | 8 ++++---- app-editors/emacs/emacs-30.0.9999.ebuild | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/app-editors/emacs/emacs-29.2-r1.ebuild b/app-editors/emacs/emacs-29.2-r1.ebuild index 0c5599307ee4..e6d111a23c30 100644 --- a/app-editors/emacs/emacs-29.2-r1.ebuild +++ b/app-editors/emacs/emacs-29.2-r1.ebuild @@ -452,11 +452,11 @@ src_test() { # Redirect GnuPG's sockets, in order not to exceed the 108 char limit # for socket paths on Linux. - mkdir "${T}"/gnupg || die + mkdir "${T}"/gpg || die local f - for f in S.gpg-agent{,.browser,.extra,.ssh}; do - printf "%%Assuan%%\nsocket=%s\n" "${T}/gnupg/${f}" \ - > "test/lisp/gnus/mml-sec-resources/${f}" || die + for f in browser extra ssh; do + printf "%%Assuan%%\nsocket=%s\n" "${T}/gpg/S.${f}" \ + > "test/lisp/gnus/mml-sec-resources/S.gpg-agent.${f}" || die done # See test/README for possible options diff --git a/app-editors/emacs/emacs-29.2.9999.ebuild b/app-editors/emacs/emacs-29.2.9999.ebuild index e478453357b9..61a66215f0bc 100644 --- a/app-editors/emacs/emacs-29.2.9999.ebuild +++ b/app-editors/emacs/emacs-29.2.9999.ebuild @@ -449,11 +449,11 @@ src_test() { # Redirect GnuPG's sockets, in order not to exceed the 108 char limit # for socket paths on Linux. - mkdir "${T}"/gnupg || die + mkdir "${T}"/gpg || die local f - for f in S.gpg-agent{,.browser,.extra,.ssh}; do - printf "%%Assuan%%\nsocket=%s\n" "${T}/gnupg/${f}" \ - > "test/lisp/gnus/mml-sec-resources/${f}" || die + for f in browser extra ssh; do + printf "%%Assuan%%\nsocket=%s\n" "${T}/gpg/S.${f}" \ + > "test/lisp/gnus/mml-sec-resources/S.gpg-agent.${f}" || die done # See test/README for possible options diff --git a/app-editors/emacs/emacs-30.0.9999.ebuild b/app-editors/emacs/emacs-30.0.9999.ebuild index f1c545bffd0b..89bb695cbae2 100644 --- a/app-editors/emacs/emacs-30.0.9999.ebuild +++ b/app-editors/emacs/emacs-30.0.9999.ebuild @@ -451,11 +451,11 @@ src_test() { # Redirect GnuPG's sockets, in order not to exceed the 108 char limit # for socket paths on Linux. - mkdir "${T}"/gnupg || die + mkdir "${T}"/gpg || die local f - for f in S.gpg-agent{,.browser,.extra,.ssh}; do - printf "%%Assuan%%\nsocket=%s\n" "${T}/gnupg/${f}" \ - > "test/lisp/gnus/mml-sec-resources/${f}" || die + for f in browser extra ssh; do + printf "%%Assuan%%\nsocket=%s\n" "${T}/gpg/S.${f}" \ + > "test/lisp/gnus/mml-sec-resources/S.gpg-agent.${f}" || die done # See test/README for possible options