commit libqt5-creator for openSUSE:Factory

2020-10-07 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-10-07 14:18:12

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.4249 (New)


Package is "libqt5-creator"

Wed Oct  7 14:18:12 2020 rev:82 rq:839890 version:4.13.2

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-09-21 17:46:46.205102258 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.4249/libqt5-creator.changes  
2020-10-07 14:18:18.609477274 +0200
@@ -1,0 +2,8 @@
+Thu Oct  1 18:18:50 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 4.13.2
+  https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.13.2.md
+- Add patch to avoid relying on non-existent clang file copies (boo#1176888)
+  * 0001-Don-t-rely-on-clang-include-and-binary-copies.patch
+
+---

Old:

  qt-creator-opensource-src-4.13.1.tar.xz

New:

  0001-Don-t-rely-on-clang-include-and-binary-copies.patch
  qt-creator-opensource-src-4.13.2.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.nn132S/_old  2020-10-07 14:18:22.241480162 +0200
+++ /var/tmp/diff_new_pack.nn132S/_new  2020-10-07 14:18:22.245480166 +0200
@@ -23,9 +23,9 @@
 %endif
 %define major_ver 4.13
 %define qt5_version 5.12.0
-%define tar_version 4.13.1
+%define tar_version 4.13.2
 Name:   libqt5-creator
-Version:4.13.1
+Version:4.13.2
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
@@ -46,6 +46,8 @@
 Patch1: fix-application-output.patch
 # PATCH-FIX-OPENSUSE
 Patch2: 0001-Disable-some-plugins.patch
+# PATCH-FIX-OPENSUSE
+Patch3: 0001-Don-t-rely-on-clang-include-and-binary-copies.patch
 BuildRequires:  cmake
 BuildRequires:  libqt5-qtbase-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel >= %{qt5_version}

++ 0001-Don-t-rely-on-clang-include-and-binary-copies.patch ++
>From fc882219ffbd7372a463788791d7e2d69e0ed194 Mon Sep 17 00:00:00 2001
From: Christophe Giboudeaux 
Date: Thu, 1 Oct 2020 19:59:56 +0200
Subject: [PATCH] Don't rely on clang include and binary copies

The qtcreator build system contains a build target
disabled by default which copies the clang include
files and binaries into the qtcreator libexec subdir.

Instead, we'll use the openSUSE's clang locations
directly. This should fix boo#1176888 and work around
https://bugreports.qt.io/browse/QTCREATORBUG-24583 and
https://bugreports.qt.io/browse/QTCREATORBUG-21972.
---
 src/libs/clangsupport/CMakeLists.txt | 42 ++--
 1 file changed, 2 insertions(+), 40 deletions(-)

diff --git a/src/libs/clangsupport/CMakeLists.txt 
b/src/libs/clangsupport/CMakeLists.txt
index d1f38507..792566a3 100644
--- a/src/libs/clangsupport/CMakeLists.txt
+++ b/src/libs/clangsupport/CMakeLists.txt
@@ -5,8 +5,8 @@ add_qtc_library(ClangSupport
   PUBLIC_DEPENDS Utils Sqlite Qt5::Core Qt5::Network
   PUBLIC_DEFINES
 CLANG_VERSION="${CLANG_VERSION}"
-
CLANG_RESOURCE_DIR="${IDE_LIBEXEC_PATH}/clang/lib/clang/${CLANG_VERSION}/include"
-CLANG_BINDIR="${IDE_LIBEXEC_PATH}/clang/bin"
+CLANG_RESOURCE_DIR="${LLVM_LIBRARY_DIR}/clang/${CLANG_VERSION}/include"
+CLANG_BINDIR="${LLVM_LIBRARY_DIR}/clang/${CLANG_VERSION}/bin"
   DEFINES CLANGSUPPORT_BUILD_LIB
   PUBLIC_INCLUDES
 "${CMAKE_CURRENT_LIST_DIR}"
@@ -146,41 +146,3 @@ add_qtc_library(ClangSupport
 if (NOT TARGET libclang)
   return()
 endif()
-
-# For the developer build directory
-qtc_copy_to_builddir(copy_clang_to_builddir
-  DIRECTORIES "${LLVM_LIBRARY_DIR}/clang/${CLANG_VERSION}/include"
-  DESTINATION "${IDE_LIBEXEC_PATH}/clang/lib/clang/${CLANG_VERSION}/include"
-)
-
-foreach(executable clang clang-cl clangd clang-tidy clazy-standalone)
-  if (EXISTS 
"${LLVM_TOOLS_BINARY_DIR}/${executable}${CMAKE_EXECUTABLE_SUFFIX}")
-qtc_copy_to_builddir(copy_clang_${executable}_to_builddir
-  FILES "${LLVM_TOOLS_BINARY_DIR}/${executable}${CMAKE_EXECUTABLE_SUFFIX}"
-  DESTINATION "${IDE_LIBEXEC_PATH}/clang/bin/"
-)
-# For the install directory
-install(PROGRAMS
-  "${LLVM_TOOLS_BINARY_DIR}/${executable}${CMAKE_EXECUTABLE_SUFFIX}"
-  DESTINATION "${IDE_LIBEXEC_PATH}/clang/bin"
-  COMPONENT Dependencies
-  EXCLUDE_FROM_ALL
-)
-if (IS_SYMLINK 
"${LLVM_TOOLS_BINARY_DIR}/${executable}${CMAKE_EXECUTABLE_SUFFIX}")
-  file(READ_SYMLINK
-

commit libqt5-creator for openSUSE:Factory

2020-09-21 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-09-21 17:44:00

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.4249 (New)


Package is "libqt5-creator"

Mon Sep 21 17:44:00 2020 rev:81 rq:835679 version:4.13.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-08-28 21:21:16.456321670 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.4249/libqt5-creator.changes  
2020-09-21 17:46:46.205102258 +0200
@@ -1,0 +2,6 @@
+Thu Sep 17 09:23:51 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 4.13.1
+  https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.13.1.md
+
+---

Old:

  qt-creator-opensource-src-4.13.0.tar.xz

New:

  qt-creator-opensource-src-4.13.1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.NDXBgx/_old  2020-09-21 17:46:52.881108550 +0200
+++ /var/tmp/diff_new_pack.NDXBgx/_new  2020-09-21 17:46:52.885108553 +0200
@@ -23,9 +23,9 @@
 %endif
 %define major_ver 4.13
 %define qt5_version 5.12.0
-%define tar_version 4.13.0
+%define tar_version 4.13.1
 Name:   libqt5-creator
-Version:4.13.0
+Version:4.13.1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only

++ qt-creator-opensource-src-4.13.0.tar.xz -> 
qt-creator-opensource-src-4.13.1.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.13.0.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new.4249/qt-creator-opensource-src-4.13.1.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2020-08-28 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-08-28 21:19:28

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.3399 (New)


Package is "libqt5-creator"

Fri Aug 28 21:19:28 2020 rev:80 rq:829987 version:4.13.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-06-10 00:52:10.575534582 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.3399/libqt5-creator.changes  
2020-08-28 21:21:16.456321670 +0200
@@ -1,0 +2,29 @@
+Thu Aug 27 11:10:09 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 4.13.0
+  https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.13.0.md
+
+---
+Thu Aug  6 07:37:15 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 4.13.0-beta2
+  https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.13.0.md
+- Drop 0001-Fix-build-with-yaml-cpp-installed-and-CMake-3.11.patch
+  Merged upstream
+
+---
+Tue Jul 14 12:39:11 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 4.13.0-beta1
+  https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.13.0.md
+- Use CMake for building qt-creator
+- Update 0001-Fix-build-with-openSUSE-clang9-package.patch
+- Add 0001-Disable-some-plugins.patch to disable building of three plugins:
+  * updateinfo works when using the Qt installer
+  * clangformat requires a Clang patch which was never accepted
+upstream
+  * qlitehtml has installation issues.
+- Add patch to fix build with CMake < 3.11:
+  * 0001-Fix-build-with-yaml-cpp-installed-and-CMake-3.11.patch
+
+---

Old:

  qt-creator-opensource-src-4.12.2.tar.xz

New:

  0001-Disable-some-plugins.patch
  qt-creator-opensource-src-4.13.0.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.LmuY1r/_old  2020-08-28 21:21:19.296323048 +0200
+++ /var/tmp/diff_new_pack.LmuY1r/_new  2020-08-28 21:21:19.300323050 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-creator
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,73 +16,92 @@
 #
 
 # Enable the clangcodemodel plugin on openSUSE TW and Leap 15.2+, which have 
LLVM >= 8.0.
-%global build_clang_backend 0
-%ifarch %arm aarch64 %ix86 x86_64
+%ifarch %{arm} aarch64 %{ix86} x86_64
 %if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150200
 %global build_clang_backend 1
 %endif
 %endif
-
+%define major_ver 4.13
+%define qt5_version 5.12.0
+%define tar_version 4.13.0
 Name:   libqt5-creator
-Version:4.12.2
+Version:4.13.0
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
-# src/shared/qbs/src/plugins/generator/visualstudio -> 
LGPL-2.1-with-Qt-Company-Qt-exception-1.1 OR LGPL-3.0-only
+# src/shared/qbs is not built
+# src/plugins/help/qlitehtml/litehtml and 
src/plugins/help/qlitehtml/litehtml/src/gumbo are not built
 # src/plugins/imageviewer/imageview.cpp, 
src/plugins/vcsbase/wizard/vcsconfigurationpage.cpp -> BSD-3-Clause
 # src/plugins/emacskeys/* -> GPL-3.0-only
 # src/libs/3rdparty/syntax-highlighting -> MIT
 # many files are dual licensed 'LGPL-3.0-only or (GPL-2.0-or-later OR 
GPL-3.0-or-later + KDE Free Qt Foundation option)', we'll use LGPL-3.0-only for 
these files
-License:GPL-3.0-with-Qt-Company-Qt-exception-1.1 AND 
(LGPL-2.1-with-Qt-Company-Qt-exception-1.1 OR LGPL-3.0-only) AND (LGPL-2.1-only 
OR LGPL-3.0-only) AND GPL-3.0-only AND LGPL-3.0-only AND MIT AND BSD-3-Clause
+License:GPL-3.0-with-Qt-Company-Qt-exception-1.1 AND (LGPL-2.1-only OR 
LGPL-3.0-only) AND GPL-3.0-only AND LGPL-3.0-only AND MIT AND BSD-3-Clause
 Group:  Development/Tools/IDE
-Url:https://www.qt.io/ide/
-%define major_ver 4.12
-%define qt5_version 5.11.0
-%define tar_version 4.12.2
+URL:https://www.qt.io/ide/
 Source: 
https://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
 Patch0: 0001-Fix-build-with-openSUSE-clang9-package.patch
 # PATCH-FIX-OPENSUSE
 Patch1: fix-application-output.patch
-BuildRequires:  gdb
-BuildRequires:  

commit libqt5-creator for openSUSE:Factory

2020-06-09 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-06-10 00:52:07

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.3606 (New)


Package is "libqt5-creator"

Wed Jun 10 00:52:07 2020 rev:79 rq:812944 version:4.12.2

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-05-23 17:28:21.487527113 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.3606/libqt5-creator.changes  
2020-06-10 00:52:10.575534582 +0200
@@ -1,0 +2,16 @@
+Fri Jun  5 06:13:20 UTC 2020 - Christophe Giboudeaux 
+
+- Disable LTO. This is causing a build error.
+
+---
+Wed Jun  3 19:28:55 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 4.12.2
+  https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.12.2.md
+  * Fixed line and column support for opening files with Locator
+  * Fixed crash with QML Preview
+  * Fixed issue with Clazy 1.6
+  * Fixed persistence of diagnostics configurations
+  * Fixed persistence of license template setting
+
+---

Old:

  qt-creator-opensource-src-4.12.1.tar.xz

New:

  qt-creator-opensource-src-4.12.2.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.rjACHl/_old  2020-06-10 00:52:13.643542521 +0200
+++ /var/tmp/diff_new_pack.rjACHl/_new  2020-06-10 00:52:13.643542521 +0200
@@ -24,7 +24,7 @@
 %endif
 
 Name:   libqt5-creator
-Version:4.12.1
+Version:4.12.2
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
@@ -38,7 +38,7 @@
 Url:https://www.qt.io/ide/
 %define major_ver 4.12
 %define qt5_version 5.11.0
-%define tar_version 4.12.1
+%define tar_version 4.12.2
 Source: 
https://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
@@ -104,6 +104,8 @@
 rm -r src/shared/qbs
 
 %build
+%define _lto_cflags %{nil}
+
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs
 sed -i 's,libexec/qtcreator,$$IDE_LIBRARY_BASENAME/qtcreator/libexec,g' 
qtcreator.pri
 # https://bugzilla.opensuse.org/962650

++ qt-creator-opensource-src-4.12.1.tar.xz -> 
qt-creator-opensource-src-4.12.2.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.12.1.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new.3606/qt-creator-opensource-src-4.12.2.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2020-05-23 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-05-23 17:27:07

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.2738 (New)


Package is "libqt5-creator"

Sat May 23 17:27:07 2020 rev:78 rq:807774 version:4.12.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-05-05 19:03:36.946466449 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.2738/libqt5-creator.changes  
2020-05-23 17:28:21.487527113 +0200
@@ -1,0 +2,15 @@
+Wed May 20 13:05:00 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 4.12.1.
+  
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.12.1.md?h=4.12
+  * Fixed crash when changing font settings
+  * Fixed availability of `Link with Qt` information on startup
+  * Fixed crash when loading settings from Qt Creator < 4.11
+  * Fixed semantic highlighting
+  * Fixed wrong symbol highlighting
+  * Fixed warning for `palette` property
+- Drop android-guard-against-kits-without-qt-version.patch.
+  Fixed upstream.
+- Rebase 0001-Fix-build-with-openSUSE-clang9-package.patch
+
+---

Old:

  android-guard-against-kits-without-qt-version.patch
  qt-creator-opensource-src-4.12.0.tar.xz

New:

  qt-creator-opensource-src-4.12.1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.4syjAL/_old  2020-05-23 17:28:24.891534478 +0200
+++ /var/tmp/diff_new_pack.4syjAL/_new  2020-05-23 17:28:24.895534486 +0200
@@ -24,7 +24,7 @@
 %endif
 
 Name:   libqt5-creator
-Version:4.12.0
+Version:4.12.1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
@@ -38,15 +38,13 @@
 Url:https://www.qt.io/ide/
 %define major_ver 4.12
 %define qt5_version 5.11.0
-%define tar_version 4.12.0
+%define tar_version 4.12.1
 Source: 
https://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
 Patch0: 0001-Fix-build-with-openSUSE-clang9-package.patch
 # PATCH-FIX-OPENSUSE
 Patch1: fix-application-output.patch
-# PATCH-FIX-UPSTREAM
-Patch2: android-guard-against-kits-without-qt-version.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
 BuildRequires:  libbotan-devel

++ 0001-Fix-build-with-openSUSE-clang9-package.patch ++
--- /var/tmp/diff_new_pack.4syjAL/_old  2020-05-23 17:28:24.915534530 +0200
+++ /var/tmp/diff_new_pack.4syjAL/_new  2020-05-23 17:28:24.919534538 +0200
@@ -1,4 +1,4 @@
-From 3f4680ba2e05535fa9b4349859e8bf36c40b21eb Mon Sep 17 00:00:00 2001
+From 483bd167b14c708d4d2be882fe99660b67b0b0cb Mon Sep 17 00:00:00 2001
 From: Christophe Giboudeaux 
 Date: Wed, 4 Dec 2019 16:22:53 +0100
 Subject: [PATCH] Fix build with openSUSE clang9 package.
@@ -14,11 +14,11 @@
  5 files changed, 12 insertions(+), 55 deletions(-)
 
 diff --git a/qbs/modules/libclang/functions.js 
b/qbs/modules/libclang/functions.js
-index d1bd2dd2..70a3c21e 100644
+index 0c15a2a6..114e45b9 100644
 --- a/qbs/modules/libclang/functions.js
 +++ b/qbs/modules/libclang/functions.js
-@@ -110,24 +110,9 @@ function formattingLibs(llvmConfig, qtcFunctions, 
targetOS)
- var clangVersion = version(llvmConfig)
+@@ -113,24 +113,9 @@ function formattingLibs(llvmConfig, qtcFunctions, 
targetOS)
+ return [];
  var libs = []
  if (qtcFunctions.versionIsAtLeast(clangVersion, MinimumLLVMVersion)) {
 -if (qtcFunctions.versionIsAtLeast(clangVersion, "8.0.0")) {
@@ -45,7 +45,7 @@
  libs = libs.concat(extraLibraries(llvmConfig, targetOS));
  }
  
-@@ -137,21 +122,7 @@ function formattingLibs(llvmConfig, qtcFunctions, 
targetOS)
+@@ -140,21 +125,7 @@ function formattingLibs(llvmConfig, qtcFunctions, 
targetOS)
  function toolingLibs(llvmConfig, targetOS)
  {
  var fixedList = [
@@ -111,7 +111,7 @@
  clangpchmanagerbackendmain.cpp
  )
 diff --git a/src/tools/clangrefactoringbackend/source/CMakeLists.txt 
b/src/tools/clangrefactoringbackend/source/CMakeLists.txt
-index 420e630c..e0fff46b 100644
+index f06ddee1..77c9a6da 100644
 --- a/src/tools/clangrefactoringbackend/source/CMakeLists.txt
 +++ b/src/tools/clangrefactoringbackend/source/CMakeLists.txt
 @@ -2,10 +2,7 @@ add_qtc_library(clangrefactoringbackend_lib STATIC
@@ -127,10 +127,10 @@
PUBLIC_INCLUDES
  ${CLANG_INCLUDE_DIRS}
 diff --git a/tests/unit/unittest/CMakeLists.txt 

commit libqt5-creator for openSUSE:Factory

2020-05-05 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-05-05 19:01:14

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.2738 (New)


Package is "libqt5-creator"

Tue May  5 19:01:14 2020 rev:77 rq:800281 version:4.12.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-05-01 11:15:19.212104109 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.2738/libqt5-creator.changes  
2020-05-05 19:03:36.946466449 +0200
@@ -1,0 +2,6 @@
+Tue May  5 07:31:36 UTC 2020 - Fabian Vogt 
+
+- Add patch to fix crash on startup (boo#1170872, QTCREATORBUG-23963):
+  * android-guard-against-kits-without-qt-version.patch
+
+---

New:

  android-guard-against-kits-without-qt-version.patch



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.EdYdIY/_old  2020-05-05 19:03:50.694494878 +0200
+++ /var/tmp/diff_new_pack.EdYdIY/_new  2020-05-05 19:03:50.698494885 +0200
@@ -45,6 +45,8 @@
 Patch0: 0001-Fix-build-with-openSUSE-clang9-package.patch
 # PATCH-FIX-OPENSUSE
 Patch1: fix-application-output.patch
+# PATCH-FIX-UPSTREAM
+Patch2: android-guard-against-kits-without-qt-version.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
 BuildRequires:  libbotan-devel

++ android-guard-against-kits-without-qt-version.patch ++
>From d10f6a031a564cb640309bf1fe5180f1d6d3f03f Mon Sep 17 00:00:00 2001
From: hjk 
Date: Thu, 30 Apr 2020 16:41:39 +0200
Subject: [PATCH] Android: Guard against kits without Qt version

... in AndroidConfigurations::updateAutomaticKitList.

Also, simplify code a bit.

Task-number: QTCREATORBUG-23963
Change-Id: I6835721ec8b89dec57d668393178427ffa03ff6d
Reviewed-by: Eike Ziller 
Reviewed-by: Assam Boudjelthia 
---
 src/plugins/android/androidconfigurations.cpp | 17 -
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/src/plugins/android/androidconfigurations.cpp 
b/src/plugins/android/androidconfigurations.cpp
index a574c4c1239..f5ce84007ed 100644
--- a/src/plugins/android/androidconfigurations.cpp
+++ b/src/plugins/android/androidconfigurations.cpp
@@ -1324,15 +1324,14 @@ static QVariant findOrRegisterDebugger(ToolChain *tc,
 
 void AndroidConfigurations::updateAutomaticKitList()
 {
-const QList androidKits = Utils::filtered(KitManager::kits(), 
[](Kit *k) {
-Core::Id deviceTypeId = DeviceTypeKitAspect::deviceTypeId(k);
-return deviceTypeId == Core::Id(Constants::ANDROID_DEVICE_TYPE);
-});
-
-for (auto k: androidKits) {
-if (k->value(Constants::ANDROID_KIT_NDK).isNull() || 
k->value(Constants::ANDROID_KIT_SDK).isNull()) {
-k->setValueSilently(Constants::ANDROID_KIT_NDK, 
currentConfig().ndkLocation(QtSupport::QtKitAspect::qtVersion(k)).toString());
-k->setValue(Constants::ANDROID_KIT_SDK, 
currentConfig().sdkLocation().toString());
+for (Kit *k : KitManager::kits()) {
+if (DeviceTypeKitAspect::deviceTypeId(k) == 
Constants::ANDROID_DEVICE_TYPE) {
+if (k->value(Constants::ANDROID_KIT_NDK).isNull() || 
k->value(Constants::ANDROID_KIT_SDK).isNull()) {
+if (BaseQtVersion *qt = QtKitAspect::qtVersion(k)) {
+k->setValueSilently(Constants::ANDROID_KIT_NDK, 
currentConfig().ndkLocation(qt).toString());
+k->setValue(Constants::ANDROID_KIT_SDK, 
currentConfig().sdkLocation().toString());
+}
+}
 }
 }
 



commit libqt5-creator for openSUSE:Factory

2020-05-01 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-05-01 11:15:10

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.2738 (New)


Package is "libqt5-creator"

Fri May  1 11:15:10 2020 rev:76 rq:799277 version:4.12.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-04-27 23:32:05.694787366 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.2738/libqt5-creator.changes  
2020-05-01 11:15:19.212104109 +0200
@@ -1,0 +2,5 @@
+Thu Apr 30 08:48:27 UTC 2020 - Fabian Vogt 
+
+- Set QBS_INSTALL_DIR to also build the qbsprojectmanager plugin
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.wQIj8H/_old  2020-05-01 11:15:21.484109050 +0200
+++ /var/tmp/diff_new_pack.wQIj8H/_new  2020-05-01 11:15:21.488109059 +0200
@@ -109,6 +109,8 @@
 # https://bugzilla.opensuse.org/962650
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g 
src/plugins/coreplugin/icore.cpp
 
+export QBS_INSTALL_DIR=%{_bindir}
+
 opts="IDE_LIBRARY_BASENAME=%{_lib}"
 opts="$opts CONFIG+=use_system_botan"
 




commit libqt5-creator for openSUSE:Factory

2020-04-27 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-04-27 23:32:05

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.2738 (New)


Package is "libqt5-creator"

Mon Apr 27 23:32:05 2020 rev:75 rq:796783 version:4.12.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-04-04 12:25:29.991937411 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.2738/libqt5-creator.changes  
2020-04-27 23:32:05.694787366 +0200
@@ -1,0 +2,13 @@
+Thu Apr 23 11:37:55 UTC 2020 - Fabian Vogt 
+
+- Update to 4.12.0:
+  * Added browser for Marketplace items to Welcome mode
+  * Added option to register documentation only for highest Qt version, and 
made that default
+  * Updated QML parser to Qt 5.15
+  * Changed to use separate Qbs executable instead of direcly linking to Qbs
+  * And much more. Full changelog on
+
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.12.0.md?h=4.12
+- Dropped unneeded exporting of LLVM_INSTALL_DIR
+- Don't build the bundled Qbs anymore
+
+---

Old:

  qt-creator-opensource-src-4.11.2.tar.xz

New:

  qt-creator-opensource-src-4.12.0.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.8gUNti/_old  2020-04-27 23:32:07.490790872 +0200
+++ /var/tmp/diff_new_pack.8gUNti/_new  2020-04-27 23:32:07.490790872 +0200
@@ -15,9 +15,16 @@
 # Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+# Enable the clangcodemodel plugin on openSUSE TW and Leap 15.2+, which have 
LLVM >= 8.0.
+%global build_clang_backend 0
+%ifarch %arm aarch64 %ix86 x86_64
+%if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150200
+%global build_clang_backend 1
+%endif
+%endif
 
 Name:   libqt5-creator
-Version:4.11.2
+Version:4.12.0
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
@@ -29,10 +36,9 @@
 License:GPL-3.0-with-Qt-Company-Qt-exception-1.1 AND 
(LGPL-2.1-with-Qt-Company-Qt-exception-1.1 OR LGPL-3.0-only) AND (LGPL-2.1-only 
OR LGPL-3.0-only) AND GPL-3.0-only AND LGPL-3.0-only AND MIT AND BSD-3-Clause
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.11
+%define major_ver 4.12
 %define qt5_version 5.11.0
-%define tar_version 4.11.2
-# Change back from 'development_releases' to 'official_releases' for 4.11.0
+%define tar_version 4.12.0
 Source: 
https://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
@@ -54,14 +60,11 @@
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
 # Needs an internal patched version :-/
 # BuildRequires:  cmake(KF5SyntaxHighlighting)
-# Enable the clangcodemodel plugin on openSUSE TW and Leap 15.2+, which have 
LLVM >= 8.0.
-%ifarch %arm aarch64 %ix86 x86_64
-%if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150200
+%if %{build_clang_backend}
 BuildRequires:  llvm-clang-devel >= 8.0
 # clangcodemodel hardcodes clang include paths: QTCREATORBUG-21972
 %requires_eqlibclang%(rpm -q --qf '%''{version}' clang-devel | cut -d. -f1)
 %endif
-%endif
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
 Provides:   qt-creator = %{version}
@@ -97,6 +100,8 @@
 
 %prep
 %autosetup -p1 -n qt-creator-opensource-src-%{tar_version}
+# We have a separate package for qbs
+rm -r src/shared/qbs
 
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs
@@ -104,13 +109,7 @@
 # https://bugzilla.opensuse.org/962650
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g 
src/plugins/coreplugin/icore.cpp
 
-# Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 6.0.
-%ifarch %arm %ix86 x86_64
-%if 0%{?suse_version} > 1500
-opts="LLVM_INSTALL_DIR=%{_prefix}"
-%endif
-%endif
-opts="$opts IDE_LIBRARY_BASENAME=%{_lib}"
+opts="IDE_LIBRARY_BASENAME=%{_lib}"
 opts="$opts CONFIG+=use_system_botan"
 
 %qmake5 $opts
@@ -125,8 +124,6 @@
 
 # Source Code Pro is packaged independently
 rm -r %{buildroot}%{_datadir}/qtcreator/fonts
-# Only relevant for macOS, needs python2
-rm -r %{buildroot}%{_libdir}/qtcreator/libexec/dmgbuild
 
 mkdir -p %{buildroot}%{_datadir}/doc/packages/qt5
 cp share/doc/qtcreator/qtcreator.qch %{buildroot}%{_datadir}/doc/packages/qt5/
@@ -161,8 +158,11 @@
 
 %files
 %license *GPL*
-%{_bindir}/*
+%{_bindir}/qtcreator
 %{_libdir}/qtcreator/
+%if 

commit libqt5-creator for openSUSE:Factory

2020-04-04 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-04-04 12:24:42

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.3248 (New)


Package is "libqt5-creator"

Sat Apr  4 12:24:42 2020 rev:74 rq:791125 version:4.11.2

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-02-18 10:35:35.836355891 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.3248/libqt5-creator.changes  
2020-04-04 12:25:29.991937411 +0200
@@ -1,0 +2,16 @@
+Wed Apr  1 08:47:01 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 4.11.2.
+  * Improved performance of highlighting
+  * Fixed that `Rewrap Paragraph` split on non-breaking space
+  * Fixed freeze with block selection
+  * Fixed high CPU usage after scrolling horizontally
+  * Fixed scroll position after splitting if text cursor is not visible
+  * Fixed position of markers in scrollbar for long documents
+  * Fixed warnings in files generated by Python file wizard
+  * Fixed issue with server restart after server crash
+  * Fixed wrong default project for adding files via wizards
+  * Fixed startup if `_NT_DEBUGGER_EXTENSION_PATH` is set
+  * Fixed debugging of Qt Quick tests
+
+---

Old:

  qt-creator-opensource-src-4.11.1.tar.xz

New:

  qt-creator-opensource-src-4.11.2.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.UTtCIQ/_old  2020-04-04 12:25:32.895939907 +0200
+++ /var/tmp/diff_new_pack.UTtCIQ/_new  2020-04-04 12:25:32.895939907 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libqt5-creator
-Version:4.11.1
+Version:4.11.2
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
@@ -31,7 +31,7 @@
 Url:https://www.qt.io/ide/
 %define major_ver 4.11
 %define qt5_version 5.11.0
-%define tar_version 4.11.1
+%define tar_version 4.11.2
 # Change back from 'development_releases' to 'official_releases' for 4.11.0
 Source: 
https://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc

++ qt-creator-opensource-src-4.11.1.tar.xz -> 
qt-creator-opensource-src-4.11.2.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.11.1.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new.3248/qt-creator-opensource-src-4.11.2.tar.xz
 differ: char 27, line 1




commit libqt5-creator for openSUSE:Factory

2020-02-18 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-02-18 10:35:09

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.26092 (New)


Package is "libqt5-creator"

Tue Feb 18 10:35:09 2020 rev:73 rq:774501 version:4.11.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-02-09 20:47:45.986852718 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.26092/libqt5-creator.changes 
2020-02-18 10:35:35.836355891 +0100
@@ -1,0 +2,5 @@
+Fri Feb 14 09:51:36 UTC 2020 - Christophe Giboudeaux 
+
+- Raise the disk space and set a minimum memory in _constraints.
+
+---



Other differences:
--
++ _constraints ++
--- /var/tmp/diff_new_pack.ZYGhjV/_old  2020-02-18 10:35:36.724357702 +0100
+++ /var/tmp/diff_new_pack.ZYGhjV/_new  2020-02-18 10:35:36.724357702 +0100
@@ -1,7 +1,10 @@
 
   
 
-  10
+  12
 
+
+  5
+
   
 




commit libqt5-creator for openSUSE:Factory

2020-02-09 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-02-09 20:47:42

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.26092 (New)


Package is "libqt5-creator"

Sun Feb  9 20:47:42 2020 rev:72 rq:772107 version:4.11.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2020-01-14 21:08:53.478807529 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.26092/libqt5-creator.changes 
2020-02-09 20:47:45.986852718 +0100
@@ -1,0 +2,7 @@
+Thu Feb  6 20:52:44 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 4.11.1. Check
+  
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.11.1.md?h=4.11
+  for the complete changelog.
+
+---

Old:

  qt-creator-opensource-src-4.11.0.tar.xz

New:

  qt-creator-opensource-src-4.11.1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.jrDmWa/_old  2020-02-09 20:47:49.634854801 +0100
+++ /var/tmp/diff_new_pack.jrDmWa/_new  2020-02-09 20:47:49.642854805 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libqt5-creator
-Version:4.11.0
+Version:4.11.1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
@@ -31,7 +31,7 @@
 Url:https://www.qt.io/ide/
 %define major_ver 4.11
 %define qt5_version 5.11.0
-%define tar_version 4.11.0
+%define tar_version 4.11.1
 # Change back from 'development_releases' to 'official_releases' for 4.11.0
 Source: 
https://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc

++ qt-creator-opensource-src-4.11.0.tar.xz -> 
qt-creator-opensource-src-4.11.1.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.11.0.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new.26092/qt-creator-opensource-src-4.11.1.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2020-01-14 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2020-01-14 21:05:37

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.6675 (New)


Package is "libqt5-creator"

Tue Jan 14 21:05:37 2020 rev:71 rq:756134 version:4.11.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2019-10-16 09:18:26.834978621 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.6675/libqt5-creator.changes  
2020-01-14 21:08:53.478807529 +0100
@@ -1,0 +2,36 @@
+Thu Dec 12 13:12:18 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 4.11.0.
+  * Check 
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.11.0.md?h=4.11
+for the changelog.
+
+---
+Wed Dec  4 15:25:02 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 4.11-rc1.
+  * Check 
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.11.0.md?h=4.11
+for the changelog.
+- Add 0001-Fix-build-with-openSUSE-clang9-package.patch to work around
+  https://bugreports.qt.io/browse/QTCREATORBUG-23172.
+
+---
+Tue Nov  5 14:13:14 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 4.10.2
+  * General
+- Added experimental SerialTerminal plugin to prebuilt binaries
+  * CMake
+- Fixed issue with deployment to remote Linux devices (QTCREATORBUG-21235)
+  * Qbs
+- Fixed executable path in run configuration when custom installation 
directory
+  is specified (QTCREATORBUG-23039)
+  * Debugging
+- Fixed crash when logging output (QTCREATORBUG-22733)
+- Fixed crash when removing previously dragged breakpoint 
(QTCREATORBUG-23107)
+- Fixed highlighting of watch item when value changes
+  * GTest
+- Fixed `Run Under Cursor` (QTCREATORBUG-23068)
+  * Boost
+- Fixed handling of parameterized tests
+
+---

Old:

  qt-creator-opensource-src-4.10.1.tar.xz

New:

  0001-Fix-build-with-openSUSE-clang9-package.patch
  qt-creator-opensource-src-4.11.0.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.HifyY6/_old  2020-01-14 21:08:59.670810395 +0100
+++ /var/tmp/diff_new_pack.HifyY6/_new  2020-01-14 21:08:59.670810395 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libqt5-creator
-Version:4.10.1
+Version:4.11.0
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
@@ -29,13 +29,16 @@
 License:GPL-3.0-with-Qt-Company-Qt-exception-1.1 AND 
(LGPL-2.1-with-Qt-Company-Qt-exception-1.1 OR LGPL-3.0-only) AND (LGPL-2.1-only 
OR LGPL-3.0-only) AND GPL-3.0-only AND LGPL-3.0-only AND MIT AND BSD-3-Clause
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.10
+%define major_ver 4.11
 %define qt5_version 5.11.0
-%define tar_version 4.10.1
+%define tar_version 4.11.0
+# Change back from 'development_releases' to 'official_releases' for 4.11.0
 Source: 
https://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
-Patch2: fix-application-output.patch
+Patch0: 0001-Fix-build-with-openSUSE-clang9-package.patch
+# PATCH-FIX-OPENSUSE
+Patch1: fix-application-output.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
 BuildRequires:  libbotan-devel

++ 0001-Fix-build-with-openSUSE-clang9-package.patch ++
>From 3f4680ba2e05535fa9b4349859e8bf36c40b21eb Mon Sep 17 00:00:00 2001
From: Christophe Giboudeaux 
Date: Wed, 4 Dec 2019 16:22:53 +0100
Subject: [PATCH] Fix build with openSUSE clang9 package.

qt-creator doesn't support linking to clang-cpp instead of split libraries.
See https://bugreports.qt.io/browse/QTCREATORBUG-23172
---
 qbs/modules/libclang/functions.js | 37 ++-
 src/shared/clang/clang_installation.pri   | 11 ++
 .../clangpchmanagerbackend/CMakeLists.txt |  2 +-
 .../source/CMakeLists.txt |  5 +--
 tests/unit/unittest/CMakeLists.txt| 12 ++
 5 files changed, 12 insertions(+), 55 deletions(-)

diff --git a/qbs/modules/libclang/functions.js 
b/qbs/modules/libclang/functions.js
index d1bd2dd2..70a3c21e 100644
--- a/qbs/modules/libclang/functions.js
+++ b/qbs/modules/libclang/functions.js
@@ -110,24 +110,9 @@ function formattingLibs(llvmConfig, qtcFunctions, 

commit libqt5-creator for openSUSE:Factory

2019-10-16 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2019-10-16 09:18:12

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.2352 (New)


Package is "libqt5-creator"

Wed Oct 16 09:18:12 2019 rev:70 rq:738605 version:4.10.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2019-09-23 12:38:41.541597376 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.2352/libqt5-creator.changes  
2019-10-16 09:18:26.834978621 +0200
@@ -1,0 +2,20 @@
+Tue Oct 15 10:30:02 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 4.10.1
+  * Editing
+- Fixed file saving with some text encodings
+- Fixed `Preserve case` in advanced search and replace (QTCREATORBUG-19696)
+- Fixed crash when changing editor font (QTCREATORBUG-22933)
+  * Help
+- Fixed that text moved around when resizing and zooming 
(QTCREATORBUG-4756)
+  * All Projects
+- Fixed `Qt Creator Plugin` wizard (QTCREATORBUG-22945)
+  * Debugging
+- Fixed more layout restoration issues (QTCREATORBUG-22286, 
QTCREATORBUG-22415, QTCREATORBUG-22938)
+  * LLDB
+- Fixed wrong empty command line argument when debugging 
(QTCREATORBUG-22975)
+  * Qt Quick Designer
+- Removed transformations from list of unsupported types
+- Fixed update of animation curve editor
+
+---

Old:

  qt-creator-opensource-src-4.10.0.tar.xz

New:

  qt-creator-opensource-src-4.10.1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.hU4s3I/_old  2019-10-16 09:18:29.186972560 +0200
+++ /var/tmp/diff_new_pack.hU4s3I/_new  2019-10-16 09:18:29.190972549 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libqt5-creator
-Version:4.10.0
+Version:4.10.1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
@@ -31,8 +31,8 @@
 Url:https://www.qt.io/ide/
 %define major_ver 4.10
 %define qt5_version 5.11.0
-%define tar_version 4.10.0
-Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
+%define tar_version 4.10.1
+Source: 
https://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
 Patch2: fix-application-output.patch

++ qt-creator-opensource-src-4.10.0.tar.xz -> 
qt-creator-opensource-src-4.10.1.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.10.0.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new.2352/qt-creator-opensource-src-4.10.1.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2019-09-23 12:37:50

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.7948 (New)


Package is "libqt5-creator"

Mon Sep 23 12:37:50 2019 rev:69 rq:732111 version:4.10.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2019-09-11 10:40:39.975217138 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.7948/libqt5-creator.changes  
2019-09-23 12:38:41.541597376 +0200
@@ -1,0 +2,5 @@
+Thu Sep 19 21:46:57 UTC 2019 - Herbert Graeber 
+
+- Add new pri file to plugin-devel subpackage
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.GFeaF3/_old  2019-09-23 12:38:42.197597268 +0200
+++ /var/tmp/diff_new_pack.GFeaF3/_new  2019-09-23 12:38:42.201597268 +0200
@@ -135,7 +135,7 @@
 
 # plugin development files
 mkdir %{buildroot}%{_datadir}/qtcreator-devel
-cp qtcreator.pri %{buildroot}%{_datadir}/qtcreator-devel
+cp *.pri %{buildroot}%{_datadir}/qtcreator-devel
 find src \( \
-name '*.h' -o -name '*.hpp' -o -name '*.pri' -o -iname 'license*.txt' -o \
-name 'QtConcurrentTools' \




commit libqt5-creator for openSUSE:Factory

2019-09-11 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2019-09-11 10:40:28

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.7948 (New)


Package is "libqt5-creator"

Wed Sep 11 10:40:28 2019 rev:68 rq:729918 version:4.10.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2019-09-07 11:53:21.294274773 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.7948/libqt5-creator.changes  
2019-09-11 10:40:39.975217138 +0200
@@ -1,0 +2,7 @@
+Mon Sep  9 20:01:30 UTC 2019 - Stefan Brüns 
+
+- Cleanup spec file, remove any conditionals for Leap 42.x and older.
+- Use correct Requires for Clang header files, located in libclang
+  package since Clang 6.
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.IOIWYZ/_old  2019-09-11 10:40:42.387216708 +0200
+++ /var/tmp/diff_new_pack.IOIWYZ/_new  2019-09-11 10:40:42.419216702 +0200
@@ -16,15 +16,6 @@
 #
 
 
-%define have_qdoc 0%{?suse_version} >= 1500
-
-%if 0%{?suse_version} < 1500
-# Leap 42.x only has botan1
-%bcond_with system_botan
-%else
-%bcond_without system_botan
-%endif
-
 Name:   libqt5-creator
 Version:4.10.0
 Release:0
@@ -47,9 +38,7 @@
 Patch2: fix-application-output.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
-%if %{with system_botan}
 BuildRequires:  libbotan-devel
-%endif
 BuildRequires:  libqt5-qtbase-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtquickcontrols >= %{qt5_version}
@@ -62,20 +51,12 @@
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
 # Needs an internal patched version :-/
 # BuildRequires:  cmake(KF5SyntaxHighlighting)
-%if 0%{?suse_version} < 1330
-# It does not build with the default compiler (GCC 4.8) on Leap 42.x
-%if 0%{?sle_version} <= 120200
-BuildRequires:  gcc6-c++
-%else
-BuildRequires:  gcc7-c++
-%endif
-%endif
 # Enable the clangcodemodel plugin on openSUSE TW and Leap 15.2+, which have 
LLVM >= 8.0.
 %ifarch %arm aarch64 %ix86 x86_64
 %if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150200
 BuildRequires:  llvm-clang-devel >= 8.0
 # clangcodemodel hardcodes clang include paths: QTCREATORBUG-21972
-%requires_eqclang%(rpm -q --qf '%''{version}' clang-devel | cut -d. -f1)
+%requires_eqlibclang%(rpm -q --qf '%''{version}' clang-devel | cut -d. -f1)
 %endif
 %endif
 BuildRequires:  update-desktop-files
@@ -127,26 +108,12 @@
 %endif
 %endif
 opts="$opts IDE_LIBRARY_BASENAME=%{_lib}"
-%if %{with system_botan}
 opts="$opts CONFIG+=use_system_botan"
-%endif
-
-makeopts=""
-%if 0%{?suse_version} < 1330
-# It does not build with the default compiler (GCC 4.8) on Leap 42.x
-%if 0%{?sle_version} <= 120200
-makeopts="$makeopts CC=gcc-6 CXX=g++-6"
-%else
-makeopts="$makeopts CC=gcc-7 CXX=g++-7"
-%endif
-%endif
 
 %qmake5 $opts
-make %{?_smp_mflags} $makeopts
-%if %{have_qdoc}
-   make qch_docs
-   make html_docs
-%endif
+make %{?_smp_mflags}
+make qch_docs
+make html_docs
 
 %install
 export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}${LD_LIBRARY_PATH:+:}%{_libdir}"
@@ -158,13 +125,11 @@
 # Only relevant for macOS, needs python2
 rm -r %{buildroot}%{_libdir}/qtcreator/libexec/dmgbuild
 
-%if %{have_qdoc}
 mkdir -p %{buildroot}%{_datadir}/doc/packages/qt5
 cp share/doc/qtcreator/qtcreator.qch %{buildroot}%{_datadir}/doc/packages/qt5/
 
 mkdir -p %{buildroot}%{_datadir}/doc/packages/qt5/qtcreator
 cp -a doc/qtcreator/* %{buildroot}%{_datadir}/doc/packages/qt5/qtcreator/
-%endif
 
 %suse_update_desktop_file -i org.qt-project.qtcreator Development Qt IDE
 
@@ -200,11 +165,9 @@
 %{_datadir}/applications/org.qt-project.qtcreator.desktop
 %dir %{_datadir}/metainfo
 %{_datadir}/metainfo/org.qt-project.qtcreator.appdata.xml
-%if %{have_qdoc}
 %dir %{_datadir}/doc/packages/qt5
 %{_datadir}/doc/packages/qt5/qtcreator/
 %{_datadir}/doc/packages/qt5/qtcreator.qch
-%endif
 
 %files plugin-devel
 %license *GPL*




commit libqt5-creator for openSUSE:Factory

2019-09-07 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2019-09-07 11:53:19

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.7948 (New)


Package is "libqt5-creator"

Sat Sep  7 11:53:19 2019 rev:67 rq:728631 version:4.10.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2019-07-01 10:44:34.809497564 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.7948/libqt5-creator.changes  
2019-09-07 11:53:21.294274773 +0200
@@ -1,0 +2,21 @@
+Thu Sep  5 09:20:59 UTC 2019 - Fabian Vogt 
+
+- Update to 4.10.0 final:
+  * No changelog available
+
+---
+Wed Sep  4 06:41:38 UTC 2019 - Wolfgang Bauer 
+
+- Add libqt5-qttools-doc BuildRequires to fix build after the
+  recent dependency changes in libqt5-qttools
+
+---
+Fri Aug  2 11:41:37 UTC 2019 - Fabian Vogt 
+
+- Update to 4.10.0 RC1:
+  * Language Server Client is now longer experimental
+  * For an overview of new features in the 4.10 series, see
+
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.10.0.md?h=4.10
+- Drop fix-build-isystem.patch. Merged upstream.
+
+---

Old:

  fix-build-isystem.patch
  qt-creator-opensource-src-4.9.2.tar.xz

New:

  qt-creator-opensource-src-4.10.0.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.2ZSHbV/_old  2019-09-07 11:53:30.630273451 +0200
+++ /var/tmp/diff_new_pack.2ZSHbV/_new  2019-09-07 11:53:30.662273446 +0200
@@ -26,7 +26,7 @@
 %endif
 
 Name:   libqt5-creator
-Version:4.9.2
+Version:4.10.0
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
@@ -38,14 +38,12 @@
 License:GPL-3.0-with-Qt-Company-Qt-exception-1.1 AND 
(LGPL-2.1-with-Qt-Company-Qt-exception-1.1 OR LGPL-3.0-only) AND (LGPL-2.1-only 
OR LGPL-3.0-only) AND GPL-3.0-only AND LGPL-3.0-only AND MIT AND BSD-3-Clause
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.9
-%define qt5_version 5.9.0
-%define tar_version 4.9.2
+%define major_ver 4.10
+%define qt5_version 5.11.0
+%define tar_version 4.10.0
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
-Patch1: fix-build-isystem.patch
-# PATCH-FIX-OPENSUSE
 Patch2: fix-application-output.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
@@ -56,6 +54,7 @@
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtquickcontrols >= %{qt5_version}
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
+BuildRequires:  libqt5-qttools-doc
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
 %ifnarch ppc ppc64 ppc64le s390 s390x
 BuildRequires:  libqt5-qtwebengine-devel >= %{qt5_version}
@@ -71,10 +70,10 @@
 BuildRequires:  gcc7-c++
 %endif
 %endif
-# Enable the clangcodemodel plugin on openSUSE TW and Leap 15.1+, which have 
LLVM >= 6.0.
+# Enable the clangcodemodel plugin on openSUSE TW and Leap 15.2+, which have 
LLVM >= 8.0.
 %ifarch %arm aarch64 %ix86 x86_64
-%if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150100
-BuildRequires:  llvm-clang-devel >= 6.0
+%if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150200
+BuildRequires:  llvm-clang-devel >= 8.0
 # clangcodemodel hardcodes clang include paths: QTCREATORBUG-21972
 %requires_eqclang%(rpm -q --qf '%''{version}' clang-devel | cut -d. -f1)
 %endif

++ qt-creator-opensource-src-4.9.2.tar.xz -> 
qt-creator-opensource-src-4.10.0.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.9.2.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new.7948/qt-creator-opensource-src-4.10.0.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2019-07-01 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2019-07-01 10:44:32

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.4615 (New)


Package is "libqt5-creator"

Mon Jul  1 10:44:32 2019 rev:66 rq:712678 version:4.9.2

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2019-06-19 21:04:12.306282777 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.4615/libqt5-creator.changes  
2019-07-01 10:44:34.809497564 +0200
@@ -1,0 +2,18 @@
+Sat Jun 29 18:08:26 UTC 2019 - Fabian Vogt 
+
+- Update to 4.9.2:
+  * General
++ Fixed display of shortcuts in `Keyboard` preferences (QTCREATORBUG-22333)
+  * Editing
++ Fixed disabled editor close button in Design mode (QTCREATORBUG-22553)
+  * Syntax Highlighting
++ Fixed highlighting issue while editing (QTCREATORBUG-22290)
+  * All Projects
++ Fixed saving state of `Hide Empty Directories`
++ Fixed crash that could happen after project parsing failed
+  * C++ Support
++ Fixed expansion of `%DATE%` in license templates (QTCREATORBUG-22440)
+  * Qt Quick Designer
++ Fixed crash on malformed QML (QDS-778)
+
+---

Old:

  qt-creator-opensource-src-4.9.1.tar.xz

New:

  qt-creator-opensource-src-4.9.2.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.D8s28l/_old  2019-07-01 10:44:38.273503219 +0200
+++ /var/tmp/diff_new_pack.D8s28l/_new  2019-07-01 10:44:38.313503284 +0200
@@ -26,7 +26,7 @@
 %endif
 
 Name:   libqt5-creator
-Version:4.9.1
+Version:4.9.2
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 # src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
@@ -40,7 +40,7 @@
 Url:https://www.qt.io/ide/
 %define major_ver 4.9
 %define qt5_version 5.9.0
-%define tar_version 4.9.1
+%define tar_version 4.9.2
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE

++ qt-creator-opensource-src-4.9.1.tar.xz -> 
qt-creator-opensource-src-4.9.2.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.9.1.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new.4615/qt-creator-opensource-src-4.9.2.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2019-06-19 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2019-06-19 21:04:06

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.4811 (New)


Package is "libqt5-creator"

Wed Jun 19 21:04:06 2019 rev:65 rq:707766 version:4.9.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2019-03-04 09:23:10.200570806 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.4811/libqt5-creator.changes  
2019-06-19 21:04:12.306282777 +0200
@@ -1,0 +2,54 @@
+Wed Jun  5 07:34:54 UTC 2019 - Christophe Giboudeaux 
+
+- Update the 'License:' tag.
+
+---
+Fri May 31 09:29:02 UTC 2019 - Fabian Vogt 
+
+- Update to 4.9.1:
+  * Editing
++ Fixed folding for generic highlighter (QTCREATORBUG-22346)
+  * QMake Projects
++ Fixed unnecessary reparsing on file save (QTCREATORBUG-22361)
++ Fixed code model for generated files when specified in `.pri` file
+  (QTCREATORBUG-22395)
+  * CMake Projects
++ Fixed deployment with `QtCreatorDeployment.txt` (QTCREATORBUG-22184)
++ Fixed that configuration UI was disabled after configuration error
+  * Qbs Projects
++ Fixed crash when editing environment variables (QTCREATORBUG-22386)
++ Fixed handling of `cpp.minimum*Version` (QTCREATORBUG-22355)
+  * Debugging
++ Fixed ambiguity of `F10` shortcut (QTCREATORBUG-22330)
++ CDB
+- Fixed `Start and Break on Main` (QTCREATORBUG-22263)
+  * Test Integration
++ Fixed `Uncheck All`
+  * Android
++ Fixed AVD creation for Google Play images
+  * Remote Linux
++ Fixed crash when running `Custom Executable` on remote Linux target
+  from Windows host (QTCREATORBUG-22414)
++ Fixed SSH connection sharing on macOS (QTCREATORBUG-21748)
++ Deployment via SFTP
+- Fixed `Unexpected stat output for remote file` (QTCREATORBUG-22041)
+- Fixed deployment of symbolic links (QTCREATORBUG-22307)
++ Deployment via rsync
+- Fixed compatibility issue with command line parameters
+  (QTCREATORBUG-22352)
+
+---
+Mon Apr 15 15:42:15 UTC 2019 - Fabian Vogt 
+
+- Update to 4.9.0:
+  * New features for the language server protocol implementation
+  * Generic highlighter now based on KSyntaxHighlighting
+  * Improved UI for the Clang analyzer tools
+  * QML parser supports Qt 5.12 features now
+  * New perf plugin
+  * New plugin for generic deployment methods
+  * Many bug fixes, as usual
+  * Full changelog available at
+
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.9.0.md?h=4.9
+
+---

Old:

  qt-creator-opensource-src-4.8.2.tar.xz

New:

  qt-creator-opensource-src-4.9.1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.e7aY4P/_old  2019-06-19 21:04:16.782286661 +0200
+++ /var/tmp/diff_new_pack.e7aY4P/_new  2019-06-19 21:04:16.786286664 +0200
@@ -26,15 +26,21 @@
 %endif
 
 Name:   libqt5-creator
-Version:4.8.2
+Version:4.9.1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
-License:GPL-3.0-with-Qt-Company-Qt-exception-1.1
+# src/plugins/cmakeprojectmanager/configmodelitemdelegate.* -> LGPL-2.1-only 
OR LGPL-3.0-only
+# src/shared/qbs/src/plugins/generator/visualstudio -> 
LGPL-2.1-with-Qt-Company-Qt-exception-1.1 OR LGPL-3.0-only
+# src/plugins/imageviewer/imageview.cpp, 
src/plugins/vcsbase/wizard/vcsconfigurationpage.cpp -> BSD-3-Clause
+# src/plugins/emacskeys/* -> GPL-3.0-only
+# src/libs/3rdparty/syntax-highlighting -> MIT
+# many files are dual licensed 'LGPL-3.0-only or (GPL-2.0-or-later OR 
GPL-3.0-or-later + KDE Free Qt Foundation option)', we'll use LGPL-3.0-only for 
these files
+License:GPL-3.0-with-Qt-Company-Qt-exception-1.1 AND 
(LGPL-2.1-with-Qt-Company-Qt-exception-1.1 OR LGPL-3.0-only) AND (LGPL-2.1-only 
OR LGPL-3.0-only) AND GPL-3.0-only AND LGPL-3.0-only AND MIT AND BSD-3-Clause
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.8
+%define major_ver 4.9
 %define qt5_version 5.9.0
-%define tar_version 4.8.2
+%define tar_version 4.9.1
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
@@ -55,6 +61,8 @@
 BuildRequires:  libqt5-qtwebengine-devel >= %{qt5_version}
 %endif
 BuildRequires:  libqt5-qtx11extras-devel >= 

commit libqt5-creator for openSUSE:Factory

2019-03-04 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2019-03-04 09:23:09

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.28833 (New)


Package is "libqt5-creator"

Mon Mar  4 09:23:09 2019 rev:64 rq:680972 version:4.8.2

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2019-02-14 14:31:51.487693748 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.28833/libqt5-creator.changes 
2019-03-04 09:23:10.200570806 +0100
@@ -1,0 +2,37 @@
+Sat Mar  2 10:10:55 UTC 2019 - Fabian Vogt 
+
+- Update to 4.8.2:
+  * General
++ Fixed UI for choosing executable for external tools (QTCREATORBUG-21937)
+  * Editing
++ Fixed highlighting of search results of regular expression search
+  (QTCREATORBUG-21887)
+  * Autotools Projects
++ Fixed that includes, defines and flags of `SUBDIRS` were ignored
+  (QTCREATORBUG-21618)
+  * C++ Support
++ Fixed crash when expanding macros (QTCREATORBUG-21642)
++ Fixed crash in preprocessor (QTCREATORBUG-21981)
++ Fixed infinite loop when resolving pointer types (QTCREATORBUG-22010)
++ Fixed cursor position after completion of functions without arguments
+  (QTCREATORBUG-21841)
+  * QML Support
++ Fixed auto-insertion of single quotes
+  * Debugging
++ GDB
+  - Fixed detaching from process (QTCREATORBUG-21908)
++ LLDB
+  - Fixed stopping at some breakpoints with newer LLDB (QTCREATORBUG-21615)
+  - Fixed `Attach to Process` and `Run in Terminal` with newer LLDB
++ CDB
+  - Fixed display of `QDateTime` (QTCREATORBUG-21864)
+  * Qt Quick Designer
++ Added support for more JavaScript functions in `.ui.qml` files
++ Fixed crash with gradients and Qt Quick 5.12 (QDS-472)
+  * Test Integration
++ Fixed handling of empty tests
+  * Android:
++ Fixed upload of GDB server on some devices (QTCREATORBUG-21317)
++ Fixed crash on exiting debugger (QTCREATORBUG-21684)
+
+---

Old:

  qt-creator-opensource-src-4.8.1.tar.xz

New:

  qt-creator-opensource-src-4.8.2.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.nsrDCj/_old  2019-03-04 09:23:44.600564616 +0100
+++ /var/tmp/diff_new_pack.nsrDCj/_new  2019-03-04 09:23:44.604564616 +0100
@@ -26,7 +26,7 @@
 %endif
 
 Name:   libqt5-creator
-Version:4.8.1
+Version:4.8.2
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 License:GPL-3.0-with-Qt-Company-Qt-exception-1.1
@@ -34,7 +34,7 @@
 Url:https://www.qt.io/ide/
 %define major_ver 4.8
 %define qt5_version 5.9.0
-%define tar_version 4.8.1
+%define tar_version 4.8.2
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE

++ qt-creator-opensource-src-4.8.1.tar.xz -> 
qt-creator-opensource-src-4.8.2.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.8.1.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new.28833/qt-creator-opensource-src-4.8.2.tar.xz
 differ: char 28, line 1




commit libqt5-creator for openSUSE:Factory

2019-02-14 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2019-02-14 14:31:07

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.28833 (New)


Package is "libqt5-creator"

Thu Feb 14 14:31:07 2019 rev:63 rq:673371 version:4.8.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2019-02-06 14:10:38.430613188 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.28833/libqt5-creator.changes 
2019-02-14 14:31:51.487693748 +0100
@@ -1,0 +2,10 @@
+Mon Feb 11 12:41:22 UTC 2019 - Fabian Vogt 
+
+- Enable clangcodemodel for Leap 15.1+ as well
+
+---
+Mon Feb 11 12:34:00 UTC 2019 - Fabian Vogt 
+
+- Work around QTCREATORBUG-21972 by requiring a specific clang version
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.a3S1GZ/_old  2019-02-14 14:31:53.415692865 +0100
+++ /var/tmp/diff_new_pack.a3S1GZ/_new  2019-02-14 14:31:53.419692863 +0100
@@ -63,10 +63,12 @@
 BuildRequires:  gcc7-c++
 %endif
 %endif
-# Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 6.0.
+# Enable the clangcodemodel plugin on openSUSE TW and Leap 15.1+, which have 
LLVM >= 6.0.
 %ifarch %arm aarch64 %ix86 x86_64
-%if 0%{?suse_version} > 1500
+%if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150100
 BuildRequires:  llvm-clang-devel >= 6.0
+# clangcodemodel hardcodes clang include paths: QTCREATORBUG-21972
+%requires_eqclang%(rpm -q --qf '%''{version}' clang-devel | cut -d. -f1)
 %endif
 %endif
 BuildRequires:  update-desktop-files




commit libqt5-creator for openSUSE:Factory

2019-02-06 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2019-02-06 14:10:38

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.28833 (New)


Package is "libqt5-creator"

Wed Feb  6 14:10:38 2019 rev:62 rq:672060 version:4.8.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-12-20 12:54:31.746684804 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.28833/libqt5-creator.changes 
2019-02-06 14:10:38.430613188 +0100
@@ -1,0 +2,16 @@
+Wed Feb  6 05:49:16 UTC 2019 - Wolfgang Bauer 
+
+- Make use_system_botan conditional, and build without it on Leap
+  42.3 to fix build
+
+---
+Thu Jan 17 13:17:07 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 4.8.1
+  * Fix wrong background color being used for some text highlighting items
+  * Fix a crash when renaming a file in the file system view
+  * Fix various errors occurring when parsing Boost headers
+  * Fix various issues arising with the debugger integration
+  * blog.qt.io/blog/2019/01/17/qt-creator-4-8-1-released/
+
+---

Old:

  qt-creator-opensource-src-4.8.0.tar.xz

New:

  qt-creator-opensource-src-4.8.1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.LfV7Vj/_old  2019-02-06 14:10:39.894612910 +0100
+++ /var/tmp/diff_new_pack.LfV7Vj/_new  2019-02-06 14:10:39.902612909 +0100
@@ -18,8 +18,15 @@
 
 %define have_qdoc 0%{?suse_version} >= 1500
 
+%if 0%{?suse_version} < 1500
+# Leap 42.x only has botan1
+%bcond_with system_botan
+%else
+%bcond_without system_botan
+%endif
+
 Name:   libqt5-creator
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 License:GPL-3.0-with-Qt-Company-Qt-exception-1.1
@@ -27,7 +34,7 @@
 Url:https://www.qt.io/ide/
 %define major_ver 4.8
 %define qt5_version 5.9.0
-%define tar_version 4.8.0
+%define tar_version 4.8.1
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
@@ -36,7 +43,9 @@
 Patch2: fix-application-output.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
+%if %{with system_botan}
 BuildRequires:  libbotan-devel
+%endif
 BuildRequires:  libqt5-qtbase-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtquickcontrols >= %{qt5_version}
@@ -108,7 +117,10 @@
 opts="LLVM_INSTALL_DIR=%{_prefix}"
 %endif
 %endif
-opts="$opts IDE_LIBRARY_BASENAME=%{_lib} CONFIG+=use_system_botan"
+opts="$opts IDE_LIBRARY_BASENAME=%{_lib}"
+%if %{with system_botan}
+opts="$opts CONFIG+=use_system_botan"
+%endif
 
 makeopts=""
 %if 0%{?suse_version} < 1330

++ qt-creator-opensource-src-4.8.0.tar.xz -> 
qt-creator-opensource-src-4.8.1.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.8.0.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new.28833/qt-creator-opensource-src-4.8.1.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2018-12-20 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-12-20 12:54:30

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.28833 (New)


Package is "libqt5-creator"

Thu Dec 20 12:54:30 2018 rev:61 rq:660018 version:4.8.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-12-07 14:38:49.298816792 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.28833/libqt5-creator.changes 
2018-12-20 12:54:31.746684804 +0100
@@ -1,0 +2,5 @@
+Wed Dec 19 14:26:56 UTC 2018 - Fabian Vogt 
+
+- Set Version correctly
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.wpe9cm/_old  2018-12-20 12:54:32.898683428 +0100
+++ /var/tmp/diff_new_pack.wpe9cm/_new  2018-12-20 12:54:32.902683423 +0100
@@ -19,7 +19,7 @@
 %define have_qdoc 0%{?suse_version} >= 1500
 
 Name:   libqt5-creator
-Version:4.8.0~rc1
+Version:4.8.0
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 License:GPL-3.0-with-Qt-Company-Qt-exception-1.1




commit libqt5-creator for openSUSE:Factory

2018-12-07 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-12-07 14:38:43

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.19453 (New)


Package is "libqt5-creator"

Fri Dec  7 14:38:43 2018 rev:60 rq:655885 version:4.8.0~rc1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-11-26 10:37:06.140550514 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.19453/libqt5-creator.changes 
2018-12-07 14:38:49.298816792 +0100
@@ -1,0 +2,48 @@
+Thu Dec  6 13:42:48 UTC 2018 - Fabian Vogt 
+
+- Update to 4.8.0 final:
+  * http://blog.qt.io/blog/2018/12/06/qt-creator-4-8-0-released/
+
+---
+Tue Dec  4 18:57:28 UTC 2018 - Fabian Vogt 
+
+- Also set QT_FORCE_STDERR_LOGGING in fix-application-output.patch
+
+---
+Tue Nov 27 10:16:13 UTC 2018 - Fabian Vogt 
+
+- Update to 4.8.0 RC 1:
+  * Even more bugfixes
+- Update to 4.8.0 Beta 2:
+  * More bugfixes
+- Refresh fix-application-output.patch
+
+---
+Tue Nov 27 08:24:51 UTC 2018 - Fabian Vogt 
+
+- Remove dmgbuild script to avoid dep on python2
+- Set use_system_botan properly
+
+---
+Wed Nov 14 11:51:27 UTC 2018 - Fabian Vogt 
+
+- Don't try to use WebEngine on unsupported architectures
+
+---
+Sat Oct 13 15:09:32 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 4.8.0 Beta 1:
+  * Added experimental plugin LanguageClient for supporting the
+language server protocol (QTCREATORBUG-20284)
+  * Added experimental plugin CompilationDatabaseProjectManager
+that opens a compilation database for code editing
+  * Added experimental plugin ClangFormat that bases
+auto-indentation on Clang Format
+  * Added experimental plugin Cppcheck for integration of
+cppcheck diagnostics
+  * Added support for multiple simultaneous debugger runs
+  * Fixed 'Open Terminal Here' for konsole (QTCREATORBUG-20900)
+  * Many other fixes and improvements. Full changelog:
+
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.8.0.md?h=4.8
+
+---

Old:

  qt-creator-opensource-src-4.7.1.tar.xz

New:

  qt-creator-opensource-src-4.8.0.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.wdZGy8/_old  2018-12-07 14:38:51.054814618 +0100
+++ /var/tmp/diff_new_pack.wdZGy8/_new  2018-12-07 14:38:51.054814618 +0100
@@ -19,16 +19,16 @@
 %define have_qdoc 0%{?suse_version} >= 1500
 
 Name:   libqt5-creator
-Version:4.7.1
+Version:4.8.0~rc1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 License:GPL-3.0-with-Qt-Company-Qt-exception-1.1
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.7
-%define rname qt-creator
+%define major_ver 4.8
 %define qt5_version 5.9.0
-Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/qt-creator-opensource-src-%{version}.tar.xz
+%define tar_version 4.8.0
+Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
 Patch1: fix-build-isystem.patch
@@ -42,7 +42,9 @@
 BuildRequires:  libqt5-qtquickcontrols >= %{qt5_version}
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
+%ifnarch ppc ppc64 ppc64le s390 s390x
 BuildRequires:  libqt5-qtwebengine-devel >= %{qt5_version}
+%endif
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
 %if 0%{?suse_version} < 1330
 # It does not build with the default compiler (GCC 4.8) on Leap 42.x
@@ -92,9 +94,7 @@
 (aka QTC_SOURCE) necessary to compile plugins. 
 
 %prep
-%setup -q -n %{rname}-opensource-src-%{version}
-%patch1 -p1
-%patch2 -p1
+%autosetup -p1 -n qt-creator-opensource-src-%{tar_version}
 
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs
@@ -108,7 +108,7 @@
 opts="LLVM_INSTALL_DIR=%{_prefix}"
 %endif
 %endif
-opts="$opts IDE_LIBRARY_BASENAME=%{_lib} USE_SYSTEM_BOTAN=1"
+opts="$opts IDE_LIBRARY_BASENAME=%{_lib} CONFIG+=use_system_botan"
 
 makeopts=""
 %if 0%{?suse_version} < 1330
@@ -134,6 +134,8 @@
 
 # Source Code Pro is packaged independently
 rm -r 

commit libqt5-creator for openSUSE:Factory

2018-11-26 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-11-26 10:34:37

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new.19453 (New)


Package is "libqt5-creator"

Mon Nov 26 10:34:37 2018 rev:59 rq:651675 version:4.7.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-11-15 12:40:39.290236056 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new.19453/libqt5-creator.changes 
2018-11-26 10:37:06.140550514 +0100
@@ -2,22 +1,0 @@
-Wed Nov 14 11:51:27 UTC 2018 - Fabian Vogt 
-
-- Don't try to use WebEngine on unsupported architectures
-

-Sat Oct 13 15:09:32 UTC 2018 - fab...@ritter-vogt.de
-
-- Update to 4.8.0 Beta 1:
-  * Added experimental plugin LanguageClient for supporting the
-language server protocol (QTCREATORBUG-20284)
-  * Added experimental plugin CompilationDatabaseProjectManager
-that opens a compilation database for code editing
-  * Added experimental plugin ClangFormat that bases
-auto-indentation on Clang Format
-  * Added experimental plugin Cppcheck for integration of
-cppcheck diagnostics
-  * Added support for multiple simultaneous debugger runs
-  * Fixed 'Open Terminal Here' for konsole (QTCREATORBUG-20900)
-  * Many other fixes and improvements. Full changelog:
-
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.8.0.md?h=4.8
-


Old:

  qt-creator-opensource-src-4.8.0-beta1.tar.xz

New:

  qt-creator-opensource-src-4.7.1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.hzV5bd/_old  2018-11-26 10:37:19.808534530 +0100
+++ /var/tmp/diff_new_pack.hzV5bd/_new  2018-11-26 10:37:19.808534530 +0100
@@ -19,16 +19,16 @@
 %define have_qdoc 0%{?suse_version} >= 1500
 
 Name:   libqt5-creator
-Version:4.8.0~beta1
+Version:4.7.1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 License:GPL-3.0-with-Qt-Company-Qt-exception-1.1
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.8
+%define major_ver 4.7
+%define rname qt-creator
 %define qt5_version 5.9.0
-%define tar_version 4.8.0-beta1
-Source: 
http://download.qt.io/development_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
+Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/qt-creator-opensource-src-%{version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
 Patch1: fix-build-isystem.patch
@@ -42,9 +42,7 @@
 BuildRequires:  libqt5-qtquickcontrols >= %{qt5_version}
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
-%ifnarch ppc ppc64 ppc64le s390 s390x
 BuildRequires:  libqt5-qtwebengine-devel >= %{qt5_version}
-%endif
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
 %if 0%{?suse_version} < 1330
 # It does not build with the default compiler (GCC 4.8) on Leap 42.x
@@ -94,7 +92,9 @@
 (aka QTC_SOURCE) necessary to compile plugins. 
 
 %prep
-%autosetup -p1 -n qt-creator-opensource-src-%{tar_version}
+%setup -q -n %{rname}-opensource-src-%{version}
+%patch1 -p1
+%patch2 -p1
 
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs

++ qt-creator-opensource-src-4.8.0-beta1.tar.xz -> 
qt-creator-opensource-src-4.7.1.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.8.0-beta1.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new.19453/qt-creator-opensource-src-4.7.1.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2018-11-15 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-11-15 12:40:38

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Thu Nov 15 12:40:38 2018 rev:58 rq:648962 version:4.8.0~beta1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-10-15 09:47:07.867124093 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-11-15 12:40:39.290236056 +0100
@@ -1,0 +2,22 @@
+Wed Nov 14 11:51:27 UTC 2018 - Fabian Vogt 
+
+- Don't try to use WebEngine on unsupported architectures
+
+---
+Sat Oct 13 15:09:32 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 4.8.0 Beta 1:
+  * Added experimental plugin LanguageClient for supporting the
+language server protocol (QTCREATORBUG-20284)
+  * Added experimental plugin CompilationDatabaseProjectManager
+that opens a compilation database for code editing
+  * Added experimental plugin ClangFormat that bases
+auto-indentation on Clang Format
+  * Added experimental plugin Cppcheck for integration of
+cppcheck diagnostics
+  * Added support for multiple simultaneous debugger runs
+  * Fixed 'Open Terminal Here' for konsole (QTCREATORBUG-20900)
+  * Many other fixes and improvements. Full changelog:
+
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.8.0.md?h=4.8
+
+---

Old:

  qt-creator-opensource-src-4.7.1.tar.xz

New:

  qt-creator-opensource-src-4.8.0-beta1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.1ksi1Q/_old  2018-11-15 12:40:41.318233743 +0100
+++ /var/tmp/diff_new_pack.1ksi1Q/_new  2018-11-15 12:40:41.318233743 +0100
@@ -19,16 +19,16 @@
 %define have_qdoc 0%{?suse_version} >= 1500
 
 Name:   libqt5-creator
-Version:4.7.1
+Version:4.8.0~beta1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 License:GPL-3.0-with-Qt-Company-Qt-exception-1.1
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.7
-%define rname qt-creator
+%define major_ver 4.8
 %define qt5_version 5.9.0
-Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/qt-creator-opensource-src-%{version}.tar.xz
+%define tar_version 4.8.0-beta1
+Source: 
http://download.qt.io/development_releases/qtcreator/%{major_ver}/%{tar_version}/qt-creator-opensource-src-%{tar_version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
 Patch1: fix-build-isystem.patch
@@ -42,7 +42,9 @@
 BuildRequires:  libqt5-qtquickcontrols >= %{qt5_version}
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
+%ifnarch ppc ppc64 ppc64le s390 s390x
 BuildRequires:  libqt5-qtwebengine-devel >= %{qt5_version}
+%endif
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
 %if 0%{?suse_version} < 1330
 # It does not build with the default compiler (GCC 4.8) on Leap 42.x
@@ -92,9 +94,7 @@
 (aka QTC_SOURCE) necessary to compile plugins. 
 
 %prep
-%setup -q -n %{rname}-opensource-src-%{version}
-%patch1 -p1
-%patch2 -p1
+%autosetup -p1 -n qt-creator-opensource-src-%{tar_version}
 
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs




commit libqt5-creator for openSUSE:Factory

2018-10-15 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-10-15 09:46:16

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Mon Oct 15 09:46:16 2018 rev:57 rq:641940 version:4.7.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-09-13 12:10:31.122361285 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-10-15 09:47:07.867124093 +0200
@@ -1,0 +2,20 @@
+Tue Oct  2 22:23:06 UTC 2018 - Javier Llorente 
+
+- Update to 4.7.1
+  * Fixed that generic highlighting could use unreadable colors
+  (QTCREATORBUG-20919)
+  * Fixed jumping text cursor when editing custom executable path
+  * Fixed C++ version passed to code model (QTCREATORBUG-20909)
+  * Fixed include order for Clang headers
+  * Fixed that comments could break reformatting (QTCREATORBUG-21036)
+  * Fixed remote debugging command line argument (QTCREATORBUG-20928)
+  * Fixed environment for `Start and Debug External Application`
+  (QTCREATORBUG-20185)
+  * Fixed GDB built-in pretty printer handling (QTCREATORBUG-20770)
+  * Fixed pretty printing of enums
+  * Fixed re-enabling breakpoints (QTCREATORBUG-20795)
+  * Fixed `Attach to QML Port` (QTCREATORBUG-20168)
+  * Switched SSH support to use Botan 2 (QTCREATORBUG-18802)
+- Removed 0001-Build-with-Botan-2.patch (merged upstream) / updated spec
+
+---

Old:

  0001-Build-with-Botan-2.patch
  qt-creator-opensource-src-4.7.0.tar.xz

New:

  qt-creator-opensource-src-4.7.1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.NOgysP/_old  2018-10-15 09:47:10.427121241 +0200
+++ /var/tmp/diff_new_pack.NOgysP/_new  2018-10-15 09:47:10.427121241 +0200
@@ -12,14 +12,14 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %define have_qdoc 0%{?suse_version} >= 1500
 
 Name:   libqt5-creator
-Version:4.7.0
+Version:4.7.1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 License:GPL-3.0-with-Qt-Company-Qt-exception-1.1
@@ -32,10 +32,8 @@
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
 Patch1: fix-build-isystem.patch
-# PATCH-FIX-OPENSUSE 0001-Build-with-Botan-2.patch -- Fix build with Botan 2
-Patch2: 0001-Build-with-Botan-2.patch
 # PATCH-FIX-OPENSUSE
-Patch3: fix-application-output.patch
+Patch2: fix-application-output.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
 BuildRequires:  libbotan-devel
@@ -96,10 +94,7 @@
 %prep
 %setup -q -n %{rname}-opensource-src-%{version}
 %patch1 -p1
-%if 0%{?suse_version} >= 1500
 %patch2 -p1
-%endif
-%patch3 -p1
 
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs
@@ -107,11 +102,6 @@
 # https://bugzilla.opensuse.org/962650
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g 
src/plugins/coreplugin/icore.cpp
 
-# The botan2 files were not included in the patch, let's completely wipe the 
directory
-%if 0%{?suse_version} >= 1500
-rm src/libs/3rdparty/botan -fr
-%endif
-
 # Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 6.0.
 %ifarch %arm %ix86 x86_64
 %if 0%{?suse_version} > 1500

++ qt-creator-opensource-src-4.7.0.tar.xz -> 
qt-creator-opensource-src-4.7.1.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.7.0.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-4.7.1.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2018-09-13 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-09-13 12:10:26

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Thu Sep 13 12:10:26 2018 rev:56 rq:632762 version:4.7.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-05-29 10:45:29.455228212 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-09-13 12:10:31.122361285 +0200
@@ -1,0 +2,22 @@
+Sat Sep  1 16:57:42 UTC 2018 - fab...@ritter-vogt.de
+
+- Use WebEngine instead of WebKit for rendering Help
+- Also enable the clang code model for aarch64
+- Adjust License tag
+- Don't install Adobe Source Code Pro fonts
+- Change fix-application-output.patch to only apply to Qt < 5.11
+
+---
+Thu Jul 26 22:06:25 UTC 2018 - jav...@opensuse.org
+
+- Update to 4.7.0
+  * Clang code model is now turned on by default
+  * Upgraded Clang code model to Clang 6.0
+  * New 'Run Test Under Cursor' action
+  * QML support: Updated parser to Qt 5.10, adding support for 
+  user-defined enums
+  * Various bugfixes
+  * 
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.7.0.md?h=4.7
+- Update qt5_version to 5.9.0
+
+---

Old:

  qt-creator-opensource-src-4.6.1.tar.xz

New:

  qt-creator-opensource-src-4.7.0.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.31VCIx/_old  2018-09-13 12:10:32.990359184 +0200
+++ /var/tmp/diff_new_pack.31VCIx/_new  2018-09-13 12:10:32.994359180 +0200
@@ -19,32 +19,32 @@
 %define have_qdoc 0%{?suse_version} >= 1500
 
 Name:   libqt5-creator
-Version:4.6.1
+Version:4.7.0
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
-License:SUSE-LGPL-2.1-with-digia-exception-1.1
+License:GPL-3.0-with-Qt-Company-Qt-exception-1.1
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.6
+%define major_ver 4.7
 %define rname qt-creator
-%define qt5_version 5.6.2
+%define qt5_version 5.9.0
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/qt-creator-opensource-src-%{version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE
 Patch1: fix-build-isystem.patch
 # PATCH-FIX-OPENSUSE 0001-Build-with-Botan-2.patch -- Fix build with Botan 2
 Patch2: 0001-Build-with-Botan-2.patch
-# PATCH-FIX-OPENSUSE - Might be fixed on Qt 5.11
+# PATCH-FIX-OPENSUSE
 Patch3: fix-application-output.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
-BuildRequires:  libQt5WebKitWidgets-devel >= %{qt5_version}
 BuildRequires:  libbotan-devel
 BuildRequires:  libqt5-qtbase-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtquickcontrols >= %{qt5_version}
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
+BuildRequires:  libqt5-qtwebengine-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
 %if 0%{?suse_version} < 1330
 # It does not build with the default compiler (GCC 4.8) on Leap 42.x
@@ -54,10 +54,10 @@
 BuildRequires:  gcc7-c++
 %endif
 %endif
-# Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 5.0.
-%ifarch %arm %ix86 x86_64
-%if 0%{?suse_version} > 1320
-BuildRequires:  llvm-clang-devel >= 5.0
+# Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 6.0.
+%ifarch %arm aarch64 %ix86 x86_64
+%if 0%{?suse_version} > 1500
+BuildRequires:  llvm-clang-devel >= 6.0
 %endif
 %endif
 BuildRequires:  update-desktop-files
@@ -112,9 +112,9 @@
 rm src/libs/3rdparty/botan -fr
 %endif
 
-# Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 3.9.
+# Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 6.0.
 %ifarch %arm %ix86 x86_64
-%if 0%{?suse_version} > 1320
+%if 0%{?suse_version} > 1500
 opts="LLVM_INSTALL_DIR=%{_prefix}"
 %endif
 %endif
@@ -142,6 +142,9 @@
 # its qmake. of course it is broken
 make INSTALL_ROOT=%{buildroot}/%{_prefix} install
 
+# Source Code Pro is packaged independently
+rm -r %{buildroot}%{_datadir}/qtcreator/fonts
+
 %if %{have_qdoc}
 mkdir -p %{buildroot}%{_datadir}/doc/packages/qt5
 cp share/doc/qtcreator/qtcreator.qch %{buildroot}%{_datadir}/doc/packages/qt5/

++ fix-application-output.patch ++
--- 

commit libqt5-creator for openSUSE:Factory

2018-05-29 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-05-29 10:45:09

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Tue May 29 10:45:09 2018 rev:55 rq:612368 version:4.6.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-05-06 15:02:41.302339479 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-05-29 10:45:29.455228212 +0200
@@ -1,0 +2,5 @@
+Fri May 25 19:32:06 UTC 2018 - fab...@ritter-vogt.de
+
+- Don't try to build docs if qdoc not available
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.xsbolW/_old  2018-05-29 10:45:30.599185998 +0200
+++ /var/tmp/diff_new_pack.xsbolW/_new  2018-05-29 10:45:30.603185850 +0200
@@ -16,6 +16,8 @@
 #
 
 
+%define have_qdoc 0%{?suse_version} >= 1500
+
 Name:   libqt5-creator
 Version:4.6.1
 Release:0
@@ -130,19 +132,23 @@
 
 %qmake5 $opts
 make %{?_smp_mflags} $makeopts
-make qch_docs
-make html_docs
+%if %{have_qdoc}
+   make qch_docs
+   make html_docs
+%endif
 
 %install
 export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}${LD_LIBRARY_PATH:+:}%{_libdir}"
 # its qmake. of course it is broken
 make INSTALL_ROOT=%{buildroot}/%{_prefix} install
 
+%if %{have_qdoc}
 mkdir -p %{buildroot}%{_datadir}/doc/packages/qt5
 cp share/doc/qtcreator/qtcreator.qch %{buildroot}%{_datadir}/doc/packages/qt5/
 
 mkdir -p %{buildroot}%{_datadir}/doc/packages/qt5/qtcreator
 cp -a doc/qtcreator/* %{buildroot}%{_datadir}/doc/packages/qt5/qtcreator/
+%endif
 
 %suse_update_desktop_file -i org.qt-project.qtcreator Development Qt IDE
 
@@ -175,12 +181,14 @@
 %{_libdir}/qtcreator/
 %{_datadir}/qtcreator/
 %{_datadir}/icons/hicolor
-%dir %{_datadir}/doc/packages/qt5
-%{_datadir}/doc/packages/qt5/qtcreator/
-%{_datadir}/doc/packages/qt5/qtcreator.qch
 %{_datadir}/applications/org.qt-project.qtcreator.desktop
 %dir %{_datadir}/metainfo
 %{_datadir}/metainfo/org.qt-project.qtcreator.appdata.xml
+%if %{have_qdoc}
+%dir %{_datadir}/doc/packages/qt5
+%{_datadir}/doc/packages/qt5/qtcreator/
+%{_datadir}/doc/packages/qt5/qtcreator.qch
+%endif
 
 %files plugin-devel
 %license *GPL*




commit libqt5-creator for openSUSE:Factory

2018-05-06 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-05-06 15:02:34

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Sun May  6 15:02:34 2018 rev:54 rq:604515 version:4.6.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-04-27 16:09:47.977240474 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-05-06 15:02:41.302339479 +0200
@@ -1,0 +2,9 @@
+Fri May  4 07:17:52 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 4.6.1:
+  * Fixes for various crashes and other bugs
+  * Introduce Qt 5.11 to wizards
+  * Fix 32-bit Android deploymend
+  * 
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.6.1.md?h=4.6
+
+---

Old:

  qt-creator-opensource-src-4.6.0.tar.xz

New:

  qt-creator-opensource-src-4.6.1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.WCFVRP/_old  2018-05-06 15:02:43.462260197 +0200
+++ /var/tmp/diff_new_pack.WCFVRP/_new  2018-05-06 15:02:43.462260197 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libqt5-creator
-Version:4.6.0
+Version:4.6.1
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 License:SUSE-LGPL-2.1-with-digia-exception-1.1

++ qt-creator-opensource-src-4.6.0.tar.xz -> 
qt-creator-opensource-src-4.6.1.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.6.0.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-4.6.1.tar.xz
 differ: char 27, line 1




commit libqt5-creator for openSUSE:Factory

2018-04-27 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-04-27 16:09:42

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Fri Apr 27 16:09:42 2018 rev:53 rq:601832 version:4.6.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-04-20 17:29:06.751316887 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-04-27 16:09:47.977240474 +0200
@@ -1,0 +2,7 @@
+Thu Apr 26 20:59:08 UTC 2018 - herb...@graeber-clan.de
+
+- Fix plugin-devel subpackage
+  * Add *.hpp files
+  * Add 3rd party license files
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.2rRGBH/_old  2018-04-27 16:09:49.485185170 +0200
+++ /var/tmp/diff_new_pack.2rRGBH/_new  2018-04-27 16:09:49.489185024 +0200
@@ -149,7 +149,10 @@
 # plugin development files
 mkdir %{buildroot}%{_datadir}/qtcreator-devel
 cp qtcreator.pri %{buildroot}%{_datadir}/qtcreator-devel
-find src \( -name '*.h' -o -name '*.pri' -o -name 'QtConcurrentTools' \) \
+find src \( \
+   -name '*.h' -o -name '*.hpp' -o -name '*.pri' -o -iname 'license*.txt' -o \
+   -name 'QtConcurrentTools' \
+\) \
-exec cp --parents {} %{buildroot}%{_datadir}/qtcreator-devel \;
 
 mkdir -p %{buildroot}%{_sysconfdir}/profile.d




commit libqt5-creator for openSUSE:Factory

2018-04-20 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-04-20 17:28:08

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Fri Apr 20 17:28:08 2018 rev:52 rq:597127 version:4.6.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-04-16 12:52:38.653134845 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-04-20 17:29:06.751316887 +0200
@@ -1,0 +2,11 @@
+Mon Apr 16 07:43:44 UTC 2018 - fab...@ritter-vogt.de
+
+- Update to 4.6.0:
+  * Clang code model uses clang 5, supporting C++17
+  * Quick Designer: Added font and text properties from Qt 5.10
+  * Various other improvements
+  * Various bugfixes
+- Remove patches, now upstream:
+  * lldb.diff
+
+---

Old:

  lldb.diff
  qt-creator-opensource-src-4.5.0.tar.xz

New:

  qt-creator-opensource-src-4.6.0.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.0oXTms/_old  2018-04-20 17:29:36.414241145 +0200
+++ /var/tmp/diff_new_pack.0oXTms/_new  2018-04-20 17:29:36.418241000 +0200
@@ -17,19 +17,17 @@
 
 
 Name:   libqt5-creator
-Version:4.5.0
+Version:4.6.0
 Release:0
 Summary:Integrated Development Environment targeting Qt apps
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.5
+%define major_ver 4.6
 %define rname qt-creator
-%define qt5_version 5.6.0
+%define qt5_version 5.6.2
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/qt-creator-opensource-src-%{version}.tar.xz
 Source1:%{name}-rpmlintrc
-# PATCH-FIX-UPSTREAM lldb.diff -- exclude lldb-mi* from autodetection
-Patch0: lldb.diff
 # PATCH-FIX-OPENSUSE
 Patch1: fix-build-isystem.patch
 # PATCH-FIX-OPENSUSE 0001-Build-with-Botan-2.patch -- Fix build with Botan 2
@@ -54,10 +52,10 @@
 BuildRequires:  gcc7-c++
 %endif
 %endif
-# Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 3.9.
+# Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 5.0.
 %ifarch %arm %ix86 x86_64
 %if 0%{?suse_version} > 1320
-BuildRequires:  llvm-clang-devel >= 3.9
+BuildRequires:  llvm-clang-devel >= 5.0
 %endif
 %endif
 BuildRequires:  update-desktop-files
@@ -95,7 +93,6 @@
 
 %prep
 %setup -q -n %{rname}-opensource-src-%{version}
-%patch0 -p1
 %patch1 -p1
 %if 0%{?suse_version} >= 1500
 %patch2 -p1

++ qt-creator-opensource-src-4.5.0.tar.xz -> 
qt-creator-opensource-src-4.6.0.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.5.0.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-4.6.0.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2018-04-16 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-04-16 12:52:26

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Mon Apr 16 12:52:26 2018 rev:51 rq:596889 version:4.5.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-03-02 21:11:35.241201433 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-04-16 12:52:38.653134845 +0200
@@ -1,0 +2,6 @@
+Thu Apr 12 11:12:24 UTC 2018 - jav...@opensuse.org
+
+- Add fix-application-output.patch
+  Fixes no application output. Might be fixed on Qt 5.11 
+
+---

New:

  fix-application-output.patch



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.QkjJXy/_old  2018-04-16 12:52:39.741095231 +0200
+++ /var/tmp/diff_new_pack.QkjJXy/_new  2018-04-16 12:52:39.745095086 +0200
@@ -34,6 +34,8 @@
 Patch1: fix-build-isystem.patch
 # PATCH-FIX-OPENSUSE 0001-Build-with-Botan-2.patch -- Fix build with Botan 2
 Patch2: 0001-Build-with-Botan-2.patch
+# PATCH-FIX-OPENSUSE - Might be fixed on Qt 5.11
+Patch3: fix-application-output.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
 BuildRequires:  libQt5WebKitWidgets-devel >= %{qt5_version}
@@ -98,6 +100,7 @@
 %if 0%{?suse_version} >= 1500
 %patch2 -p1
 %endif
+%patch3 -p1
 
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs

++ fix-application-output.patch ++
From: Javier Llorente 
Subject: Fix application output
References: N/A

There is no application output on Qt Creator because logging goes to journald.
Workaround: set QT_LOGGING_TO_CONSOLE.
This might be fixed on Qt 5.11.

Index: qt-creator-opensource-src-4.5.0/src/app/main.cpp
===
--- qt-creator-opensource-src-4.5.0/src/app/main.cpp.orig   2017-12-01 
11:22:06.0 +0100
+++ qt-creator-opensource-src-4.5.0/src/app/main.cpp2018-04-13 
22:55:43.752986767 +0200
@@ -303,6 +303,8 @@
 QApplication::setAttribute(Qt::AA_DontUseNativeMenuBar);
 }
 
+qputenv("QT_LOGGING_TO_CONSOLE", "1");
+
 Utils::TemporaryDirectory::setMasterTemporaryDirectory(QDir::tempPath() + 
"/" + Core::Constants::IDE_CASED_ID + "-XX");
 
 setHighDpiEnvironmentVariable();



commit libqt5-creator for openSUSE:Factory

2018-03-02 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-03-02 21:11:32

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Fri Mar  2 21:11:32 2018 rev:50 rq:581737 version:4.5.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-02-03 15:42:55.076207081 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-03-02 21:11:35.241201433 +0100
@@ -1,0 +2,6 @@
+Thu Mar  1 10:18:43 UTC 2018 - christo...@krop.fr
+
+- Add 0001-Build-with-Botan-2.patch.
+  Fixes build with Botan 2 on openSUSE >= 15.0
+
+---

New:

  0001-Build-with-Botan-2.patch



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.5rpzF0/_old  2018-03-02 21:11:36.221166193 +0100
+++ /var/tmp/diff_new_pack.5rpzF0/_new  2018-03-02 21:11:36.229165905 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-creator
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,9 +29,11 @@
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/qt-creator-opensource-src-%{version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-UPSTREAM lldb.diff -- exclude lldb-mi* from autodetection
-Patch1: lldb.diff
+Patch0: lldb.diff
 # PATCH-FIX-OPENSUSE
-Patch2: fix-build-isystem.patch
+Patch1: fix-build-isystem.patch
+# PATCH-FIX-OPENSUSE 0001-Build-with-Botan-2.patch -- Fix build with Botan 2
+Patch2: 0001-Build-with-Botan-2.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
 BuildRequires:  libQt5WebKitWidgets-devel >= %{qt5_version}
@@ -91,8 +93,11 @@
 
 %prep
 %setup -q -n %{rname}-opensource-src-%{version}
+%patch0 -p1
 %patch1 -p1
+%if 0%{?suse_version} >= 1500
 %patch2 -p1
+%endif
 
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs
@@ -100,6 +105,11 @@
 # https://bugzilla.opensuse.org/962650
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g 
src/plugins/coreplugin/icore.cpp
 
+# The botan2 files were not included in the patch, let's completely wipe the 
directory
+%if 0%{?suse_version} >= 1500
+rm src/libs/3rdparty/botan -fr
+%endif
+
 # Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 3.9.
 %ifarch %arm %ix86 x86_64
 %if 0%{?suse_version} > 1320
@@ -157,7 +167,7 @@
 %postun -p /sbin/ldconfig
 
 %files
-%doc *GPL*
+%license *GPL*
 %{_bindir}/*
 %{_libdir}/qtcreator/
 %{_datadir}/qtcreator/
@@ -170,6 +180,7 @@
 %{_datadir}/metainfo/org.qt-project.qtcreator.appdata.xml
 
 %files plugin-devel
+%license *GPL*
 %{_datadir}/qtcreator-devel/
 %{_sysconfdir}/profile.d/qtcreator-devel.*
 

++ 0001-Build-with-Botan-2.patch ++
>From aa699d7a17527e94e757f7a2c29d780c8b68f1f8 Mon Sep 17 00:00:00 2001
From: Christophe Giboudeaux 
Date: Thu, 1 Mar 2018 11:12:54 +0100
Subject: [PATCH] Build with Botan 2

Based on 2 pending patches upstream:
0001-WIP-Adapt-to-Botan2.patch
0002-WIP-Update-bundled-Botan-to-version-2.3.patch

(origin: https://bugreports.qt.io/browse/QTCREATORBUG-18802)
---
 qbs/modules/qtc/qtc.qbs  |  1 +
 src/libs/ssh/ssh.pro |  3 +-
 src/libs/ssh/ssh.qbs | 68 +++-
 src/libs/ssh/sshbotanconversions_p.h | 13 --
 src/libs/ssh/sshcryptofacility.cpp   | 43 +---
 src/libs/ssh/sshcryptofacility_p.h   |  5 +++
 src/libs/ssh/sshkeyexchange.cpp  | 26 +---
 src/libs/ssh/sshkeygenerator.cpp |  6 +++
 src/libs/ssh/sshkeypasswordretriever.cpp | 29 +++---
 src/libs/ssh/sshkeypasswordretriever_p.h | 14 ---
 src/libs/ssh/sshpacketparser_p.h |  1 +
 11 files changed, 110 insertions(+), 99 deletions(-)

diff --git a/qbs/modules/qtc/qtc.qbs b/qbs/modules/qtc/qtc.qbs
index f3f3bf7827..1be7f0880f 100644
--- a/qbs/modules/qtc/qtc.qbs
+++ b/qbs/modules/qtc/qtc.qbs
@@ -69,6 +69,7 @@ Module {
 property string export_data_base: project.ide_source_tree + 
"/share/qtcreator"
 
 property bool testsEnabled: Environment.getEnv("TEST") || qbs.buildVariant 
=== "debug"
+property bool useSystemBotan: Environment.getEnv("USE_SYSTEM_BOTAN") === 
"1"
 property stringList generalDefines: [
 "QT_CREATOR",
 'IDE_LIBRARY_BASENAME="' + 

commit libqt5-creator for openSUSE:Factory

2018-02-03 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-02-03 15:42:48

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Sat Feb  3 15:42:48 2018 rev:49 rq:572202 version:4.5.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2018-01-19 11:50:31.327248941 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-02-03 15:42:55.076207081 +0100
@@ -1,0 +2,7 @@
+Sat Feb  3 01:48:05 UTC 2018 - wba...@tmo.at
+
+- Build with gcc7 on Leap 42.3, gcc6 no longer works because of a
+  change to the default compiler flags in openSUSE:Leap:42.3:Update
+  (boo#1077345)
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.thd7xE/_old  2018-02-03 15:42:56.208154212 +0100
+++ /var/tmp/diff_new_pack.thd7xE/_new  2018-02-03 15:42:56.208154212 +0100
@@ -44,7 +44,11 @@
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
 %if 0%{?suse_version} < 1330
 # It does not build with the default compiler (GCC 4.8) on Leap 42.x
+%if 0%{?sle_version} <= 120200
 BuildRequires:  gcc6-c++
+%else
+BuildRequires:  gcc7-c++
+%endif
 %endif
 # Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 3.9.
 %ifarch %arm %ix86 x86_64
@@ -107,7 +111,11 @@
 makeopts=""
 %if 0%{?suse_version} < 1330
 # It does not build with the default compiler (GCC 4.8) on Leap 42.x
+%if 0%{?sle_version} <= 120200
 makeopts="$makeopts CC=gcc-6 CXX=g++-6"
+%else
+makeopts="$makeopts CC=gcc-7 CXX=g++-7"
+%endif
 %endif
 
 %qmake5 $opts




commit libqt5-creator for openSUSE:Factory

2018-01-19 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2018-01-19 11:50:28

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Fri Jan 19 11:50:28 2018 rev:48 rq:560254 version:4.5.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2017-09-25 14:00:00.121891165 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2018-01-19 11:50:31.327248941 +0100
@@ -1,0 +2,23 @@
+Wed Dec 27 12:59:26 UTC 2017 - jeng...@inai.de
+
+- Ensure neutrality of descriptions.
+
+---
+Wed Dec 20 18:17:47 UTC 2017 - fab...@ritter-vogt.de
+
+- Recommend libqt5-qtdoc-qch instead of libqt5-qtdoc
+- Remove %defattr from %files
+- Remove BuildRoot
+
+---
+Sat Dec  9 21:04:51 UTC 2017 - christo...@krop.fr
+
+- Update to 4.5.0
+  * Added `Edit` > `Advanced` > `Sort Selected Lines`
+  * Progress report while parsing projects
+  * CMake : new options to handle variables
+  * Full changelog available on
+
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.5.0.md?h=4.5
+  * Require the exact QtDesignerComponents library.
+
+---
@@ -1089 +,0 @@
-

Old:

  qt-creator-opensource-src-4.4.0.tar.xz

New:

  qt-creator-opensource-src-4.5.0.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.1GpAtX/_old  2018-01-19 11:50:53.034225672 +0100
+++ /var/tmp/diff_new_pack.1GpAtX/_new  2018-01-19 11:50:53.038225484 +0100
@@ -17,13 +17,13 @@
 
 
 Name:   libqt5-creator
-Version:4.4.0
+Version:4.5.0
 Release:0
-Summary:Lightweight IDE
+Summary:Integrated Development Environment targeting Qt apps
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.4
+%define major_ver 4.5
 %define rname qt-creator
 %define qt5_version 5.6.0
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/qt-creator-opensource-src-%{version}.tar.xz
@@ -57,7 +57,7 @@
 Provides:   qt-creator = %{version}
 Obsoletes:  qt-creator < %{version}
 Recommends: libqt5-qtbase-common-devel
-Recommends: libqt5-qtdoc
+Recommends: libqt5-qtdoc-qch
 Recommends: libqt5-qtbase-devel
 Recommends: libqt5-qtdeclarative-devel
 Recommends: libqt5-qtquick1-devel
@@ -68,13 +68,12 @@
 # Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)
 # Explicitly require libQt5Script5 (needed by plugins). Qt Creator crashes 
with old versions on project load.
 %requires_eq libQt5Designer5
+%requires_eq libQt5DesignerComponents5
 %requires_eq libQt5Script5
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-Qt Creator is a new, lightweight, cross-platform integrated development
-environment (IDE) designed to make development with the Qt application
-framework even faster and easier.
+Qt Creator is an integrated development environment (IDE) designed to
+facilitate development with the Qt application framework.
 
 %package plugin-devel
 Summary:Qt Creator Plugin Development Files
@@ -150,7 +149,6 @@
 %postun -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
 %doc *GPL*
 %{_bindir}/*
 %{_libdir}/qtcreator/
@@ -164,7 +162,6 @@
 %{_datadir}/metainfo/org.qt-project.qtcreator.appdata.xml
 
 %files plugin-devel
-%defattr(-,root,root)
 %{_datadir}/qtcreator-devel/
 %{_sysconfdir}/profile.d/qtcreator-devel.*
 

++ qt-creator-opensource-src-4.4.0.tar.xz -> 
qt-creator-opensource-src-4.5.0.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.4.0.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-4.5.0.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2017-09-25 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2017-09-25 13:59:55

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Mon Sep 25 13:59:55 2017 rev:47 rq:528534 version:4.4.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2017-09-09 20:25:34.854157215 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2017-09-25 14:00:00.121891165 +0200
@@ -1,0 +2,6 @@
+Sun Sep 24 16:49:48 UTC 2017 - jaime.marquinez.ferran...@fastmail.net
+
+- Fix building of the QmlDesigner plugin by adding libqt5-qtquickcontrols
+  BuildReq (and matching runtime Requires)
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.PeCWjU/_old  2017-09-25 14:00:01.257731356 +0200
+++ /var/tmp/diff_new_pack.PeCWjU/_new  2017-09-25 14:00:01.261730793 +0200
@@ -38,6 +38,7 @@
 BuildRequires:  libbotan-devel
 BuildRequires:  libqt5-qtbase-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel >= %{qt5_version}
+BuildRequires:  libqt5-qtquickcontrols >= %{qt5_version}
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
@@ -61,6 +62,7 @@
 Recommends: libqt5-qtdeclarative-devel
 Recommends: libqt5-qtquick1-devel
 Recommends: libqt5-qttranslations
+Requires:   libqt5-qtquickcontrols
 Suggests:   git-core
 
 # Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)




commit libqt5-creator for openSUSE:Factory

2017-09-09 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2017-09-09 20:25:30

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Sat Sep  9 20:25:30 2017 rev:46 rq:521655 version:4.4.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2017-07-08 12:33:52.358912197 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2017-09-09 20:25:34.854157215 +0200
@@ -1,0 +2,15 @@
+Tue Sep  5 19:44:25 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 4.4.0
+  * Support for inline annotations
+  * Animated scrolling
+  * Improvements in the default color scheme
+  * Cleaned up CMake project tree
+  * Full changelog available on
+
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.4.0.md?h=4.4
+- Remove patches, now upstream:
+  * disable_failing_cxxflags.diff
+- Add patch to fix build:
+  * fix-build-isystem.patch (QTCREATORBUG-18848)
+
+---

Old:

  disable_failing_cxxflags.diff
  qt-creator-opensource-src-4.3.1.tar.xz

New:

  fix-build-isystem.patch
  qt-creator-opensource-src-4.4.0.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.dq3yFG/_old  2017-09-09 20:25:36.585913119 +0200
+++ /var/tmp/diff_new_pack.dq3yFG/_new  2017-09-09 20:25:36.589912555 +0200
@@ -17,21 +17,21 @@
 
 
 Name:   libqt5-creator
-Version:4.3.1
+Version:4.4.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:https://www.qt.io/ide/
-%define major_ver 4.3
+%define major_ver 4.4
 %define rname qt-creator
 %define qt5_version 5.6.0
-Source: 
http://download.qt.io/official_releases/qtcreator/4.3/%{version}/qt-creator-opensource-src-%{version}.tar.xz
+Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/qt-creator-opensource-src-%{version}.tar.xz
 Source1:%{name}-rpmlintrc
-# PATCH-FIX-OPENSUSE disable_failing_cxxflags.diff -- disable failing cxxflags 
when using llvm
-Patch0: disable_failing_cxxflags.diff
 # PATCH-FIX-UPSTREAM lldb.diff -- exclude lldb-mi* from autodetection
 Patch1: lldb.diff
+# PATCH-FIX-OPENSUSE
+Patch2: fix-build-isystem.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
 BuildRequires:  libQt5WebKitWidgets-devel >= %{qt5_version}
@@ -86,8 +86,8 @@
 
 %prep
 %setup -q -n %{rname}-opensource-src-%{version}
-%patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs

++ fix-build-isystem.patch ++
From: Fabian Vogt 
Subject: Fix build by not appending -isystem /usr/include
References: QTCREATORBUG-18848

-isystem /usr/include breaks gcc-6.0+ (RESOLVED WONTFIX) so work around that
by not using it. llvm is installed in /usr/include anyway here.

Index: qt-creator-opensource-src-4.4.0/src/tools/clangbackend/clangbackend.pro
===
--- qt-creator-opensource-src-4.4.0.orig/src/tools/clangbackend/clangbackend.pro
+++ qt-creator-opensource-src-4.4.0/src/tools/clangbackend/clangbackend.pro
@@ -10,7 +10,6 @@ QT += core network
 QT -= gui
 
 LIBS += $$LIBCLANG_LIBS
-INCLUDEPATH += $$LLVM_INCLUDEPATH
 
 SOURCES += clangbackendmain.cpp
 
++ qt-creator-opensource-src-4.3.1.tar.xz -> 
qt-creator-opensource-src-4.4.0.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.3.1.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-4.4.0.tar.xz
 differ: char 27, line 1




commit libqt5-creator for openSUSE:Factory

2017-07-08 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2017-07-08 12:33:49

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Sat Jul  8 12:33:49 2017 rev:45 rq:507660 version:4.3.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2017-05-27 13:20:24.738139219 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2017-07-08 12:33:52.358912197 +0200
@@ -1,0 +2,8 @@
+Sat Jul  1 16:18:14 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 4.3.1
+  * Fixes for crashes and other annoyances
+  * Changelog available on
+
https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/dist/changes-4.3.1.md?h=4.3
+
+---

Old:

  qt-creator-opensource-src-4.3.0.tar.xz

New:

  qt-creator-opensource-src-4.3.1.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.NfVyEU/_old  2017-07-08 12:34:16.183551720 +0200
+++ /var/tmp/diff_new_pack.NfVyEU/_new  2017-07-08 12:34:16.187551156 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libqt5-creator
-Version:4.3.0
+Version:4.3.1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
@@ -26,7 +26,7 @@
 %define major_ver 4.3
 %define rname qt-creator
 %define qt5_version 5.6.0
-Source: 
http://download.qt.io/official_releases/qtcreator/4.3/4.3.0/qt-creator-opensource-src-4.3.0.tar.xz
+Source: 
http://download.qt.io/official_releases/qtcreator/4.3/%{version}/qt-creator-opensource-src-%{version}.tar.xz
 Source1:%{name}-rpmlintrc
 # PATCH-FIX-OPENSUSE disable_failing_cxxflags.diff -- disable failing cxxflags 
when using llvm
 Patch0: disable_failing_cxxflags.diff
@@ -85,7 +85,7 @@
 (aka QTC_SOURCE) necessary to compile plugins. 
 
 %prep
-%setup -q -n %{rname}-opensource-src-4.3.0
+%setup -q -n %{rname}-opensource-src-%{version}
 %patch0 -p1
 %patch1 -p1
 

++ qt-creator-opensource-src-4.3.0.tar.xz -> 
qt-creator-opensource-src-4.3.1.tar.xz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.3.0.tar.xz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-4.3.1.tar.xz
 differ: char 26, line 1




commit libqt5-creator for openSUSE:Factory

2017-05-27 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2017-05-27 13:19:18

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Sat May 27 13:19:18 2017 rev:44 rq:498337 version:4.3.0

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2017-04-25 08:58:44.634375209 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2017-05-27 13:20:24.738139219 +0200
@@ -1,0 +2,24 @@
+Wed May 24 19:21:34 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 4.3.0
+  * For more details see:
+https://blog.qt.io/blog/2017/05/24/qt-creator-4-3-0-released/
+
+---
+Wed May 10 14:18:46 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 4.3.0 RC1
+  * For more details see:
+http://blog.qt.io/blog/2017/05/09/qt-creator-4-3-rc1-released/
+- Remove qtcreator.desktop, file now upstream
+- Add patch to fix build failure:
+  * disable_failing_cxxflags.diff
+
+---
+Mon May  1 18:56:13 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 4.2.2
+  * For more details see:
+https://blog.qt.io/blog/2017/04/21/qt-creator-4-2-2-released/
+
+---

Old:

  qt-creator-opensource-src-4.2.1.tar.gz
  qtcreator.desktop

New:

  disable_failing_cxxflags.diff
  qt-creator-opensource-src-4.3.0.tar.xz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.nPD461/_old  2017-05-27 13:20:32.781002182 +0200
+++ /var/tmp/diff_new_pack.nPD461/_new  2017-05-27 13:20:32.785001616 +0200
@@ -16,30 +16,20 @@
 #
 
 
-# Enable the clangcodemodel plugin on openSUSE TW only for now (Needs Clang 
3.9)
-%ifarch %arm %ix86 x86_64
-%if 0%{?is_opensuse} && 0%{suse_version} >= 1330
-%global enable_clang 1
-%else
-%global enable_clang 0
-%endif
-%else
-%global enable_clang 0
-%endif
-
 Name:   libqt5-creator
-Version:4.2.1
+Version:4.3.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
-Url:http://qt.digia.com/Product/Developer-Tools/
-%define major_ver 4.2
+Url:https://www.qt.io/ide/
+%define major_ver 4.3
 %define rname qt-creator
-%define qt5_version 5.6.1
-Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/%{rname}-opensource-src-%{version}.tar.gz
+%define qt5_version 5.6.0
+Source: 
http://download.qt.io/official_releases/qtcreator/4.3/4.3.0/qt-creator-opensource-src-4.3.0.tar.xz
 Source1:%{name}-rpmlintrc
-Source2:qtcreator.desktop
+# PATCH-FIX-OPENSUSE disable_failing_cxxflags.diff -- disable failing cxxflags 
when using llvm
+Patch0: disable_failing_cxxflags.diff
 # PATCH-FIX-UPSTREAM lldb.diff -- exclude lldb-mi* from autodetection
 Patch1: lldb.diff
 BuildRequires:  gdb
@@ -51,9 +41,16 @@
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
-%if %{enable_clang}
+%if 0%{?suse_version} < 1330
+# It does not build with the default compiler (GCC 4.8) on Leap 42.x
+BuildRequires:  gcc6-c++
+%endif
+# Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 3.9.
+%ifarch %arm %ix86 x86_64
+%if 0%{?suse_version} > 1320
 BuildRequires:  llvm-clang-devel >= 3.9
 %endif
+%endif
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
 Provides:   qt-creator = %{version}
@@ -88,7 +85,8 @@
 (aka QTC_SOURCE) necessary to compile plugins. 
 
 %prep
-%setup -q -n %{rname}-opensource-src-%{version}
+%setup -q -n %{rname}-opensource-src-4.3.0
+%patch0 -p1
 %patch1 -p1
 
 %build
@@ -97,16 +95,24 @@
 # https://bugzilla.opensuse.org/962650
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g 
src/plugins/coreplugin/icore.cpp
 
-%if %{enable_clang}
+# Enable the clangcodemodel plugin on openSUSE TW, which has LLVM >= 3.9.
+%ifarch %arm %ix86 x86_64
+%if 0%{?suse_version} > 1320
 opts="LLVM_INSTALL_DIR=%{_prefix}"
 %endif
-
+%endif
 opts="$opts IDE_LIBRARY_BASENAME=%{_lib} USE_SYSTEM_BOTAN=1"
 
+makeopts=""
+%if 0%{?suse_version} < 1330
+# It does not build with the default compiler (GCC 4.8) on Leap 42.x
+makeopts="$makeopts CC=gcc-6 CXX=g++-6"
+%endif
+
 %qmake5 $opts
-make %{?_smp_mflags}
+make %{?_smp_mflags} $makeopts
 make qch_docs
-make html_docs_online
+make html_docs
 
 %install
 export 

commit libqt5-creator for openSUSE:Factory

2017-04-25 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2017-04-25 08:58:43

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Tue Apr 25 08:58:43 2017 rev:43 rq:489971 version:4.2.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2017-03-15 02:00:21.307823201 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2017-04-25 08:58:44.634375209 +0200
@@ -1,0 +2,6 @@
+Thu Apr 20 12:03:28 UTC 2017 - fv...@suse.com
+
+- Remove qbs-path.diff as it needs various other adjustments to
+  actually work (boo#962766)
+
+---

Old:

  qbs-path.diff



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.DFkmq5/_old  2017-04-25 08:58:45.774214037 +0200
+++ /var/tmp/diff_new_pack.DFkmq5/_new  2017-04-25 08:58:45.778213472 +0200
@@ -40,8 +40,6 @@
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/%{rname}-opensource-src-%{version}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
-# PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location
-Patch0: qbs-path.diff
 # PATCH-FIX-UPSTREAM lldb.diff -- exclude lldb-mi* from autodetection
 Patch1: lldb.diff
 BuildRequires:  gdb
@@ -91,7 +89,6 @@
 
 %prep
 %setup -q -n %{rname}-opensource-src-%{version}
-%patch0 -p1
 %patch1 -p1
 
 %build




commit libqt5-creator for openSUSE:Factory

2017-03-14 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2017-03-15 01:06:59

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Wed Mar 15 01:06:59 2017 rev:42 rq:479223 version:4.2.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2017-01-23 11:40:43.601482441 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2017-03-15 02:00:21.307823201 +0100
@@ -1,0 +2,8 @@
+Mon Mar 13 08:12:02 UTC 2017 - fab...@ritter-vogt.de
+
+- Update to 4.2.1
+  * For more details see:
+https://blog.qt.io/blog/2017/01/23/qt-creator-4-2-1-released/
+- Use .desktop file provided by upstream instead of creating our own
+
+---

Old:

  qt-creator-opensource-src-4.2.0.tar.gz

New:

  qt-creator-opensource-src-4.2.1.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.cIUyt5/_old  2017-03-15 02:00:23.887458498 +0100
+++ /var/tmp/diff_new_pack.cIUyt5/_new  2017-03-15 02:00:23.887458498 +0100
@@ -28,7 +28,7 @@
 %endif
 
 Name:   libqt5-creator
-Version:4.2.0
+Version:4.2.1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
@@ -122,8 +122,6 @@
 mkdir -p %{buildroot}%{_datadir}/doc/packages/qt5/qtcreator
 cp -a doc/html/* %{buildroot}%{_datadir}/doc/packages/qt5/qtcreator/
 
-%suse_update_desktop_file -i qtcreator Development Qt IDE
-
 # plugin development files
 mkdir %{buildroot}%{_datadir}/qtcreator-devel
 cp qtcreator.pri %{buildroot}%{_datadir}/qtcreator-devel
@@ -151,7 +149,9 @@
 %{_libdir}/qtcreator/
 %{_datadir}/qtcreator/
 %{_datadir}/icons/hicolor
-%{_datadir}/applications/qtcreator.desktop
+%{_datadir}/applications/org.qt-project.qtcreator.desktop
+%dir %{_datadir}/metainfo
+%{_datadir}/metainfo/org.qt-project.qtcreator.appdata.xml
 %dir %{_datadir}/doc/packages/qt5
 %{_datadir}/doc/packages/qt5/qtcreator/
 %{_datadir}/doc/packages/qt5/qtcreator.qch

++ qt-creator-opensource-src-4.2.0.tar.gz -> 
qt-creator-opensource-src-4.2.1.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.2.0.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-4.2.1.tar.gz
 differ: char 5, line 1




commit libqt5-creator for openSUSE:Factory

2017-01-23 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2017-01-23 11:40:25

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2017-01-20 13:07:39.467517343 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2017-01-23 11:40:43.601482441 +0100
@@ -1,0 +2,5 @@
+Thu Jan 19 10:16:56 UTC 2017 - m...@suse.com
+
+- Increase disk constraints to 10G since sometimes it costs more than 8G. 
(bsc#1003887)
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.zRsyAy/_old  2017-01-23 11:40:44.285385438 +0100
+++ /var/tmp/diff_new_pack.zRsyAy/_new  2017-01-23 11:40:44.289384870 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-creator
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 # Enable the clangcodemodel plugin on openSUSE TW only for now (Needs Clang 
3.9)
 %ifarch %arm %ix86 x86_64
 %if 0%{?is_opensuse} && 0%{suse_version} >= 1330
@@ -26,7 +27,6 @@
 %global enable_clang 0
 %endif
 
-
 Name:   libqt5-creator
 Version:4.2.0
 Release:0

++ _constraints ++
--- /var/tmp/diff_new_pack.zRsyAy/_old  2017-01-23 11:40:44.325379765 +0100
+++ /var/tmp/diff_new_pack.zRsyAy/_new  2017-01-23 11:40:44.325379765 +0100
@@ -1,7 +1,7 @@
 
   
 
-  8
+  10
 
   
 




commit libqt5-creator for openSUSE:Factory

2017-01-20 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2017-01-20 13:07:38

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2017-01-04 19:36:27.136281552 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2017-01-20 13:07:39.467517343 +0100
@@ -1,0 +2,5 @@
+Fri Jan 13 09:01:50 UTC 2017 - fab...@ritter-vogt.de
+
+- Use correct version for llvm-clang-devel dependency
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.Up7mw7/_old  2017-01-20 13:07:40.995299277 +0100
+++ /var/tmp/diff_new_pack.Up7mw7/_new  2017-01-20 13:07:40.999298707 +0100
@@ -15,6 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+# Enable the clangcodemodel plugin on openSUSE TW only for now (Needs Clang 
3.9)
+%ifarch %arm %ix86 x86_64
+%if 0%{?is_opensuse} && 0%{suse_version} >= 1330
+%global enable_clang 1
+%else
+%global enable_clang 0
+%endif
+%else
+%global enable_clang 0
+%endif
+
 
 Name:   libqt5-creator
 Version:4.2.0
@@ -42,11 +53,8 @@
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
-# Enable the clangcodemodel plugin on OpenSUSE and SLE12-SP3 or newer, which 
have LLVM >= 3.9
-%ifarch %arm %ix86 x86_64
-%if 0%{?is_opensuse}
-BuildRequires:  llvm-clang-devel
-%endif
+%if %{enable_clang}
+BuildRequires:  llvm-clang-devel >= 3.9
 %endif
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
@@ -92,13 +100,10 @@
 # https://bugzilla.opensuse.org/962650
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g 
src/plugins/coreplugin/icore.cpp
 
-# Enable the clangcodemodel plugin on OpenSUSE and SLE12-SP2 or newer, which 
have LLVM >= 3.6.
-%ifarch %arm %ix86 x86_64
-ver=$(llvm-config --version)
-if expr $ver '>=' 3.9.0 1>/dev/null; then
+%if %{enable_clang}
 opts="LLVM_INSTALL_DIR=%{_prefix}"
-fi
 %endif
+
 opts="$opts IDE_LIBRARY_BASENAME=%{_lib} USE_SYSTEM_BOTAN=1"
 
 %qmake5 $opts




commit libqt5-creator for openSUSE:Factory

2016-11-22 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2016-11-22 18:59:12

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2016-07-15 12:45:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2016-11-22 18:59:13.0 +0100
@@ -1,0 +2,14 @@
+Tue Nov 22 08:10:55 UTC 2016 - fab...@ritter-vogt.de
+
+- Change license back temporarily. After this is in factory,
+  we can resume the wait to get it accepted.
+
+---
+Thu Aug 25 22:33:21 UTC 2016 - cgiboude...@gmx.com
+
+- Update to 4.1.0
+  * For more details see:
+  http://blog.qt.io/blog/2016/08/25/qt-creator-4-1-0-released/
+- Change the license tag. Digia is no more.
+
+---

Old:

  qt-creator-opensource-src-4.0.1.tar.gz

New:

  qt-creator-opensource-src-4.1.0.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.YRd4MC/_old  2016-11-22 18:59:15.0 +0100
+++ /var/tmp/diff_new_pack.YRd4MC/_new  2016-11-22 18:59:15.0 +0100
@@ -17,13 +17,13 @@
 
 
 Name:   libqt5-creator
-Version:4.0.1
+Version:4.1.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define major_ver 4.0
+%define major_ver 4.1
 %define rname qt-creator
 %define qt5_version 5.6.1
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/%{rname}-opensource-src-%{version}.tar.gz
@@ -42,10 +42,10 @@
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
-# Enable the clangcodemodel plugin on OpenSUSE and SLE12-SP2 or newer, which 
have LLVM >= 3.6.
+# Enable the clangcodemodel plugin on OpenSUSE and SLE12-SP2 or newer, which 
have LLVM >= 3.8.
 %ifarch %arm %ix86 x86_64
-%if 0%{?is_opensuse} || 0%{?sle_version} >= 120200
-BuildRequires:  llvm-clang-devel >= 3.6
+%if 0%{?suse_version} > 1320 || (0%{?is_opensuse} && 0%{?sle_version} >= 
120200)
+BuildRequires:  llvm-clang-devel >= 3.8
 %endif
 %endif
 BuildRequires:  update-desktop-files
@@ -94,7 +94,7 @@
 
 # Enable the clangcodemodel plugin on OpenSUSE and SLE12-SP2 or newer, which 
have LLVM >= 3.6.
 %ifarch %arm %ix86 x86_64
-%if 0%{?is_opensuse} || 0%{?sle_version} >= 120200
+%if 0%{?suse_version} > 1320 || (0%{?is_opensuse} && 0%{?sle_version} >= 
120200)
 opts="LLVM_INSTALL_DIR=%{_prefix}"
 %endif
 %endif

++ qt-creator-opensource-src-4.0.1.tar.gz -> 
qt-creator-opensource-src-4.1.0.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.0.1.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-4.1.0.tar.gz
 differ: char 5, line 1




commit libqt5-creator for openSUSE:Factory

2016-07-15 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2016-07-15 12:45:43

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2016-05-31 12:25:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2016-07-15 12:45:55.0 +0200
@@ -1,0 +2,7 @@
+Sat Jun 11 18:17:51 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 4.0.1
+  * For more details see:
+https://blog.qt.io/blog/2016/06/08/qt-creator-4-0-1-released/
+
+---

Old:

  qt-creator-opensource-src-4.0.0.tar.gz

New:

  qt-creator-opensource-src-4.0.1.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.L5ghpF/_old  2016-07-15 12:45:59.0 +0200
+++ /var/tmp/diff_new_pack.L5ghpF/_new  2016-07-15 12:45:59.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libqt5-creator
-Version:4.0.0
+Version:4.0.1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
@@ -25,7 +25,7 @@
 Url:http://qt.digia.com/Product/Developer-Tools/
 %define major_ver 4.0
 %define rname qt-creator
-%define qt5_version 5.5.0
+%define qt5_version 5.6.1
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/%{rname}-opensource-src-%{version}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop

++ qt-creator-opensource-src-4.0.0.tar.gz -> 
qt-creator-opensource-src-4.0.1.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-4.0.0.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-4.0.1.tar.gz
 differ: char 5, line 1




commit libqt5-creator for openSUSE:Factory

2016-05-31 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2016-05-31 12:25:12

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2016-05-30 09:56:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2016-05-31 12:25:14.0 +0200
@@ -1,0 +2,12 @@
+Mon May 30 07:50:04 UTC 2016 - alarr...@suse.com
+
+- Enabled clangcodemodel plugin in SLE12 SP2 since it includes
+  a recent enough LLVM version.
+
+---
+Sat May 28 19:12:46 UTC 2016 - fv...@suse.com
+
+- Add Recommends: libqt5-qttranslations
+Without them, bundled translations are ignored
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.pIxxhv/_old  2016-05-31 12:25:15.0 +0200
+++ /var/tmp/diff_new_pack.pIxxhv/_new  2016-05-31 12:25:15.0 +0200
@@ -42,9 +42,9 @@
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
-# Disable the clangcodemodel plugin for OpenSUSE 13.2 and earlier and SLE12, 
which don't have LLVM >= 3.6.
+# Enable the clangcodemodel plugin on OpenSUSE and SLE12-SP2 or newer, which 
have LLVM >= 3.6.
 %ifarch %arm %ix86 x86_64
-%if 0%{?is_opensuse}
+%if 0%{?is_opensuse} || 0%{?sle_version} >= 120200
 BuildRequires:  llvm-clang-devel >= 3.6
 %endif
 %endif
@@ -57,6 +57,7 @@
 Recommends: libqt5-qtbase-devel
 Recommends: libqt5-qtdeclarative-devel
 Recommends: libqt5-qtquick1-devel
+Recommends: libqt5-qttranslations
 Suggests:   git-core
 
 # Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)
@@ -91,9 +92,9 @@
 # https://bugzilla.opensuse.org/962650
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g 
src/plugins/coreplugin/icore.cpp
 
-# Disable the clangcodemodel plugin for OpenSUSE 13.2 and earlier and SLE12, 
which don't have LLVM >= 3.6.
+# Enable the clangcodemodel plugin on OpenSUSE and SLE12-SP2 or newer, which 
have LLVM >= 3.6.
 %ifarch %arm %ix86 x86_64
-%if 0%{?is_opensuse}
+%if 0%{?is_opensuse} || 0%{?sle_version} >= 120200
 opts="LLVM_INSTALL_DIR=%{_prefix}"
 %endif
 %endif




commit libqt5-creator for openSUSE:Factory

2016-05-30 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2016-05-30 09:56:12

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2016-05-23 16:39:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2016-05-30 09:56:24.0 +0200
@@ -1,0 +2,12 @@
+Wed May 25 20:50:51 UTC 2016 - herb...@graeber-clan.de
+
+- Add QtConcurrentTools to plugin-devel subpackage
+- Add files with QTC_SOURCE- and QTC_BUILD-Envrionment variables to
+  to /etc/profiles.d
+- Remove test directory form pugin-devel
+- Move docs to /usr/share/doc/packages/qt5 like alle other Qt5 docs,
+  so that qtcreator.qch will be auto-detected.
+- Create a new subpackage that contains the part of the source
+  tree, that is relevant for building Qt creator plugins.
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.kIFddl/_old  2016-05-30 09:56:26.0 +0200
+++ /var/tmp/diff_new_pack.kIFddl/_new  2016-05-30 09:56:26.0 +0200
@@ -70,6 +70,16 @@
 environment (IDE) designed to make development with the Qt application
 framework even faster and easier.
 
+%package plugin-devel
+Summary:Qt Creator Plugin Development Files
+Group:  Development/Tools/IDE
+Requires:   libqt5-creator = %{version}
+Requires:   libqt5-qtbase-devel >= %{qt5_version}
+
+%description plugin-devel
+This package contains all files from the Qt Creator source directory
+(aka QTC_SOURCE) necessary to compile plugins. 
+
 %prep
 %setup -q -n %{rname}-opensource-src-%{version}
 %patch0 -p1
@@ -77,7 +87,7 @@
 
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs
-sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.pri
+sed -i 's,libexec/qtcreator,$$IDE_LIBRARY_BASENAME/qtcreator/libexec,g' 
qtcreator.pri
 # https://bugzilla.opensuse.org/962650
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g 
src/plugins/coreplugin/icore.cpp
 
@@ -99,14 +109,30 @@
 # its qmake. of course it is broken
 make INSTALL_ROOT=%{buildroot}/%{_prefix} install
 
-mkdir -p %{buildroot}%{_datadir}/doc/packages/libqt5
-cp share/doc/qtcreator/qtcreator.qch 
%{buildroot}%{_datadir}/doc/packages/libqt5/
+mkdir -p %{buildroot}%{_datadir}/doc/packages/qt5
+cp share/doc/qtcreator/qtcreator.qch %{buildroot}%{_datadir}/doc/packages/qt5/
 
-mkdir -p %{buildroot}%{_datadir}/doc/packages/libqt5/qtcreator
-cp -a doc/html/* %{buildroot}%{_datadir}/doc/packages/libqt5/qtcreator/
+mkdir -p %{buildroot}%{_datadir}/doc/packages/qt5/qtcreator
+cp -a doc/html/* %{buildroot}%{_datadir}/doc/packages/qt5/qtcreator/
 
 %suse_update_desktop_file -i qtcreator Development Qt IDE
 
+# plugin development files
+mkdir %{buildroot}%{_datadir}/qtcreator-devel
+cp qtcreator.pri %{buildroot}%{_datadir}/qtcreator-devel
+find src \( -name '*.h' -o -name '*.pri' -o -name 'QtConcurrentTools' \) \
+   -exec cp --parents {} %{buildroot}%{_datadir}/qtcreator-devel \;
+
+mkdir -p %{buildroot}%{_sysconfdir}/profile.d
+cat >%{buildroot}%{_sysconfdir}/profile.d/qtcreator-devel.sh <%{buildroot}%{_sysconfdir}/profile.d/qtcreator-devel.csh <

commit libqt5-creator for openSUSE:Factory

2016-05-23 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2016-05-23 16:39:18

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2016-04-15 19:12:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2016-05-23 16:39:20.0 +0200
@@ -1,0 +2,13 @@
+Tue May 17 16:13:02 UTC 2016 - alarr...@suse.com
+
+- Added some recommended and suggested development packages so users
+  can start using Qt Creator to build new projects right after installing it.
+
+---
+Tue May 17 08:45:11 UTC 2016 - alarr...@suse.com
+
+- Update to 4.0.0 
+  * For more details see:
+https://blog.qt.io/blog/2016/05/11/qt-creator-4-0-0-released/
+
+---

Old:

  qt-creator-opensource-src-3.6.0.tar.gz

New:

  qt-creator-opensource-src-4.0.0.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.1TkGo5/_old  2016-05-23 16:39:22.0 +0200
+++ /var/tmp/diff_new_pack.1TkGo5/_new  2016-05-23 16:39:22.0 +0200
@@ -17,15 +17,15 @@
 
 
 Name:   libqt5-creator
-Version:3.6.0
+Version:4.0.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define major_ver 3.6
+%define major_ver 4.0
 %define rname qt-creator
-%define qt5_version 5.4.0
+%define qt5_version 5.5.0
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/%{rname}-opensource-src-%{version}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
@@ -54,6 +54,11 @@
 Obsoletes:  qt-creator < %{version}
 Recommends: libqt5-qtbase-common-devel
 Recommends: libqt5-qtdoc
+Recommends: libqt5-qtbase-devel
+Recommends: libqt5-qtdeclarative-devel
+Recommends: libqt5-qtquick1-devel
+Suggests:   git-core
+
 # Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)
 # Explicitly require libQt5Script5 (needed by plugins). Qt Creator crashes 
with old versions on project load.
 %requires_eq libQt5Designer5

++ qt-creator-opensource-src-3.6.0.tar.gz -> 
qt-creator-opensource-src-4.0.0.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.6.0.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-4.0.0.tar.gz
 differ: char 5, line 1




commit libqt5-creator for openSUSE:Factory

2016-04-15 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2016-04-15 19:12:06

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2016-01-23 01:16:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2016-04-15 19:12:07.0 +0200
@@ -1,0 +2,6 @@
+Wed Mar 23 22:01:22 UTC 2016 - os-...@jacraig.com
+
+- Also disable the clangcodemodel plugin for 13.2 since, like SLE12, it does
+  not have llvm >= 3.6.
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.r3Pt6E/_old  2016-04-15 19:12:08.0 +0200
+++ /var/tmp/diff_new_pack.r3Pt6E/_new  2016-04-15 19:12:08.0 +0200
@@ -42,8 +42,9 @@
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
+# Disable the clangcodemodel plugin for OpenSUSE 13.2 and earlier and SLE12, 
which don't have LLVM >= 3.6.
 %ifarch %arm %ix86 x86_64
-%if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
+%if 0%{?is_opensuse}
 BuildRequires:  llvm-clang-devel >= 3.6
 %endif
 %endif
@@ -75,8 +76,9 @@
 # https://bugzilla.opensuse.org/962650
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g 
src/plugins/coreplugin/icore.cpp
 
+# Disable the clangcodemodel plugin for OpenSUSE 13.2 and earlier and SLE12, 
which don't have LLVM >= 3.6.
 %ifarch %arm %ix86 x86_64
-%if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
+%if 0%{?is_opensuse}
 opts="LLVM_INSTALL_DIR=%{_prefix}"
 %endif
 %endif




commit libqt5-creator for openSUSE:Factory

2016-01-22 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2016-01-23 01:16:39

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2016-01-13 22:46:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2016-01-23 01:16:44.0 +0100
@@ -1,0 +2,11 @@
+Wed Jan 20 20:36:37 UTC 2016 - cgiboude...@gmx.com
+
+- Replace the 'Conflict: qt-creator' line with Provides/Obsoletes
+  entries before dropping qt-creator from openSUSE:Factory.
+
+---
+Wed Jan 20 11:43:38 UTC 2016 - cgiboude...@gmx.com
+
+- Use the correct libexec path when loading plugins (boo#962650)
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.55wjhO/_old  2016-01-23 01:16:45.0 +0100
+++ /var/tmp/diff_new_pack.55wjhO/_new  2016-01-23 01:16:45.0 +0100
@@ -49,7 +49,8 @@
 %endif
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
-Conflicts:  qt-creator
+Provides:   qt-creator = %{version}
+Obsoletes:  qt-creator < %{version}
 Recommends: libqt5-qtbase-common-devel
 Recommends: libqt5-qtdoc
 # Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)
@@ -71,6 +72,8 @@
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.pri
+# https://bugzilla.opensuse.org/962650
+sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g 
src/plugins/coreplugin/icore.cpp
 
 %ifarch %arm %ix86 x86_64
 %if 0%{?suse_version} != 1315 || 0%{?is_opensuse}




commit libqt5-creator for openSUSE:Factory

2016-01-13 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2016-01-13 22:46:03

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2015-12-09 22:23:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2016-01-13 22:46:04.0 +0100
@@ -1,0 +2,7 @@
+Mon Jan 11 22:34:07 UTC 2016 - cgiboude...@gmx.com
+
+- Update to 3.6.0
+  * For more details see:
+https://blog.qt.io/blog/2015/12/15/qt-creator-3-6-0-released
+
+---

Old:

  qt-creator-opensource-src-3.5.1.tar.gz

New:

  qt-creator-opensource-src-3.6.0.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.O0j0if/_old  2016-01-13 22:46:07.0 +0100
+++ /var/tmp/diff_new_pack.O0j0if/_new  2016-01-13 22:46:07.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-creator
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   libqt5-creator
-Version:3.5.1
+Version:3.6.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define major_ver 3.5
+%define major_ver 3.6
 %define rname qt-creator
 %define qt5_version 5.4.0
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/%{rname}-opensource-src-%{version}.tar.gz

++ qt-creator-opensource-src-3.5.1.tar.gz -> 
qt-creator-opensource-src-3.6.0.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.5.1.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.6.0.tar.gz
 differ: char 5, line 1




commit libqt5-creator for openSUSE:Factory

2015-12-09 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-12-09 19:51:59

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2015-10-30 13:43:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2015-12-09 22:23:13.0 +0100
@@ -1,0 +2,7 @@
+Fri Dec  4 18:23:17 UTC 2015 - cgiboude...@gmx.com
+
+- Add lldb.diff.
+  lldb-* also matches lldb-mi which doesn't recognize the
+  -version switch. Fixes boo#957185.
+
+---

New:

  lldb.diff



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.tlbD94/_old  2015-12-09 22:23:16.0 +0100
+++ /var/tmp/diff_new_pack.tlbD94/_new  2015-12-09 22:23:16.0 +0100
@@ -31,6 +31,8 @@
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location
 Patch0: qbs-path.diff
+# PATCH-FIX-UPSTREAM lldb.diff -- exclude lldb-mi* from autodetection
+Patch1: lldb.diff
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite >= %{qt5_version}
 BuildRequires:  libQt5WebKitWidgets-devel >= %{qt5_version}
@@ -64,6 +66,7 @@
 %prep
 %setup -q -n %{rname}-opensource-src-%{version}
 %patch0 -p1
+%patch1 -p1
 
 %build
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs

++ lldb.diff ++
diff --git a/src/plugins/debugger/debuggeritemmanager.cpp 
b/src/plugins/debugger/debuggeritemmanager.cpp
index 0c3abc3..f8e8413 100644
--- a/src/plugins/debugger/debuggeritemmanager.cpp
+++ b/src/plugins/debugger/debuggeritemmanager.cpp
@@ -253,6 +253,7 @@ void DebuggerItemManager::autoDetectGdbOrLldbDebuggers()
 dir.setPath(base);
 foreach (const QString , dir.entryList()) {
 if (entry.startsWith(QLatin1String("lldb-platform-"))
+|| entry.startsWith(QLatin1String("lldb-mi"))
 || entry.startsWith(QLatin1String("lldb-gdbserver-"))) {
 continue;
 }



commit libqt5-creator for openSUSE:Factory

2015-10-30 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-10-30 13:43:52

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2015-10-28 17:31:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2015-10-30 13:43:53.0 +0100
@@ -1,0 +2,5 @@
+Thu Oct 29 11:42:27 UTC 2015 - dval...@suse.com
+
+- Add disk constraints. 
+
+---

New:

  _constraints



Other differences:
--
++ _constraints ++

  

  8

  




commit libqt5-creator for openSUSE:Factory

2015-10-28 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-10-28 17:31:03

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2015-10-06 13:25:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2015-10-28 17:31:08.0 +0100
@@ -1,0 +2,13 @@
+Tue Oct 27 10:57:51 UTC 2015 - r...@fthiessen.de
+
+- Update to 3.5.1:
+  * Fixed that cancel button was ignored when wizards ask about
+overwriting files
+  * Fixed crashes with code completion
+  * Meruical: Fixed crash when annotating
+  * And much more bugfixes, for all changes see:
+http://blog.qt.io/blog/2015/10/15/qt-creator-3-5-1-released/
+- Fixed invalid .desktop file
+- Made package build on all repositories of the development project
+
+---

Old:

  qt-creator-opensource-src-3.5.0.tar.gz

New:

  qt-creator-opensource-src-3.5.1.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.sUkZo9/_old  2015-10-28 17:31:11.0 +0100
+++ /var/tmp/diff_new_pack.sUkZo9/_new  2015-10-28 17:31:11.0 +0100
@@ -17,16 +17,16 @@
 
 
 Name:   libqt5-creator
-Version:3.5.0
+Version:3.5.1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.5.0
+%define major_ver 3.5
 %define rname qt-creator
-%define qt5_version 5.5.0
-Source: 
http://download.qt.io/official_releases/qtcreator/3.5/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
+%define qt5_version 5.4.0
+Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/%{rname}-opensource-src-%{version}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location
@@ -41,7 +41,7 @@
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
 %ifarch %arm %ix86 x86_64
-%if 0%{?suse_version} != 1315
+%if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
 BuildRequires:  llvm-clang-devel >= 3.6
 %endif
 %endif
@@ -62,7 +62,7 @@
 framework even faster and easier.
 
 %prep
-%setup -q -n %{rname}-opensource-src-%{rversion}
+%setup -q -n %{rname}-opensource-src-%{version}
 %patch0 -p1
 
 %build
@@ -70,7 +70,7 @@
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.pri
 
 %ifarch %arm %ix86 x86_64
-%if 0%{?suse_version} != 1315
+%if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
 opts="LLVM_INSTALL_DIR=%{_prefix}"
 %endif
 %endif

++ qt-creator-opensource-src-3.5.0.tar.gz -> 
qt-creator-opensource-src-3.5.1.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.5.0.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.5.1.tar.gz
 differ: char 5, line 1

++ qtcreator.desktop ++
--- /var/tmp/diff_new_pack.sUkZo9/_old  2015-10-28 17:31:11.0 +0100
+++ /var/tmp/diff_new_pack.sUkZo9/_new  2015-10-28 17:31:11.0 +0100
@@ -7,6 +7,5 @@
 Icon=QtProject-qtcreator
 Terminal=false
 Categories=Qt;Development;IDE;
-MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource;
 
MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource;text/x-qml;text/x-qt.qml;text/x-qt.qbs;
 InitialPreference=9




commit libqt5-creator for openSUSE:Factory

2015-10-06 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-10-06 13:25:16

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2015-09-27 08:37:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2015-10-06 13:25:16.0 +0200
@@ -1,0 +2,6 @@
+Wed Sep 30 15:11:45 UTC 2015 - alarr...@suse.com
+
+- Disable the clangcodemodel plugin when in SLE12 and Leap, since neither
+  of them have llvm >= 3.6, thus removing the requirement.
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.TbWOei/_old  2015-10-06 13:25:19.0 +0200
+++ /var/tmp/diff_new_pack.TbWOei/_new  2015-10-06 13:25:19.0 +0200
@@ -41,8 +41,10 @@
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
 %ifarch %arm %ix86 x86_64
+%if 0%{?suse_version} != 1315
 BuildRequires:  llvm-clang-devel >= 3.6
 %endif
+%endif
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
 Conflicts:  qt-creator
@@ -68,8 +70,10 @@
 sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.pri
 
 %ifarch %arm %ix86 x86_64
+%if 0%{?suse_version} != 1315
 opts="LLVM_INSTALL_DIR=%{_prefix}"
 %endif
+%endif
 opts="$opts IDE_LIBRARY_BASENAME=%{_lib} USE_SYSTEM_BOTAN=1"
 
 %qmake5 $opts




commit libqt5-creator for openSUSE:Factory

2015-09-27 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-09-27 08:38:27

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is "libqt5-creator"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2015-06-06 09:52:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2015-09-27 08:37:48.0 +0200
@@ -1,0 +2,36 @@
+Fri Sep  4 09:24:04 UTC 2015 - alarr...@suse.com
+
+- BuildRequire llvm-clang-devel minimum version 3.6 since the sources do
+
+---
+Sat Aug 22 20:13:43 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Upate to  3.5.0:
+  * Increased minimum requirements for compilation of Qt Creator to
+MSVC 2013 and GCC 4.7, and Qt 5.4.0
+  * Added variants with native separators to Qt Creator variables
+that represent file paths
+  * Changed the way inconsistent enabled states were handled by the
+plugin manager. Disabling plugins is now only a hint; if another
+(enabled) plugin needs it, it is implicitly enabled. Before, the
+other plugin was implicitly disabled.
+  * Improved keyboard shortcut settings. Made shortcut input field
+freely editable and added separate `record` button.
+  * Added support for `~` as shortcut for user's home directory to
+path input fields
+  * Added filtering to About Plugins
+  * Added `-load all` and `-noload all` command line options that
+enable and disable all plugins respectively
+  * Made `-load` command line option implicitly enable all required
+plugins, and `-noload` disable all plugins requiring the
+disabled plugin. Multiple `-load` and `-noload` options are
+interpreted in the order given on the command line.
+  * Fixed issues with raising the Qt Creator window on Gnome desktop
+(QTCREATORBUG-13845)
+  * Fixed appearance on high DPI displays on Windows
+(QTCREATORBUG-11179)
+  * Added locator filter for running external tools
+  * For more details see:
+http://blog.qt.io/blog/2015/08/20/qt-creator-3-5-0-released/
+
+---

Old:

  qt-creator-opensource-src-3.4.1.tar.gz

New:

  qt-creator-opensource-src-3.5.0.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.Y7zBcK/_old  2015-09-27 08:37:50.0 +0200
+++ /var/tmp/diff_new_pack.Y7zBcK/_new  2015-09-27 08:37:50.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-creator
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,16 +17,16 @@
 
 
 Name:   libqt5-creator
-Version:3.4.1
+Version:3.5.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.4.1
+%define rversion 3.5.0
 %define rname qt-creator
-%define qt5_version 5.4.2
-Source: 
http://download.qt.io/official_releases/qtcreator/3.4/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
+%define qt5_version 5.5.0
+Source: 
http://download.qt.io/official_releases/qtcreator/3.5/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location
@@ -37,12 +37,11 @@
 BuildRequires:  libbotan-devel
 BuildRequires:  libqt5-qtbase-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel >= %{qt5_version}
-BuildRequires:  libqt5-qtquick1-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtscript-devel >= %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel >= %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel >= %{qt5_version}
 %ifarch %arm %ix86 x86_64
-BuildRequires:  llvm-clang-devel
+BuildRequires:  llvm-clang-devel >= 3.6
 %endif
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
@@ -65,6 +64,9 @@
 %patch0 -p1
 
 %build
+sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.qbs
+sed -i s,libexec/qtcreator,%{_lib}/qtcreator/libexec,g qtcreator.pri
+
 %ifarch %arm %ix86 x86_64
 opts="LLVM_INSTALL_DIR=%{_prefix}"
 %endif

++ qt-creator-opensource-src-3.4.1.tar.gz -> 
qt-creator-opensource-src-3.5.0.tar.gz ++

commit libqt5-creator for openSUSE:Factory

2015-06-06 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-06-06 09:52:55

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2015-05-28 09:55:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2015-06-06 09:52:57.0 +0200
@@ -1,0 +2,7 @@
+Wed Jun  3 22:55:30 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 3.4.1:
+  * For more details see:
+http://blog.qt.io/blog/2015/06/02/qt-creator-3-4-1-released/
+
+---

Old:

  qt-creator-opensource-src-3.4.0.tar.gz

New:

  qt-creator-opensource-src-3.4.1.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.E4jmGj/_old  2015-06-06 09:52:59.0 +0200
+++ /var/tmp/diff_new_pack.E4jmGj/_new  2015-06-06 09:52:59.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-creator
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,15 @@
 
 
 Name:   libqt5-creator
-Version:3.4.0
+Version:3.4.1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.4.0
+%define rversion 3.4.1
 %define rname qt-creator
-%define qt5_version 5.4.1
+%define qt5_version 5.4.2
 Source: 
http://download.qt.io/official_releases/qtcreator/3.4/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop

++ qt-creator-opensource-src-3.4.0.tar.gz - 
qt-creator-opensource-src-3.4.1.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.4.0.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.4.1.tar.gz
 differ: char 5, line 1




commit libqt5-creator for openSUSE:Factory

2015-05-28 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-05-28 09:55:09

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2015-04-16 14:12:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2015-05-28 09:55:10.0 +0200
@@ -1,0 +2,13 @@
+Tue May 26 20:01:41 UTC 2015 - herb...@graeber-clan.de
+
+- BuildRequire libQt5WebKitWidgets-deve to make help pages show like Qt 
assistant
+
+---
+Thu Apr 23 19:30:19 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 3.4 Final:
+  * For more details see:
+https://blog.qt.io/blog/2015/04/23/qt-creator-3-4-0-released/
+and 
http://code.qt.io/cgit/qt-creator/qt-creator.git/plain/dist/changes-3.4.0?h=3.4
+
+---

Old:

  qt-creator-opensource-src-3.4.0-rc1.tar.gz

New:

  qt-creator-opensource-src-3.4.0.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.ZDqTDm/_old  2015-05-28 09:55:12.0 +0200
+++ /var/tmp/diff_new_pack.ZDqTDm/_new  2015-05-28 09:55:12.0 +0200
@@ -17,22 +17,23 @@
 
 
 Name:   libqt5-creator
-Version:3.4.0~rc1
+Version:3.4.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.4.0-rc1
+%define rversion 3.4.0
 %define rname qt-creator
 %define qt5_version 5.4.1
-Source: 
http://download.qt.io/development_releases/qtcreator/3.4/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
+Source: 
http://download.qt.io/official_releases/qtcreator/3.4/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location
 Patch0: qbs-path.diff
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite = %{qt5_version}
+BuildRequires:  libQt5WebKitWidgets-devel = %{qt5_version}
 BuildRequires:  libbotan-devel
 BuildRequires:  libqt5-qtbase-devel = %{qt5_version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel = %{qt5_version}

++ qt-creator-opensource-src-3.4.0-rc1.tar.gz - 
qt-creator-opensource-src-3.4.0.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.4.0-rc1.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.4.0.tar.gz
 differ: char 5, line 1




commit libqt5-creator for openSUSE:Factory

2015-04-16 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-04-16 14:12:46

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2015-03-01 15:27:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2015-04-16 14:12:47.0 +0200
@@ -1,0 +2,98 @@
+Wed Apr  1 19:40:28 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 3.4. rc1:
+  * For more details see:
+http://blog.qt.io/blog/2015/04/01/qt-creator-3-4-rc1-released/
+
+---
+Mon Mar  9 18:35:57 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 3.4 beta1:
+  * Added option to change environment for running external tools
+(QTCREATORBUG-4995)
+  * Improved performance of output panes
+  * Fixed that wizard windows were missing in Window menu
+(QTCREATORBUG-13766)
+  * Switched to a QMimeDatabase based MIME database implementation
+  * Added hint in empty editor area
+  * Added Copy Path and Line Number to context menu of
+document selector
+  * Added parenthesis highlighting to generic highlighter
+  * Fixed that files with same file name but different path were
+not distinguishable in document selector and open documents pane
+(QTCREATORBUG-10185)
+  * Fixed that symlinks and their target could be opened at
+the same time (QTCREATORBUG-5941)
+  * Fixed that wrong highlight definition was downloaded when
+sorting the list in the settings
+  * Fixed clean up of automatically registered documentation
+  * Added handling of QMAKE_CXXFLAGS_(APP|SHLIB|PLUGIN) variables
+  * Added option to put debug information in separate file
+(QTCREATORBUG-14009)
+  * Fixed ANSI color support for application output
+(QTCREATORBUG-13764)
+  * Fixed handling of DEFINES with escaped characters
+  * Fixed that static libraries were deployed
+  * Fixed finding source directory for build directory
+  * Added option to show full command lines during build
+  * Added Valgrind Memory Analyzer with GDB
+  * Made it possible to search through event notes
+(QTCREATORBUG-13417)
+  * Added support for binary literals (n3472)
+  * Added locator filter for all included files
+(QTCREATORBUG-280)
+  * Added refactoring action that moves all function
+definitions out of a class declaration
+  * Added support for signal and slot completion
+in Qt 5 style connects
+  * Improved support for non-Qt projects that use Qt keywords
+  * Made auto-completion delay configurable
+(QTCREATORBUG-13393)
+  * Fixed auto-indentation for break in switch statement
+(QTCREATORBUG-13155)
+  * Fixed issues with case-insensitive file systems
+(QTCREATORBUG-12390)
+  * Fixed completion for enums inside member functions
+(QTCREATORBUG-13757)
+  * Fixed crash on closing one of multiple outline views
+(QTCREATORBUG-13614)
+  * Fixed that Move Definition to Class refactoring action was
+not available when using override (QTCREATORBUG-13564)
+  * Fixed that Assign to Local Variable refactoring action was
+not working with chained function calls (QTCREATORBUG-10355)
+  * Fixed several issues with completion and iterators
+(QTCREATORBUG-13799)
+  * Fixed crash on closing one of multiple outline views
+(QTCREATORBUG-13614)
+  * Added support for git stash --keep-index (QTCREATORBUG-13587)
+  * Fixed that it was not possible to abort query and fetch
+(QTCREATORBUG-9743)
+  * Fixed that not all remotes where shown in Push to Gerrit dialog
+(QTCREATORBUG-13718)
+  * Added option to show verbose log
+  * Changed to use the new unified diff viewer
+  * Fixed that committing failed when using non-Latin1 characters in
+commit message (QTCREATORBUG-13979)
+  * Improved repository log (QTCREATORBUG-13526)
+  * Fixed target column for various commands
+  * Fixed behavior of D in visual block mode
+  * Fixed cursor shape after failing search
+  * Fixed issues with pasting in presence of splits
+(QTCREATORBUG-13481)
+  * Added support for 64bit tool chains
+  * Fixed that active run configuration setting was ignored
+for deploying application
+ (QTCREATORBUG-13732)
+  * Added optional host key checking (QTCREATORBUG-13339)
+  * Added automatic closing of SSH connections after a
+period of inactivity
+  * Added support for SHA-256 HMAC for SSH
+  * Fixed that it was not possible to quote run arguments
+(QTCREATORBUG-14002)
+  * Added GDB server configuration management (QTCREATORBUG-13686)
+  * Added support for remote channel without port
+  * Added support for generic projects
+- Drop 

commit libqt5-creator for openSUSE:Factory

2015-03-01 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-03-01 15:27:39

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2015-02-05 11:00:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2015-03-01 15:27:40.0 +0100
@@ -1,0 +2,8 @@
+Thu Feb 26 02:19:57 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 3.3.1:
+  * For more details please see:
+http://blog.qt.io/blog/2015/02/24/qt-creator-3-3-1-released/
+and 
https://qt.gitorious.org/qt-creator/qt-creator/source/3.3:dist/changes-3.3.1
+
+---

Old:

  qt-creator-opensource-src-3.3.0.tar.gz

New:

  qt-creator-opensource-src-3.3.1.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.hoAScj/_old  2015-03-01 15:27:42.0 +0100
+++ /var/tmp/diff_new_pack.hoAScj/_new  2015-03-01 15:27:42.0 +0100
@@ -17,13 +17,13 @@
 
 
 Name:   libqt5-creator
-Version:3.3.0
+Version:3.3.1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.3.0
+%define rversion 3.3.1
 %define rname qt-creator
 %define qt5_version 5.4.0
 Source: 
http://download.qt-project.org/official_releases/qtcreator/3.3/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz

++ qt-creator-opensource-src-3.3.0.tar.gz - 
qt-creator-opensource-src-3.3.1.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.3.0.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.3.1.tar.gz
 differ: char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2015-02-05 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2015-02-05 11:00:14

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-12-21 11:56:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2015-02-05 11:00:15.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb  3 19:13:51 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Add make-qt-creator-build-with-Werror=date-time.patch:
+  don't embedded date  time into qtcreator binary  plugins
+- Extend rpmlintrc file to avoid duplicates warnings, we don't wont
+  to use fdupes due to unpredictable symlinking
+
+---

New:

  make-qt-creator-build-with-Werror=date-time.patch



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.ZGwaBT/_old  2015-02-05 11:00:17.0 +0100
+++ /var/tmp/diff_new_pack.ZGwaBT/_new  2015-02-05 11:00:17.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-creator
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,7 +31,8 @@
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location
 Patch0: qbs-path.diff
-BuildRequires:  fdupes
+# PATCH-FIX-OPENSUSE make-qt-creator-build-with-Werror=date-time.patch -- 
don't embedded date  time into qtcreator binary  plugins
+Patch1: make-qt-creator-build-with-Werror=date-time.patch
 BuildRequires:  gdb
 BuildRequires:  libQt5Sql5-sqlite = %{qt5_version}
 BuildRequires:  libbotan-devel
@@ -63,6 +64,7 @@
 %prep
 %setup -q -n %{rname}-opensource-src-%{rversion}
 %patch0 -p1
+%patch1 -p1
 
 %build
 %ifarch %arm %ix86 x86_64
@@ -88,8 +90,6 @@
 
 %suse_update_desktop_file -i qtcreator Development Qt IDE
 
-%fdupes -s %{buildroot}
-
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig

++ libqt5-creator-rpmlintrc ++
--- /var/tmp/diff_new_pack.ZGwaBT/_old  2015-02-05 11:00:17.0 +0100
+++ /var/tmp/diff_new_pack.ZGwaBT/_new  2015-02-05 11:00:17.0 +0100
@@ -1 +1,3 @@
 addFilter(devel-file-in-non-devel-package)
+addFilter(files-duplicated-waste .*)
+addFilter(files-duplicate .*)
\ No newline at end of file

++ make-qt-creator-build-with-Werror=date-time.patch ++
--- 
qt-creator-opensource-src-3.3.0/src/libs/qtcreatorcdbext/qtcreatorcdbextension.cpp
  2014-12-08 13:58:49.0 +0100
+++ 
qt-creator-opensource-src-3.3.0.new/src/libs/qtcreatorcdbext/qtcreatorcdbextension.cpp
  2015-02-03 18:56:23.672008433 +0100
@@ -279,8 +279,8 @@ extern C HRESULT CALLBACK pid(CIDebugC
 
 int token;
 commandTokensStringList(args, token);
-dprintf(Qt Creator CDB extension version 3.3 %d bit built %s.\n,
-sizeof(void *) * 8, __DATE__);
+dprintf(Qt Creator CDB extension version 3.3 %d bit.\n,
+sizeof(void *) * 8);
 if (const ULONG pid = currentProcessId(client))
 ExtensionContext::instance().report('R', token, 0, pid, %u, pid);
 else
@@ -940,7 +940,7 @@ extern C HRESULT CALLBACK setparameter
 extern C HRESULT CALLBACK help(CIDebugClient *, PCSTR)
 {
 std::ostringstream str;
-str  ### Qt Creator CDB extension built   __DATE__  \n\n;
+str  ### Qt Creator CDB extension  \n\n;
 
 const size_t commandCount = 
sizeof(commandDescriptions)/sizeof(CommandDescription);
 std::copy(commandDescriptions, commandDescriptions + commandCount,
--- qt-creator-opensource-src-3.3.0/src/plugins/coreplugin/versiondialog.cpp
2014-12-08 13:58:49.0 +0100
+++ 
qt-creator-opensource-src-3.3.0.new/src/plugins/coreplugin/versiondialog.cpp
2015-02-03 18:57:53.162889643 +0100
@@ -68,18 +68,15 @@ VersionDialog::VersionDialog(QWidget *pa
 h3%1/h3
 %2br/
 br/
-Built on %3 at %4br /
+%3
 br/
-%5
-br/
-Copyright 2008-%6 %7. All rights reserved.br/
+Copyright 2008-%4 %5. All rights reserved.br/
 br/
 The program is provided AS IS with NO WARRANTY OF ANY KIND, 
 INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A 
 PARTICULAR PURPOSE.br/)
 .arg(ICore::versionString(),
  ICore::buildCompatibilityString(),
- QLatin1String(__DATE__), QLatin1String(__TIME__),
   

commit libqt5-creator for openSUSE:Factory

2014-12-21 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-12-21 11:57:21

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-11-04 17:29:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-12-21 11:56:01.0 +0100
@@ -1,0 +2,17 @@
+Wed Dec 10 11:33:32 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.3 Final
+  * For more details please see:
+http://blog.qt.digia.com/blog/2014/12/10/qt-creator-3-3-0-released/
+and 
https://qt.gitorious.org/qt-creator/qt-creator/source/3.3:dist/changes-3.3.0
+- Raise required Qt5 version to 5.4.0
+
+---
+Thu Nov 27 15:46:15 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.3.0 RC1
+  * For more details please see:
+http://blog.qt.digia.com/blog/2014/11/27/qt-creator-3-3-rc-released/
+and 
https://qt.gitorious.org/qt-creator/qt-creator/source/3.3:dist/changes-3.3.0
+
+---

Old:

  qt-creator-opensource-src-3.2.2.tar.gz

New:

  qt-creator-opensource-src-3.3.0.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.e4BQww/_old  2014-12-21 11:56:03.0 +0100
+++ /var/tmp/diff_new_pack.e4BQww/_new  2014-12-21 11:56:03.0 +0100
@@ -17,16 +17,16 @@
 
 
 Name:   libqt5-creator
-Version:3.2.2
+Version:3.3.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.2.2
+%define rversion 3.3.0
 %define rname qt-creator
-%define qt5_version 5.3.2
-Source: 
https://download.qt-project.org/official_releases/qtcreator/3.2/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
+%define qt5_version 5.4.0
+Source: 
http://download.qt-project.org/official_releases/qtcreator/3.3/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location
@@ -96,7 +96,7 @@
 
 %files
 %defattr(-,root,root)
-%doc LICENSE.*GPL* LGPL_EXCEPTION.TXT
+%doc *GPL*
 %{_bindir}/*
 %{_libdir}/qtcreator/
 %{_datadir}/qtcreator/

++ qt-creator-opensource-src-3.2.2.tar.gz - 
qt-creator-opensource-src-3.3.0.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.2.2.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.3.0.tar.gz
 differ: char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2014-11-04 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-11-04 17:28:56

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-10-01 11:22:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-11-04 17:29:09.0 +0100
@@ -1,0 +2,27 @@
+Tue Oct 21 05:49:47 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.2.2
+  * Bugfix release
+* Editing
+  * Fixed crash with Toggle Comment Selection
+(QTCREATORBUG-12987)
+  * Fixed that Select All set the cursor to top of document
+(QTCREATORBUG-12860)
+* Help
+  * Fixed crash with help index locator filter
+* Managing and Building Projects
+  * Fixed that closing Qt Creator while Projects mode
+is active lost all session data (QTCREATORBUG-13098)
+* CMake Projects
+  * Fixed crash when selecting make target
+(QTCREATORBUG-13129)
+* Generic Projects
+  * Fixed that include paths were not updated when
+files are added (QTCREATORBUG-12873)
+* Version Control Systems
+  * ClearCase
+  * Fixed that reserved checkout was performed even when
+unchecking the checkbox (QTCREATORBUG-12847)
+- Added explicit libQt5Sql5-sqlite BuildRequires
+
+---

Old:

  qt-creator-opensource-src-3.2.1.tar.gz

New:

  qt-creator-opensource-src-3.2.2.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.oeRgRM/_old  2014-11-04 17:29:15.0 +0100
+++ /var/tmp/diff_new_pack.oeRgRM/_new  2014-11-04 17:29:15.0 +0100
@@ -17,13 +17,13 @@
 
 
 Name:   libqt5-creator
-Version:3.2.1
+Version:3.2.2
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.2.1
+%define rversion 3.2.2
 %define rname qt-creator
 %define qt5_version 5.3.2
 Source: 
https://download.qt-project.org/official_releases/qtcreator/3.2/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
@@ -33,6 +33,7 @@
 Patch0: qbs-path.diff
 BuildRequires:  fdupes
 BuildRequires:  gdb
+BuildRequires:  libQt5Sql5-sqlite = %{qt5_version}
 BuildRequires:  libbotan-devel
 BuildRequires:  libqt5-qtbase-devel = %{qt5_version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel = %{qt5_version}
@@ -95,7 +96,7 @@
 
 %files
 %defattr(-,root,root)
-%doc LICENSE.LGPL LGPL_EXCEPTION.TXT
+%doc LICENSE.*GPL* LGPL_EXCEPTION.TXT
 %{_bindir}/*
 %{_libdir}/qtcreator/
 %{_datadir}/qtcreator/

++ qt-creator-opensource-src-3.2.1.tar.gz - 
qt-creator-opensource-src-3.2.2.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.2.1.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.2.2.tar.gz
 differ: char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2014-10-01 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-10-01 11:22:20

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-09-18 07:57:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-10-01 11:22:22.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep 25 08:50:31 UTC 2014 - infr...@gmail.com
+
+- Explicitly require latest libQt5Script5 (needed by plugins). 
+  Qt Creator crashes with old versions.
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.PYyxW4/_old  2014-10-01 11:22:24.0 +0200
+++ /var/tmp/diff_new_pack.PYyxW4/_new  2014-10-01 11:22:24.0 +0200
@@ -49,7 +49,9 @@
 Recommends: libqt5-qtbase-common-devel
 Recommends: libqt5-qtdoc
 # Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)
-Requires:   libQt5Designer5 = %( echo `rpm -q --queryformat '%{VERSION}' 
libqt5-qttools-devel`)
+# Explicitly require libQt5Script5 (needed by plugins). Qt Creator crashes 
with old versions on project load.
+%requires_eq libQt5Designer5
+%requires_eq libQt5Script5
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2014-09-17 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-09-18 07:57:02

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-09-08 21:29:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-09-18 07:57:24.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep 16 12:13:27 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.2.1
+  * Bugfix release, for more details please see:
+http://blog.qt.digia.com/blog/2014/09/16/qt-creator-3-2-1-released/
+
+---

Old:

  qt-creator-opensource-src-3.2.0.tar.gz

New:

  qt-creator-opensource-src-3.2.1.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.mRwhCD/_old  2014-09-18 07:57:26.0 +0200
+++ /var/tmp/diff_new_pack.mRwhCD/_new  2014-09-18 07:57:26.0 +0200
@@ -17,15 +17,15 @@
 
 
 Name:   libqt5-creator
-Version:3.2.0
+Version:3.2.1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.2.0
+%define rversion 3.2.1
 %define rname qt-creator
-%define qt5_version 5.3.2~git20140904
+%define qt5_version 5.3.2
 Source: 
https://download.qt-project.org/official_releases/qtcreator/3.2/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop

++ qt-creator-opensource-src-3.2.0.tar.gz - 
qt-creator-opensource-src-3.2.1.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.2.0.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.2.1.tar.gz
 differ: char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2014-09-08 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-09-08 21:28:40

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-06-30 21:50:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-09-08 21:29:06.0 +0200
@@ -1,0 +2,19 @@
+Tue Aug 19 14:21:20 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.2.0
+  * Block selections in text editors now allow you to do “column
+editing”, meaning that all selected lines are edited
+simultaneously (Qt Creator Manual)
+  * Context help can now be configured to open in an external
+window (without disabling Help mode)
+  * Support for C99 designated initializers and concatenated strings
+was added to the C++ code model, as well as improvements to
+encoding handling and lambda  support and many other things
+  * More panes are now searchable with Ctrl+F, for example the
+project tree
+  * The QML profiler received many performance and stability
+improvements again
+  * For more details please see:
+http://blog.qt.digia.com/blog/2014/08/19/qt-creator-3-2-0-released/
+
+---

Old:

  qt-creator-opensource-src-3.1.2.tar.gz

New:

  qt-creator-opensource-src-3.2.0.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.EfzIa3/_old  2014-09-08 21:29:08.0 +0200
+++ /var/tmp/diff_new_pack.EfzIa3/_new  2014-09-08 21:29:08.0 +0200
@@ -17,16 +17,16 @@
 
 
 Name:   libqt5-creator
-Version:3.1.2
+Version:3.2.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.1.2
+%define rversion 3.2.0
 %define rname qt-creator
-%define qt5_version 5.3.1
-Source: 
http://download.qt-project.org/official_releases/qtcreator/3.1/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
+%define qt5_version 5.3.2~git20140904
+Source: 
https://download.qt-project.org/official_releases/qtcreator/3.2/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location

++ qt-creator-opensource-src-3.1.2.tar.gz - 
qt-creator-opensource-src-3.2.0.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.1.2.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.2.0.tar.gz
 differ: char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2014-06-30 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-06-30 21:44:20

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-05-22 06:39:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-06-30 21:44:27.0 +0200
@@ -1,0 +2,7 @@
+Wed Jun 25 10:37:59 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.1.2
+  * Bugfix release, for more details please see:
+http://blog.qt.digia.com/blog/2014/06/25/qt-5-3-1-released/
+
+---

Old:

  qt-creator-opensource-src-3.1.1.tar.gz

New:

  qt-creator-opensource-src-3.1.2.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.iNTrgq/_old  2014-06-30 21:44:30.0 +0200
+++ /var/tmp/diff_new_pack.iNTrgq/_new  2014-06-30 21:44:30.0 +0200
@@ -17,15 +17,15 @@
 
 
 Name:   libqt5-creator
-Version:3.1.1
+Version:3.1.2
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.1.1
+%define rversion 3.1.2
 %define rname qt-creator
-%define qt5_version 5.3.0
+%define qt5_version 5.3.1
 Source: 
http://download.qt-project.org/official_releases/qtcreator/3.1/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop

++ qt-creator-opensource-src-3.1.1.tar.gz - 
qt-creator-opensource-src-3.1.2.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.1.1.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.1.2.tar.gz
 differ: char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2014-05-21 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-05-22 06:38:26

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-04-17 14:11:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-05-22 06:39:21.0 +0200
@@ -1,0 +2,26 @@
+Tue May 20 07:05:46 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.1.1
+ - General
+  * Fixed editing of MIME types while filtering is applied
+(QTCREATORBUG-12149)
+ - Managing and Building Projects
+  * Fixed performance regression in Issues pane (QTCREATORBUG-12109)
+ - Qbs Projects
+  * Fixed support for VS2013 compiler (QTCREATORBUG-11025)
+ - C++ Support
+  * Fixed issue with missing semantic highlighting (QTCREATORBUG-11367)
+ - Qt Quick Designer
+  * Fixed several UI issues (QTCREATORBUG-12040, QTCREATORBUG-12035,
+QTCREATORBUG-11904, QTCREATORBUG-12018)
+   * Fixed anchor and alignment handling (QTCREATORBUG-12006)
+ - Diff Viewer
+  * Fixed crash when showing binary file containing carriage return
+character (QTCREATORBUG-12056)
+ - Version Control Systems
+   * Git
+* Fixed encoding issues on Window
+* Fixed crash when closing Qt Creator after revert
+  (QTCREATORBUG-12099)
+
+---

Old:

  qt-creator-opensource-src-3.1.0.tar.gz

New:

  qt-creator-opensource-src-3.1.1.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.5PbfDA/_old  2014-05-22 06:39:24.0 +0200
+++ /var/tmp/diff_new_pack.5PbfDA/_new  2014-05-22 06:39:24.0 +0200
@@ -17,15 +17,15 @@
 
 
 Name:   libqt5-creator
-Version:3.1.0
+Version:3.1.1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.1.0
+%define rversion 3.1.1
 %define rname qt-creator
-%define qt5_version 5.3.0~beta
+%define qt5_version 5.3.0
 Source: 
http://download.qt-project.org/official_releases/qtcreator/3.1/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop

++ qt-creator-opensource-src-3.1.0.tar.gz - 
qt-creator-opensource-src-3.1.1.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.1.0.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.1.1.tar.gz
 differ: char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2014-04-17 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-04-17 14:11:03

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-04-05 16:47:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-04-17 14:11:03.0 +0200
@@ -1,0 +2,7 @@
+Wed Apr 16 15:15:51 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.1.0 final
+  * For full changelog see:
+
https://qt.gitorious.org/qt-creator/qt-creator/source/3.1:dist/changes-3.1.0
+
+---

Old:

  qt-creator-opensource-src-3.1.0-rc1.tar.gz

New:

  qt-creator-opensource-src-3.1.0.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.unfBuQ/_old  2014-04-17 14:11:06.0 +0200
+++ /var/tmp/diff_new_pack.unfBuQ/_new  2014-04-17 14:11:06.0 +0200
@@ -17,16 +17,16 @@
 
 
 Name:   libqt5-creator
-Version:3.1.0~rc1
+Version:3.1.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.1.0-rc1
+%define rversion 3.1.0
 %define rname qt-creator
 %define qt5_version 5.3.0~beta
-Source: 
http://download.qt-project.org/development_releases/qtcreator/3.1/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
+Source: 
http://download.qt-project.org/official_releases/qtcreator/3.1/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location

++ qt-creator-opensource-src-3.1.0-rc1.tar.gz - 
qt-creator-opensource-src-3.1.0.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.1.0-rc1.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.1.0.tar.gz
 differ: char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2014-04-05 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-04-05 16:47:11

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-03-27 09:29:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-04-05 16:47:12.0 +0200
@@ -1,0 +2,16 @@
+Wed Apr  2 20:42:02 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.1.0 rc1
+  * For more details see:
+http://blog.qt.digia.com/blog/2014/04/03/qt-creator-3-1-rc1-released/
+- Only enable clang plugins on arches where clang is available
+- Move the creator back to standard location
+- Added conflict with Qt4 version
+- Drop plugin_path.diff
+- Build qbs plugin
+- Added qbs-path.diff (imported from Qt4 version), so qbs plugin gets
+  installed to correct location
+- Removed unused, and not needed sed workarounds from spec
+- Improve logic for required libQt5Designer package
+
+---

Old:

  plugin_path.diff
  qt-creator-opensource-src-3.1.0-beta.tar.gz

New:

  qbs-path.diff
  qt-creator-opensource-src-3.1.0-rc1.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.bzqBJN/_old  2014-04-05 16:47:14.0 +0200
+++ /var/tmp/diff_new_pack.bzqBJN/_new  2014-04-05 16:47:14.0 +0200
@@ -17,20 +17,20 @@
 
 
 Name:   libqt5-creator
-Version:3.1.0~beta
+Version:3.1.0~rc1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.1.0-beta
+%define rversion 3.1.0-rc1
 %define rname qt-creator
 %define qt5_version 5.3.0~beta
 Source: 
http://download.qt-project.org/development_releases/qtcreator/3.1/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
-# PATCH-FIX-UPSTREAM plugin_path.diff -- Don't hardcode plugin directory to 
root + lib dir, but use creator's install prefix
-Patch0: plugin_path.diff
+# PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location
+Patch0: qbs-path.diff
 BuildRequires:  fdupes
 BuildRequires:  gdb
 BuildRequires:  libbotan-devel
@@ -40,13 +40,16 @@
 BuildRequires:  libqt5-qtscript-devel = %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel = %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel = %{qt5_version}
+%ifarch %arm %ix86 x86_64
 BuildRequires:  llvm-clang-devel
+%endif
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
-Recommends: libqt5-debuginfo
+Conflicts:  qt-creator
+Recommends: libqt5-qtbase-common-devel
 Recommends: libqt5-qtdoc
 # Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)
-%requires_eqlibQt5Designer5
+Requires:   libQt5Designer5 = %( echo `rpm -q --queryformat '%{VERSION}' 
libqt5-qttools-devel`)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -57,24 +60,14 @@
 %prep
 %setup -q -n %{rname}-opensource-src-%{rversion}
 %patch0 -p1
-# we are not in '98, so don't put GUI binaries in /bin
-sed -i 's|target.path = /bin|target.path = $$QTC_PREFIX/bin|g' 
src/tools/buildoutputparser/buildoutputparser.pro
-
-# Remove build time references so build-compare can do its work. Not yet 
activated - breaks build
-#modified=$(sed -n '/^/n;s/ - .*$//;p;q' %{_sourcedir}/%{name}.changes)
-#DATE=\$(date -d ${modified} +%%b %%e %%Y)\
-#TIME=\$(date -d ${modified} +%%R)\
-#find . -name '*.cpp' -print0 |\
-#xargs -0 sed -i s/__DATE__/${DATE}/g;s/__TIME__/${TIME}/g
 
 %build
-export PATH=%_libqt5_bindir:$PATH
-%if %{_lib}==lib64
-%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir} 
LLVM_INSTALL_DIR=%{_prefix} IDE_LIBRARY_BASENAME=lib64 USE_SYSTEM_BOTAN=1
-%else
-%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir} 
LLVM_INSTALL_DIR=%{_prefix} USE_SYSTEM_BOTAN=1
+%ifarch %arm %ix86 x86_64
+opts=LLVM_INSTALL_DIR=%{_prefix}
 %endif
-rm src/shared/qbs/qbs.pro
+opts=$opts IDE_LIBRARY_BASENAME=%{_lib} USE_SYSTEM_BOTAN=1
+
+%qmake5 $opts
 make %{?_smp_mflags}
 make qch_docs
 make html_docs_online
@@ -82,8 +75,7 @@
 %install
 export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}${LD_LIBRARY_PATH:+:}%{_libdir}
 # its qmake. of course it is broken
-# Install to %{_libqt5_archdatadir} for co-existance with Qt4 QtCretor
-make INSTALL_ROOT=%{buildroot} install
+make 

commit libqt5-creator for openSUSE:Factory

2014-03-27 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-03-27 09:29:38

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2014-02-18 16:17:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-03-27 09:29:41.0 +0100
@@ -1,0 +2,15 @@
+Mon Mar 24 03:09:44 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.1.0 beta
+  * Experimental support for a Clang-based C++ model
+  * Droped support for GDBs that do not support scripting through Python
+  * For more details, please see:
+  https://blog.qt.digia.com/blog/2014/03/04/qt-creator-3-1-beta-released/
+  and 
https://qt.gitorious.org/qt-creator/qt-creator/source/3.1:dist/changes-3.1.0
+- Used sed in %prep step, to swap destination if buildoutputparser binary,
+  so it installs to correct location
+- Activate clangmodel plugin, by BuildRequiring llvm-clang-devel and
+  passing LLVM_INSTALL_DIR to qmake
+- Bump minimal Qt5 version to 5.3.0 beta
+
+---

Old:

  qt-creator-opensource-src-3.0.1.tar.gz

New:

  qt-creator-opensource-src-3.1.0-beta.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.7LhEjs/_old  2014-03-27 09:29:43.0 +0100
+++ /var/tmp/diff_new_pack.7LhEjs/_new  2014-03-27 09:29:43.0 +0100
@@ -17,16 +17,16 @@
 
 
 Name:   libqt5-creator
-Version:3.0.1
+Version:3.1.0~beta
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.0.1
+%define rversion 3.1.0-beta
 %define rname qt-creator
-%define qt5_version 5.2.1
-Source: 
http://download.qt-project.org/official_releases/qtcreator/3.0/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
+%define qt5_version 5.3.0~beta
+Source: 
http://download.qt-project.org/development_releases/qtcreator/3.1/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM plugin_path.diff -- Don't hardcode plugin directory to 
root + lib dir, but use creator's install prefix
@@ -40,6 +40,7 @@
 BuildRequires:  libqt5-qtscript-devel = %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel = %{qt5_version}
 BuildRequires:  libqt5-qtx11extras-devel = %{qt5_version}
+BuildRequires:  llvm-clang-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
 Recommends: libqt5-debuginfo
@@ -56,6 +57,8 @@
 %prep
 %setup -q -n %{rname}-opensource-src-%{rversion}
 %patch0 -p1
+# we are not in '98, so don't put GUI binaries in /bin
+sed -i 's|target.path = /bin|target.path = $$QTC_PREFIX/bin|g' 
src/tools/buildoutputparser/buildoutputparser.pro
 
 # Remove build time references so build-compare can do its work. Not yet 
activated - breaks build
 #modified=$(sed -n '/^/n;s/ - .*$//;p;q' %{_sourcedir}/%{name}.changes)
@@ -67,9 +70,9 @@
 %build
 export PATH=%_libqt5_bindir:$PATH
 %if %{_lib}==lib64
-%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir} 
IDE_LIBRARY_BASENAME=lib64 USE_SYSTEM_BOTAN=1
+%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir} 
LLVM_INSTALL_DIR=%{_prefix} IDE_LIBRARY_BASENAME=lib64 USE_SYSTEM_BOTAN=1
 %else
-%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir} USE_SYSTEM_BOTAN=1
+%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir} 
LLVM_INSTALL_DIR=%{_prefix} USE_SYSTEM_BOTAN=1
 %endif
 rm src/shared/qbs/qbs.pro
 make %{?_smp_mflags}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2014-02-18 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2014-02-18 16:17:21

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2013-12-19 12:41:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2014-02-18 16:17:22.0 +0100
@@ -1,0 +2,9 @@
+Wed Feb  5 17:07:24 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Update to 3.0.1:
+  * For more details please see:
+http://blog.qt.digia.com/blog/2014/02/05/qt-creator-3-0-1-released/
+- Build with system Botan library, accomplished by passing
+  USE_SYSTEM_BOTAN=1 to qmake. Thus added libbotan-devel BuildRequires
+
+---

Old:

  qt-creator-opensource-src-3.0.0.tar.gz

New:

  qt-creator-opensource-src-3.0.1.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.fC0DZs/_old  2014-02-18 16:17:23.0 +0100
+++ /var/tmp/diff_new_pack.fC0DZs/_new  2014-02-18 16:17:23.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-creator
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,15 @@
 
 
 Name:   libqt5-creator
-Version:3.0.0
+Version:3.0.1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 3.0.0
+%define rversion 3.0.1
 %define rname qt-creator
-%define qt5_version 5.2.0
+%define qt5_version 5.2.1
 Source: 
http://download.qt-project.org/official_releases/qtcreator/3.0/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
@@ -33,19 +33,20 @@
 Patch0: plugin_path.diff
 BuildRequires:  fdupes
 BuildRequires:  gdb
-BuildRequires:  libqt5-qtquick1-private-headers-devel = %{qt5_version}
+BuildRequires:  libbotan-devel
+BuildRequires:  libqt5-qtbase-devel = %{qt5_version}
 BuildRequires:  libqt5-qtdeclarative-private-headers-devel = %{qt5_version}
+BuildRequires:  libqt5-qtquick1-private-headers-devel = %{qt5_version}
 BuildRequires:  libqt5-qtscript-devel = %{qt5_version}
-BuildRequires:  libqt5-qtbase-devel = %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel = %{qt5_version}
+BuildRequires:  libqt5-qtx11extras-devel = %{qt5_version}
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
-BuildRequires:  libqt5-qtx11extras-devel = %{qt5_version}
 Recommends: libqt5-debuginfo
 Recommends: libqt5-qtdoc
 # Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)
 %requires_eqlibQt5Designer5
-BuildRoot:  %{_tmppath}/%{rname}-%{version}-build
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Qt Creator is a new, lightweight, cross-platform integrated development
@@ -66,9 +67,9 @@
 %build
 export PATH=%_libqt5_bindir:$PATH
 %if %{_lib}==lib64
-%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir} 
IDE_LIBRARY_BASENAME=lib64
+%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir} 
IDE_LIBRARY_BASENAME=lib64 USE_SYSTEM_BOTAN=1
 %else
-%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir}
+%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir} USE_SYSTEM_BOTAN=1
 %endif
 rm src/shared/qbs/qbs.pro
 make %{?_smp_mflags}

++ qt-creator-opensource-src-3.0.0.tar.gz - 
qt-creator-opensource-src-3.0.1.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.0.0.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.0.1.tar.gz
 differ: char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2013-12-19 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2013-12-19 12:41:06

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2013-12-17 06:52:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2013-12-19 12:41:08.0 +0100
@@ -1,0 +2,6 @@
+Mon Dec 16 23:19:32 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Move away from pkgconfig(...) BuildRequires and just use
+  libqt5-$upstreammodulename-(devel|private-headers-devel)
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.dx4emk/_old  2013-12-19 12:41:09.0 +0100
+++ /var/tmp/diff_new_pack.dx4emk/_new  2013-12-19 12:41:09.0 +0100
@@ -33,14 +33,14 @@
 Patch0: plugin_path.diff
 BuildRequires:  fdupes
 BuildRequires:  gdb
-BuildRequires:  libQt5Declarative-private-headers-devel = %{qt5_version}
-BuildRequires:  libQt5Quick-private-headers-devel = %{qt5_version}
-BuildRequires:  libQt5Script-devel = %{qt5_version}
+BuildRequires:  libqt5-qtquick1-private-headers-devel = %{qt5_version}
+BuildRequires:  libqt5-qtdeclarative-private-headers-devel = %{qt5_version}
+BuildRequires:  libqt5-qtscript-devel = %{qt5_version}
 BuildRequires:  libqt5-qtbase-devel = %{qt5_version}
 BuildRequires:  libqt5-qttools-private-headers-devel = %{qt5_version}
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
-BuildRequires:  pkgconfig(Qt5X11Extras) = %{qt5_version}
+BuildRequires:  libqt5-qtx11extras-devel = %{qt5_version}
 Recommends: libqt5-debuginfo
 Recommends: libqt5-qtdoc
 # Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2013-12-16 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2013-12-17 06:52:12

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2013-12-03 11:24:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2013-12-17 06:52:13.0 +0100
@@ -1,0 +2,8 @@
+Fri Dec 13 20:39:25 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Update to 3.0.0 final
+- See http://blog.qt.digia.com/blog/2013/12/12/qt-creator-3-0-released/
+- For the complete changelog see:
+  http://qt.gitorious.org/qt-creator/qt-creator/blobs/3.0/dist/changes-3.0.0
+
+---

Old:

  qt-creator-opensource-src-3.0.0-rc1.tar.gz

New:

  qt-creator-opensource-src-3.0.0.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.0mzaFh/_old  2013-12-17 06:52:15.0 +0100
+++ /var/tmp/diff_new_pack.0mzaFh/_new  2013-12-17 06:52:15.0 +0100
@@ -17,15 +17,16 @@
 
 
 Name:   libqt5-creator
-Version:3.0.0~rc1
+Version:3.0.0
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
 %define rversion 3.0.0
-%define qt5_version 5.2.0~rc1
-Source: 
http://download.qt-project.org/development_releases/qtcreator/3.0/3.0.0-rc1/qt-creator-opensource-src-3.0.0-rc1.tar.gz
+%define rname qt-creator
+%define qt5_version 5.2.0
+Source: 
http://download.qt-project.org/official_releases/qtcreator/3.0/%{rversion}/%{rname}-opensource-src-%{rversion}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM plugin_path.diff -- Don't hardcode plugin directory to 
root + lib dir, but use creator's install prefix
@@ -44,7 +45,7 @@
 Recommends: libqt5-qtdoc
 # Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)
 %requires_eqlibQt5Designer5
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRoot:  %{_tmppath}/%{rname}-%{version}-build
 
 %description
 Qt Creator is a new, lightweight, cross-platform integrated development
@@ -52,7 +53,7 @@
 framework even faster and easier.
 
 %prep
-%setup -q -n qt-creator-opensource-src-3.0.0-rc1
+%setup -q -n %{rname}-opensource-src-%{rversion}
 %patch0 -p1
 
 # Remove build time references so build-compare can do its work. Not yet 
activated - breaks build

++ qt-creator-opensource-src-3.0.0-rc1.tar.gz - 
qt-creator-opensource-src-3.0.0.tar.gz ++
/work/SRC/openSUSE:Factory/libqt5-creator/qt-creator-opensource-src-3.0.0-rc1.tar.gz
 
/work/SRC/openSUSE:Factory/.libqt5-creator.new/qt-creator-opensource-src-3.0.0.tar.gz
 differ: char 5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2013-12-03 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2013-12-03 11:24:53

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2013-11-08 13:02:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2013-12-03 11:24:54.0 +0100
@@ -1,0 +2,12 @@
+Fri Nov 29 13:42:39 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Update to 3.0.0 rc1
+  * New feature release, please see
+  http://blog.qt.digia.com/blog/2013/11/29/qt-creator-3-0-rc1-released/
+  and 
https://qt.gitorious.org/qt-creator/qt-creator/source/3.0:dist/changes-3.0.0
+- Due to qtcreators buildsystem, and it's usage of private headers,
+  BuildRequire latest Qt5 version, so it always rebuilds against it
+- Require exact libQt5Designer5 version creator was built against, so
+  the above change makes more sense
+
+---

Old:

  qt-creator-3.0.0-beta-src.tar.gz

New:

  qt-creator-opensource-src-3.0.0-rc1.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.vHKgWu/_old  2013-12-03 11:24:56.0 +0100
+++ /var/tmp/diff_new_pack.vHKgWu/_new  2013-12-03 11:24:56.0 +0100
@@ -17,30 +17,33 @@
 
 
 Name:   libqt5-creator
-Version:3.0.0~beta
+Version:3.0.0~rc1
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
 %define rversion 3.0.0
-Source: 
http://download.qt-project.org/development_releases/qtcreator/3.0/3.0.0-beta/qt-creator-3.0.0-beta-src.tar.gz
+%define qt5_version 5.2.0~rc1
+Source: 
http://download.qt-project.org/development_releases/qtcreator/3.0/3.0.0-rc1/qt-creator-opensource-src-3.0.0-rc1.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
 # PATCH-FIX-UPSTREAM plugin_path.diff -- Don't hardcode plugin directory to 
root + lib dir, but use creator's install prefix
 Patch0: plugin_path.diff
 BuildRequires:  fdupes
 BuildRequires:  gdb
-BuildRequires:  libQt5Declarative-private-headers-devel
-BuildRequires:  libQt5Quick-private-headers-devel
-BuildRequires:  libQt5Script-devel
-BuildRequires:  libqt5-qtbase-devel
-BuildRequires:  libqt5-qttools-devel
+BuildRequires:  libQt5Declarative-private-headers-devel = %{qt5_version}
+BuildRequires:  libQt5Quick-private-headers-devel = %{qt5_version}
+BuildRequires:  libQt5Script-devel = %{qt5_version}
+BuildRequires:  libqt5-qtbase-devel = %{qt5_version}
+BuildRequires:  libqt5-qttools-private-headers-devel = %{qt5_version}
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
-BuildRequires:  pkgconfig(Qt5X11Extras)
+BuildRequires:  pkgconfig(Qt5X11Extras) = %{qt5_version}
 Recommends: libqt5-debuginfo
 Recommends: libqt5-qtdoc
+# Make sure to rebuild against latest Qt5 (using the last package in chain - 
libQt5Designer5)
+%requires_eqlibQt5Designer5
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -49,7 +52,7 @@
 framework even faster and easier.
 
 %prep
-%setup -q -n qt-creator-3.0.0-beta-src
+%setup -q -n qt-creator-opensource-src-3.0.0-rc1
 %patch0 -p1
 
 # Remove build time references so build-compare can do its work. Not yet 
activated - breaks build

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2013-11-08 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2013-11-08 13:02:14

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2013-10-10 12:03:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2013-11-08 13:02:15.0 +0100
@@ -1,0 +2,11 @@
+Thu Oct 24 01:30:29 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Update to 3.0.0 beta
+  * New feature release, please see
+http://blog.qt.digia.com/blog/2013/10/23/qt-creator-3-0-beta-released/
+- Package can now co-exist with qt-creator (based on Qt4) package
+- Added plugin_path.diff to enable co-existance of the two packages.
+  Patch removes hardcoded plugin path, and adjusts qtcreator recognizing
+  plugin path as per install prefix
+
+---

Old:

  qt-creator-2.8.1-src.tar.gz

New:

  plugin_path.diff
  qt-creator-3.0.0-beta-src.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.2KdwXf/_old  2013-11-08 13:02:17.0 +0100
+++ /var/tmp/diff_new_pack.2KdwXf/_new  2013-11-08 13:02:17.0 +0100
@@ -17,16 +17,18 @@
 
 
 Name:   libqt5-creator
-Version:2.8.1
+Version:3.0.0~beta
 Release:0
 Summary:Lightweight IDE
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
-%define rversion 2.8.1
-Source: 
http://download.qt-project.org/official_releases/qtcreator/2.8/%{rversion}/qt-creator-%{rversion}-src.tar.gz
+%define rversion 3.0.0
+Source: 
http://download.qt-project.org/development_releases/qtcreator/3.0/3.0.0-beta/qt-creator-3.0.0-beta-src.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
+# PATCH-FIX-UPSTREAM plugin_path.diff -- Don't hardcode plugin directory to 
root + lib dir, but use creator's install prefix
+Patch0: plugin_path.diff
 BuildRequires:  fdupes
 BuildRequires:  gdb
 BuildRequires:  libQt5Declarative-private-headers-devel
@@ -40,7 +42,6 @@
 Recommends: libqt5-debuginfo
 Recommends: libqt5-qtdoc
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Conflicts:  qt-creator
 
 %description
 Qt Creator is a new, lightweight, cross-platform integrated development
@@ -48,13 +49,22 @@
 framework even faster and easier.
 
 %prep
-%setup -q -n qt-creator-%rversion-src
+%setup -q -n qt-creator-3.0.0-beta-src
+%patch0 -p1
+
+# Remove build time references so build-compare can do its work. Not yet 
activated - breaks build
+#modified=$(sed -n '/^/n;s/ - .*$//;p;q' %{_sourcedir}/%{name}.changes)
+#DATE=\$(date -d ${modified} +%%b %%e %%Y)\
+#TIME=\$(date -d ${modified} +%%R)\
+#find . -name '*.cpp' -print0 |\
+#xargs -0 sed -i s/__DATE__/${DATE}/g;s/__TIME__/${TIME}/g
 
 %build
+export PATH=%_libqt5_bindir:$PATH
 %if %{_lib}==lib64
-%{_bindir}/qmake-qt5 IDE_LIBRARY_BASENAME=lib64
+%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir} 
IDE_LIBRARY_BASENAME=lib64
 %else
-%{_bindir}/qmake-qt5
+%{_libqt5_bindir}/qmake QTC_PREFIX=%{_libqt5_archdatadir}
 %endif
 rm src/shared/qbs/qbs.pro
 make %{?_smp_mflags}
@@ -64,7 +74,8 @@
 %install
 export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}${LD_LIBRARY_PATH:+:}%{_libdir}
 # its qmake. of course it is broken
-make INSTALL_ROOT=%{buildroot}/%{_prefix} install
+# Install to %{_libqt5_archdatadir} for co-existance with Qt4 QtCretor
+make INSTALL_ROOT=%{buildroot} install
 
 mkdir -p %{buildroot}%{_datadir}/doc/packages/libqt5
 cp share/doc/qtcreator/qtcreator.qch 
%{buildroot}%{_datadir}/doc/packages/libqt5/
@@ -72,7 +83,25 @@
 mkdir -p %{buildroot}%{_datadir}/doc/packages/libqt5/qtcreator
 cp -a doc/html/* %{buildroot}%{_datadir}/doc/packages/libqt5/qtcreator/
 
-%suse_update_desktop_file -i qtcreator Development Qt IDE
+# We are using %_libqt5_bindir/qtcreator as qtcreator has somewhat strange 
mechanism for detecting datadir - it's relative to it's binary
+# Until http://sourceforge.net/p/rpmlint/code/ci/f85186d/ is found in oS 
rpmlint package, we'll have false desktopfile-without-binary warning
+%suse_update_desktop_file -c qtcreator-qt5 Qt 5 Creator C++ IDE for 
developing Qt applications %{_libqt5_bindir}/qtcreator QtProject-qtcreator-qt5 
Development Qt IDE
+
+# Symlink icons from %%_libdir/qt5/share/icons/hicolor to standard location 
(due to desktop files check)
+pushd %{buildroot}%{_libqt5_archdatadir}
+for size in 48x48 24x24; do
+for type in apps; do
+mkdir -p 

commit libqt5-creator for openSUSE:Factory

2013-10-10 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2013-10-10 12:03:02

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2013-10-08 10:55:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2013-10-10 12:03:03.0 +0200
@@ -1,0 +2,6 @@
+Wed Oct  9 21:04:37 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Manually install desktop file. Also added mimetypes, to emulate
+  Qt4 creator behaviour
+
+---

New:

  qtcreator.desktop



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.tFOV2U/_old  2013-10-10 12:03:04.0 +0200
+++ /var/tmp/diff_new_pack.tFOV2U/_new  2013-10-10 12:03:04.0 +0200
@@ -26,6 +26,7 @@
 %define rversion 2.8.1
 Source: 
http://download.qt-project.org/official_releases/qtcreator/2.8/%{rversion}/qt-creator-%{rversion}-src.tar.gz
 Source1:%{name}-rpmlintrc
+Source2:qtcreator.desktop
 BuildRequires:  fdupes
 BuildRequires:  gdb
 BuildRequires:  libQt5Declarative-private-headers-devel
@@ -71,9 +72,9 @@
 mkdir -p %{buildroot}%{_datadir}/doc/packages/libqt5/qtcreator
 cp -a doc/html/* %{buildroot}%{_datadir}/doc/packages/libqt5/qtcreator/
 
-%suse_update_desktop_file -c qtcreator Qt 5.0 Creator C++ IDE for 
developing Qt applications qtcreator QtProject-qtcreator Development Qt IDE
+%suse_update_desktop_file -i qtcreator Development Qt IDE
 
-%fdupes %{buildroot}/%{_prefix}
+%fdupes -s %{buildroot}
 
 %post -p /sbin/ldconfig
 

++ qtcreator.desktop ++
[Desktop Entry]
Type=Application
Exec=qtcreator %F
Name=Qt 5 Creator
GenericName=C++ IDE for developing Qt applications
X-KDE-StartupNotify=true
Icon=QtProject-qtcreator
Terminal=false
Categories=Qt;Development;IDE;
MimeType=text/x-c++src;text/x-c++hdr;text/x-xsrc;application/x-designer;application/vnd.nokia.qt.qmakeprofile;application/vnd.nokia.xml.qt.resource;
InitialPreference=9
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2013-10-08 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2013-10-08 10:55:52

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2013-10-04 13:51:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2013-10-08 10:55:53.0 +0200
@@ -1,0 +2,6 @@
+Sun Oct  6 23:13:27 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Added pkgconfig(Qt5X11Extras) BuildRequires, it is needed for
+  raising the main window
+
+---



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.FzNGeg/_old  2013-10-08 10:56:12.0 +0200
+++ /var/tmp/diff_new_pack.FzNGeg/_new  2013-10-08 10:56:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libqt5-creator
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,13 +15,14 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   libqt5-creator
 Version:2.8.1
 Release:0
-License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Summary:Lightweight IDE
-Url:http://qt.digia.com/Product/Developer-Tools/
+License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Group:  Development/Tools/IDE
+Url:http://qt.digia.com/Product/Developer-Tools/
 %define rversion 2.8.1
 Source: 
http://download.qt-project.org/official_releases/qtcreator/2.8/%{rversion}/qt-creator-%{rversion}-src.tar.gz
 Source1:%{name}-rpmlintrc
@@ -34,6 +35,7 @@
 BuildRequires:  libqt5-qttools-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  xz
+BuildRequires:  pkgconfig(Qt5X11Extras)
 Recommends: libqt5-debuginfo
 Recommends: libqt5-qtdoc
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libqt5-creator for openSUSE:Factory

2013-10-04 Thread h_root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2013-10-04 13:51:56

Comparing /work/SRC/openSUSE:Factory/libqt5-creator (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-creator.new (New)


Package is libqt5-creator

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2013-10-01 08:13:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2013-10-04 13:51:57.0 +0200
@@ -1,0 +2,8 @@
+Fri Sep 13 09:17:46 UTC 2013 - hrvoje.sen...@gmail.com
+
+- Update to 2.8.1:
+  * Bugfix release, please see
+http://qt.gitorious.org/qt-creator/qt-creator/blobs/2.8/dist/changes-2.8.1
+- Add Source URL
+
+---

Old:

  qt-creator-2.8.0-src.tar.xz

New:

  qt-creator-2.8.1-src.tar.gz



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.zY9dPF/_old  2013-10-04 13:51:59.0 +0200
+++ /var/tmp/diff_new_pack.zY9dPF/_new  2013-10-04 13:51:59.0 +0200
@@ -16,14 +16,14 @@
 #
 
 Name:   libqt5-creator
-Version:2.8.0
-Release:2
+Version:2.8.1
+Release:0
 License:SUSE-LGPL-2.1-with-digia-exception-1.1
 Summary:Lightweight IDE
 Url:http://qt.digia.com/Product/Developer-Tools/
 Group:  Development/Tools/IDE
-%define rversion 2.8.0
-Source: qt-creator-%rversion-src.tar.xz
+%define rversion 2.8.1
+Source: 
http://download.qt-project.org/official_releases/qtcreator/2.8/%{rversion}/qt-creator-%{rversion}-src.tar.gz
 Source1:%{name}-rpmlintrc
 BuildRequires:  fdupes
 BuildRequires:  gdb

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org