From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 63A3E1581FD for ; Sun, 07 Sep 2025 16:48:35 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 49821340FEE for ; Sun, 07 Sep 2025 16:48:35 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 27F5A110571; Sun, 07 Sep 2025 16:48:30 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 171061103BA for ; Sun, 07 Sep 2025 16:48:30 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B7C3F335DCC for ; Sun, 07 Sep 2025 16:48:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2AC5638D6 for ; Sun, 07 Sep 2025 16:48:28 +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: <1757263665.e4127b5368d9ef522f77070b86b81af2c4726307.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.11.0-r1.ebuild X-VCS-Directories: media-libs/opencv/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e4127b5368d9ef522f77070b86b81af2c4726307 X-VCS-Branch: master Date: Sun, 07 Sep 2025 16:48:28 +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: 1ed4e27d-5505-42ad-aecd-1f91eb51c377 X-Archives-Hash: 519b2a888d0a8fba6df269b47e5ae4f5 commit: e4127b5368d9ef522f77070b86b81af2c4726307 Author: Paul Zander gmail com> AuthorDate: Sun Sep 7 07:59:49 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 7 16:47:45 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4127b53 media-libs/opencv: 4.11.0 explicitly pass DEBUG/NDEBUG This is stripped by cleaning the default BUILD_TYPE flags in cmake.eclass, but opencv expects and uses it. So we need to explicitly pass it. Signed-off-by: Paul Zander gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/43701 Closes: https://github.com/gentoo/gentoo/pull/43701 Signed-off-by: Sam James gentoo.org> media-libs/opencv/opencv-4.11.0-r1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/media-libs/opencv/opencv-4.11.0-r1.ebuild b/media-libs/opencv/opencv-4.11.0-r1.ebuild index b16b161fcb09..6da0024da9d0 100644 --- a/media-libs/opencv/opencv-4.11.0-r1.ebuild +++ b/media-libs/opencv/opencv-4.11.0-r1.ebuild @@ -696,6 +696,8 @@ multilib_src_configure() { # bug #919101 and https://github.com/opencv/opencv/issues/19020 filter-lto + append-cppflags "$(usex debug '-DDEBUG' '-DNDEBUG')" + # please don't sort here, order is the same as in CMakeLists.txt local mycmakeargs=( -DMIN_VER_CMAKE=3.26