qt6-qtcreator: update to v17.0.0

This commit is contained in:
Golubchikov Mihail
2025-06-18 19:10:11 +03:00
committed by Renee Otten
parent 6e875813ab
commit 3bcc85fe7d
2 changed files with 18 additions and 4 deletions
+7 -4
View File
@@ -6,7 +6,7 @@ PortGroup qt6 1.0
name qt6-qtcreator
version 16.0.2
version 17.0.0
revision 0
categories devel aqua
# qt creator 16.0.0 requires qt 6.5.3
@@ -27,9 +27,9 @@ homepage http://qt-project.org/wiki/Category:Tools::QtCreator
distname qt-creator-opensource-src-${version}
master_sites https://download.qt.io/official_releases/qtcreator/[join [lrange [split ${version} .] 0 1] .]/${version}/
checksums rmd160 be94f743794aabab37bd95ad82b52565e5c42583 \
sha256 ee921e427e9a196f5dec2ca599dd764ad447cf002b958bc5c816be1991f381c4 \
size 65103866
checksums rmd160 782e97094915ca34c19c5a11c1a2be579693e5a0 \
sha256 e84e865f544e9aaeec00c12a111d60100b7a085f32166200f659284551cbabee \
size 67894912
compiler.cxx_standard \
2020
@@ -56,6 +56,9 @@ if {([vercmp ${xcodeversion} 15] >= 0)} {
-DClang_DIR=${llvm_dir}/lib/cmake/clang
} else {
configure.compiler clang
# fix operator <=> return type deduction
patchfiles-append patch-fix_operator_return_type_deduction.diff
}
depends_build-append port:python313
@@ -0,0 +1,11 @@
--- src/libs/utils/smallstringview.h.orig 2025-05-07 17:39:12
+++ src/libs/utils/smallstringview.h 2025-05-10 09:53:56
@@ -58,7 +58,7 @@
}
};
-inline constexpr auto operator<=>(const SmallStringView &first, const SmallStringView &second)
+inline constexpr bool operator<=>(const SmallStringView &first, const SmallStringView &second)
{
return std::string_view{first} <=> std::string_view{second};
}