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 BF151158041 for ; Thu, 4 Apr 2024 10:09:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05FEAE2AF5; Thu, 4 Apr 2024 10:09:16 +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 D9331E2AF5 for ; Thu, 4 Apr 2024 10:09:15 +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 6A2F1343279 for ; Thu, 4 Apr 2024 10:09:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF0101678 for ; Thu, 4 Apr 2024 10:09:11 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1712206793.02dd151b8d9d1b8bce6e50b1e0e1bc3ce2a70174.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-irc/halloy/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-irc/halloy/halloy-2024.5.ebuild X-VCS-Directories: net-irc/halloy/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 02dd151b8d9d1b8bce6e50b1e0e1bc3ce2a70174 X-VCS-Branch: master Date: Thu, 4 Apr 2024 10:09:11 +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: cc920b6f-69cd-439e-a4aa-f7de50505387 X-Archives-Hash: cd4ad3b0782fd30fd8c91605ac0cb492 commit: 02dd151b8d9d1b8bce6e50b1e0e1bc3ce2a70174 Author: Alberto Gireud protonmail com> AuthorDate: Thu Apr 4 04:59:53 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Thu Apr 4 04:59:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=02dd151b net-irc/halloy: Ensure build fails if sed command fails Signed-off-by: Alberto Gireud protonmail.com> net-irc/halloy/halloy-2024.5.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-irc/halloy/halloy-2024.5.ebuild b/net-irc/halloy/halloy-2024.5.ebuild index 03109f7cc6..b263d56848 100644 --- a/net-irc/halloy/halloy-2024.5.ebuild +++ b/net-irc/halloy/halloy-2024.5.ebuild @@ -551,7 +551,7 @@ src_configure() { if [[ ${PV} != *9999* ]] ; then # Fix cargo.eclass handling of patched dependencies # https://github.com/squidowl/halloy/blob/main/Cargo.toml#L52-L54 - sed -i "s,'https://github.com/iced-rs/iced',crates-io,g" "${ECARGO_HOME}/config" + sed -i "s,'https://github.com/iced-rs/iced',crates-io,g" "${ECARGO_HOME}/config" || die fi cargo_src_configure }