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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E456158042 for ; Fri, 1 Nov 2024 06:29:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 11F43E0875; Fri, 1 Nov 2024 06:29:51 +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 E62D7E0875 for ; Fri, 1 Nov 2024 06:29:50 +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 C547D3430DA for ; Fri, 1 Nov 2024 06:29:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA19711DF for ; Fri, 1 Nov 2024 06:29:47 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1730442575.6f7cbc8f74a55a157e03c90557427790bf5975bf.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/audacity/files/, media-sound/audacity/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/audacity/audacity-3.7.0.ebuild media-sound/audacity/files/audacity-3.7.0-do-not-include-template-on-unix-to-fix-clang-compile.patch X-VCS-Directories: media-sound/audacity/files/ media-sound/audacity/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 6f7cbc8f74a55a157e03c90557427790bf5975bf X-VCS-Branch: master Date: Fri, 1 Nov 2024 06:29:47 +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: 3bea99b4-1c54-4fdc-b923-2b4dd9e579c8 X-Archives-Hash: fa930faec147e9c0b0f14d2f1bab275b commit: 6f7cbc8f74a55a157e03c90557427790bf5975bf Author: Miroslav Šulc gentoo org> AuthorDate: Fri Nov 1 06:29:35 2024 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Nov 1 06:29:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f7cbc8f media-sound/audacity: fixed build of 3.7.0 with clang Bug: https://bugs.gentoo.org/915041 Signed-off-by: Miroslav Šulc gentoo.org> media-sound/audacity/audacity-3.7.0.ebuild | 3 +++ ...clude-template-on-unix-to-fix-clang-compile.patch | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/media-sound/audacity/audacity-3.7.0.ebuild b/media-sound/audacity/audacity-3.7.0.ebuild index 3b9ac4e8b0de..100dac9a70a6 100644 --- a/media-sound/audacity/audacity-3.7.0.ebuild +++ b/media-sound/audacity/audacity-3.7.0.ebuild @@ -136,6 +136,9 @@ PATCHES=( # #920363 "${FILESDIR}/audacity-3.7.0-audiocom-std-string.patch" + + # 915041 + "${FILESDIR}/audacity-3.7.0-do-not-include-template-on-unix-to-fix-clang-compile.patch" ) src_prepare() { diff --git a/media-sound/audacity/files/audacity-3.7.0-do-not-include-template-on-unix-to-fix-clang-compile.patch b/media-sound/audacity/files/audacity-3.7.0-do-not-include-template-on-unix-to-fix-clang-compile.patch new file mode 100644 index 000000000000..0feeebd8073c --- /dev/null +++ b/media-sound/audacity/files/audacity-3.7.0-do-not-include-template-on-unix-to-fix-clang-compile.patch @@ -0,0 +1,20 @@ +From e421fc29f044d88b4036b3004714ec353b1527aa Mon Sep 17 00:00:00 2001 +From: "David C. Manuelda" +Date: Fri, 1 Nov 2024 05:58:16 +0100 +Subject: [PATCH] Do not include template on Unix to fix clang compile issue + +Signed-off-by: David C. Manuelda +--- a/src/ListNavigationPanel.h ++++ b/src/ListNavigationPanel.h +@@ -13,7 +13,7 @@ + #include + #include + +-#if !defined(__FreeBSD__) && !defined(__OpenBSD__) ++#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__UNIX__) + extern template class WXDLLIMPEXP_CORE wxNavigationEnabled; + #endif + +-- +2.47.0 +