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 93B2915817D for ; Mon, 17 Jun 2024 09:39:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31AFCE2A1A; Mon, 17 Jun 2024 09:39:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 190A0E2A1A for ; Mon, 17 Jun 2024 09:39: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F3BC0335D2B for ; Mon, 17 Jun 2024 09:39:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C0271D30 for ; Mon, 17 Jun 2024 09:39:30 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1718616472.a2780ad12203ceb1c4e473c0af848acbe5d9b34c.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/greetd/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-libs/greetd/greetd-0.10.0.ebuild gui-libs/greetd/greetd-0.9.0.ebuild X-VCS-Directories: gui-libs/greetd/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: a2780ad12203ceb1c4e473c0af848acbe5d9b34c X-VCS-Branch: master Date: Mon, 17 Jun 2024 09:39:30 +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: 1be0ef28-d1b1-4a4c-b135-9f4dcf6fb9c9 X-Archives-Hash: 83674b6aa6a33825638261c4c488c613 commit: a2780ad12203ceb1c4e473c0af848acbe5d9b34c Author: James Le Cuirot gentoo org> AuthorDate: Thu Jun 13 21:52:25 2024 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Mon Jun 17 09:27:52 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2780ad1 gui-libs/greetd: Use new cargo_target_dir helper Signed-off-by: James Le Cuirot gentoo.org> gui-libs/greetd/greetd-0.10.0.ebuild | 5 +---- gui-libs/greetd/greetd-0.9.0.ebuild | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/gui-libs/greetd/greetd-0.10.0.ebuild b/gui-libs/greetd/greetd-0.10.0.ebuild index 5e4a733651a2..1969369022d9 100644 --- a/gui-libs/greetd/greetd-0.10.0.ebuild +++ b/gui-libs/greetd/greetd-0.10.0.ebuild @@ -107,10 +107,7 @@ src_compile() { } src_install() { - # if USE=debug, install binaries from the debug directory; else - # install binaries from the release directory - # https://bugs.gentoo.org/889052 - dobin target/$(usex debug debug release)/{agreety,fakegreet,greetd} + dobin "$(cargo_target_dir)"/{agreety,fakegreet,greetd} insinto /etc/greetd doins config.toml diff --git a/gui-libs/greetd/greetd-0.9.0.ebuild b/gui-libs/greetd/greetd-0.9.0.ebuild index b90a0f18ce5d..e8411fc22c87 100644 --- a/gui-libs/greetd/greetd-0.9.0.ebuild +++ b/gui-libs/greetd/greetd-0.9.0.ebuild @@ -94,10 +94,7 @@ src_compile() { } src_install() { - # if USE=debug, install binaries from the debug directory; else - # install binaries from the release directory - # https://bugs.gentoo.org/889052 - dobin target/$(usex debug debug release)/{agreety,fakegreet,greetd} + dobin "$(cargo_target_dir)"/{agreety,fakegreet,greetd} insinto /etc/greetd doins config.toml