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 52B88158083 for ; Sun, 15 Sep 2024 20:57:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74A58E29A9; Sun, 15 Sep 2024 20:57:02 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54F2AE29A9 for ; Sun, 15 Sep 2024 20:57:02 +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 45D1233BF29 for ; Sun, 15 Sep 2024 20:57:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 862A3B6B for ; Sun, 15 Sep 2024 20:56:59 +0000 (UTC) From: "Alberto Gireud" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alberto Gireud" Message-ID: <1726433685.6fb37f3d4a39c0e6b4f2b4bb55f4f8ee3bd850f2.agireud@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-irc/halloy/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-irc/halloy/halloy-2024.11.ebuild X-VCS-Directories: net-irc/halloy/ X-VCS-Committer: agireud X-VCS-Committer-Name: Alberto Gireud X-VCS-Revision: 6fb37f3d4a39c0e6b4f2b4bb55f4f8ee3bd850f2 X-VCS-Branch: dev Date: Sun, 15 Sep 2024 20:56:59 +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: 31916631-d43b-4f1e-a2f2-19634f81a675 X-Archives-Hash: 44c7b5d15344a5262a8cc1c2c933db3f commit: 6fb37f3d4a39c0e6b4f2b4bb55f4f8ee3bd850f2 Author: Alberto Gireud protonmail com> AuthorDate: Sun Sep 15 20:54:45 2024 +0000 Commit: Alberto Gireud protonmail com> CommitDate: Sun Sep 15 20:54:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6fb37f3d net-irc/halloy: Fix sed command in src_configure Signed-off-by: Alberto Gireud protonmail.com> net-irc/halloy/halloy-2024.11.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-irc/halloy/halloy-2024.11.ebuild b/net-irc/halloy/halloy-2024.11.ebuild index 141496aaf..93c9dcded 100644 --- a/net-irc/halloy/halloy-2024.11.ebuild +++ b/net-irc/halloy/halloy-2024.11.ebuild @@ -663,7 +663,8 @@ src_configure() { if [[ ${PV} != *9999* ]] ; then # Fix cargo.eclass handling of patched dependencies # https://github.com/squidowl/halloy/blob/2024.11/Cargo.toml#L60-L62 - sed -i "s,'https://github.com/iced-rs/iced',crates-io,g" "${ECARGO_HOME}/config" || die + sed -i "s,'https://github.com/iced-rs/iced',crates-io,g" \ + "${ECARGO_HOME}/config.toml" || die fi cargo_src_configure }