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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D85411582EF for ; Mon, 17 Feb 2025 17:00:40 +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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id C64BF34312D for ; Mon, 17 Feb 2025 17:00:40 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B345B110470; Mon, 17 Feb 2025 17:00:39 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id A457D1103A8 for ; Mon, 17 Feb 2025 17:00:39 +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 2E88D34309E for ; Mon, 17 Feb 2025 17:00:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E2E4175A for ; Mon, 17 Feb 2025 17:00:37 +0000 (UTC) From: "Patrick Nicolas" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Nicolas" Message-ID: <1739811450.9d593854133ba9df64c7abe62874fbb9161e8a92.patricknicolas@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev 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: patricknicolas X-VCS-Committer-Name: Patrick Nicolas X-VCS-Revision: 9d593854133ba9df64c7abe62874fbb9161e8a92 X-VCS-Branch: dev Date: Mon, 17 Feb 2025 17:00:37 +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: 0cf97184-da38-44a4-aba5-3eb111cfe5d7 X-Archives-Hash: 5029e349f59c34ac9fcaca32f51e3a51 commit: 9d593854133ba9df64c7abe62874fbb9161e8a92 Author: Patrick Nicolas laposte net> AuthorDate: Mon Feb 17 16:53:04 2025 +0000 Commit: Patrick Nicolas laposte net> 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)