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 555BC159C9B for ; Mon, 5 Aug 2024 03:36:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19A022BC04E; Mon, 5 Aug 2024 03:36:49 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E3C742BC04F for ; Mon, 5 Aug 2024 03:36:48 +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 35E88341C25 for ; Mon, 5 Aug 2024 03:36:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DF611EAF for ; Mon, 5 Aug 2024 03:36:44 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1722828947.5898a5667147856426c3c842eb6eae4949575853.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/muffin/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/muffin/muffin-6.0.1-r1.ebuild x11-wm/muffin/muffin-6.0.1-r2.ebuild x11-wm/muffin/muffin-6.2.0.ebuild X-VCS-Directories: x11-wm/muffin/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 5898a5667147856426c3c842eb6eae4949575853 X-VCS-Branch: master Date: Mon, 5 Aug 2024 03:36:44 +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: f780e5ab-5d41-4579-994e-180dbcee7ee4 X-Archives-Hash: ad65ff842bde437fd28d64a6d6ca097b commit: 5898a5667147856426c3c842eb6eae4949575853 Author: Matthew S. Turnbull bluefang-logic com> AuthorDate: Mon Jun 24 05:08:12 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Mon Aug 5 03:35:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5898a566 x11-wm/muffin: Add filter-lto for LTO issues with USE="wayland" Bug: https://bugs.gentoo.org/933879 Signed-off-by: Matthew S. Turnbull bluefang-logic.com> Signed-off-by: Eli Schwartz gentoo.org> x11-wm/muffin/muffin-6.0.1-r1.ebuild | 6 +++++- x11-wm/muffin/muffin-6.0.1-r2.ebuild | 6 +++++- x11-wm/muffin/muffin-6.2.0.ebuild | 6 +++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/x11-wm/muffin/muffin-6.0.1-r1.ebuild b/x11-wm/muffin/muffin-6.0.1-r1.ebuild index 92298d7401d7..c7d7979e68da 100644 --- a/x11-wm/muffin/muffin-6.0.1-r1.ebuild +++ b/x11-wm/muffin/muffin-6.0.1-r1.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{10..12} ) -inherit gnome2-utils meson python-any-r1 virtualx +inherit flag-o-matic gnome2-utils meson python-any-r1 virtualx DESCRIPTION="Compositing window manager forked from Mutter for use with Cinnamon" HOMEPAGE="https://projects.linuxmint.com/cinnamon/ https://github.com/linuxmint/muffin" @@ -157,6 +157,10 @@ src_configure() { ) fi + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/933879 + use wayland && filter-lto + meson_src_configure } diff --git a/x11-wm/muffin/muffin-6.0.1-r2.ebuild b/x11-wm/muffin/muffin-6.0.1-r2.ebuild index e435de52195d..881c52c194a2 100644 --- a/x11-wm/muffin/muffin-6.0.1-r2.ebuild +++ b/x11-wm/muffin/muffin-6.0.1-r2.ebuild @@ -5,7 +5,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..12} ) -inherit gnome2-utils meson python-any-r1 virtualx +inherit flag-o-matic gnome2-utils meson python-any-r1 virtualx DESCRIPTION="Compositing window manager forked from Mutter for use with Cinnamon" HOMEPAGE="https://projects.linuxmint.com/cinnamon/ https://github.com/linuxmint/muffin" @@ -164,6 +164,10 @@ src_configure() { ) fi + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/933879 + use wayland && filter-lto + meson_src_configure } diff --git a/x11-wm/muffin/muffin-6.2.0.ebuild b/x11-wm/muffin/muffin-6.2.0.ebuild index 1a6516497de1..30fc4b7ff295 100644 --- a/x11-wm/muffin/muffin-6.2.0.ebuild +++ b/x11-wm/muffin/muffin-6.2.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..13} ) -inherit gnome2-utils meson python-any-r1 virtualx +inherit flag-o-matic gnome2-utils meson python-any-r1 virtualx DESCRIPTION="Compositing window manager forked from Mutter for use with Cinnamon" HOMEPAGE="https://projects.linuxmint.com/cinnamon/ https://github.com/linuxmint/muffin" @@ -157,6 +157,10 @@ src_configure() { ) fi + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/933879 + use wayland && filter-lto + meson_src_configure }