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 583B815A7D9 for ; Mon, 13 Mar 2023 18:07:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2A98E0825; Mon, 13 Mar 2023 18:07:06 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 AF5A4E0825 for ; Mon, 13 Mar 2023 18:07:06 +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 BFC2734375D for ; Mon, 13 Mar 2023 18:07:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D292F8DF for ; Mon, 13 Mar 2023 18:07:03 +0000 (UTC) From: "Sam James" 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" Message-ID: <1678730569.8dfdd1d61be81b8f378acf4d0fda14ce0e181123.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/codec2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/codec2/codec2-1.0.5.ebuild X-VCS-Directories: media-libs/codec2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8dfdd1d61be81b8f378acf4d0fda14ce0e181123 X-VCS-Branch: master Date: Mon, 13 Mar 2023 18:07:03 +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: 02c20ec7-a120-4a88-b6ab-b89d4bc0fb0e X-Archives-Hash: 797e49dd3d10973b53a941e1e1d4e7ea commit: 8dfdd1d61be81b8f378acf4d0fda14ce0e181123 Author: Matoro Mahri users noreply github com> AuthorDate: Sat Mar 11 16:44:17 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 13 18:02:49 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dfdd1d6 media-libs/codec2: disable tests in configure phase for now Tries to look for octave during configure phase if unit tests are turned on and bails out during configure if it cannot find it. Since we have test dependency disabled for now, don't flip this configure flag. Bug: https://bugs.gentoo.org/896112 Signed-off-by: Matoro Mahri users.noreply.github.com> Closes: https://github.com/gentoo/gentoo/pull/30055 Signed-off-by: Sam James gentoo.org> media-libs/codec2/codec2-1.0.5.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/media-libs/codec2/codec2-1.0.5.ebuild b/media-libs/codec2/codec2-1.0.5.ebuild index 6bb8b64fb122..b5913162c667 100644 --- a/media-libs/codec2/codec2-1.0.5.ebuild +++ b/media-libs/codec2/codec2-1.0.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -23,7 +23,12 @@ RESTRICT="test" multilib_src_configure() { local mycmakeargs=( - -DUNITTEST=$(usex test) + # tries to look for octave during configure phase if unit + # tests are turned on and bails out during configure if it + # cannot find it. since we have test dependency disabled + # for now, don't flip this configure flag + # -DUNITTEST=$(usex test) # reenable once tests wired up + -DUNITTEST=no -DINSTALL_EXAMPLES=$(usex examples) )