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 86468159C9B for ; Fri, 9 Aug 2024 14:29:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6085E2B8E; Fri, 9 Aug 2024 14:29:22 +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 97297E2B8E for ; Fri, 9 Aug 2024 14:29:22 +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 A016A3430F3 for ; Fri, 9 Aug 2024 14:29:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0EBA31B9A for ; Fri, 9 Aug 2024 14:29:20 +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: <1723213732.9f442ca90187f99c4812018de6d878b16947f5a2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/lib3mf/, media-libs/lib3mf/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/lib3mf/files/lib3mf-2.2.0-include-cstdint.patch media-libs/lib3mf/lib3mf-2.2.0.ebuild X-VCS-Directories: media-libs/lib3mf/files/ media-libs/lib3mf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9f442ca90187f99c4812018de6d878b16947f5a2 X-VCS-Branch: master Date: Fri, 9 Aug 2024 14:29:20 +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: 4ebe973b-4b78-4121-ad65-d149176fd6dd X-Archives-Hash: 5e661663661c80fd353e010f1e191bda commit: 9f442ca90187f99c4812018de6d878b16947f5a2 Author: Christopher Fore posteo net> AuthorDate: Fri Aug 9 14:23:29 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Aug 9 14:28:52 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f442ca9 media-libs/lib3mf: Fix compilation on GCC 15 - Tests pass - Patched file is not an installed header Note: Upstream PR fixes an additional file that does not error on 2.2.0 Upstream: https://github.com/3MFConsortium/lib3mf/pull/387 Closes: https://bugs.gentoo.org/937423 Signed-off-by: Christopher Fore posteo.net> Closes: https://github.com/gentoo/gentoo/pull/38030 Signed-off-by: Sam James gentoo.org> media-libs/lib3mf/files/lib3mf-2.2.0-include-cstdint.patch | 13 +++++++++++++ media-libs/lib3mf/lib3mf-2.2.0.ebuild | 1 + 2 files changed, 14 insertions(+) diff --git a/media-libs/lib3mf/files/lib3mf-2.2.0-include-cstdint.patch b/media-libs/lib3mf/files/lib3mf-2.2.0-include-cstdint.patch new file mode 100644 index 000000000000..36776fd02751 --- /dev/null +++ b/media-libs/lib3mf/files/lib3mf-2.2.0-include-cstdint.patch @@ -0,0 +1,13 @@ +diff --git a/Source/Common/Platform/NMR_ImportStream_Unique_Memory.cpp b/Source/Common/Platform/NMR_ImportStream_Unique_Memory.cpp +index 43fd428..e966aa0 100644 +--- a/Source/Common/Platform/NMR_ImportStream_Unique_Memory.cpp ++++ b/Source/Common/Platform/NMR_ImportStream_Unique_Memory.cpp +@@ -35,6 +35,8 @@ This is a platform independent class for keeping data in a memory stream that ow + #include "Common/NMR_Exception.h" + #include "Common/NMR_Exception_Windows.h" + ++#include ++ + namespace NMR { + + CImportStream_Unique_Memory::CImportStream_Unique_Memory() diff --git a/media-libs/lib3mf/lib3mf-2.2.0.ebuild b/media-libs/lib3mf/lib3mf-2.2.0.ebuild index 97ec4b4b7146..d5d470010791 100644 --- a/media-libs/lib3mf/lib3mf-2.2.0.ebuild +++ b/media-libs/lib3mf/lib3mf-2.2.0.ebuild @@ -36,6 +36,7 @@ PATCHES=( "${FILESDIR}"/${P}-0001-use-system-provided-act-binary.patch "${FILESDIR}"/${P}-0002-Gentoo-specific-remove-add_dependencies.patch "${FILESDIR}"/${P}-0001-remove-std-and-opt-flags.patch + "${FILESDIR}"/${P}-include-cstdint.patch ) src_configure() {