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 5ECA9158041 for ; Sun, 25 Feb 2024 10:02:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A568E2A0C; Sun, 25 Feb 2024 10:02:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42628E29D8 for ; Sun, 25 Feb 2024 10:02:20 +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 85E6334307E for ; Sun, 25 Feb 2024 10:02:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A54514D6 for ; Sun, 25 Feb 2024 10:02:17 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1708853704.fefd0fc087daf8e6a4d27b423f3ee16b98e5ee50.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-libs/dr_flac/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-libs/dr_flac/dr_flac-0.12.42.ebuild X-VCS-Directories: media-libs/dr_flac/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: fefd0fc087daf8e6a4d27b423f3ee16b98e5ee50 X-VCS-Branch: master Date: Sun, 25 Feb 2024 10:02:17 +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: 956df7db-7fd1-4798-9604-fab40500efcb X-Archives-Hash: 2b8e0e82cacec4812ddae4f91432642e commit: fefd0fc087daf8e6a4d27b423f3ee16b98e5ee50 Author: Lucio Sauer posteo net> AuthorDate: Sun Feb 25 09:35:04 2024 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Sun Feb 25 09:35:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fefd0fc0 media-libs/dr_flac: use the edo eclass Signed-off-by: Lucio Sauer posteo.net> media-libs/dr_flac/dr_flac-0.12.42.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/media-libs/dr_flac/dr_flac-0.12.42.ebuild b/media-libs/dr_flac/dr_flac-0.12.42.ebuild index b690600871..830a44411c 100644 --- a/media-libs/dr_flac/dr_flac-0.12.42.ebuild +++ b/media-libs/dr_flac/dr_flac-0.12.42.ebuild @@ -1,9 +1,9 @@ -# Copyright 2023 Gentoo Authors +# Copyright 2023-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit toolchain-funcs +inherit edo toolchain-funcs DESCRIPTION="Single-header FLAC audio decoder library" HOMEPAGE="https://github.com/mackron/dr_libs/" @@ -60,7 +60,6 @@ src_compile() { pushd tests > /dev/null || die for tcase in ${TESTCASES[@]}; do - einfo "Compiling test case ${tcase}." case ${tcase} in *.cpp) MY_C=${MY_CXX} @@ -84,7 +83,7 @@ src_compile() { *) ;; esac - ${MY_BUILD} || die "Build failed: ${MY_BUILD}" + edo ${MY_BUILD} done popd || die fi @@ -93,8 +92,7 @@ src_compile() { src_test() { pushd tests > /dev/null || die for tcase in ${TESTCASES[@]}; do - einfo "Running test case ${tcase}." - ./bin/${tcase} || die "Test case ${tcase} failed." + edo bin/${tcase} done popd || die }