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 AB462158041 for ; Mon, 11 Mar 2024 17:31:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0C6CE2A21; Mon, 11 Mar 2024 17:31:12 +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 B2F97E2A21 for ; Mon, 11 Mar 2024 17:31:12 +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 8FD08342FFB for ; Mon, 11 Mar 2024 17:31:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCBDA1515 for ; Mon, 11 Mar 2024 17:31:08 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1710135753.308a5510df8a218870f4d0c4c1197b860ea5b177.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: games-emulation/conty/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-emulation/conty/conty-1.25.1.ebuild X-VCS-Directories: games-emulation/conty/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 308a5510df8a218870f4d0c4c1197b860ea5b177 X-VCS-Branch: master Date: Mon, 11 Mar 2024 17:31:08 +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: d0ba8987-531b-4e39-ad35-135bc174ee9c X-Archives-Hash: ff1b869c8d56f7d5b7ca4b9c8843e029 commit: 308a5510df8a218870f4d0c4c1197b860ea5b177 Author: Vitaly Zdanevich ya ru> AuthorDate: Mon Mar 11 05:42:33 2024 +0000 Commit: David Roman gmail com> CommitDate: Mon Mar 11 05:42:33 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=308a5510 games-emulation/conty: fix einfo executable name Signed-off-by: Vitaly Zdanevich ya.ru> games-emulation/conty/conty-1.25.1.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/games-emulation/conty/conty-1.25.1.ebuild b/games-emulation/conty/conty-1.25.1.ebuild index 45b0f880d3..6a850dbc54 100644 --- a/games-emulation/conty/conty-1.25.1.ebuild +++ b/games-emulation/conty/conty-1.25.1.ebuild @@ -8,7 +8,9 @@ HOMEPAGE="https://github.com/Kron4ek/Conty" inherit linux-info -SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${PN}_lite_dwarfs.sh" +NAME="${PN}_lite_dwarfs.sh" + +SRC_URI="https://github.com/Kron4ek/Conty/releases/download/${PV}/${NAME}" KEYWORDS="~amd64" LICENSE="MIT" @@ -28,9 +30,9 @@ src_install() { } pkg_postinst() { - einfo "How to use: $ ./conty.sh [command] [command_arguments]" - einfo "For example: ./conty.sh steam" + einfo "How to use: $ ${NAME} [command] [command_arguments]" + einfo "For example: ${NAME} steam" einfo "or" - einfo "WINEPREFIX=$HOME/wine-conty ./conty.sh gamescope -f -- wine ./game.exe" + einfo "WINEPREFIX=$HOME/wine-conty ${NAME} gamescope -f -- wine ./game.exe" }