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 CDAAC1582EF for ; Tue, 18 Feb 2025 14:01:25 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id B8EFF34319D for ; Tue, 18 Feb 2025 14:01:25 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E624A110473; Tue, 18 Feb 2025 14:01:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 bobolink.gentoo.org (Postfix) with ESMTPS id D9F16110473 for ; Tue, 18 Feb 2025 14:01:17 +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 8E5A534317E for ; Tue, 18 Feb 2025 14:01:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1EA4273E for ; Tue, 18 Feb 2025 14:01:14 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1739811450.9d593854133ba9df64c7abe62874fbb9161e8a92.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: media-libs/wivrn/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-libs/wivrn/wivrn-0.23.2-r1.ebuild media-libs/wivrn/wivrn-0.23.2.ebuild media-libs/wivrn/wivrn-9999.ebuild X-VCS-Directories: media-libs/wivrn/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 9d593854133ba9df64c7abe62874fbb9161e8a92 X-VCS-Branch: master Date: Tue, 18 Feb 2025 14:01:14 +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: 59654b6c-bee6-4d4b-ac4a-e4549972ab24 X-Archives-Hash: ea3dcd1a84ccd5b441a476ad8e710f39 commit: 9d593854133ba9df64c7abe62874fbb9161e8a92 Author: Patrick Nicolas laposte net> AuthorDate: Mon Feb 17 16:53:04 2025 +0000 Commit: David Roman gmail com> CommitDate: Mon Feb 17 16:57:30 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9d593854 media-libs/wivrn: add NDEBUG Signed-off-by: Patrick Nicolas laposte.net> media-libs/wivrn/{wivrn-0.23.2.ebuild => wivrn-0.23.2-r1.ebuild} | 6 ++++-- media-libs/wivrn/wivrn-9999.ebuild | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/media-libs/wivrn/wivrn-0.23.2.ebuild b/media-libs/wivrn/wivrn-0.23.2-r1.ebuild similarity index 94% rename from media-libs/wivrn/wivrn-0.23.2.ebuild rename to media-libs/wivrn/wivrn-0.23.2-r1.ebuild index a9355e1af..55035d654 100644 --- a/media-libs/wivrn/wivrn-0.23.2.ebuild +++ b/media-libs/wivrn/wivrn-0.23.2-r1.ebuild @@ -3,14 +3,14 @@ EAPI=8 -inherit cmake fcaps xdg +inherit cmake fcaps flag-o-matic xdg DESCRIPTION="WiVRn OpenXR streaming" HOMEPAGE="https://github.com/WiVRn/WiVRn" LICENSE="GPL-3 Apache-2.0 MIT" SLOT="0" -IUSE="gui nvenc +pipewire pulseaudio systemd vaapi wireshark-plugins x264" +IUSE="debug gui nvenc +pipewire pulseaudio systemd vaapi wireshark-plugins x264" REQUIRED_USE="|| ( nvenc vaapi x264 )" if [[ ${PV} == 9999 ]]; then @@ -102,6 +102,8 @@ else fi src_configure() { + use debug || append-cflags "-DNDEBUG" + use debug || append-cxxflags "-DNDEBUG" if [[ ${PV} == 9999 ]]; then GIT_DESC=$(git describe --tags --always) GIT_COMMIT=$(git rev-parse HEAD) diff --git a/media-libs/wivrn/wivrn-9999.ebuild b/media-libs/wivrn/wivrn-9999.ebuild index a9355e1af..55035d654 100644 --- a/media-libs/wivrn/wivrn-9999.ebuild +++ b/media-libs/wivrn/wivrn-9999.ebuild @@ -3,14 +3,14 @@ EAPI=8 -inherit cmake fcaps xdg +inherit cmake fcaps flag-o-matic xdg DESCRIPTION="WiVRn OpenXR streaming" HOMEPAGE="https://github.com/WiVRn/WiVRn" LICENSE="GPL-3 Apache-2.0 MIT" SLOT="0" -IUSE="gui nvenc +pipewire pulseaudio systemd vaapi wireshark-plugins x264" +IUSE="debug gui nvenc +pipewire pulseaudio systemd vaapi wireshark-plugins x264" REQUIRED_USE="|| ( nvenc vaapi x264 )" if [[ ${PV} == 9999 ]]; then @@ -102,6 +102,8 @@ else fi src_configure() { + use debug || append-cflags "-DNDEBUG" + use debug || append-cxxflags "-DNDEBUG" if [[ ${PV} == 9999 ]]; then GIT_DESC=$(git describe --tags --always) GIT_COMMIT=$(git rev-parse HEAD)