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 7304815814C for ; Fri, 3 Nov 2023 23:58:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92BEB2BC021; Fri, 3 Nov 2023 23:58: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 6F3122BC021 for ; Fri, 3 Nov 2023 23:58: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 6ED05335D3A for ; Fri, 3 Nov 2023 23:58:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B28A4AA2 for ; Fri, 3 Nov 2023 23:58: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: <1699055481.6f0e7fbdb25bc731c4b9d769c0bcb21e33aff004.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liborcus/files/, dev-libs/liborcus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/liborcus/files/liborcus-0.17.2-gcc-14.patch dev-libs/liborcus/liborcus-0.17.2-r1.ebuild X-VCS-Directories: dev-libs/liborcus/files/ dev-libs/liborcus/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6f0e7fbdb25bc731c4b9d769c0bcb21e33aff004 X-VCS-Branch: master Date: Fri, 3 Nov 2023 23:58: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: 56694134-8cad-4b54-b8a3-d42a9a573445 X-Archives-Hash: 9914d8a2817725e380cf13e45a8a424e commit: 6f0e7fbdb25bc731c4b9d769c0bcb21e33aff004 Author: Kostadin Shishmanov tutanota com> AuthorDate: Tue Oct 31 16:56:06 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Nov 3 23:51:21 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f0e7fbd dev-libs/liborcus: fix build with gcc 14 Closes: https://bugs.gentoo.org/916582 Signed-off-by: Kostadin Shishmanov tutanota.com> Closes: https://github.com/gentoo/gentoo/pull/33609 Signed-off-by: Sam James gentoo.org> .../liborcus/files/liborcus-0.17.2-gcc-14.patch | 21 +++++++++++++++++++++ dev-libs/liborcus/liborcus-0.17.2-r1.ebuild | 1 + 2 files changed, 22 insertions(+) diff --git a/dev-libs/liborcus/files/liborcus-0.17.2-gcc-14.patch b/dev-libs/liborcus/files/liborcus-0.17.2-gcc-14.patch new file mode 100644 index 000000000000..a8455c9dff71 --- /dev/null +++ b/dev-libs/liborcus/files/liborcus-0.17.2-gcc-14.patch @@ -0,0 +1,21 @@ +https://gitlab.com/orcus/orcus/-/commit/f5dca3b4f7c6ffda4b71e0ba9f7081ab2eec3405 +https://gitlab.com/orcus/orcus/-/issues/192 +https://bugs.gentoo.org/916582 + +From f5dca3b4f7c6ffda4b71e0ba9f7081ab2eec3405 Mon Sep 17 00:00:00 2001 +From: Kohei Yoshida +Date: Thu, 26 Oct 2023 22:09:30 -0400 +Subject: [PATCH] Attempt to fix a build failure with GCC 14 as reported in #192 + +diff --git a/src/spreadsheet/document.cpp b/src/spreadsheet/document.cpp +index 1cf240a..562be32 100644 +--- a/src/spreadsheet/document.cpp ++++ b/src/spreadsheet/document.cpp +@@ -32,6 +32,7 @@ + #include + #include + #include ++#include + + using namespace std; + namespace fs = boost::filesystem; diff --git a/dev-libs/liborcus/liborcus-0.17.2-r1.ebuild b/dev-libs/liborcus/liborcus-0.17.2-r1.ebuild index 18b82b04bab9..bd813219cc60 100644 --- a/dev-libs/liborcus/liborcus-0.17.2-r1.ebuild +++ b/dev-libs/liborcus/liborcus-0.17.2-r1.ebuild @@ -39,6 +39,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}"/${P}-clang.patch "${FILESDIR}"/${P}-gcc-13.patch + "${FILESDIR}"/${P}-gcc-14.patch "${FILESDIR}"/${P}-python-optional.patch )