diff --git a/extra/qtcreator/PKGBUILD b/extra/qtcreator/PKGBUILD index 264548cdb..331fc50ba 100644 --- a/extra/qtcreator/PKGBUILD +++ b/extra/qtcreator/PKGBUILD @@ -12,9 +12,9 @@ buildarch=12 pkgname=qtcreator -pkgver=4.10.1 +pkgver=4.10.2 _clangver=9.0.0 -pkgrel=2 +pkgrel=1 pkgdesc='Lightweight, cross-platform integrated development environment' arch=(x86_64) url='https://www.qt.io' @@ -33,11 +33,9 @@ optdepends=('qt5-doc: integrated Qt documentation' 'bzr: bazaar support' 'perf: performer analyzer') source=("https://download.qt.io/official_releases/qtcreator/${pkgver%.*}/$pkgver/qt-creator-opensource-src-$pkgver.tar.xz" - qtcreator-preload-plugins.patch - qtcreator-clang-9.patch) -sha256sums=('5098d87027bec3296bd93a7e112588759ccb0511fbfdc5558c1a1e83dff8d2a9' - '150c444e76ec969fc8765774b648984037829623300d0ce9d41a915b2afa792d' - '1d66eb008e84459f6570e6e72acedcf80d2f0bb82650df3b733f7ca0a3f08a3d') + qtcreator-preload-plugins.patch) +sha256sums=('9add6bdddfe5726bb02535409c2ed788b1afeee082121f54f887281d0e3c449a' + '150c444e76ec969fc8765774b648984037829623300d0ce9d41a915b2afa792d') prepare() { mkdir -p build @@ -52,8 +50,6 @@ prepare() { # see http://code.qt.io/cgit/clang/clang.git/commit/?id=7f349701d3ea0c47be3a43e265699dddd3fd55cf # and https://bugs.archlinux.org/task/59492 patch -p1 -i ../qtcreator-preload-plugins.patch - # Fix build with clang 9 (Fedora) - patch -p1 -i ../qtcreator-clang-9.patch } build() { diff --git a/extra/qtcreator/qtcreator-clang-9.patch b/extra/qtcreator/qtcreator-clang-9.patch deleted file mode 100644 index 0fc9418e0..000000000 --- a/extra/qtcreator/qtcreator-clang-9.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -rupN qt-creator-opensource-src-4.10.0/src/plugins/clangformat/clangformatutils.cpp qt-creator-opensource-src-4.10.0-new/src/plugins/clangformat/clangformatutils.cpp ---- qt-creator-opensource-src-4.10.0/src/plugins/clangformat/clangformatutils.cpp 2019-09-03 16:36:38.000000000 +0200 -+++ qt-creator-opensource-src-4.10.0-new/src/plugins/clangformat/clangformatutils.cpp 2019-09-25 13:33:27.230835047 +0200 -@@ -60,7 +60,7 @@ static clang::format::FormatStyle qtcSty - style.AllowShortBlocksOnASingleLine = false; - style.AllowShortCaseLabelsOnASingleLine = false; - style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline; -- style.AllowShortIfStatementsOnASingleLine = false; -+ style.AllowShortIfStatementsOnASingleLine = FormatStyle::SIS_Never; - style.AllowShortLoopsOnASingleLine = false; - style.AlwaysBreakAfterReturnType = FormatStyle::RTBS_None; - style.AlwaysBreakBeforeMultilineStrings = false;