From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1552365-garchives=archives.gentoo.org@lists.gentoo.org>
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 A69D8158089
	for <garchives@archives.gentoo.org>; Wed,  6 Sep 2023 08:39:35 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D43DE2BC03C;
	Wed,  6 Sep 2023 08:39: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))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id A384C2BC03E
	for <gentoo-commits@lists.gentoo.org>; Wed,  6 Sep 2023 08: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 BB585335CEE
	for <gentoo-commits@lists.gentoo.org>; Wed,  6 Sep 2023 08:39:33 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id A5DEC1130
	for <gentoo-commits@lists.gentoo.org>; Wed,  6 Sep 2023 08:39:30 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org>
Message-ID: <1693989361.2dba2af1ade41d062471d2d9ec9db25b1956882f.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/thin-provisioning-tools/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-block/thin-provisioning-tools/thin-provisioning-tools-9999.ebuild
X-VCS-Directories: sys-block/thin-provisioning-tools/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 2dba2af1ade41d062471d2d9ec9db25b1956882f
X-VCS-Branch: master
Date: Wed,  6 Sep 2023 08:39:30 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 93d54474-2d20-4096-b449-6dc9a1ae87c6
X-Archives-Hash: 1f299f259340f142ac7f00e10cdf2553

commit:     2dba2af1ade41d062471d2d9ec9db25b1956882f
Author:     Peter Levine <plevine457 <AT> gmail <DOT> com>
AuthorDate: Sat Sep  2 04:56:57 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep  6 08:36:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dba2af1

sys-block/thin-provisioning-tools: remove src_compile

With emake, the Makefile just runs `cargo build --release` which
doesn't use ECARGO_ARGS set in cargo_src_configure() and doesn't
respect the debug USE flag. Let cargo_src_compile() handle building.

Signed-off-by: Peter Levine <plevine457 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-block/thin-provisioning-tools/thin-provisioning-tools-9999.ebuild | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/sys-block/thin-provisioning-tools/thin-provisioning-tools-9999.ebuild b/sys-block/thin-provisioning-tools/thin-provisioning-tools-9999.ebuild
index ae24da6e182e..92ce1cf581dd 100644
--- a/sys-block/thin-provisioning-tools/thin-provisioning-tools-9999.ebuild
+++ b/sys-block/thin-provisioning-tools/thin-provisioning-tools-9999.ebuild
@@ -170,10 +170,6 @@ src_configure() {
 	cargo_src_configure
 }
 
-src_compile() {
-	emake V= STRIP=true
-}
-
 src_install() {
 	emake V= DESTDIR="${D}" DATADIR="${ED}/usr/share" STRIP=true install
 }