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 7932215808B for ; Thu, 14 Apr 2022 06:55:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE482E0886; Thu, 14 Apr 2022 06:55:57 +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 0CD26E0886 for ; Thu, 14 Apr 2022 06:55:57 +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 125D4341CA1 for ; Thu, 14 Apr 2022 06:55:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86FCA303 for ; Thu, 14 Apr 2022 06:55:54 +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: <1649919012.f3a125d5b010c8fbdfb49061f75c3fd1fa821cae.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opencv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/opencv/opencv-4.5.2-r3.ebuild media-libs/opencv/opencv-4.5.2-r5.ebuild media-libs/opencv/opencv-4.5.4.ebuild media-libs/opencv/opencv-4.5.5-r1.ebuild media-libs/opencv/opencv-4.5.5.ebuild X-VCS-Directories: media-libs/opencv/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f3a125d5b010c8fbdfb49061f75c3fd1fa821cae X-VCS-Branch: master Date: Thu, 14 Apr 2022 06:55:54 +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: bd4e6b03-5ff1-4585-ad54-7db8b5f9bb24 X-Archives-Hash: 1a579f0260b946cba39e49802a8f06f5 commit: f3a125d5b010c8fbdfb49061f75c3fd1fa821cae Author: Randall Vasquez icloud com> AuthorDate: Thu Apr 14 01:40:49 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 14 06:50:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3a125d5 media-libs/opencv: filter -O3 flags back down to -O2 Closes: https://bugs.gentoo.org/838274 Signed-off-by: Randall Vasquez icloud.com> Closes: https://github.com/gentoo/gentoo/pull/25021 Signed-off-by: Sam James gentoo.org> media-libs/opencv/opencv-4.5.2-r3.ebuild | 7 +++++-- media-libs/opencv/opencv-4.5.2-r5.ebuild | 7 +++++-- media-libs/opencv/opencv-4.5.4.ebuild | 7 +++++-- media-libs/opencv/opencv-4.5.5-r1.ebuild | 5 ++++- media-libs/opencv/opencv-4.5.5.ebuild | 7 +++++-- 5 files changed, 24 insertions(+), 9 deletions(-) diff --git a/media-libs/opencv/opencv-4.5.2-r3.ebuild b/media-libs/opencv/opencv-4.5.2-r3.ebuild index 9b1bb3c11c7c..9b3f36c342d0 100644 --- a/media-libs/opencv/opencv-4.5.2-r3.ebuild +++ b/media-libs/opencv/opencv-4.5.2-r3.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{7,8,9} ) CMAKE_ECLASS=cmake -inherit java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs +inherit flag-o-matic java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs DESCRIPTION="A collection of algorithms and sample code for various computer vision problems" HOMEPAGE="https://opencv.org" @@ -295,6 +295,9 @@ pkg_setup() { } src_prepare() { + # https://bugs.gentoo.org/838274 + replace-flags -O3 -O2 + cmake_src_prepare # remove bundled stuff diff --git a/media-libs/opencv/opencv-4.5.2-r5.ebuild b/media-libs/opencv/opencv-4.5.2-r5.ebuild index 21f9624b9049..2b66d2c57956 100644 --- a/media-libs/opencv/opencv-4.5.2-r5.ebuild +++ b/media-libs/opencv/opencv-4.5.2-r5.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{7,8,9,10} ) CMAKE_ECLASS=cmake -inherit java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs +inherit flag-o-matic java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs DESCRIPTION="A collection of algorithms and sample code for various computer vision problems" HOMEPAGE="https://opencv.org" @@ -296,6 +296,9 @@ pkg_setup() { } src_prepare() { + # https://bugs.gentoo.org/838274 + replace-flags -O3 -O2 + cmake_src_prepare # remove bundled stuff diff --git a/media-libs/opencv/opencv-4.5.4.ebuild b/media-libs/opencv/opencv-4.5.4.ebuild index d294809c1d6a..24070fe0c2e4 100644 --- a/media-libs/opencv/opencv-4.5.4.ebuild +++ b/media-libs/opencv/opencv-4.5.4.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{8..10} ) CMAKE_ECLASS=cmake -inherit java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs +inherit flag-o-matic java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs DESCRIPTION="A collection of algorithms and sample code for various computer vision problems" HOMEPAGE="https://opencv.org" @@ -307,6 +307,9 @@ pkg_setup() { } src_prepare() { + # https://bugs.gentoo.org/838274 + replace-flags -O3 -O2 + cmake_src_prepare # remove bundled stuff diff --git a/media-libs/opencv/opencv-4.5.5-r1.ebuild b/media-libs/opencv/opencv-4.5.5-r1.ebuild index 98288510a586..e3d2e5a3efbe 100644 --- a/media-libs/opencv/opencv-4.5.5-r1.ebuild +++ b/media-libs/opencv/opencv-4.5.5-r1.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{8..10} ) CMAKE_ECLASS=cmake -inherit java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs +inherit flag-o-matic java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs DESCRIPTION="A collection of algorithms and sample code for various computer vision problems" HOMEPAGE="https://opencv.org" @@ -303,6 +303,9 @@ pkg_setup() { } src_prepare() { + # https://bugs.gentoo.org/838274 + replace-flags -O3 -O2 + cmake_src_prepare # remove bundled stuff diff --git a/media-libs/opencv/opencv-4.5.5.ebuild b/media-libs/opencv/opencv-4.5.5.ebuild index cc9da840a605..7eddbcd042ce 100644 --- a/media-libs/opencv/opencv-4.5.5.ebuild +++ b/media-libs/opencv/opencv-4.5.5.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{8..10} ) CMAKE_ECLASS=cmake -inherit java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs +inherit flag-o-matic java-pkg-opt-2 java-ant-2 cmake-multilib python-r1 toolchain-funcs DESCRIPTION="A collection of algorithms and sample code for various computer vision problems" HOMEPAGE="https://opencv.org" @@ -303,6 +303,9 @@ pkg_setup() { } src_prepare() { + # https://bugs.gentoo.org/838274 + replace-flags -O3 -O2 + cmake_src_prepare # remove bundled stuff