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 925E615817D for ; Sun, 9 Jun 2024 13:42:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F1E42BC014; Sun, 9 Jun 2024 13:42:36 +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 574452BC014 for ; Sun, 9 Jun 2024 13:42: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 47473340DE6 for ; Sun, 9 Jun 2024 13:42:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 685ED1264 for ; Sun, 9 Jun 2024 13:42:33 +0000 (UTC) From: "Takuya Wakazono" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Takuya Wakazono" Message-ID: <1717940542.f36666cff195c2844946a2aeff6f4e756cc01d31.pastalian46@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/gitui/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-vcs/gitui/gitui-0.26.3.ebuild X-VCS-Directories: dev-vcs/gitui/ X-VCS-Committer: pastalian46 X-VCS-Committer-Name: Takuya Wakazono X-VCS-Revision: f36666cff195c2844946a2aeff6f4e756cc01d31 X-VCS-Branch: dev Date: Sun, 9 Jun 2024 13:42: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: 9459fc0f-50e6-47c5-9c94-7df44d4db51a X-Archives-Hash: 26d49520f48a21c3997288d9940b80af commit: f36666cff195c2844946a2aeff6f4e756cc01d31 Author: Takuya Wakazono gmail com> AuthorDate: Sun Jun 9 13:32:46 2024 +0000 Commit: Takuya Wakazono gmail com> CommitDate: Sun Jun 9 13:42:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f36666cf dev-vcs/gitui: fix postinst message Signed-off-by: Takuya Wakazono gmail.com> dev-vcs/gitui/gitui-0.26.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-vcs/gitui/gitui-0.26.3.ebuild b/dev-vcs/gitui/gitui-0.26.3.ebuild index 4cad5bc84..ddd92c844 100644 --- a/dev-vcs/gitui/gitui-0.26.3.ebuild +++ b/dev-vcs/gitui/gitui-0.26.3.ebuild @@ -353,6 +353,6 @@ src_install() { } pkg_postinst() { - einfo "Example of vim keybindings config stored in '/usr/share/doc/${P}'" - einfo 'to use it put example config in `$XDG_CONFIG_HOME/gitui/key_config.ron`' + elog "Example vim style key config is installed in '${EROOT}/usr/share/doc/${PF}'." + elog "To use it, copy the content into '\$XDG_CONFIG_HOME/gitui/key_configs.ron'." }