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 2788A15838C for ; Mon, 15 Jan 2024 18:13:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67AB5E2AF2; Mon, 15 Jan 2024 18:13:32 +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 4BC5AE2AF2 for ; Mon, 15 Jan 2024 18:13:32 +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 5C0ED3432A9 for ; Mon, 15 Jan 2024 18:13:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 939E895D for ; Mon, 15 Jan 2024 18:13:29 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1705342405.6981b4106613e758228eafcacd42d8cedf9b379c.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vidstab/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/vidstab/vidstab-1.1.1.ebuild media-libs/vidstab/vidstab-9999.ebuild X-VCS-Directories: media-libs/vidstab/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 6981b4106613e758228eafcacd42d8cedf9b379c X-VCS-Branch: master Date: Mon, 15 Jan 2024 18:13:29 +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: 50378501-c079-492e-9496-52b113747752 X-Archives-Hash: 2732e830983ae81fbfe6ae1855ef0aa8 commit: 6981b4106613e758228eafcacd42d8cedf9b379c Author: Kalin KOZHUHAROV gmail com> AuthorDate: Mon Jan 15 16:42:31 2024 +0000 Commit: Craig Andrews gentoo org> CommitDate: Mon Jan 15 18:13:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6981b410 media-libs/vidstab: -fopenmp when testing Closes: https://bugs.gentoo.org/740164 Reported-by: Kalin KOZHUHAROV thinrope.net> Signed-off-by: Kalin KOZHUHAROV thinrope.net> Bug: https://bugs.gentoo.org/836290 Closes: https://github.com/gentoo/gentoo/pull/34821 Signed-off-by: Craig Andrews gentoo.org> media-libs/vidstab/vidstab-1.1.1.ebuild | 5 +++-- media-libs/vidstab/vidstab-9999.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/media-libs/vidstab/vidstab-1.1.1.ebuild b/media-libs/vidstab/vidstab-1.1.1.ebuild index 108371643901..75793c8fcb19 100644 --- a/media-libs/vidstab/vidstab-1.1.1.ebuild +++ b/media-libs/vidstab/vidstab-1.1.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2018-2023 Gentoo Authors +# Copyright 2018-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -19,7 +19,7 @@ fi LICENSE="GPL-2+" SLOT="0" -IUSE="openmp cpu_flags_x86_sse2" +IUSE="openmp cpu_flags_x86_sse2 flag-o-matic" pkg_pretend() { [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp @@ -54,6 +54,7 @@ multilib_src_test() { -DUSE_OMP="$(usex openmp)" -DSSE2_FOUND="$(usex cpu_flags_x86_sse2)" ) + append-cflags $(test-flags-CC -fopenmp) local CMAKE_USE_DIR="${CMAKE_USE_DIR}/tests" local BUILD_DIR="${BUILD_DIR}/tests" cmake_src_configure diff --git a/media-libs/vidstab/vidstab-9999.ebuild b/media-libs/vidstab/vidstab-9999.ebuild index 38165c72a42b..8552e4389b80 100644 --- a/media-libs/vidstab/vidstab-9999.ebuild +++ b/media-libs/vidstab/vidstab-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2018-2023 Gentoo Authors +# Copyright 2018-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -19,7 +19,7 @@ fi LICENSE="GPL-2+" SLOT="0" -IUSE="openmp cpu_flags_x86_sse2" +IUSE="openmp cpu_flags_x86_sse2 flag-o-matic" pkg_pretend() { [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp @@ -54,6 +54,7 @@ multilib_src_test() { -DUSE_OMP="$(usex openmp)" -DSSE2_FOUND="$(usex cpu_flags_x86_sse2)" ) + append-cflags $(test-flags-CC -fopenmp) local CMAKE_USE_DIR="${CMAKE_USE_DIR}/tests" local BUILD_DIR="${BUILD_DIR}/tests" cmake_src_configure