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 9919B158064 for ; Mon, 13 May 2024 01:06:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 969392BC041; Mon, 13 May 2024 01:06:08 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 78D742BC041 for ; Mon, 13 May 2024 01:06:08 +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 827373430BF for ; Mon, 13 May 2024 01:06:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 158671A35 for ; Mon, 13 May 2024 01:06:06 +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: <1715562334.0373a330778a88a9be2b38a297e4f0263cd390da.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmbiff/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmbiff/wmbiff-0.4.36.ebuild X-VCS-Directories: x11-plugins/wmbiff/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0373a330778a88a9be2b38a297e4f0263cd390da X-VCS-Branch: master Date: Mon, 13 May 2024 01:06:06 +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: 310e5c0f-5164-4b83-b4da-90e8a309cb70 X-Archives-Hash: 7c45cb5f6cb64d4be0df41511f405bd8 commit: 0373a330778a88a9be2b38a297e4f0263cd390da Author: Eli Schwartz gmail com> AuthorDate: Mon May 13 01:01:48 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 13 01:05:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0373a330 x11-plugins/wmbiff: mark as LTO-unsafe Closes: https://bugs.gentoo.org/864855 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> x11-plugins/wmbiff/wmbiff-0.4.36.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/x11-plugins/wmbiff/wmbiff-0.4.36.ebuild b/x11-plugins/wmbiff/wmbiff-0.4.36.ebuild index 7f44590d0960..a433a5c8d123 100644 --- a/x11-plugins/wmbiff/wmbiff-0.4.36.ebuild +++ b/x11-plugins/wmbiff/wmbiff-0.4.36.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="WMBiff is a dock applet for WindowMaker which can monitor up to 5 mailboxes" HOMEPAGE="https://www.dockapps.net/wmbiff" @@ -36,5 +36,10 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/864855 + # https://groups.google.com/g/wmaker-dev/c/Z9mU9x4qxs0 + filter-lto + econf $(use_enable crypt crypto) }