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 2E7FE15838C for ; Tue, 30 Jan 2024 13:50:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D6C82BC024; Tue, 30 Jan 2024 13:50:25 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 2B2052BC024 for ; Tue, 30 Jan 2024 13:50:25 +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 108F23430C5 for ; Tue, 30 Jan 2024 13:50:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49A4EEC0 for ; Tue, 30 Jan 2024 13:50:22 +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: <1706622514.59a3a277d2adecbbfda0c88adf31583fd0cf99eb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-wm/wayfire/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-wm/wayfire/wayfire-0.7.5-r1.ebuild gui-wm/wayfire/wayfire-0.8.0-r1.ebuild gui-wm/wayfire/wayfire-0.8.0.ebuild gui-wm/wayfire/wayfire-9999.ebuild X-VCS-Directories: gui-wm/wayfire/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 59a3a277d2adecbbfda0c88adf31583fd0cf99eb X-VCS-Branch: master Date: Tue, 30 Jan 2024 13:50:22 +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: 5ba17ec2-2be2-4c05-8074-8234c32564b8 X-Archives-Hash: 5acd70e3d640a33e4a623e5bab910f10 commit: 59a3a277d2adecbbfda0c88adf31583fd0cf99eb Author: Alfred Wingate protonmail com> AuthorDate: Tue Jan 30 12:45:38 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 30 13:48:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59a3a277 gui-wm/wayfire: remove debug use flag [sam: It's not appropriate to have a USE flag just for compiler flags, plus asan/ubsan/valgrind aren't appropriate in ebuilds either as they're so sensitive to e.g. sandbox.] Closes: https://bugs.gentoo.org/923333 Signed-off-by: Alfred Wingate protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/35092 Signed-off-by: Sam James gentoo.org> gui-wm/wayfire/wayfire-0.7.5-r1.ebuild | 11 +++-------- gui-wm/wayfire/wayfire-0.8.0-r1.ebuild | 9 ++------- gui-wm/wayfire/wayfire-0.8.0.ebuild | 9 ++------- gui-wm/wayfire/wayfire-9999.ebuild | 11 +++-------- 4 files changed, 10 insertions(+), 30 deletions(-) diff --git a/gui-wm/wayfire/wayfire-0.7.5-r1.ebuild b/gui-wm/wayfire/wayfire-0.7.5-r1.ebuild index d2d80d37344a..eed7d341eeca 100644 --- a/gui-wm/wayfire/wayfire-0.7.5-r1.ebuild +++ b/gui-wm/wayfire/wayfire-0.7.5-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 2019-2023 Gentoo Authors +# Copyright 2019-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit meson toolchain-funcs +inherit meson DESCRIPTION="compiz like 3D wayland compositor" HOMEPAGE="https://github.com/WayfireWM/wayfire" @@ -18,7 +18,7 @@ fi LICENSE="MIT" SLOT="0" -IUSE="debug +gles +system-wfconfig +system-wlroots X" +IUSE="+gles +system-wfconfig +system-wlroots X" DEPEND=" dev-libs/libinput:= @@ -87,13 +87,8 @@ src_configure() { $(meson_feature system-wlroots use_system_wlroots) $(meson_feature X xwayland) $(meson_use gles enable_gles32) - $(usex debug --buildtype=debug "") - $(usex debug -Db_sanitize=address,undefined "") ) - # Clang will fail to link without this - tc-is-clang && emesonargs+=( $(usex debug -Db_lundef=false "") ) - meson_src_configure } diff --git a/gui-wm/wayfire/wayfire-0.8.0-r1.ebuild b/gui-wm/wayfire/wayfire-0.8.0-r1.ebuild index 1fb2416c2bd8..21f177deca0c 100644 --- a/gui-wm/wayfire/wayfire-0.8.0-r1.ebuild +++ b/gui-wm/wayfire/wayfire-0.8.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit meson toolchain-funcs +inherit meson DESCRIPTION="compiz like 3D wayland compositor" HOMEPAGE="https://github.com/WayfireWM/wayfire" @@ -19,7 +19,7 @@ else fi LICENSE="MIT" -IUSE="debug +gles +system-wfconfig +system-wlroots test X" +IUSE="+gles +system-wfconfig +system-wlroots test X" RESTRICT="!test? ( test )" # bundled wlroots has the following dependency string according to included headers. @@ -128,13 +128,8 @@ src_configure() { $(meson_feature test tests) $(meson_feature X xwayland) $(meson_use gles enable_gles32) - $(usex debug --buildtype=debug "") - $(usex debug -Db_sanitize=address,undefined "") ) - # Clang will fail to link without this - tc-is-clang && emesonargs+=( $(usex debug -Db_lundef=false "") ) - meson_src_configure } diff --git a/gui-wm/wayfire/wayfire-0.8.0.ebuild b/gui-wm/wayfire/wayfire-0.8.0.ebuild index 82a5b045146c..15e5598edc0f 100644 --- a/gui-wm/wayfire/wayfire-0.8.0.ebuild +++ b/gui-wm/wayfire/wayfire-0.8.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit meson toolchain-funcs +inherit meson DESCRIPTION="compiz like 3D wayland compositor" HOMEPAGE="https://github.com/WayfireWM/wayfire" @@ -19,7 +19,7 @@ else fi LICENSE="MIT" -IUSE="debug +gles +system-wfconfig +system-wlroots test X" +IUSE="+gles +system-wfconfig +system-wlroots test X" RESTRICT="!test? ( test )" # bundled wlroots has the following dependency string according to included headers. @@ -124,13 +124,8 @@ src_configure() { $(meson_feature test tests) $(meson_feature X xwayland) $(meson_use gles enable_gles32) - $(usex debug --buildtype=debug "") - $(usex debug -Db_sanitize=address,undefined "") ) - # Clang will fail to link without this - tc-is-clang && emesonargs+=( $(usex debug -Db_lundef=false "") ) - meson_src_configure } diff --git a/gui-wm/wayfire/wayfire-9999.ebuild b/gui-wm/wayfire/wayfire-9999.ebuild index 98fb0ebc32f0..d1cadbe72df8 100644 --- a/gui-wm/wayfire/wayfire-9999.ebuild +++ b/gui-wm/wayfire/wayfire-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 2019-2023 Gentoo Authors +# Copyright 2019-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit meson toolchain-funcs +inherit meson DESCRIPTION="compiz like 3D wayland compositor" HOMEPAGE="https://github.com/WayfireWM/wayfire" @@ -19,7 +19,7 @@ else fi LICENSE="MIT" -IUSE="debug +gles +system-wfconfig +system-wlroots test X" +IUSE="+gles +system-wfconfig +system-wlroots test X" RESTRICT="!test? ( test )" # bundled wlroots has the following dependency string according to included headers. @@ -125,13 +125,8 @@ src_configure() { $(meson_feature test tests) $(meson_feature X xwayland) $(meson_use gles enable_gles32) - $(usex debug --buildtype=debug "") - $(usex debug -Db_sanitize=address,undefined "") ) - # Clang will fail to link without this - tc-is-clang && emesonargs+=( $(usex debug -Db_lundef=false "") ) - meson_src_configure }