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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 87E971584AD for ; Tue, 15 Apr 2025 17:24:48 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 6C645342FE2 for ; Tue, 15 Apr 2025 17:24:48 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 6DDD7110494; Tue, 15 Apr 2025 17:24:47 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 5FEA1110494 for ; Tue, 15 Apr 2025 17:24:47 +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 12AD3342FF0 for ; Tue, 15 Apr 2025 17:24:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E3721748 for ; Tue, 15 Apr 2025 17:24:45 +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: <1744737880.cd9c225bc97a7c1da7df64ab1fcae09121367b62.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.4-r3.ebuild app-editors/emacs/emacs-30.1-r1.ebuild app-editors/emacs/emacs-30.1.9999.ebuild app-editors/emacs/emacs-31.0.9999.ebuild X-VCS-Directories: app-editors/emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: cd9c225bc97a7c1da7df64ab1fcae09121367b62 X-VCS-Branch: master Date: Tue, 15 Apr 2025 17:24:45 +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: 63b4afb1-b7ee-4ebd-bd65-ecd557b1bbe8 X-Archives-Hash: 4b9168b156ef7625edbdca402c96e9b5 commit: cd9c225bc97a7c1da7df64ab1fcae09121367b62 Author: Ulrich Müller gentoo org> AuthorDate: Tue Apr 15 17:19:25 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Apr 15 17:24:40 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd9c225b Revert "app-editors/emacs: remove --parents from mkdir command" The purpose of -p here is not to create parent dirs, but to prevent an error when the directory already exists. Without -p, src_test will fail when run for a second time. This reverts commit d15a2ed82cfd6b01246d1155c7e6d1827ba6a035. Signed-off-by: Ulrich Müller gentoo.org> app-editors/emacs/emacs-29.4-r3.ebuild | 2 +- app-editors/emacs/emacs-30.1-r1.ebuild | 2 +- app-editors/emacs/emacs-30.1.9999.ebuild | 2 +- app-editors/emacs/emacs-31.0.9999.ebuild | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-editors/emacs/emacs-29.4-r3.ebuild b/app-editors/emacs/emacs-29.4-r3.ebuild index b7647ebc37fe..24f08534cf91 100644 --- a/app-editors/emacs/emacs-29.4-r3.ebuild +++ b/app-editors/emacs/emacs-29.4-r3.ebuild @@ -485,7 +485,7 @@ src_test() { # Redirect GnuPG's sockets, in order not to exceed the 108 char limit # for socket paths on Linux. - mkdir "${T}"/gpg || die + mkdir -p "${T}"/gpg || die local f for f in browser extra ssh; do printf "%%Assuan%%\nsocket=%s\n" "${T}/gpg/S.${f}" \ diff --git a/app-editors/emacs/emacs-30.1-r1.ebuild b/app-editors/emacs/emacs-30.1-r1.ebuild index 8b2234972d89..cd0514ff09bf 100644 --- a/app-editors/emacs/emacs-30.1-r1.ebuild +++ b/app-editors/emacs/emacs-30.1-r1.ebuild @@ -462,7 +462,7 @@ src_test() { # Redirect GnuPG's sockets, in order not to exceed the 108 char limit # for socket paths on Linux. - mkdir "${T}"/gpg || die + mkdir -p "${T}"/gpg || die local f for f in browser extra ssh; do printf "%%Assuan%%\nsocket=%s\n" "${T}/gpg/S.${f}" \ diff --git a/app-editors/emacs/emacs-30.1.9999.ebuild b/app-editors/emacs/emacs-30.1.9999.ebuild index 5375eb5991fb..48048d101f14 100644 --- a/app-editors/emacs/emacs-30.1.9999.ebuild +++ b/app-editors/emacs/emacs-30.1.9999.ebuild @@ -457,7 +457,7 @@ src_test() { # Redirect GnuPG's sockets, in order not to exceed the 108 char limit # for socket paths on Linux. - mkdir "${T}"/gpg || die + mkdir -p "${T}"/gpg || die local f for f in browser extra ssh; do printf "%%Assuan%%\nsocket=%s\n" "${T}/gpg/S.${f}" \ diff --git a/app-editors/emacs/emacs-31.0.9999.ebuild b/app-editors/emacs/emacs-31.0.9999.ebuild index 7f7bf366daf0..ca9ff8677e41 100644 --- a/app-editors/emacs/emacs-31.0.9999.ebuild +++ b/app-editors/emacs/emacs-31.0.9999.ebuild @@ -455,7 +455,7 @@ src_test() { # Redirect GnuPG's sockets, in order not to exceed the 108 char limit # for socket paths on Linux. - mkdir "${T}"/gpg || die + mkdir -p "${T}"/gpg || die local f for f in browser extra ssh; do printf "%%Assuan%%\nsocket=%s\n" "${T}/gpg/S.${f}" \