head 1.3; access; symbols pkgsrc-2025Q1:1.2.0.4 pkgsrc-2025Q1-base:1.2 pkgsrc-2024Q4:1.2.0.2 pkgsrc-2024Q4-base:1.2 pkgsrc-2024Q3:1.1.0.12 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.10 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.8 pkgsrc-2024Q1-base:1.1 pkgsrc-2023Q4:1.1.0.6 pkgsrc-2023Q4-base:1.1 pkgsrc-2023Q3:1.1.0.4 pkgsrc-2023Q3-base:1.1 pkgsrc-2023Q2:1.1.0.2 pkgsrc-2023Q2-base:1.1; locks; strict; comment @// @; 1.3 date 2025.05.09.05.56.19; author adam; state dead; branches; next 1.2; commitid Lydqku2xzOkD7cUF; 1.2 date 2024.11.30.17.47.50; author nros; state Exp; branches; next 1.1; commitid MHACtTrNd9WJcHzF; 1.1 date 2023.05.11.13.30.17; author nikita; state Exp; branches; next ; commitid oFgDAN6NG9bh4yoE; desc @@ 1.3 log @qtcreator: updated to 16.0.0 Qt Creator 16 comes with many performance improvements, especially for the startup performance. We improved the performance of the detection of the Qt ABI. Since Qt 6 we can retrieve the ABI from a configuration file instead of guessing it from the content of the libraries, which is now done asynchronously while collecting other information about the registered Qt versions. @ text @$NetBSD: patch-src_plugins_clangformat_clangformatbaseindenter.cpp,v 1.2 2024/11/30 17:47:50 nros Exp $ Fix build with LLVM 16 https://github.com/qt-creator/qt-creator/commit/e20bdfae4de90401a518135bc22958549dceda66 https://github.com/qt-creator/qt-creator/commit/f4545807defdfb493c1d66a19430a69d81afa40b --- src/plugins/clangformat/clangformatbaseindenter.cpp.orig 2023-05-11 14:22:23.741477809 +0200 +++ src/plugins/clangformat/clangformatbaseindenter.cpp 2023-05-11 14:29:29.745830013 +0200 @@@@ -47,11 +47,19 @@@@ #else style.SortIncludes = false; #endif +#if LLVM_VERSION_MAJOR >= 16 + style.SortUsingDeclarations = clang::format::FormatStyle::SUD_Never; +#else style.SortUsingDeclarations = false; +#endif // This is a separate pass, don't do it unless it's the full formatting. style.FixNamespaceComments = false; +#if LLVM_VERSION_MAJOR >= 16 + style.AlignTrailingComments = {clang::format::FormatStyle::TCAS_Never, 0}; +#else style.AlignTrailingComments = false; +#endif if (replacementsToKeep == ReplacementsToKeep::IndentAndBefore) return; @ 1.2 log @editors/qtcreator: add comments about llvm fixes, fix pkglint errors @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @qtcreator: fix build with llvm 16 @ text @d1 6 @