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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A6D5158083 for ; Tue, 17 Sep 2024 11:37:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6FE1BE29A4; Tue, 17 Sep 2024 11:37:34 +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 514F9E29A4 for ; Tue, 17 Sep 2024 11:37:34 +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 3F5AC342FA2 for ; Tue, 17 Sep 2024 11:37:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6678E1AF1 for ; Tue, 17 Sep 2024 11:37:31 +0000 (UTC) From: "Gonçalo Negrier Duarte" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gonçalo Negrier Duarte" Message-ID: <1726573045.19e11cbc52ba3e7ab832ee4a34024250f5e8ceb5.gonegrier.duarte@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/satty/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/satty/satty-0.14.0.ebuild gui-apps/satty/satty-9999.ebuild X-VCS-Directories: gui-apps/satty/ X-VCS-Committer: gonegrier.duarte X-VCS-Committer-Name: Gonçalo Negrier Duarte X-VCS-Revision: 19e11cbc52ba3e7ab832ee4a34024250f5e8ceb5 X-VCS-Branch: dev Date: Tue, 17 Sep 2024 11:37:31 +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: 8cdd4b62-8366-400b-ab5f-e1cfc457242e X-Archives-Hash: 932fc5705f24f3ecd694c31fc41c2e57 commit: 19e11cbc52ba3e7ab832ee4a34024250f5e8ceb5 Author: Gonçalo Negrier Duarte gmail com> AuthorDate: Tue Sep 17 11:32:25 2024 +0000 Commit: Gonçalo Negrier Duarte gmail com> CommitDate: Tue Sep 17 11:37:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=19e11cbc gui-apps/satty: fix dobin location Bug: https://bugs.gentoo.org/939187 Signed-off-by: Gonçalo Negrier Duarte gmail.com> gui-apps/satty/satty-0.14.0.ebuild | 8 +------- gui-apps/satty/satty-9999.ebuild | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/gui-apps/satty/satty-0.14.0.ebuild b/gui-apps/satty/satty-0.14.0.ebuild index b5fbbd601..76135c5be 100644 --- a/gui-apps/satty/satty-0.14.0.ebuild +++ b/gui-apps/satty/satty-0.14.0.ebuild @@ -261,13 +261,7 @@ src_unpack() { src_install() { dodoc README.md - if use debug ; then - cd target/debug || die - else - cd target/release || die - fi - - dobin satty + dobin "$(cargo_target_dir)"/satty #Just add the icon and desktop file doicon "${S}/assets/satty.svg" domenu "${S}/satty.desktop" diff --git a/gui-apps/satty/satty-9999.ebuild b/gui-apps/satty/satty-9999.ebuild index 1c3a8a837..262d43dfb 100644 --- a/gui-apps/satty/satty-9999.ebuild +++ b/gui-apps/satty/satty-9999.ebuild @@ -52,13 +52,7 @@ src_unpack() { src_install() { dodoc README.md - if use debug ; then - cd target/debug || die - else - cd target/release || die - fi - - dobin satty + dobin "$(cargo_target_dir)"/satty #Just add the icon and desktop file doicon "${S}/assets/satty.svg" domenu "${S}/satty.desktop"