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 6F335158089 for ; Tue, 10 Oct 2023 08:24:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADA042BC013; Tue, 10 Oct 2023 08:24:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 97C392BC013 for ; Tue, 10 Oct 2023 08:24:35 +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 BECF9335C34 for ; Tue, 10 Oct 2023 08:24:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C25A99B for ; Tue, 10 Oct 2023 08:24:33 +0000 (UTC) From: "Konstantin Tutsch" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Konstantin Tutsch" Message-ID: <1696926150.eb477bcafd90e460b5855f4b8c37a50c5512f6bb.mail@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-sound/spot/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-sound/spot/spot-0.4.0.ebuild X-VCS-Directories: media-sound/spot/ X-VCS-Committer: mail X-VCS-Committer-Name: Konstantin Tutsch X-VCS-Revision: eb477bcafd90e460b5855f4b8c37a50c5512f6bb X-VCS-Branch: dev Date: Tue, 10 Oct 2023 08:24: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: 50adbe8c-7f9a-4c03-be21-307f2b8882ef X-Archives-Hash: 7cb31f495302c639dab45f67824a8ed9 commit: eb477bcafd90e460b5855f4b8c37a50c5512f6bb Author: Konstantin Tutsch konstantintutsch de> AuthorDate: Tue Oct 10 08:22:30 2023 +0000 Commit: Konstantin Tutsch konstantintutsch de> CommitDate: Tue Oct 10 08:22:30 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=eb477bca media-sound/spot: move spot binary early to meson Closes: https://bugs.gentoo.org/915521 Signed-off-by: Konstantin Tutsch konstantintutsch.de> media-sound/spot/spot-0.4.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-sound/spot/spot-0.4.0.ebuild b/media-sound/spot/spot-0.4.0.ebuild index 20ebd2d7e0..008440bb03 100644 --- a/media-sound/spot/spot-0.4.0.ebuild +++ b/media-sound/spot/spot-0.4.0.ebuild @@ -440,14 +440,14 @@ src_configure() { src_compile() { meson_src_compile cargo_src_compile -} -src_install() { # meson_src_install won't find spot binary otherwise because cargo.sh isn't used for compiling mv "${WORKDIR}/${P}/target/release/spot" \ "${WORKDIR}/${P}-build/src/spot" \ || die +} +src_install() { meson_src_install }