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 70F4A1584AD for ; Tue, 15 Apr 2025 10:09:56 +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)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 5258B342FE8 for ; Tue, 15 Apr 2025 10:09:56 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 448701104B0; Tue, 15 Apr 2025 10:09:55 +0000 (UTC) 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 bobolink.gentoo.org (Postfix) with ESMTPS id 380F61104B0 for ; Tue, 15 Apr 2025 10:09:55 +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 ABBD6342FE8 for ; Tue, 15 Apr 2025 10:09:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2E69FBE for ; Tue, 15 Apr 2025 10:09:52 +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: <1744711495.d15a2ed82cfd6b01246d1155c7e6d1827ba6a035.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: d15a2ed82cfd6b01246d1155c7e6d1827ba6a035 X-VCS-Branch: master Date: Tue, 15 Apr 2025 10:09:52 +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: 538ffe8f-dc34-4ddb-8183-011f1646458b X-Archives-Hash: da142cb4a9f4887c302f36833cb63f0c commit: d15a2ed82cfd6b01246d1155c7e6d1827ba6a035 Author: Filip Kobierski pm me> AuthorDate: Mon Apr 14 20:06:12 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Apr 15 10:04:55 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d15a2ed8 app-editors/emacs: remove --parents from mkdir command 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 24f08534cf91..b7647ebc37fe 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 -p "${T}"/gpg || die + mkdir "${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 cd0514ff09bf..8b2234972d89 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 -p "${T}"/gpg || die + mkdir "${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 48048d101f14..5375eb5991fb 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 -p "${T}"/gpg || die + mkdir "${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 ca9ff8677e41..7f7bf366daf0 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 -p "${T}"/gpg || die + mkdir "${T}"/gpg || die local f for f in browser extra ssh; do printf "%%Assuan%%\nsocket=%s\n" "${T}/gpg/S.${f}" \