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 318D715817D for ; Mon, 3 Jun 2024 07:39:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7844EE2A1C; Mon, 3 Jun 2024 07:39:23 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 57B51E2A1C for ; Mon, 3 Jun 2024 07:39:23 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6B6E4340836 for ; Mon, 3 Jun 2024 07:39:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D4A31587 for ; Mon, 3 Jun 2024 07:39:21 +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: <1717400236.52bbd3cb9b83ea7ac6f7c5e3038eb37bbf6fdbda.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-27.2-r16.ebuild app-editors/emacs/emacs-28.2-r12.ebuild app-editors/emacs/emacs-29.3-r2.ebuild app-editors/emacs/emacs-29.3.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: 52bbd3cb9b83ea7ac6f7c5e3038eb37bbf6fdbda X-VCS-Branch: master Date: Mon, 3 Jun 2024 07:39:21 +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: 19e5f3d3-9590-4089-abca-c587cc4cef49 X-Archives-Hash: c4e7fff2e8155b3dc43a43f5ae3a77a8 commit: 52bbd3cb9b83ea7ac6f7c5e3038eb37bbf6fdbda Author: Ulrich Müller gentoo org> AuthorDate: Mon Jun 3 07:23:36 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Jun 3 07:37:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52bbd3cb app-editors/emacs: Don't error out when directory already exists This will allow to rerun src_test. Signed-off-by: Ulrich Müller gentoo.org> app-editors/emacs/emacs-27.2-r16.ebuild | 2 +- app-editors/emacs/emacs-28.2-r12.ebuild | 2 +- app-editors/emacs/emacs-29.3-r2.ebuild | 4 ++-- app-editors/emacs/emacs-29.3.9999.ebuild | 4 ++-- app-editors/emacs/emacs-30.0.9999.ebuild | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app-editors/emacs/emacs-27.2-r16.ebuild b/app-editors/emacs/emacs-27.2-r16.ebuild index f464149b2e11..5c0b5934fb86 100644 --- a/app-editors/emacs/emacs-27.2-r16.ebuild +++ b/app-editors/emacs/emacs-27.2-r16.ebuild @@ -250,7 +250,7 @@ src_configure() { if tc-is-cross-compiler; then # Configure a CBUILD directory when cross-compiling to make tools - mkdir "${S}-build" && pushd "${S}-build" >/dev/null || die + mkdir -p "${S}-build" && pushd "${S}-build" >/dev/null || die ECONF_SOURCE="${S}" econf_build --without-all --without-x-toolkit popd >/dev/null || die # Don't try to execute the binary for dumping during the build diff --git a/app-editors/emacs/emacs-28.2-r12.ebuild b/app-editors/emacs/emacs-28.2-r12.ebuild index 691f6acc3c9d..50156d392662 100644 --- a/app-editors/emacs/emacs-28.2-r12.ebuild +++ b/app-editors/emacs/emacs-28.2-r12.ebuild @@ -285,7 +285,7 @@ src_configure() { if tc-is-cross-compiler; then # Configure a CBUILD directory when cross-compiling to make tools - mkdir "${S}-build" && pushd "${S}-build" >/dev/null || die + mkdir -p "${S}-build" && pushd "${S}-build" >/dev/null || die ECONF_SOURCE="${S}" econf_build --without-all --without-x-toolkit popd >/dev/null || die # Don't try to execute the binary for dumping during the build diff --git a/app-editors/emacs/emacs-29.3-r2.ebuild b/app-editors/emacs/emacs-29.3-r2.ebuild index b717950c33ce..c828ae18054e 100644 --- a/app-editors/emacs/emacs-29.3-r2.ebuild +++ b/app-editors/emacs/emacs-29.3-r2.ebuild @@ -345,7 +345,7 @@ src_configure() { if tc-is-cross-compiler; then # Configure a CBUILD directory when cross-compiling to make tools - mkdir "${S}-build" && pushd "${S}-build" >/dev/null || die + mkdir -p "${S}-build" && pushd "${S}-build" >/dev/null || die ECONF_SOURCE="${S}" econf_build --without-all --without-x-toolkit popd >/dev/null || die # Don't try to execute the binary for dumping during the build @@ -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-29.3.9999.ebuild b/app-editors/emacs/emacs-29.3.9999.ebuild index fbd5febcfaa7..4f14c5c8568a 100644 --- a/app-editors/emacs/emacs-29.3.9999.ebuild +++ b/app-editors/emacs/emacs-29.3.9999.ebuild @@ -342,7 +342,7 @@ src_configure() { if tc-is-cross-compiler; then # Configure a CBUILD directory when cross-compiling to make tools - mkdir "${S}-build" && pushd "${S}-build" >/dev/null || die + mkdir -p "${S}-build" && pushd "${S}-build" >/dev/null || die ECONF_SOURCE="${S}" econf_build --without-all --without-x-toolkit popd >/dev/null || die # Don't try to execute the binary for dumping during the build @@ -449,7 +449,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.0.9999.ebuild b/app-editors/emacs/emacs-30.0.9999.ebuild index 572a28d32bdb..dd2880411851 100644 --- a/app-editors/emacs/emacs-30.0.9999.ebuild +++ b/app-editors/emacs/emacs-30.0.9999.ebuild @@ -342,7 +342,7 @@ src_configure() { if tc-is-cross-compiler; then # Configure a CBUILD directory when cross-compiling to make tools - mkdir "${S}-build" && pushd "${S}-build" >/dev/null || die + mkdir -p "${S}-build" && pushd "${S}-build" >/dev/null || die ECONF_SOURCE="${S}" econf_build --without-all --without-x-toolkit popd >/dev/null || die # Don't try to execute the binary for dumping during the build @@ -449,7 +449,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}" \