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 0EFB6158020 for ; Mon, 21 Nov 2022 08:14:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07E15E09B7; Mon, 21 Nov 2022 08:14:37 +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 E447CE09B7 for ; Mon, 21 Nov 2022 08:14:36 +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 E913C341176 for ; Mon, 21 Nov 2022 08:14:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1DBC3762 for ; Mon, 21 Nov 2022 08:14:33 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1669018268.d40335b4046654b9e3c3afbd7e362c2e3626760a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/ergo/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/ergo/ergo-2.10.0-r1.ebuild net-irc/ergo/ergo-2.10.0.ebuild X-VCS-Directories: net-irc/ergo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d40335b4046654b9e3c3afbd7e362c2e3626760a X-VCS-Branch: master Date: Mon, 21 Nov 2022 08:14:33 +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: 8ac34761-504b-4958-9a0a-62d46ae01f27 X-Archives-Hash: 20ee967832ee9291c3692d8796117fa7 commit: d40335b4046654b9e3c3afbd7e362c2e3626760a Author: Sam James gentoo org> AuthorDate: Mon Nov 21 08:11:08 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Nov 21 08:11:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d40335b4 net-irc/ergo: fix username in OpenRC init script We should probably rename the user somehow but feels like a waste. Closes: https://bugs.gentoo.org/881489 Signed-off-by: Sam James gentoo.org> net-irc/ergo/{ergo-2.10.0.ebuild => ergo-2.10.0-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-irc/ergo/ergo-2.10.0.ebuild b/net-irc/ergo/ergo-2.10.0-r1.ebuild similarity index 92% rename from net-irc/ergo/ergo-2.10.0.ebuild rename to net-irc/ergo/ergo-2.10.0-r1.ebuild index 4a3df207138a..f166270d10d2 100644 --- a/net-irc/ergo/ergo-2.10.0.ebuild +++ b/net-irc/ergo/ergo-2.10.0-r1.ebuild @@ -23,6 +23,8 @@ DOCS=( README.md docs/MANUAL.md docs/USERGUIDE.md ) src_prepare() { default + sed -i -e 's:ERGO_USERNAME="ergo":ERGO_USERNAME="oragono":' distrib/openrc/ergo.confd || die + # Minor fiddling with paths sed -i \ -e 's:/home/ergo/ergo:/usr/bin/ergo:' \ @@ -33,7 +35,7 @@ src_prepare() { } src_compile() { - go build . || die + ego build . } src_install() {