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 A08A01581E7 for ; Mon, 22 Apr 2024 20:31:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0612AE29F6; Mon, 22 Apr 2024 20:31:54 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 DF033E29F6 for ; Mon, 22 Apr 2024 20:31:53 +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 331E6343331 for ; Mon, 22 Apr 2024 20:31:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 641731724 for ; Mon, 22 Apr 2024 20:31:50 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1713817873.22bcdb814979170228cfd85a49cd421a934c0903.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/wine-proton/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/wine-proton/wine-proton-7.0.6.ebuild app-emulation/wine-proton/wine-proton-8.0.5c.ebuild X-VCS-Directories: app-emulation/wine-proton/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 22bcdb814979170228cfd85a49cd421a934c0903 X-VCS-Branch: master Date: Mon, 22 Apr 2024 20:31:50 +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: c677b146-ea45-47e6-ac3a-8bf43e22cd90 X-Archives-Hash: 02e8b32504c0dbfaa7b7a58a852a7bb6 commit: 22bcdb814979170228cfd85a49cd421a934c0903 Author: Ionen Wolkens gentoo org> AuthorDate: Mon Apr 22 19:44:31 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Mon Apr 22 20:31:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22bcdb81 app-emulation/wine-proton: "fix" build with gcc-14 for old branches No release yet but current 9.0.9999 builds fine as-is, and would rather not worry about backporting for old branches. Closes: https://bugs.gentoo.org/924486 Signed-off-by: Ionen Wolkens gentoo.org> app-emulation/wine-proton/wine-proton-7.0.6.ebuild | 4 ++++ app-emulation/wine-proton/wine-proton-8.0.5c.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/app-emulation/wine-proton/wine-proton-7.0.6.ebuild b/app-emulation/wine-proton/wine-proton-7.0.6.ebuild index 50cc8ae8ca6c..25ee6175708f 100644 --- a/app-emulation/wine-proton/wine-proton-7.0.6.ebuild +++ b/app-emulation/wine-proton/wine-proton-7.0.6.ebuild @@ -250,6 +250,10 @@ src_configure() { [[ $($(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) == mold* ]] && append-ldflags -fuse-ld=bfd + # >=wine-proton-9 has proper fixes and builds with gcc-14, but would + # rather not have to worry about fixing old branches (bug #924486) + append-cflags $(test-flags-CC -Wno-error=incompatible-pointer-types) + # build using upstream's way (--with-wine64) # order matters: configure+compile 64->32, install 32->64 local -i bits diff --git a/app-emulation/wine-proton/wine-proton-8.0.5c.ebuild b/app-emulation/wine-proton/wine-proton-8.0.5c.ebuild index bb1944292c4d..9d8a60b340e9 100644 --- a/app-emulation/wine-proton/wine-proton-8.0.5c.ebuild +++ b/app-emulation/wine-proton/wine-proton-8.0.5c.ebuild @@ -254,6 +254,10 @@ src_configure() { [[ $($(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) == mold* ]] && append-ldflags -fuse-ld=bfd + # >=wine-proton-9 has proper fixes and builds with gcc-14, but would + # rather not have to worry about fixing old branches (bug #924486) + append-cflags $(test-flags-CC -Wno-error=incompatible-pointer-types) + # build using upstream's way (--with-wine64) # order matters: configure+compile 64->32, install 32->64 local -i bits