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 6CA3015ACFB for ; Mon, 10 Apr 2023 02:54:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CE42E0867; Mon, 10 Apr 2023 02:54:39 +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 304F8E0867 for ; Mon, 10 Apr 2023 02:54:39 +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 32106340F13 for ; Mon, 10 Apr 2023 02:54:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0C93A39 for ; Mon, 10 Apr 2023 02:54:36 +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: <1681095113.c24233afd8db2429c0415ecdb7acefceffd5e94a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/soju/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/soju/soju-0.6.0.ebuild X-VCS-Directories: net-irc/soju/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c24233afd8db2429c0415ecdb7acefceffd5e94a X-VCS-Branch: master Date: Mon, 10 Apr 2023 02:54:36 +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: f442063b-fec5-4b75-be1d-da7f793d3118 X-Archives-Hash: bafd2854b66b9d397750ab92fe95b4a5 commit: c24233afd8db2429c0415ecdb7acefceffd5e94a Author: Alfred Persson Forsberg catcream org> AuthorDate: Mon Apr 3 16:06:00 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Apr 10 02:51:53 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c24233af net-irc/soju: build the sojudb tool Signed-off-by: Alfred Persson Forsberg catcream.org> Signed-off-by: Sam James gentoo.org> net-irc/soju/soju-0.6.0.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-irc/soju/soju-0.6.0.ebuild b/net-irc/soju/soju-0.6.0.ebuild index 9e41371c3733..f726d1503050 100644 --- a/net-irc/soju/soju-0.6.0.ebuild +++ b/net-irc/soju/soju-0.6.0.ebuild @@ -29,6 +29,7 @@ src_compile() { GOFLAGS+=" -tags=$(usex sqlite libsqlite3 nosqlite)" ego build ${GOFLAGS} ./cmd/soju + ego build ${GOFLAGS} ./cmd/sojudb ego build ${GOFLAGS} ./cmd/sojuctl scdoc doc/soju.1 || die @@ -36,6 +37,7 @@ src_compile() { src_install() { dobin soju + dobin sojudb dobin sojuctl doman doc/soju.1 @@ -50,5 +52,5 @@ src_install() { pkg_postinst() { elog "${PN} requires a user database for authenticating clients." elog "As the soju user, create a database using:" - elog "$ sojuctl -config ${EROOT}/etc/soju/config create-user [-admin]" + elog "$ sojudb -config ${EROOT}/etc/soju/config create-user [-admin]" }