commit bluez-qt for openSUSE:Factory

2020-10-12 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-10-12 13:53:12

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new.3486 (New)


Package is "bluez-qt"

Mon Oct 12 13:53:12 2020 rev:70 rq:840788 version:5.75.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2020-09-18 
14:37:12.259777646 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.3486/bluez-qt.changes  
2020-10-12 13:53:43.930077829 +0200
@@ -1,0 +2,15 @@
+Mon Oct  5 08:32:47 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.75.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.75.0
+- Changes since 5.74.0:
+  * Add rfkill property to manager
+  * Add status property to rfkill
+  * Register Rfkill for QML
+  * Export Rfkill
+  * d-pointerify rfkill
+  * Support providing service data values for LE advertisements
+
+---

Old:

  bluez-qt-5.74.0.tar.xz
  bluez-qt-5.74.0.tar.xz.sig

New:

  bluez-qt-5.75.0.tar.xz
  bluez-qt-5.75.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.z2ebRz/_old  2020-10-12 13:53:44.558078084 +0200
+++ /var/tmp/diff_new_pack.z2ebRz/_new  2020-10-12 13:53:44.562078086 +0200
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.74
+%define _tar_path 5.75
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.74.0
+Version:5.75.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.74.0.tar.xz -> bluez-qt-5.75.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.74.0/CMakeLists.txt 
new/bluez-qt-5.75.0/CMakeLists.txt
--- old/bluez-qt-5.74.0/CMakeLists.txt  2020-09-06 11:04:06.0 +0200
+++ new/bluez-qt-5.75.0/CMakeLists.txt  2020-10-04 11:45:25.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.74.0") # handled by release scripts
+set(KF5_VERSION "5.75.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.74.0 NO_MODULE)
+find_package(ECM 5.75.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.74.0/src/CMakeLists.txt 
new/bluez-qt-5.75.0/src/CMakeLists.txt
--- old/bluez-qt-5.74.0/src/CMakeLists.txt  2020-09-06 11:04:06.0 
+0200
+++ new/bluez-qt-5.75.0/src/CMakeLists.txt  2020-10-04 11:45:25.0 
+0200
@@ -144,6 +144,7 @@
 Profile
 PendingCall
 Request
+Rfkill
 ObexManager
 ObexAgent
 ObexTransfer
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/bluez-qt-5.74.0/src/imports/bluezqtextensionplugin.cpp 
new/bluez-qt-5.75.0/src/imports/bluezqtextensionplugin.cpp
--- old/bluez-qt-5.74.0/src/imports/bluezqtextensionplugin.cpp  2020-09-06 
11:04:06.0 +0200
+++ new/bluez-qt-5.75.0/src/imports/bluezqtextensionplugin.cpp  2020-10-04 
11:45:25.0 +0200
@@ -17,6 +17,7 @@
 #include "device.h"
 #include "pendingcall.h"
 #include "services.h"
+#include "rfkill.h"
 
 #include  // krazy:exclude=includes
 
@@ -70,5 +71,6 @@
 qmlRegisterUncreatableType(uri, 1, 0, "Input", 
QStringLiteral("Input cannot be created"));
 qmlRegisterUncreatableType(uri, 1, 0, 
"MediaPlayer", QStringLiteral("MediaPlayer cannot be created"));
 qmlRegisterUncreatableType(uri, 1, 0, "PendingCall", 
QStringLiteral("PendingCall cannot be created"));
+qmlRegisterUncreatableType(uri, 1, 0, "Rfkill", 
QStringLiteral("Rfkill cannot be created"));
 qmlRegisterSingletonType(uri, 1, 0, "Services", services_singleton);
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.74.0/src/leadvertisement.cpp 
new/bluez-qt-5.75.0/src/leadvertisement.cpp
--- old/bluez-qt-5.74.0/src/leadvertisement.cpp 2020-09-06 11:04:06.0 
+0200
+++ new/bluez-qt-5.75.0/src/leadvertisement.cpp 2020-10-04 11:45:25.0 
+0200
@@ -33,6 +33,16 @@
 

commit bluez-qt for openSUSE:Factory

2020-09-18 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-09-18 14:35:54

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


Package is "bluez-qt"

Fri Sep 18 14:35:54 2020 rev:69 rq:834373 version:5.74.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2020-08-12 
12:22:32.260076143 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.4249/bluez-qt.changes  
2020-09-18 14:37:12.259777646 +0200
@@ -1,0 +2,10 @@
+Sun Sep  6 12:48:19 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.74.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.74.0
+- Changes since 5.73.0:
+  * Remove obsolete COPYING files
+
+---

Old:

  bluez-qt-5.73.0.tar.xz
  bluez-qt-5.73.0.tar.xz.sig

New:

  bluez-qt-5.74.0.tar.xz
  bluez-qt-5.74.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.WnQxSi/_old  2020-09-18 14:37:13.507778759 +0200
+++ /var/tmp/diff_new_pack.WnQxSi/_new  2020-09-18 14:37:13.507778759 +0200
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.73
+%define _tar_path 5.74
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.73.0
+Version:5.74.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.73.0.tar.xz -> bluez-qt-5.74.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.73.0/CMakeLists.txt 
new/bluez-qt-5.74.0/CMakeLists.txt
--- old/bluez-qt-5.73.0/CMakeLists.txt  2020-08-01 18:59:04.0 +0200
+++ new/bluez-qt-5.74.0/CMakeLists.txt  2020-09-06 11:04:06.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.73.0") # handled by release scripts
+set(KF5_VERSION "5.74.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.73.0 NO_MODULE)
+find_package(ECM 5.74.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.73.0/COPYING.LIB 
new/bluez-qt-5.74.0/COPYING.LIB
--- old/bluez-qt-5.73.0/COPYING.LIB 2020-08-01 18:59:04.0 +0200
+++ new/bluez-qt-5.74.0/COPYING.LIB 1970-01-01 01:00:00.0 +0100
@@ -1,502 +0,0 @@
-  GNU LESSER GENERAL PUBLIC LICENSE
-   Version 2.1, February 1999
-
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.
- 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-[This is the first released version of the Lesser GPL.  It also counts
- as the successor of the GNU Library Public License, version 2, hence
- the version number 2.1.]
-
-Preamble
-
-  The licenses for most software are designed to take away your
-freedom to share and change it.  By contrast, the GNU General Public
-Licenses are intended to guarantee your freedom to share and change
-free software--to make sure the software is free for all its users.
-
-  This license, the Lesser General Public License, applies to some
-specially designated software packages--typically libraries--of the
-Free Software Foundation and other authors who decide to use it.  You
-can use it too, but we suggest you first think carefully about whether
-this license or the ordinary General Public License is the better
-strategy to use in any particular case, based on the explanations below.
-
-  When we speak of free software, we are referring to freedom of use,
-not price.  Our General Public Licenses are designed to make sure that
-you have the freedom to distribute copies of free software (and charge
-for this service if you wish); that you receive source code or can get
-it if you want it; that you can change the software and use pieces of
-it in new free programs; and that you are informed that you can do
-these things.
-
-  To protect your rights, we need to make restrictions that forbid

commit bluez-qt for openSUSE:Factory

2020-08-12 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-08-12 12:22:27

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


Package is "bluez-qt"

Wed Aug 12 12:22:27 2020 rev:68 rq:825046 version:5.73.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2020-07-14 
07:51:14.820227156 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.3399/bluez-qt.changes  
2020-08-12 12:22:32.260076143 +0200
@@ -1,0 +2,10 @@
+Sun Aug  2 07:24:15 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.73.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.73.0
+- Changes since 5.72.0:
+  * Use KF-standardized Qt logging categories
+
+---

Old:

  bluez-qt-5.72.0.tar.xz
  bluez-qt-5.72.0.tar.xz.sig

New:

  bluez-qt-5.73.0.tar.xz
  bluez-qt-5.73.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.GStbW0/_old  2020-08-12 12:22:33.400075418 +0200
+++ /var/tmp/diff_new_pack.GStbW0/_new  2020-08-12 12:22:33.404075416 +0200
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.72
+%define _tar_path 5.73
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.72.0
+Version:5.73.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later
@@ -107,6 +107,7 @@
 %license LICENSES/*
 %doc README*
 %{_kf5_debugdir}/bluezqt.categories
+%{_kf5_debugdir}/bluezqt.renamecategories
 %{_libqt5_libdir}/lib%{_libname}*.so.*
 
 %files imports

++ bluez-qt-5.72.0.tar.xz -> bluez-qt-5.73.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.72.0/CMakeLists.txt 
new/bluez-qt-5.73.0/CMakeLists.txt
--- old/bluez-qt-5.72.0/CMakeLists.txt  2020-07-04 11:44:13.0 +0200
+++ new/bluez-qt-5.73.0/CMakeLists.txt  2020-08-01 18:59:04.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.72.0") # handled by release scripts
+set(KF5_VERSION "5.73.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.72.0 NO_MODULE)
+find_package(ECM 5.73.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.72.0/src/CMakeLists.txt 
new/bluez-qt-5.73.0/src/CMakeLists.txt
--- old/bluez-qt-5.72.0/src/CMakeLists.txt  2020-07-04 11:44:13.0 
+0200
+++ new/bluez-qt-5.73.0/src/CMakeLists.txt  2020-08-01 18:59:04.0 
+0200
@@ -58,7 +58,8 @@
 ecm_qt_declare_logging_category(bluezqt_SRCS
 HEADER debug.h
 IDENTIFIER BLUEZQT
-CATEGORY_NAME org.kde.bluez
+CATEGORY_NAME kf.bluezqt
+OLD_CATEGORY_NAMES org.kde.bluez
 DESCRIPTION "BluezQt"
 EXPORT BLUEZQT
 )





commit bluez-qt for openSUSE:Factory

2020-07-13 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-07-14 07:51:08

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new.3060 (New)


Package is "bluez-qt"

Tue Jul 14 07:51:08 2020 rev:67 rq:820334 version:5.72.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2020-06-16 
13:39:37.080465873 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.3060/bluez-qt.changes  
2020-07-14 07:51:14.820227156 +0200
@@ -1,0 +2,10 @@
+Sun Jul  5 07:54:59 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.72.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.72.0
+- Changes since 5.71.0:
+  * Expose the service advertisement data of a device
+
+---

Old:

  bluez-qt-5.71.0.tar.xz
  bluez-qt-5.71.0.tar.xz.sig

New:

  bluez-qt-5.72.0.tar.xz
  bluez-qt-5.72.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.LL5wjX/_old  2020-07-14 07:51:15.544229500 +0200
+++ /var/tmp/diff_new_pack.LL5wjX/_new  2020-07-14 07:51:15.544229500 +0200
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.71
+%define _tar_path 5.72
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.71.0
+Version:5.72.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later
@@ -37,7 +37,6 @@
 Source1:
https://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz.sig
 Source2:frameworks.keyring
 %endif
-BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
@@ -105,13 +104,13 @@
 %postun -n lib%{_libname}%{sonum} -p /sbin/ldconfig
 
 %files -n lib%{_libname}%{sonum}
-%license COPYING.LIB
+%license LICENSES/*
 %doc README*
-%{_libqt5_libdir}/lib%{_libname}*.so.*
 %{_kf5_debugdir}/bluezqt.categories
+%{_libqt5_libdir}/lib%{_libname}*.so.*
 
 %files imports
-%license COPYING.LIB
+%license LICENSES/*
 %doc README*
 %{_kf5_qmldir}/
 
@@ -119,9 +118,10 @@
 %{_udevrulesdir}/61-kde-bluetooth-rfkill.rules
 
 %files devel
+%license LICENSES/*
+%{_kf5_includedir}/
 %{_kf5_libdir}/cmake/%{_libname}/
 %{_kf5_libdir}/lib%{_libname}*.so
-%{_kf5_includedir}/
 %{_kf5_mkspecsdir}/qt_BluezQt.pri
 
 %changelog

++ bluez-qt-5.71.0.tar.xz -> bluez-qt-5.72.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.71.0/CMakeLists.txt 
new/bluez-qt-5.72.0/CMakeLists.txt
--- old/bluez-qt-5.71.0/CMakeLists.txt  2020-06-06 21:33:12.0 +0200
+++ new/bluez-qt-5.72.0/CMakeLists.txt  2020-07-04 11:44:13.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.71.0") # handled by release scripts
+set(KF5_VERSION "5.72.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.71.0 NO_MODULE)
+find_package(ECM 5.72.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.71.0/src/device.cpp 
new/bluez-qt-5.72.0/src/device.cpp
--- old/bluez-qt-5.71.0/src/device.cpp  2020-06-06 21:33:12.0 +0200
+++ new/bluez-qt-5.72.0/src/device.cpp  2020-07-04 11:44:13.0 +0200
@@ -150,6 +150,11 @@
 return d->m_modalias;
 }
 
+QHash Device::serviceData() const
+{
+return d->m_serviceData;
+}
+
 BatteryPtr Device::battery() const
 {
 return d->m_battery;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.71.0/src/device.h 
new/bluez-qt-5.72.0/src/device.h
--- old/bluez-qt-5.71.0/src/device.h2020-06-06 21:33:12.0 +0200
+++ new/bluez-qt-5.72.0/src/device.h2020-07-04 11:44:13.0 +0200
@@ -285,6 +285,14 @@
 QString modalias() const;
 
 /**
+ * Returns the service advertisement data.
+ *
+ * @returns A hash with keys being the UUIDs in and values being the raw 
service data value.
+ * @since 5.72
+ */
+QHash serviceData() const;
+
+/**
  * Returns the 

commit bluez-qt for openSUSE:Factory

2020-06-16 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-06-16 13:39:32

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


Package is "bluez-qt"

Tue Jun 16 13:39:32 2020 rev:66 rq:814329 version:5.71.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2020-05-11 
13:26:58.323308717 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.3606/bluez-qt.changes  
2020-06-16 13:39:37.080465873 +0200
@@ -1,0 +2,9 @@
+Sun Jun  7 08:06:13 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.71.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.71.0
+- No code change since 5.70.0
+
+---

Old:

  bluez-qt-5.70.0.tar.xz
  bluez-qt-5.70.0.tar.xz.sig

New:

  bluez-qt-5.71.0.tar.xz
  bluez-qt-5.71.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.N7nG7K/_old  2020-06-16 13:39:38.324469703 +0200
+++ /var/tmp/diff_new_pack.N7nG7K/_new  2020-06-16 13:39:38.328469714 +0200
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.70
+%define _tar_path 5.71
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.70.0
+Version:5.71.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.70.0.tar.xz -> bluez-qt-5.71.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.70.0/.arcconfig 
new/bluez-qt-5.71.0/.arcconfig
--- old/bluez-qt-5.70.0/.arcconfig  2020-05-02 23:54:51.0 +0200
+++ new/bluez-qt-5.71.0/.arcconfig  1970-01-01 01:00:00.0 +0100
@@ -1,3 +0,0 @@
-{
-  "phabricator.uri" : "https://phabricator.kde.org/;
-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.70.0/CMakeLists.txt 
new/bluez-qt-5.71.0/CMakeLists.txt
--- old/bluez-qt-5.70.0/CMakeLists.txt  2020-05-02 23:54:51.0 +0200
+++ new/bluez-qt-5.71.0/CMakeLists.txt  2020-06-06 21:33:12.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.70.0") # handled by release scripts
+set(KF5_VERSION "5.71.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.70.0 NO_MODULE)
+find_package(ECM 5.71.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 





commit bluez-qt for openSUSE:Factory

2020-05-11 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-05-11 13:26:52

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


Package is "bluez-qt"

Mon May 11 13:26:52 2020 rev:65 rq:802055 version:5.70.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2020-04-15 
20:00:29.589843377 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.2738/bluez-qt.changes  
2020-05-11 13:26:58.323308717 +0200
@@ -1,0 +2,9 @@
+Sun May  3 09:39:39 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.70.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.70.0
+- No code change since 5.69.0
+
+---

Old:

  bluez-qt-5.69.0.tar.xz
  bluez-qt-5.69.0.tar.xz.sig

New:

  bluez-qt-5.70.0.tar.xz
  bluez-qt-5.70.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.WF7B9B/_old  2020-05-11 13:26:59.043310227 +0200
+++ /var/tmp/diff_new_pack.WF7B9B/_new  2020-05-11 13:26:59.047310235 +0200
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.69
+%define _tar_path 5.70
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.69.0
+Version:5.70.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.69.0.tar.xz -> bluez-qt-5.70.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.69.0/CMakeLists.txt 
new/bluez-qt-5.70.0/CMakeLists.txt
--- old/bluez-qt-5.69.0/CMakeLists.txt  2020-04-05 00:32:19.0 +0200
+++ new/bluez-qt-5.70.0/CMakeLists.txt  2020-05-02 23:54:51.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.69.0") # handled by release scripts
+set(KF5_VERSION "5.70.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.69.0 NO_MODULE)
+find_package(ECM 5.70.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 





commit bluez-qt for openSUSE:Factory

2020-04-15 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-04-15 20:00:27

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


Package is "bluez-qt"

Wed Apr 15 20:00:27 2020 rev:64 rq:793122 version:5.69.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2020-03-19 
19:41:36.875893605 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.2738/bluez-qt.changes  
2020-04-15 20:00:29.589843377 +0200
@@ -1,0 +2,9 @@
+Sun Apr  5 19:45:15 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.69.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/kde-frameworks-5.69.0
+- No code change since 5.68.0
+
+---

Old:

  bluez-qt-5.68.0.tar.xz
  bluez-qt-5.68.0.tar.xz.sig

New:

  bluez-qt-5.69.0.tar.xz
  bluez-qt-5.69.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.zMgM65/_old  2020-04-15 20:00:30.193843830 +0200
+++ /var/tmp/diff_new_pack.zMgM65/_new  2020-04-15 20:00:30.193843830 +0200
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.68
+%define _tar_path 5.69
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.68.0
+Version:5.69.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.68.0.tar.xz -> bluez-qt-5.69.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.68.0/CMakeLists.txt 
new/bluez-qt-5.69.0/CMakeLists.txt
--- old/bluez-qt-5.68.0/CMakeLists.txt  2020-03-07 09:49:39.0 +0100
+++ new/bluez-qt-5.69.0/CMakeLists.txt  2020-04-05 00:32:19.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.68.0") # handled by release scripts
+set(KF5_VERSION "5.69.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.68.0 NO_MODULE)
+find_package(ECM 5.69.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 





commit bluez-qt for openSUSE:Factory

2020-03-19 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-03-19 19:41:23

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new.3160 (New)


Package is "bluez-qt"

Thu Mar 19 19:41:23 2020 rev:63 rq:785291 version:5.68.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2020-02-14 
16:31:00.183373956 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.3160/bluez-qt.changes  
2020-03-19 19:41:36.875893605 +0100
@@ -1,0 +2,13 @@
+Sun Mar  8 09:17:31 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.68.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.68.0.php
+- Changes since 5.67.0:
+  * Fix errors in the QRegularExpression porting commit
+  * Make it compile against qt5.15. SkipEmptyParts is part of Qt::.
+  * Use ecm_qt_install_logging_categories over manual categories file
+  * Convert license statements to SPDX
+
+---

Old:

  bluez-qt-5.67.0.tar.xz
  bluez-qt-5.67.0.tar.xz.sig

New:

  bluez-qt-5.68.0.tar.xz
  bluez-qt-5.68.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.3fMVow/_old  2020-03-19 19:41:37.479893956 +0100
+++ /var/tmp/diff_new_pack.3fMVow/_new  2020-03-19 19:41:37.483893959 +0100
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.67
+%define _tar_path 5.68
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.67.0
+Version:5.68.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later
@@ -108,7 +108,7 @@
 %license COPYING.LIB
 %doc README*
 %{_libqt5_libdir}/lib%{_libname}*.so.*
-%{_kf5_debugdir}/bluez.categories
+%{_kf5_debugdir}/bluezqt.categories
 
 %files imports
 %license COPYING.LIB

++ bluez-qt-5.67.0.tar.xz -> bluez-qt-5.68.0.tar.xz ++
 8192 lines of diff (skipped)





commit bluez-qt for openSUSE:Factory

2020-02-14 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-02-14 16:30:58

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


Package is "bluez-qt"

Fri Feb 14 16:30:58 2020 rev:62 rq:773229 version:5.67.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2020-01-30 
09:32:22.673200385 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.26092/bluez-qt.changes 
2020-02-14 16:31:00.183373956 +0100
@@ -1,0 +2,17 @@
+Sun Feb  2 18:06:40 UTC 2020 - Christophe Giboudeaux 
+
+- Replace %make_jobs with %cmake_build.
+
+---
+Sun Feb  2 14:32:25 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.67.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.67.0.php
+- Changes since 5.66.0:
+  * Remove extra flush when we close file it will flush
+  * endl is Qt:: namespaced in qt5.15. Port to \n and flush
+when QTextStream is not on a QFile
+
+---

Old:

  bluez-qt-5.66.0.tar.xz
  bluez-qt-5.66.0.tar.xz.sig

New:

  bluez-qt-5.67.0.tar.xz
  bluez-qt-5.67.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.iNTs3c/_old  2020-02-14 16:31:00.723374249 +0100
+++ /var/tmp/diff_new_pack.iNTs3c/_new  2020-02-14 16:31:00.731374254 +0100
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.66
+%define _tar_path 5.67
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.66.0
+Version:5.67.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later
@@ -41,12 +41,12 @@
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  cmake(Qt5Core) >= 5.11.0
-BuildRequires:  cmake(Qt5DBus) >= 5.11.0
-BuildRequires:  cmake(Qt5Gui) >= 5.11.0
-BuildRequires:  cmake(Qt5Network) >= 5.11.0
-BuildRequires:  cmake(Qt5Qml) >= 5.11.0
-BuildRequires:  cmake(Qt5Widgets) >= 5.11.0
+BuildRequires:  cmake(Qt5Core) >= 5.12.0
+BuildRequires:  cmake(Qt5DBus) >= 5.12.0
+BuildRequires:  cmake(Qt5Gui) >= 5.12.0
+BuildRequires:  cmake(Qt5Network) >= 5.12.0
+BuildRequires:  cmake(Qt5Qml) >= 5.12.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.12.0
 BuildRequires:  pkgconfig(udev)
 
 %description
@@ -85,7 +85,7 @@
 Summary:Async Bluez wrapper library - development files
 Group:  Development/Libraries/C and C++
 Requires:   lib%{_libname}%{sonum} = %{version}
-Requires:   cmake(Qt5Core) >= 5.11.0
+Requires:   cmake(Qt5Core) >= 5.12.0
 
 %description devel
 Development files for QBluez Async Bluez wrapper library.
@@ -95,7 +95,7 @@
 
 %build
   %cmake_kf5 -d build -- -DUDEV_RULES_INSTALL_DIR="%{_udevrulesdir}"
-  %make_jobs
+  %cmake_build
 
 %install
   %kf5_makeinstall -C build

++ bluez-qt-5.66.0.tar.xz -> bluez-qt-5.67.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.66.0/CMakeLists.txt 
new/bluez-qt-5.67.0/CMakeLists.txt
--- old/bluez-qt-5.66.0/CMakeLists.txt  2020-01-04 00:09:10.0 +0100
+++ new/bluez-qt-5.67.0/CMakeLists.txt  2020-02-01 09:58:47.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.66.0") # handled by release scripts
+set(KF5_VERSION "5.67.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.66.0 NO_MODULE)
+find_package(ECM 5.67.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.66.0/tools/bluezapi2qt/CppGenerator.cpp 
new/bluez-qt-5.67.0/tools/bluezapi2qt/CppGenerator.cpp
--- old/bluez-qt-5.66.0/tools/bluezapi2qt/CppGenerator.cpp  2020-01-04 
00:09:10.0 +0100
+++ new/bluez-qt-5.67.0/tools/bluezapi2qt/CppGenerator.cpp  2020-02-01 
09:58:47.0 +0100
@@ -58,14 +58,14 @@
 // Write content
 QTextStream stream();
 writeCopyrightHeader(stream);
-stream << "#pragma once" << endl << endl;
-stream << 

commit bluez-qt for openSUSE:Factory

2020-01-30 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-01-30 09:32:04

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


Package is "bluez-qt"

Thu Jan 30 09:32:04 2020 rev:61 rq:766920 version:5.66.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2020-01-14 
20:59:20.882542480 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.26092/bluez-qt.changes 
2020-01-30 09:32:22.673200385 +0100
@@ -1,0 +2,6 @@
+Fri Jan 24 13:42:09 UTC 2020 - Dominique Leuenberger 
+
+- BuildRequire pkgconfig(udev) instead of udev: allow OBS to
+  shortcut through the -mini flavor.
+
+---



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.1nIZI2/_old  2020-01-30 09:32:26.145202243 +0100
+++ /var/tmp/diff_new_pack.1nIZI2/_new  2020-01-30 09:32:26.149202245 +0100
@@ -41,13 +41,13 @@
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  udev
 BuildRequires:  cmake(Qt5Core) >= 5.11.0
 BuildRequires:  cmake(Qt5DBus) >= 5.11.0
 BuildRequires:  cmake(Qt5Gui) >= 5.11.0
 BuildRequires:  cmake(Qt5Network) >= 5.11.0
 BuildRequires:  cmake(Qt5Qml) >= 5.11.0
 BuildRequires:  cmake(Qt5Widgets) >= 5.11.0
+BuildRequires:  pkgconfig(udev)
 
 %description
 Async Bluez wrapper library.






commit bluez-qt for openSUSE:Factory

2020-01-14 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2020-01-14 20:59:15

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


Package is "bluez-qt"

Tue Jan 14 20:59:15 2020 rev:60 rq:763430 version:5.66.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-12-18 
14:39:52.929707094 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.6675/bluez-qt.changes  
2020-01-14 20:59:20.882542480 +0100
@@ -1,0 +2,12 @@
+Sun Jan  5 09:01:54 UTC 2020 - Christophe Giboudeaux 
+
+- Update to 5.66.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.66.0.php
+- Changes since 5.65.0:
+  * Port QRegExp to QRegularExpression
+  * Add Battery1 interface
+  * Update the obsolete projects.kde.org URL
+
+---

Old:

  bluez-qt-5.65.0.tar.xz
  bluez-qt-5.65.0.tar.xz.sig

New:

  bluez-qt-5.66.0.tar.xz
  bluez-qt-5.66.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.No6Ir6/_old  2020-01-14 20:59:21.930542964 +0100
+++ /var/tmp/diff_new_pack.No6Ir6/_new  2020-01-14 20:59:21.934542966 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bluez-qt
 #
-# Copyright (c) 2019 SUSE LLC
+# 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
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.65
+%define _tar_path 5.66
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.65.0
+Version:5.66.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.65.0.tar.xz -> bluez-qt-5.66.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.65.0/CMakeLists.txt 
new/bluez-qt-5.66.0/CMakeLists.txt
--- old/bluez-qt-5.65.0/CMakeLists.txt  2019-12-07 20:40:41.0 +0100
+++ new/bluez-qt-5.66.0/CMakeLists.txt  2020-01-04 00:09:10.0 +0100
@@ -1,11 +1,11 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.65.0") # handled by release scripts
+set(KF5_VERSION "5.66.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.65.0 NO_MODULE)
-set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
+find_package(ECM 5.66.0 NO_MODULE)
+set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL "https://commits.kde.org/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
@@ -35,7 +35,7 @@
 )
 
 # Dependencies
-set(REQUIRED_QT_VERSION 5.11.0)
+set(REQUIRED_QT_VERSION 5.12.0)
 
 # Required Qt5 components to build this framework
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core DBus Network)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.65.0/autotests/CMakeLists.txt 
new/bluez-qt-5.66.0/autotests/CMakeLists.txt
--- old/bluez-qt-5.65.0/autotests/CMakeLists.txt2019-12-07 
20:40:41.0 +0100
+++ new/bluez-qt-5.66.0/autotests/CMakeLists.txt2020-01-04 
00:09:10.0 +0100
@@ -8,6 +8,7 @@
 
 qt5_add_dbus_interface(bluezqt_autotests_SRCS 
${CMAKE_CURRENT_SOURCE_DIR}/interfaces/org.freedesktop.DBus.Properties.xml 
dbusproperties_tst)
 qt5_add_dbus_interface(bluezqt_autotests_SRCS 
${CMAKE_CURRENT_SOURCE_DIR}/interfaces/org.bluez.Adapter1.xml bluezadapter1_tst)
+qt5_add_dbus_interface(bluezqt_autotests_SRCS 
${CMAKE_CURRENT_SOURCE_DIR}/interfaces/org.bluez.Battery1.xml bluezbattery1_tst)
 qt5_add_dbus_interface(bluezqt_autotests_SRCS 
${CMAKE_CURRENT_SOURCE_DIR}/interfaces/org.bluez.Device1.xml bluezdevice1_tst)
 qt5_add_dbus_interface(bluezqt_autotests_SRCS 
${CMAKE_CURRENT_SOURCE_DIR}/interfaces/org.bluez.MediaPlayer1.xml 
bluezmediaplayer1_tst)
 qt5_add_dbus_interface(bluezqt_autotests_SRCS 
${CMAKE_CURRENT_SOURCE_DIR}/interfaces/org.bluez.MediaTransport1.xml 
bluezmediatransport1_tst)
@@ -28,6 +29,7 @@
 agentmanagertest
 obexmanagertest
 adaptertest
+batterytest
 devicetest
 

commit bluez-qt for openSUSE:Factory

2019-12-18 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-12-18 14:39:51

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new.4691 (New)


Package is "bluez-qt"

Wed Dec 18 14:39:51 2019 rev:59 rq:757003 version:5.65.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-11-12 
11:41:35.382484296 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.4691/bluez-qt.changes  
2019-12-18 14:39:52.929707094 +0100
@@ -1,0 +2,10 @@
+Sun Dec  8 11:18:15 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.65.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.65.0.php
+- Changes since 5.64.0:
+  * Fix minor issue found by EBN and typos
+
+---

Old:

  bluez-qt-5.64.0.tar.xz
  bluez-qt-5.64.0.tar.xz.sig

New:

  bluez-qt-5.65.0.tar.xz
  bluez-qt-5.65.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.ClMpE7/_old  2019-12-18 14:39:53.441707328 +0100
+++ /var/tmp/diff_new_pack.ClMpE7/_new  2019-12-18 14:39:53.441707328 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bluez-qt
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.64
+%define _tar_path 5.65
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.64.0
+Version:5.65.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.64.0.tar.xz -> bluez-qt-5.65.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.64.0/CMakeLists.txt 
new/bluez-qt-5.65.0/CMakeLists.txt
--- old/bluez-qt-5.64.0/CMakeLists.txt  2019-11-02 12:41:41.0 +0100
+++ new/bluez-qt-5.65.0/CMakeLists.txt  2019-12-07 20:40:41.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.64.0") # handled by release scripts
+set(KF5_VERSION "5.65.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.64.0 NO_MODULE)
+find_package(ECM 5.65.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -48,7 +48,6 @@
 find_package(Qt5QuickTest ${REQUIRED_QT_VERSION} CONFIG)
 set_package_properties(Qt5QuickTest PROPERTIES DESCRIPTION "QML autotests for 
BluezQt" TYPE OPTIONAL)
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
-add_definitions(-DQT_DEPRECATED_WARNINGS_SINCE=0x06)
 add_definitions(-DQT_NO_FOREACH)
 # Subdirectories
 add_subdirectory(src)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.64.0/src/a2dp-codecs.c 
new/bluez-qt-5.65.0/src/a2dp-codecs.c
--- old/bluez-qt-5.64.0/src/a2dp-codecs.c   2019-11-02 12:41:41.0 
+0100
+++ new/bluez-qt-5.65.0/src/a2dp-codecs.c   2019-12-07 20:40:41.0 
+0100
@@ -22,7 +22,7 @@
 
 #include "a2dp-codecs.h"
 
-/* Currently our capabilites are limited to the most common use cases.
+/* Currently our capabilities are limited to the most common use cases.
iOS has a fixed stream configuration anyway (for SBC and AAC). */
 const a2dp_sbc_t sbcCapabilities = {
 .frequency =
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.64.0/src/device.h 
new/bluez-qt-5.65.0/src/device.h
--- old/bluez-qt-5.64.0/src/device.h2019-11-02 12:41:41.0 +0100
+++ new/bluez-qt-5.65.0/src/device.h2019-12-07 20:40:41.0 +0100
@@ -410,7 +410,7 @@
 /**
  * Cancels a pairing with the device.
  *
- * This method can be used to cancel pairing operation inititated with 
pair().
+ * This method can be used to cancel pairing operation initiated with 
pair().
  *
  * Possible errors: PendingCall::DoesNotExist, PendingCall::Failed
  *
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit bluez-qt for openSUSE:Factory

2019-11-12 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-11-12 11:41:34

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new.2990 (New)


Package is "bluez-qt"

Tue Nov 12 11:41:34 2019 rev:58 rq:747079 version:5.64.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-10-14 
13:32:43.086771062 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.2990/bluez-qt.changes  
2019-11-12 11:41:35.382484296 +0100
@@ -1,0 +2,10 @@
+Sun Nov  3 15:46:44 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.64.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.64.0.php
+- Changes since 5.63.0:
+  * Use ECMGenerateExportHeader to manage deprecated API better
+
+---

Old:

  bluez-qt-5.63.0.tar.xz
  bluez-qt-5.63.0.tar.xz.sig

New:

  bluez-qt-5.64.0.tar.xz
  bluez-qt-5.64.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.xtNfTT/_old  2019-11-12 11:41:35.886484826 +0100
+++ /var/tmp/diff_new_pack.xtNfTT/_new  2019-11-12 11:41:35.886484826 +0100
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.63
+%define _tar_path 5.64
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.63.0
+Version:5.64.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.63.0.tar.xz -> bluez-qt-5.64.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.63.0/CMakeLists.txt 
new/bluez-qt-5.64.0/CMakeLists.txt
--- old/bluez-qt-5.63.0/CMakeLists.txt  2019-10-06 11:33:07.0 +0200
+++ new/bluez-qt-5.64.0/CMakeLists.txt  2019-11-02 12:41:41.0 +0100
@@ -1,26 +1,29 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.63.0") # handled by release scripts
+set(KF5_VERSION "5.64.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.63.0 NO_MODULE)
+find_package(ECM 5.64.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
 
+include(KDEInstallDirs)
+include(KDECMakeSettings)
+include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
+
 include(FeatureSummary)
-include(GenerateExportHeader)
+include(ECMGenerateExportHeader)
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 include(ECMAddQch)
 include(CMakePackageConfigHelpers)
-include(KDEInstallDirs)
-include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
-include(KDECMakeSettings)
 include(ECMQtDeclareLoggingCategory)
 
+set(EXCLUDE_DEPRECATED_BEFORE_AND_AT 0 CACHE STRING "Control the range of 
deprecated API excluded from the build [default=0].")
+
 option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
 add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
 
@@ -45,6 +48,7 @@
 find_package(Qt5QuickTest ${REQUIRED_QT_VERSION} CONFIG)
 set_package_properties(Qt5QuickTest PROPERTIES DESCRIPTION "QML autotests for 
BluezQt" TYPE OPTIONAL)
 add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
+add_definitions(-DQT_DEPRECATED_WARNINGS_SINCE=0x06)
 add_definitions(-DQT_NO_FOREACH)
 # Subdirectories
 add_subdirectory(src)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.63.0/docs/Doxyfile.local 
new/bluez-qt-5.64.0/docs/Doxyfile.local
--- old/bluez-qt-5.63.0/docs/Doxyfile.local 1970-01-01 01:00:00.0 
+0100
+++ new/bluez-qt-5.64.0/docs/Doxyfile.local 2019-11-02 12:41:41.0 
+0100
@@ -0,0 +1,7 @@
+### KApiDox Project-specific Overrides File
+
+# define so that deprecated API is not skipped
+PREDEFINED += \
+"BLUEZQT_ENABLE_DEPRECATED_SINCE(x, y)=1" \
+"BLUEZQT_BUILD_DEPRECATED_SINCE(x, y)=1" \
+"BLUEZQT_DEPRECATED_VERSION(x, y, t)="
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.63.0/src/CMakeLists.txt 
new/bluez-qt-5.64.0/src/CMakeLists.txt
--- 

commit bluez-qt for openSUSE:Factory

2019-10-14 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-10-14 13:32:40

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


Package is "bluez-qt"

Mon Oct 14 13:32:40 2019 rev:57 rq:737998 version:5.63.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-09-23 
12:20:24.685777302 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.2352/bluez-qt.changes  
2019-10-14 13:32:43.086771062 +0200
@@ -1,0 +2,10 @@
+Sun Oct  6 13:26:10 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.63.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.63.0.php
+- Changes since 5.62.0:
+  * [Bluez-Qt] Port away from deprecated QSharedPointer::data() method.
+
+---

Old:

  bluez-qt-5.62.0.tar.xz
  bluez-qt-5.62.0.tar.xz.sig

New:

  bluez-qt-5.63.0.tar.xz
  bluez-qt-5.63.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.srk2JQ/_old  2019-10-14 13:32:43.898768946 +0200
+++ /var/tmp/diff_new_pack.srk2JQ/_new  2019-10-14 13:32:43.906768925 +0200
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.62
+%define _tar_path 5.63
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.62.0
+Version:5.63.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later
@@ -42,10 +42,12 @@
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  udev
-BuildRequires:  cmake(Qt5Core) >= 5.6.0
-BuildRequires:  cmake(Qt5DBus) >= 5.6.0
-BuildRequires:  cmake(Qt5Network) >= 5.6.0
-BuildRequires:  cmake(Qt5Qml) >= 5.6.0
+BuildRequires:  cmake(Qt5Core) >= 5.11.0
+BuildRequires:  cmake(Qt5DBus) >= 5.11.0
+BuildRequires:  cmake(Qt5Gui) >= 5.11.0
+BuildRequires:  cmake(Qt5Network) >= 5.11.0
+BuildRequires:  cmake(Qt5Qml) >= 5.11.0
+BuildRequires:  cmake(Qt5Widgets) >= 5.11.0
 
 %description
 Async Bluez wrapper library.
@@ -83,7 +85,7 @@
 Summary:Async Bluez wrapper library - development files
 Group:  Development/Libraries/C and C++
 Requires:   lib%{_libname}%{sonum} = %{version}
-Requires:   cmake(Qt5Core) >= 5.6.0
+Requires:   cmake(Qt5Core) >= 5.11.0
 
 %description devel
 Development files for QBluez Async Bluez wrapper library.

++ bluez-qt-5.62.0.tar.xz -> bluez-qt-5.63.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.62.0/CMakeLists.txt 
new/bluez-qt-5.63.0/CMakeLists.txt
--- old/bluez-qt-5.62.0/CMakeLists.txt  2019-09-07 14:32:01.0 +0200
+++ new/bluez-qt-5.63.0/CMakeLists.txt  2019-10-06 11:33:07.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.62.0") # handled by release scripts
+set(KF5_VERSION "5.63.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.62.0 NO_MODULE)
+find_package(ECM 5.63.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -44,7 +44,7 @@
 set_package_properties(Qt5Qml PROPERTIES DESCRIPTION "QML support for BluezQt" 
TYPE OPTIONAL)
 find_package(Qt5QuickTest ${REQUIRED_QT_VERSION} CONFIG)
 set_package_properties(Qt5QuickTest PROPERTIES DESCRIPTION "QML autotests for 
BluezQt" TYPE OPTIONAL)
-#add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x06)
+add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050d00)
 add_definitions(-DQT_NO_FOREACH)
 # Subdirectories
 add_subdirectory(src)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.62.0/src/CMakeLists.txt 
new/bluez-qt-5.63.0/src/CMakeLists.txt
--- old/bluez-qt-5.62.0/src/CMakeLists.txt  2019-09-07 14:32:01.0 
+0200
+++ new/bluez-qt-5.63.0/src/CMakeLists.txt  2019-10-06 11:33:07.0 
+0200
@@ -168,6 +168,8 @@
 MD_MAINPAGE "${CMAKE_SOURCE_DIR}/README.md"
 LINK_QCHS
 Qt5Core_QCH
+INCLUDE_DIRS
+${CMAKE_CURRENT_BINARY_DIR}
 BLANK_MACROS
 BLUEZQT_EXPORT
 BLUEZQT_DEPRECATED
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit bluez-qt for openSUSE:Factory

2019-09-23 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-09-23 12:20:23

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


Package is "bluez-qt"

Mon Sep 23 12:20:23 2019 rev:56 rq:730899 version:5.62.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-08-19 
21:00:20.400940866 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.7948/bluez-qt.changes  
2019-09-23 12:20:24.685777302 +0200
@@ -1,0 +2,10 @@
+Sat Sep  7 20:36:24 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.62.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.62.0.php
+- Changes since 5.61.0:
+  * Remove unused includes
+
+---

Old:

  bluez-qt-5.61.0.tar.xz
  bluez-qt-5.61.0.tar.xz.sig

New:

  bluez-qt-5.62.0.tar.xz
  bluez-qt-5.62.0.tar.xz.sig



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.GqJyjH/_old  2019-09-23 12:20:25.265777207 +0200
+++ /var/tmp/diff_new_pack.GqJyjH/_new  2019-09-23 12:20:25.265777207 +0200
@@ -18,7 +18,7 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.61
+%define _tar_path 5.62
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -26,7 +26,7 @@
 # Only needed for the package signature condition
 %bcond_without lang
 Name:   bluez-qt
-Version:5.61.0
+Version:5.62.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later
@@ -52,8 +52,9 @@
 
 %package -n lib%{_libname}%{sonum}
 Summary:Async Bluez wrapper library - development files
-# KUF only due to version number overlapping
 Group:  System/GUI/KDE
+
+# KUF only due to version number overlapping
 Obsoletes:  lib%{_libname}5
 
 %description -n lib%{_libname}%{sonum}

++ bluez-qt-5.61.0.tar.xz -> bluez-qt-5.62.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.61.0/CMakeLists.txt 
new/bluez-qt-5.62.0/CMakeLists.txt
--- old/bluez-qt-5.61.0/CMakeLists.txt  2019-08-03 21:30:22.0 +0200
+++ new/bluez-qt-5.62.0/CMakeLists.txt  2019-09-07 14:32:01.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.61.0") # handled by release scripts
+set(KF5_VERSION "5.62.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.61.0 NO_MODULE)
+find_package(ECM 5.62.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.61.0/autotests/agentmanagertest.cpp 
new/bluez-qt-5.62.0/autotests/agentmanagertest.cpp
--- old/bluez-qt-5.61.0/autotests/agentmanagertest.cpp  2019-08-03 
21:30:22.0 +0200
+++ new/bluez-qt-5.62.0/autotests/agentmanagertest.cpp  2019-09-07 
14:32:01.0 +0200
@@ -26,7 +26,6 @@
 #include "services.h"
 
 #include 
-#include 
 #include 
 
 namespace BluezQt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.61.0/autotests/autotests.cpp 
new/bluez-qt-5.62.0/autotests/autotests.cpp
--- old/bluez-qt-5.61.0/autotests/autotests.cpp 2019-08-03 21:30:22.0 
+0200
+++ new/bluez-qt-5.62.0/autotests/autotests.cpp 2019-09-07 14:32:01.0 
+0200
@@ -26,16 +26,11 @@
 #include "mediatransport.h"
 #include "bluezqt_dbustypes.h"
 
-#include 
 #include 
 #include 
 #include 
 
 #include 
-#include 
-#include 
-#include 
-#include 
 #include 
 #include 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/bluez-qt-5.61.0/autotests/fakebluez/gattmanagerinterface.cpp 
new/bluez-qt-5.62.0/autotests/fakebluez/gattmanagerinterface.cpp
--- old/bluez-qt-5.61.0/autotests/fakebluez/gattmanagerinterface.cpp
2019-08-03 21:30:22.0 +0200
+++ new/bluez-qt-5.62.0/autotests/fakebluez/gattmanagerinterface.cpp
2019-09-07 14:32:01.0 +0200
@@ -21,7 +21,6 @@
 #include "gattmanagerinterface.h"
 #include "objectmanager.h"
 
-#include 
 #include 
 #include 
 #include 
@@ -76,7 +75,7 @@
 
 DBusManagerStruct objects = reply.value();
 for (const auto& object : objects.keys()) {
-if 

commit bluez-qt for openSUSE:Factory

2019-08-19 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-08-19 21:00:16

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new.22127 (New)


Package is "bluez-qt"

Mon Aug 19 21:00:16 2019 rev:55 rq:722436 version:5.61.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-07-26 
12:07:19.994878674 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.22127/bluez-qt.changes 
2019-08-19 21:00:20.400940866 +0200
@@ -1,0 +2,17 @@
+Wed Aug  7 17:51:01 UTC 2019 - Christophe Giboudeaux 
+
+- Update to 5.61.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.61.0.php
+- Changes since 5.60.0:
+  * Fix crash due to the q pointer never being initialized. 
+  * Don't include bluezqt_dbustypes.h from installed headers 
+  * Fix compiler warnings
+
+---
+Fri Jul 19 11:37:37 UTC 2019 - Wolfgang Bauer 
+
+- Don't lower minimum Qt version anymore, it requires 5.11 now
+
+---

Old:

  bluez-qt-5.60.0.tar.xz

New:

  bluez-qt-5.61.0.tar.xz
  bluez-qt-5.61.0.tar.xz.sig
  frameworks.keyring



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.nG3ElR/_old  2019-08-19 21:00:21.192940738 +0200
+++ /var/tmp/diff_new_pack.nG3ElR/_new  2019-08-19 21:00:21.192940738 +0200
@@ -18,19 +18,25 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.60
+%define _tar_path 5.61
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
+# Only needed for the package signature condition
+%bcond_without lang
 Name:   bluez-qt
-Version:5.60.0
+Version:5.61.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
 URL:https://www.kde.org
-Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
+Source: 
https://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
+%if %{with lang}
+Source1:
https://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz.sig
+Source2:frameworks.keyring
+%endif
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
@@ -83,9 +89,6 @@
 
 %prep
 %setup -q
-%if 0%{?suse_version} == 1500
-sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 
5.9.0)/" CMakeLists.txt
-%endif
 
 %build
   %cmake_kf5 -d build -- -DUDEV_RULES_INSTALL_DIR="%{_udevrulesdir}"

++ bluez-qt-5.60.0.tar.xz -> bluez-qt-5.61.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.60.0/CMakeLists.txt 
new/bluez-qt-5.61.0/CMakeLists.txt
--- old/bluez-qt-5.60.0/CMakeLists.txt  2019-07-06 15:12:59.0 +0200
+++ new/bluez-qt-5.61.0/CMakeLists.txt  2019-08-03 21:30:22.0 +0200
@@ -1,14 +1,14 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.60.0") # handled by release scripts
+set(KF5_VERSION "5.61.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.60.0 NO_MODULE)
+find_package(ECM 5.61.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
-set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
 
 include(FeatureSummary)
 include(GenerateExportHeader)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.60.0/src/gattapplication.cpp 
new/bluez-qt-5.61.0/src/gattapplication.cpp
--- old/bluez-qt-5.60.0/src/gattapplication.cpp 2019-07-06 15:12:59.0 
+0200
+++ new/bluez-qt-5.61.0/src/gattapplication.cpp 2019-08-03 21:30:22.0 
+0200
@@ -42,7 +42,7 @@
 
 GattApplication::GattApplication(const QString , QObject 
*parent)
 : QObject(parent)
-, d(new GattApplicationPrivate(objectPathPrefix))
+, d(new GattApplicationPrivate(objectPathPrefix, this))
 {
 }
 
@@ -51,12 +51,12 @@
 delete d;
 }
 
-DBusManagerStruct GattApplication::getManagedObjects() const
+DBusManagerStruct 

commit bluez-qt for openSUSE:Factory

2019-07-26 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-07-26 12:07:16

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new.4126 (New)


Package is "bluez-qt"

Fri Jul 26 12:07:16 2019 rev:54 rq:715849 version:5.60.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-06-22 
11:07:01.580099619 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.4126/bluez-qt.changes  
2019-07-26 12:07:19.994878674 +0200
@@ -1,0 +2,13 @@
+Sun Jul 14 06:41:36 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.60.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.60.0.php
+- Changes since 5.59.0:
+  * Add MediaTransport API
+  * Install in new logging directory when we use kf5 5.59.0
+  * Add LE Advertising and GATT APIs
+  * Minor change to prevent force push removed commits from returning
+
+---

Old:

  bluez-qt-5.59.0.tar.xz

New:

  bluez-qt-5.60.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.iJ0DdQ/_old  2019-07-26 12:07:20.654878570 +0200
+++ /var/tmp/diff_new_pack.iJ0DdQ/_new  2019-07-26 12:07:20.658878569 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.59
+%define _tar_path 5.60
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.59.0
+Version:5.60.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.59.0.tar.xz -> bluez-qt-5.60.0.tar.xz ++
 4991 lines of diff (skipped)




commit bluez-qt for openSUSE:Factory

2019-06-22 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-06-22 11:06:58

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


Package is "bluez-qt"

Sat Jun 22 11:06:58 2019 rev:53 rq:710710 version:5.59.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-05-21 
10:23:18.847588267 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.4615/bluez-qt.changes  
2019-06-22 11:07:01.580099619 +0200
@@ -1,0 +2,10 @@
+Sun Jun 09 07:35:10 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.59.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.59.0.php
+- Changes since 5.58.0:
+  * Add Bluez API to DBus XML parser/generator
+
+---

Old:

  bluez-qt-5.58.0.tar.xz

New:

  bluez-qt-5.59.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.dsnG91/_old  2019-06-22 11:07:03.136102220 +0200
+++ /var/tmp/diff_new_pack.dsnG91/_new  2019-06-22 11:07:03.172102280 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.58
+%define _tar_path 5.59
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.58.0
+Version:5.59.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.58.0.tar.xz -> bluez-qt-5.59.0.tar.xz ++
 1970 lines of diff (skipped)




commit bluez-qt for openSUSE:Factory

2019-05-21 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-05-21 10:23:16

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new.5148 (New)


Package is "bluez-qt"

Tue May 21 10:23:16 2019 rev:52 rq:703322 version:5.58.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-04-19 
21:20:22.759568074 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.5148/bluez-qt.changes  
2019-05-21 10:23:18.847588267 +0200
@@ -1,0 +2,9 @@
+Wed May 15 18:16:15 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.58.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.58.0.php
+- No code changes since 5.57.0
+
+---

Old:

  bluez-qt-5.57.0.tar.xz

New:

  bluez-qt-5.58.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.17YjfW/_old  2019-05-21 10:23:19.551588124 +0200
+++ /var/tmp/diff_new_pack.17YjfW/_new  2019-05-21 10:23:19.88123 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.57
+%define _tar_path 5.58
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.57.0
+Version:5.58.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.57.0.tar.xz -> bluez-qt-5.58.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.57.0/CMakeLists.txt 
new/bluez-qt-5.58.0/CMakeLists.txt
--- old/bluez-qt-5.57.0/CMakeLists.txt  2019-04-07 09:16:18.0 +0200
+++ new/bluez-qt-5.58.0/CMakeLists.txt  2019-05-05 00:41:23.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.57.0") # handled by release scripts
+set(KF5_VERSION "5.58.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.57.0 NO_MODULE)
+find_package(ECM 5.58.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit bluez-qt for openSUSE:Factory

2019-04-19 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-04-19 21:20:20

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new.5536 (New)


Package is "bluez-qt"

Fri Apr 19 21:20:20 2019 rev:51 rq:695193 version:5.57.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-03-21 
09:42:39.090947979 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.5536/bluez-qt.changes  
2019-04-19 21:20:22.759568074 +0200
@@ -1,0 +2,14 @@
+Sun Apr 14 20:21:41 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.57.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.57.0.php
+- Changes since 5.56.0:
+  * It compiles fine without foreach
+  * Replace Q_FOREACH with C++11 for
+  * Move Media interface into Adapter
+  * Manager: Don't require Media1 interface for initialization (kde#405478)
+  * Device: Check object path in interfaces removed slot (kde#403289)
+
+---

Old:

  bluez-qt-5.56.0.tar.xz

New:

  bluez-qt-5.57.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.dt3cmp/_old  2019-04-19 21:20:23.287568771 +0200
+++ /var/tmp/diff_new_pack.dt3cmp/_new  2019-04-19 21:20:23.291568776 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.56
+%define _tar_path 5.57
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.56.0
+Version:5.57.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.56.0.tar.xz -> bluez-qt-5.57.0.tar.xz ++
 1652 lines of diff (skipped)




commit bluez-qt for openSUSE:Factory

2019-03-21 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-03-21 09:42:34

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


Package is "bluez-qt"

Thu Mar 21 09:42:34 2019 rev:50 rq:686711 version:5.56.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-02-28 
21:27:00.533860754 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.28833/bluez-qt.changes 
2019-03-21 09:42:39.090947979 +0100
@@ -1,0 +2,10 @@
+Sun Mar 10 20:15:34 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.56.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.56.0.php
+- Changes since 5.55.0:
+  * No code changes since 5.55.0
+
+---

Old:

  bluez-qt-5.55.0.tar.xz

New:

  bluez-qt-5.56.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.QDH5tR/_old  2019-03-21 09:42:40.502947654 +0100
+++ /var/tmp/diff_new_pack.QDH5tR/_new  2019-03-21 09:42:40.506947653 +0100
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.55
+%define _tar_path 5.56
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.55.0
+Version:5.56.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.55.0.tar.xz -> bluez-qt-5.56.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.55.0/CMakeLists.txt 
new/bluez-qt-5.56.0/CMakeLists.txt
--- old/bluez-qt-5.55.0/CMakeLists.txt  2019-02-02 18:19:04.0 +0100
+++ new/bluez-qt-5.56.0/CMakeLists.txt  2019-03-02 14:23:43.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.55.0") # handled by release scripts
+set(KF5_VERSION "5.56.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.55.0 NO_MODULE)
+find_package(ECM 5.56.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -45,7 +45,7 @@
 set_package_properties(Qt5Qml PROPERTIES DESCRIPTION "QML support for BluezQt" 
TYPE OPTIONAL)
 find_package(Qt5QuickTest ${REQUIRED_QT_VERSION} CONFIG)
 set_package_properties(Qt5QuickTest PROPERTIES DESCRIPTION "QML autotests for 
BluezQt" TYPE OPTIONAL)
-
+#add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x06)
 # Subdirectories
 add_subdirectory(src)
 




commit bluez-qt for openSUSE:Factory

2019-02-28 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-02-28 21:27:00

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


Package is "bluez-qt"

Thu Feb 28 21:27:00 2019 rev:49 rq:678660 version:5.55.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-02-14 
14:22:49.135946585 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.28833/bluez-qt.changes 
2019-02-28 21:27:00.533860754 +0100
@@ -1,0 +2,5 @@
+Fri Feb 15 09:25:42 UTC 2019 - alarr...@suse.com
+
+- Downgrade the Qt version requirement to build with 5.9
+
+---



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.XLpEIC/_old  2019-02-28 21:27:01.089860568 +0100
+++ /var/tmp/diff_new_pack.XLpEIC/_new  2019-02-28 21:27:01.089860568 +0100
@@ -83,6 +83,9 @@
 
 %prep
 %setup -q
+%if 0%{?suse_version} == 1500
+sed -i -e "s/^set *(REQUIRED_QT_VERSION 5.10.0)$/set(REQUIRED_QT_VERSION 
5.9.0)/" CMakeLists.txt
+%endif
 
 %build
   %cmake_kf5 -d build -- -DUDEV_RULES_INSTALL_DIR="%{_udevrulesdir}"




commit bluez-qt for openSUSE:Factory

2019-02-14 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-02-14 14:22:45

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


Package is "bluez-qt"

Thu Feb 14 14:22:45 2019 rev:48 rq:674209 version:5.55.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2019-01-21 
10:17:44.238232844 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.28833/bluez-qt.changes 
2019-02-14 14:22:49.135946585 +0100
@@ -1,0 +2,10 @@
+Sun Feb 10 22:02:58 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.55.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.55.0.php
+- Changes since 5.54.0:
+  * Fix fall-through warning
+
+---

Old:

  bluez-qt-5.54.0.tar.xz

New:

  bluez-qt-5.55.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.1p5Cl2/_old  2019-02-14 14:22:49.671946331 +0100
+++ /var/tmp/diff_new_pack.1p5Cl2/_new  2019-02-14 14:22:49.671946331 +0100
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.54
+%define _tar_path 5.55
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.54.0
+Version:5.55.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.54.0.tar.xz -> bluez-qt-5.55.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.54.0/CMakeLists.txt 
new/bluez-qt-5.55.0/CMakeLists.txt
--- old/bluez-qt-5.54.0/CMakeLists.txt  2019-01-04 22:40:24.0 +0100
+++ new/bluez-qt-5.55.0/CMakeLists.txt  2019-02-02 18:19:04.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.54.0") # handled by release scripts
+set(KF5_VERSION "5.55.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.54.0 NO_MODULE)
+find_package(ECM 5.55.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -33,7 +33,7 @@
 )
 
 # Dependencies
-set(REQUIRED_QT_VERSION 5.9.0)
+set(REQUIRED_QT_VERSION 5.10.0)
 
 # Required Qt5 components to build this framework
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core DBus Network)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.54.0/src/utils.cpp 
new/bluez-qt-5.55.0/src/utils.cpp
--- old/bluez-qt-5.54.0/src/utils.cpp   2019-01-04 22:40:24.0 +0100
+++ new/bluez-qt-5.55.0/src/utils.cpp   2019-02-02 18:19:04.0 +0100
@@ -296,6 +296,7 @@
 case 0x08:  // Barcode Scanner
 return Device::Peripheral;
 }
+// fall-through
 default:
 return Device::Uncategorized;
 }




commit bluez-qt for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2019-01-21 10:17:37

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


Package is "bluez-qt"

Mon Jan 21 10:17:37 2019 rev:47 rq:665768 version:5.54.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-12-19 
13:38:30.892203018 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.28833/bluez-qt.changes 
2019-01-21 10:17:44.238232844 +0100
@@ -1,0 +2,10 @@
+Mon Jan 14 06:08:41 UTC 2019 - lbeltr...@kde.org
+
+- Update to 5.54.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.54.0.php
+- Changes since 5.53.0:
+  * No code changes since 5.53.0
+
+---

Old:

  bluez-qt-5.53.0.tar.xz

New:

  bluez-qt-5.54.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.iR7OMd/_old  2019-01-21 10:17:44.734232346 +0100
+++ /var/tmp/diff_new_pack.iR7OMd/_new  2019-01-21 10:17:44.746232334 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bluez-qt
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.53
+%define _tar_path 5.54
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.53.0
+Version:5.54.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.53.0.tar.xz -> bluez-qt-5.54.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.53.0/CMakeLists.txt 
new/bluez-qt-5.54.0/CMakeLists.txt
--- old/bluez-qt-5.53.0/CMakeLists.txt  2018-12-01 15:37:51.0 +0100
+++ new/bluez-qt-5.54.0/CMakeLists.txt  2019-01-04 22:40:24.0 +0100
@@ -1,10 +1,10 @@
-cmake_minimum_required(VERSION 3.0)
+cmake_minimum_required(VERSION 3.5)
 
-set(KF5_VERSION "5.53.0") # handled by release scripts
+set(KF5_VERSION "5.54.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.53.0 NO_MODULE)
+find_package(ECM 5.54.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit bluez-qt for openSUSE:Factory

2018-12-19 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-12-19 13:38:27

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


Package is "bluez-qt"

Wed Dec 19 13:38:27 2018 rev:46 rq:658535 version:5.53.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-11-14 
14:30:35.743488896 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new.28833/bluez-qt.changes 
2018-12-19 13:38:30.892203018 +0100
@@ -1,0 +2,10 @@
+Sun Dec 09 19:43:42 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.53.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.53.0.php
+- Changes since 5.52.0:
+  * Remove qt prefix include
+
+---

Old:

  bluez-qt-5.52.0.tar.xz

New:

  bluez-qt-5.53.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.LY5vIp/_old  2018-12-19 13:38:31.364202348 +0100
+++ /var/tmp/diff_new_pack.LY5vIp/_new  2018-12-19 13:38:31.368202342 +0100
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.52
+%define _tar_path 5.53
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.52.0
+Version:5.53.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.52.0.tar.xz -> bluez-qt-5.53.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.52.0/CMakeLists.txt 
new/bluez-qt-5.53.0/CMakeLists.txt
--- old/bluez-qt-5.52.0/CMakeLists.txt  2018-11-03 12:58:17.0 +0100
+++ new/bluez-qt-5.53.0/CMakeLists.txt  2018-12-01 15:37:51.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.52.0") # handled by release scripts
+set(KF5_VERSION "5.53.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.52.0 NO_MODULE)
+find_package(ECM 5.53.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -33,7 +33,7 @@
 )
 
 # Dependencies
-set(REQUIRED_QT_VERSION 5.8.0)
+set(REQUIRED_QT_VERSION 5.9.0)
 
 # Required Qt5 components to build this framework
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core DBus Network)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.52.0/autotests/adaptertest.cpp 
new/bluez-qt-5.53.0/autotests/adaptertest.cpp
--- old/bluez-qt-5.52.0/autotests/adaptertest.cpp   2018-11-03 
12:58:17.0 +0100
+++ new/bluez-qt-5.53.0/autotests/adaptertest.cpp   2018-12-01 
15:37:51.0 +0100
@@ -24,8 +24,8 @@
 #include "pendingcall.h"
 #include "initmanagerjob.h"
 
-#include 
-#include 
+#include 
+#include 
 
 namespace BluezQt
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.52.0/autotests/agentmanagertest.cpp 
new/bluez-qt-5.53.0/autotests/agentmanagertest.cpp
--- old/bluez-qt-5.52.0/autotests/agentmanagertest.cpp  2018-11-03 
12:58:17.0 +0100
+++ new/bluez-qt-5.53.0/autotests/agentmanagertest.cpp  2018-12-01 
15:37:51.0 +0100
@@ -25,8 +25,8 @@
 #include "pendingcall.h"
 #include "services.h"
 
-#include 
-#include 
+#include 
+#include 
 #include 
 
 namespace BluezQt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.52.0/autotests/autotests.h 
new/bluez-qt-5.53.0/autotests/autotests.h
--- old/bluez-qt-5.52.0/autotests/autotests.h   2018-11-03 12:58:17.0 
+0100
+++ new/bluez-qt-5.53.0/autotests/autotests.h   2018-12-01 15:37:51.0 
+0100
@@ -21,7 +21,7 @@
 #ifndef AUTOTESTS_H
 #define AUTOTESTS_H
 
-#include 
+#include 
 #include 
 #include 
 #include 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.52.0/autotests/devicetest.cpp 
new/bluez-qt-5.53.0/autotests/devicetest.cpp
--- old/bluez-qt-5.52.0/autotests/devicetest.cpp2018-11-03 
12:58:17.0 +0100
+++ new/bluez-qt-5.53.0/autotests/devicetest.cpp2018-12-01 
15:37:51.0 +0100
@@ -23,8 +23,8 @@
 #include 

commit bluez-qt for openSUSE:Factory

2018-11-14 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-11-14 14:30:30

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Wed Nov 14 14:30:30 2018 rev:45 rq:648486 version:5.52.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-11-06 
13:54:53.412211460 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-11-14 
14:30:35.743488896 +0100
@@ -1,0 +2,11 @@
+Sun Nov 11 19:48:02 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.52.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.52.0.php
+- Changes since 5.51.0:
+  * Add Media and MediaEndpoint API header generation
+  * Fix new syntax
+
+---

Old:

  bluez-qt-5.51.0.tar.xz

New:

  bluez-qt-5.52.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.XNEWBK/_old  2018-11-14 14:30:36.935487745 +0100
+++ /var/tmp/diff_new_pack.XNEWBK/_new  2018-11-14 14:30:36.939487740 +0100
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.51
+%define _tar_path 5.52
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.51.0
+Version:5.52.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.51.0.tar.xz -> bluez-qt-5.52.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.51.0/CMakeLists.txt 
new/bluez-qt-5.52.0/CMakeLists.txt
--- old/bluez-qt-5.51.0/CMakeLists.txt  2018-10-07 12:03:15.0 +0200
+++ new/bluez-qt-5.52.0/CMakeLists.txt  2018-11-03 12:58:17.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.51.0") # handled by release scripts
+set(KF5_VERSION "5.52.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.51.0 NO_MODULE)
+find_package(ECM 5.52.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -45,11 +45,6 @@
 set_package_properties(Qt5Qml PROPERTIES DESCRIPTION "QML support for BluezQt" 
TYPE OPTIONAL)
 find_package(Qt5QuickTest ${REQUIRED_QT_VERSION} CONFIG)
 set_package_properties(Qt5QuickTest PROPERTIES DESCRIPTION "QML autotests for 
BluezQt" TYPE OPTIONAL)
-add_definitions(-DQT_NO_CAST_FROM_ASCII)
-add_definitions(-DQT_NO_CAST_TO_ASCII)
-add_definitions(-DQT_NO_NARROWING_CONVERSIONS_IN_CONNECT)
-add_definitions(-DQT_NO_URL_CAST_FROM_STRING)
-add_definitions(-DQT_USE_QSTRINGBUILDER)
 
 # Subdirectories
 add_subdirectory(src)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.51.0/bluez.categories 
new/bluez-qt-5.52.0/bluez.categories
--- old/bluez-qt-5.51.0/bluez.categories2018-10-07 12:03:15.0 
+0200
+++ new/bluez-qt-5.52.0/bluez.categories2018-11-03 12:58:17.0 
+0100
@@ -1 +1 @@
-org.kde.bluez bluez
+org.kde.bluez bluez IDENTIFIER [BLUEZQT]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.51.0/src/CMakeLists.txt 
new/bluez-qt-5.52.0/src/CMakeLists.txt
--- old/bluez-qt-5.51.0/src/CMakeLists.txt  2018-10-07 12:03:15.0 
+0200
+++ new/bluez-qt-5.52.0/src/CMakeLists.txt  2018-11-03 12:58:17.0 
+0100
@@ -88,6 +88,8 @@
 Adapter
 Device
 Input
+Media
+MediaEndpoint
 MediaPlayer
 MediaPlayerTrack
 DevicesModel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.51.0/tests/mediaendpointconnector.cpp 
new/bluez-qt-5.52.0/tests/mediaendpointconnector.cpp
--- old/bluez-qt-5.51.0/tests/mediaendpointconnector.cpp2018-10-07 
12:03:15.0 +0200
+++ new/bluez-qt-5.52.0/tests/mediaendpointconnector.cpp2018-11-03 
12:58:17.0 +0100
@@ -103,12 +103,12 @@
 }
 }
 
-void MediaEndpointConnector::onConfigurationSet(const QString& 
transportObjectPath, const QVariantMap& properties)
+void MediaEndpointConnector::onConfigurationSet(const QString 
, const 

commit bluez-qt for openSUSE:Factory

2018-11-06 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-11-06 13:54:50

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Tue Nov  6 13:54:50 2018 rev:44 rq:643784 version:5.51.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-10-22 
11:22:33.115203689 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-11-06 
13:54:53.412211460 +0100
@@ -1,0 +2,6 @@
+Mon Oct 22 17:15:56 UTC 2018 - wba...@tmo.at
+
+- Use %{_udevrulesdir} macro to specify the install directory for
+  udev rules instead of a hard-coded path
+
+---



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.PtdHNB/_old  2018-11-06 13:54:54.148210456 +0100
+++ /var/tmp/diff_new_pack.PtdHNB/_new  2018-11-06 13:54:54.148210456 +0100
@@ -85,7 +85,7 @@
 %setup -q
 
 %build
-  %cmake_kf5 -d build -- -DUDEV_RULES_INSTALL_DIR="%{_libexecdir}/udev/rules.d"
+  %cmake_kf5 -d build -- -DUDEV_RULES_INSTALL_DIR="%{_udevrulesdir}"
   %make_jobs
 
 %install
@@ -107,7 +107,7 @@
 %{_kf5_qmldir}/
 
 %files udev
-%{_libexecdir}/udev/rules.d/61-kde-bluetooth-rfkill.rules
+%{_udevrulesdir}/61-kde-bluetooth-rfkill.rules
 
 %files devel
 %{_kf5_libdir}/cmake/%{_libname}/




commit bluez-qt for openSUSE:Factory

2018-10-22 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-10-22 11:21:45

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Mon Oct 22 11:21:45 2018 rev:43 rq:643265 version:5.51.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-10-01 
08:03:18.986452444 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-10-22 
11:22:33.115203689 +0200
@@ -1,0 +2,21 @@
+Fri Oct 19 18:08:33 UTC 2018 - Fabian Vogt 
+
+- Fix install directory for udev rules (boo#1112598)
+
+---
+Tue Oct 16 08:01:43 UTC 2018 - Luca Beltrame 
+
+- Run spec-cleaner
+
+---
+Mon Oct 15 11:51:45 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.51.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.51.0.php
+- Changes since 5.50.0:
+  * Implement Media and MediaEndpoint API
+  * Make sure to compile with strict compile flags
+
+---

Old:

  bluez-qt-5.50.0.tar.xz

New:

  bluez-qt-5.51.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.zMZRhu/_old  2018-10-22 11:22:33.795203001 +0200
+++ /var/tmp/diff_new_pack.zMZRhu/_new  2018-10-22 11:22:33.799202998 +0200
@@ -12,24 +12,24 @@
 # 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 sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.50
+%define _tar_path 5.51
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.50.0
+Version:5.51.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
-URL:http://www.kde.org
+URL:https://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
@@ -85,7 +85,7 @@
 %setup -q
 
 %build
-  %cmake_kf5 -d build -- -DUDEV_RULES_INSTALL_DIR="%{_libexecdir}/udev"
+  %cmake_kf5 -d build -- -DUDEV_RULES_INSTALL_DIR="%{_libexecdir}/udev/rules.d"
   %make_jobs
 
 %install
@@ -107,7 +107,7 @@
 %{_kf5_qmldir}/
 
 %files udev
-%{_libexecdir}/udev/61-kde-bluetooth-rfkill.rules
+%{_libexecdir}/udev/rules.d/61-kde-bluetooth-rfkill.rules
 
 %files devel
 %{_kf5_libdir}/cmake/%{_libname}/

++ bluez-qt-5.50.0.tar.xz -> bluez-qt-5.51.0.tar.xz ++
 2123 lines of diff (skipped)




commit bluez-qt for openSUSE:Factory

2018-10-01 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-10-01 08:03:13

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Mon Oct  1 08:03:13 2018 rev:42 rq:635968 version:5.50.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-08-24 
16:50:41.321119884 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-10-01 
08:03:18.986452444 +0200
@@ -1,0 +2,10 @@
+Thu Sep 13 21:58:44 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.50.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.50.0.php
+- Changes since 5.49.0:
+  * None
+
+---

Old:

  bluez-qt-5.49.0.tar.xz

New:

  bluez-qt-5.50.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.Bz1dcz/_old  2018-10-01 08:03:19.790452012 +0200
+++ /var/tmp/diff_new_pack.Bz1dcz/_new  2018-10-01 08:03:19.794452010 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.49
+%define _tar_path 5.50
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.49.0
+Version:5.50.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.49.0.tar.xz -> bluez-qt-5.50.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.49.0/CMakeLists.txt 
new/bluez-qt-5.50.0/CMakeLists.txt
--- old/bluez-qt-5.49.0/CMakeLists.txt  2018-08-04 10:41:36.0 +0200
+++ new/bluez-qt-5.50.0/CMakeLists.txt  2018-09-01 00:19:05.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.49.0") # handled by release scripts
+set(KF5_VERSION "5.50.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.49.0 NO_MODULE)
+find_package(ECM 5.50.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit bluez-qt for openSUSE:Factory

2018-08-24 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-08-24 16:50:40

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Fri Aug 24 16:50:40 2018 rev:41 rq:630579 version:5.49.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-07-21 
10:10:06.787172117 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-08-24 
16:50:41.321119884 +0200
@@ -1,0 +2,10 @@
+Sun Aug 19 09:18:41 UTC 2018 - christo...@krop.fr
+
+- Update to 5.49.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.49.0.php
+- Changes since 5.48.0:
+  * None
+
+---

Old:

  bluez-qt-5.48.0.tar.xz

New:

  bluez-qt-5.49.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.IfZOOs/_old  2018-08-24 16:50:41.737120374 +0200
+++ /var/tmp/diff_new_pack.IfZOOs/_new  2018-08-24 16:50:41.741120378 +0200
@@ -18,18 +18,18 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.48
+%define _tar_path 5.49
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.48.0
+Version:5.49.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
-Url:https://projects.kde.org/attica
+URL:http://www.kde.org
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
@@ -40,7 +40,6 @@
 BuildRequires:  cmake(Qt5DBus) >= 5.6.0
 BuildRequires:  cmake(Qt5Network) >= 5.6.0
 BuildRequires:  cmake(Qt5Qml) >= 5.6.0
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Async Bluez wrapper library.
@@ -57,8 +56,8 @@
 %package imports
 Summary:Async Bluez wrapper library
 Group:  System/GUI/KDE
-Supplements:packageand(lib%{_libname}%{sonum}:libQtQuick5)
 %requires_ge libQtQuick5
+Supplements:packageand(lib%{_libname}%{sonum}:libQtQuick5)
 
 %description imports
 Async Bluez wrapper library.
@@ -83,10 +82,10 @@
 Development files for QBluez Async Bluez wrapper library.
 
 %prep
-%setup -q -n %{name}-%{version}
+%setup -q
 
 %build
-  %cmake_kf5 -d build -- -DUDEV_RULES_INSTALL_DIR="%_libexecdir/udev"
+  %cmake_kf5 -d build -- -DUDEV_RULES_INSTALL_DIR="%{_libexecdir}/udev"
   %make_jobs
 
 %install
@@ -94,26 +93,23 @@
   %fdupes -s %{buildroot}
 
 %post -n lib%{_libname}%{sonum} -p /sbin/ldconfig
-
 %postun -n lib%{_libname}%{sonum} -p /sbin/ldconfig
 
 %files -n lib%{_libname}%{sonum}
-%defattr(-,root,root)
-%doc README* COPYING.LIB
+%license COPYING.LIB
+%doc README*
 %{_libqt5_libdir}/lib%{_libname}*.so.*
 %{_kf5_debugdir}/bluez.categories
 
 %files imports
-%defattr(-,root,root)
-%doc README* COPYING.LIB
+%license COPYING.LIB
+%doc README*
 %{_kf5_qmldir}/
 
 %files udev
-%defattr(-,root,root)
 %{_libexecdir}/udev/61-kde-bluetooth-rfkill.rules
 
 %files devel
-%defattr(-,root,root)
 %{_kf5_libdir}/cmake/%{_libname}/
 %{_kf5_libdir}/lib%{_libname}*.so
 %{_kf5_includedir}/

++ bluez-qt-5.48.0.tar.xz -> bluez-qt-5.49.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.48.0/CMakeLists.txt 
new/bluez-qt-5.49.0/CMakeLists.txt
--- old/bluez-qt-5.48.0/CMakeLists.txt  2018-07-07 23:51:43.0 +0200
+++ new/bluez-qt-5.49.0/CMakeLists.txt  2018-08-04 10:41:36.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.48.0") # handled by release scripts
+set(KF5_VERSION "5.49.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.48.0 NO_MODULE)
+find_package(ECM 5.49.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit bluez-qt for openSUSE:Factory

2018-07-21 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-07-21 10:10:04

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Sat Jul 21 10:10:04 2018 rev:40 rq:623252 version:5.48.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-06-22 
13:17:04.451275634 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-07-21 
10:10:06.787172117 +0200
@@ -1,0 +2,11 @@
+Mon Jul 16 04:37:33 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.48.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.48.0.php
+- Changes since 5.47.0:
+  * Update D-Bus xml files to use "Out*" for signal type Qt annotations
+  * Add signal for devices's address changing
+
+---

Old:

  bluez-qt-5.47.0.tar.xz

New:

  bluez-qt-5.48.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.8sdclB/_old  2018-07-21 10:10:07.283172003 +0200
+++ /var/tmp/diff_new_pack.8sdclB/_new  2018-07-21 10:10:07.283172003 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.47
+%define _tar_path 5.48
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
-%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
+%{!?_kf5_bugfix_version: %define _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.47.0
+Version:5.48.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.47.0.tar.xz -> bluez-qt-5.48.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.47.0/CMakeLists.txt 
new/bluez-qt-5.48.0/CMakeLists.txt
--- old/bluez-qt-5.47.0/CMakeLists.txt  2018-06-02 18:26:11.0 +0200
+++ new/bluez-qt-5.48.0/CMakeLists.txt  2018-07-07 23:51:43.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.47.0") # handled by release scripts
+set(KF5_VERSION "5.48.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.47.0 NO_MODULE)
+find_package(ECM 5.48.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/bluez-qt-5.47.0/autotests/interfaces/org.freedesktop.DBus.Properties.xml 
new/bluez-qt-5.48.0/autotests/interfaces/org.freedesktop.DBus.Properties.xml
--- 
old/bluez-qt-5.47.0/autotests/interfaces/org.freedesktop.DBus.Properties.xml
2018-06-02 18:26:11.0 +0200
+++ 
new/bluez-qt-5.48.0/autotests/interfaces/org.freedesktop.DBus.Properties.xml
2018-07-07 23:51:43.0 +0200
@@ -22,7 +22,7 @@
   
   
   
-  
+  
 
   
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.47.0/src/device.h 
new/bluez-qt-5.48.0/src/device.h
--- old/bluez-qt-5.47.0/src/device.h2018-06-02 18:26:11.0 +0200
+++ new/bluez-qt-5.48.0/src/device.h2018-07-07 23:51:43.0 +0200
@@ -46,7 +46,7 @@
 Q_OBJECT
 
 Q_PROPERTY(QString ubi READ ubi)
-Q_PROPERTY(QString address READ address)
+Q_PROPERTY(QString address READ address NOTIFY addressChanged)
 Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)
 Q_PROPERTY(QString friendlyName READ friendlyName NOTIFY 
friendlyNameChanged)
 Q_PROPERTY(QString remoteName READ remoteName NOTIFY remoteNameChanged)
@@ -424,6 +424,11 @@
 void nameChanged(const QString );
 
 /**
+ * Indicates that device's address have changed.
+ */
+void addressChanged(const QString );
+
+/**
  * Indicates that device's friendly name have changed.
  */
 void friendlyNameChanged(const QString );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.47.0/src/device_p.cpp 
new/bluez-qt-5.48.0/src/device_p.cpp
--- old/bluez-qt-5.47.0/src/device_p.cpp2018-06-02 18:26:11.0 
+0200
+++ new/bluez-qt-5.48.0/src/device_p.cpp2018-07-07 23:51:43.0 
+0200
@@ 

commit bluez-qt for openSUSE:Factory

2018-06-22 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-06-22 13:17:00

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Fri Jun 22 13:17:00 2018 rev:39 rq:616731 version:5.47.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-05-18 
14:18:19.743452555 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-06-22 
13:17:04.451275634 +0200
@@ -1,0 +2,11 @@
+Tue Jun 12 21:35:06 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.47.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.47.0.php
+- Changes since 5.46.0:
+  * Add missing override
+  * Use override
+
+---

Old:

  bluez-qt-5.46.0.tar.xz

New:

  bluez-qt-5.47.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.Aa8x5E/_old  2018-06-22 13:17:05.583233661 +0200
+++ /var/tmp/diff_new_pack.Aa8x5E/_new  2018-06-22 13:17:05.583233661 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.46
+%define _tar_path 5.47
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.46.0
+Version:5.47.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.46.0.tar.xz -> bluez-qt-5.47.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.46.0/CMakeLists.txt 
new/bluez-qt-5.47.0/CMakeLists.txt
--- old/bluez-qt-5.46.0/CMakeLists.txt  2018-05-05 14:38:05.0 +0200
+++ new/bluez-qt-5.47.0/CMakeLists.txt  2018-06-02 18:26:11.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.46.0") # handled by release scripts
+set(KF5_VERSION "5.47.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.46.0 NO_MODULE)
+find_package(ECM 5.47.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.46.0/autotests/agentmanagertest.h 
new/bluez-qt-5.47.0/autotests/agentmanagertest.h
--- old/bluez-qt-5.46.0/autotests/agentmanagertest.h2018-05-05 
14:38:05.0 +0200
+++ new/bluez-qt-5.47.0/autotests/agentmanagertest.h2018-06-02 
18:26:11.0 +0200
@@ -34,18 +34,18 @@
 public:
 explicit TestAgent(QObject *parent = nullptr);
 
-QDBusObjectPath objectPath() const Q_DECL_OVERRIDE;
+QDBusObjectPath objectPath() const override;
 
-void requestPinCode(BluezQt::DevicePtr device, const 
BluezQt::Request ) Q_DECL_OVERRIDE;
-void displayPinCode(BluezQt::DevicePtr device, const QString ) 
Q_DECL_OVERRIDE;
-void requestPasskey(BluezQt::DevicePtr device, const 
BluezQt::Request ) Q_DECL_OVERRIDE;
-void displayPasskey(BluezQt::DevicePtr device, const QString , 
const QString ) Q_DECL_OVERRIDE;
-void requestConfirmation(BluezQt::DevicePtr device, const QString 
, const BluezQt::Request<> ) Q_DECL_OVERRIDE;
-void requestAuthorization(BluezQt::DevicePtr device, const 
BluezQt::Request<> ) Q_DECL_OVERRIDE;
-void authorizeService(BluezQt::DevicePtr device, const QString , 
const BluezQt::Request<> ) Q_DECL_OVERRIDE;
+void requestPinCode(BluezQt::DevicePtr device, const 
BluezQt::Request ) override;
+void displayPinCode(BluezQt::DevicePtr device, const QString ) 
override;
+void requestPasskey(BluezQt::DevicePtr device, const 
BluezQt::Request ) override;
+void displayPasskey(BluezQt::DevicePtr device, const QString , 
const QString ) override;
+void requestConfirmation(BluezQt::DevicePtr device, const QString 
, const BluezQt::Request<> ) override;
+void requestAuthorization(BluezQt::DevicePtr device, const 
BluezQt::Request<> ) override;
+void authorizeService(BluezQt::DevicePtr device, const QString , 
const BluezQt::Request<> ) override;
 
-void cancel() Q_DECL_OVERRIDE;
-void release() Q_DECL_OVERRIDE;
+void cancel() override;
+void release() override;
 
 BluezQt::DevicePtr m_device;
 
diff -urN 

commit bluez-qt for openSUSE:Factory

2018-05-18 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-05-18 14:18:17

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Fri May 18 14:18:17 2018 rev:38 rq:607529 version:5.46.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-04-19 
15:13:47.380970037 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-05-18 
14:18:19.743452555 +0200
@@ -1,0 +2,10 @@
+Sun May 13 21:02:59 UTC 2018 - lbeltr...@kde.org
+
+- Update to 5.46.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.46.0.php
+- Changes since 5.45.0:
+  * None
+
+---

Old:

  bluez-qt-5.45.0.tar.xz

New:

  bluez-qt-5.46.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.IMVhif/_old  2018-05-18 14:18:20.379429215 +0200
+++ /var/tmp/diff_new_pack.IMVhif/_new  2018-05-18 14:18:20.383429068 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.45
+%define _tar_path 5.46
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.45.0
+Version:5.46.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later

++ bluez-qt-5.45.0.tar.xz -> bluez-qt-5.46.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.45.0/CMakeLists.txt 
new/bluez-qt-5.46.0/CMakeLists.txt
--- old/bluez-qt-5.45.0/CMakeLists.txt  2018-04-07 09:46:24.0 +0200
+++ new/bluez-qt-5.46.0/CMakeLists.txt  2018-05-05 14:38:05.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.45.0") # handled by release scripts
+set(KF5_VERSION "5.46.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.45.0 NO_MODULE)
+find_package(ECM 5.46.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit bluez-qt for openSUSE:Factory

2018-04-19 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-04-19 15:13:45

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Thu Apr 19 15:13:45 2018 rev:37 rq:596842 version:5.45.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-03-20 
21:42:54.839369953 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-04-19 
15:13:47.380970037 +0200
@@ -1,0 +2,10 @@
+Sat Apr 14 13:19:01 CEST 2018 - lbeltr...@kde.org
+
+- Update to 5.45.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.45.0.php
+- Changes since 5.44.0:
+  * None
+
+---

Old:

  bluez-qt-5.44.0.tar.xz

New:

  bluez-qt-5.45.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.vbOr0e/_old  2018-04-19 15:13:48.000945547 +0200
+++ /var/tmp/diff_new_pack.vbOr0e/_new  2018-04-19 15:13:48.004945389 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.44
+%define _tar_path 5.45
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.44.0
+Version:5.45.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1-or-later
@@ -101,7 +101,7 @@
 %defattr(-,root,root)
 %doc README* COPYING.LIB
 %{_libqt5_libdir}/lib%{_libname}*.so.*
-%{_kf5_debugdir}/*.categories
+%{_kf5_debugdir}/bluez.categories
 
 %files imports
 %defattr(-,root,root)

++ bluez-qt-5.44.0.tar.xz -> bluez-qt-5.45.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.44.0/CMakeLists.txt 
new/bluez-qt-5.45.0/CMakeLists.txt
--- old/bluez-qt-5.44.0/CMakeLists.txt  2018-03-03 10:51:34.0 +0100
+++ new/bluez-qt-5.45.0/CMakeLists.txt  2018-04-07 09:46:24.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.44.0") # handled by release scripts
+set(KF5_VERSION "5.45.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.44.0 NO_MODULE)
+find_package(ECM 5.45.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -33,7 +33,7 @@
 )
 
 # Dependencies
-set(REQUIRED_QT_VERSION 5.7.0)
+set(REQUIRED_QT_VERSION 5.8.0)
 
 # Required Qt5 components to build this framework
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core DBus Network)




commit bluez-qt for openSUSE:Factory

2018-03-20 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-03-20 21:42:53

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Tue Mar 20 21:42:53 2018 rev:36 rq:586797 version:5.44.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-02-16 
21:27:08.881038117 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-03-20 
21:42:54.839369953 +0100
@@ -1,0 +2,10 @@
+Mon Mar 12 23:29:40 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.44.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.44.0.php
+- Changes since 5.43.0:
+  * None
+
+---

Old:

  bluez-qt-5.43.0.tar.xz

New:

  bluez-qt-5.44.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.zAwGQR/_old  2018-03-20 21:42:55.407349511 +0100
+++ /var/tmp/diff_new_pack.zAwGQR/_new  2018-03-20 21:42:55.411349367 +0100
@@ -18,16 +18,16 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.43
+%define _tar_path 5.44
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.43.0
+Version:5.44.0
 Release:0
 Summary:Async Bluez wrapper library
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/attica
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz

++ bluez-qt-5.43.0.tar.xz -> bluez-qt-5.44.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.43.0/CMakeLists.txt 
new/bluez-qt-5.44.0/CMakeLists.txt
--- old/bluez-qt-5.43.0/CMakeLists.txt  2018-02-05 09:09:58.0 +0100
+++ new/bluez-qt-5.44.0/CMakeLists.txt  2018-03-03 10:51:34.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.43.0") # handled by release scripts
+set(KF5_VERSION "5.44.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.43.0 NO_MODULE)
+find_package(ECM 5.44.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit bluez-qt for openSUSE:Factory

2018-02-16 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-02-16 21:27:07

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Fri Feb 16 21:27:07 2018 rev:35 rq:576503 version:5.43.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-01-22 
15:57:32.364828969 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-02-16 
21:27:08.881038117 +0100
@@ -1,0 +2,10 @@
+Mon Feb 12 23:42:06 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.43.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.43.0.php
+- Changes since 5.42.0:
+  * No need to initialize m_usableAdapterwith nullptr
+
+---

Old:

  bluez-qt-5.42.0.tar.xz

New:

  bluez-qt-5.43.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.CH1XEJ/_old  2018-02-16 21:27:09.461017185 +0100
+++ /var/tmp/diff_new_pack.CH1XEJ/_new  2018-02-16 21:27:09.469016897 +0100
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.42
+%define _tar_path 5.43
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.42.0
+Version:5.43.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.42.0.tar.xz -> bluez-qt-5.43.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.42.0/CMakeLists.txt 
new/bluez-qt-5.43.0/CMakeLists.txt
--- old/bluez-qt-5.42.0/CMakeLists.txt  2018-01-06 00:40:53.0 +0100
+++ new/bluez-qt-5.43.0/CMakeLists.txt  2018-02-05 09:09:58.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.42.0") # handled by release scripts
+set(KF5_VERSION "5.43.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.42.0 NO_MODULE)
+find_package(ECM 5.43.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.42.0/src/manager_p.cpp 
new/bluez-qt-5.43.0/src/manager_p.cpp
--- old/bluez-qt-5.42.0/src/manager_p.cpp   2018-01-06 00:40:53.0 
+0100
+++ new/bluez-qt-5.43.0/src/manager_p.cpp   2018-02-05 09:09:58.0 
+0100
@@ -42,7 +42,6 @@
 , m_dbusObjectManager(nullptr)
 , m_bluezAgentManager(nullptr)
 , m_bluezProfileManager(nullptr)
-, m_usableAdapter(0)
 , m_initialized(false)
 , m_bluezRunning(false)
 , m_loaded(false)




commit bluez-qt for openSUSE:Factory

2018-01-22 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-01-22 15:57:31

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Mon Jan 22 15:57:31 2018 rev:34 rq:566649 version:5.42.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2018-01-09 
14:39:02.999593710 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-01-22 
15:57:32.364828969 +0100
@@ -1,0 +2,11 @@
+Tue Jan 16 22:50:13 CET 2018 - lbeltr...@kde.org
+
+- Update to 5.42.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.42.0.php
+- Changes since 5.41.0:
+  * Remove obsolete reviewboardrc file
+  * Autogenerate debug file
+
+---

Old:

  bluez-qt-5.41.0.tar.xz

New:

  bluez-qt-5.42.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.kfJEnN/_old  2018-01-22 15:57:33.984753152 +0100
+++ /var/tmp/diff_new_pack.kfJEnN/_new  2018-01-22 15:57:33.988752965 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bluez-qt
 #
-# 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
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.41
+%define _tar_path 5.42
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.41.0
+Version:5.42.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+
@@ -101,6 +101,7 @@
 %defattr(-,root,root)
 %doc README* COPYING.LIB
 %{_libqt5_libdir}/lib%{_libname}*.so.*
+%{_kf5_debugdir}/*.categories
 
 %files imports
 %defattr(-,root,root)

++ bluez-qt-5.41.0.tar.xz -> bluez-qt-5.42.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.41.0/.reviewboardrc 
new/bluez-qt-5.42.0/.reviewboardrc
--- old/bluez-qt-5.41.0/.reviewboardrc  2017-12-02 10:52:37.0 +0100
+++ new/bluez-qt-5.42.0/.reviewboardrc  1970-01-01 01:00:00.0 +0100
@@ -1,4 +0,0 @@
-REVIEWBOARD_URL = "https://git.reviewboard.kde.org;
-REPOSITORY = 'git://anongit.kde.org/bluez-qt'
-BRANCH = 'master'
-TARGET_GROUPS = 'kdeframeworks'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.41.0/CMakeLists.txt 
new/bluez-qt-5.42.0/CMakeLists.txt
--- old/bluez-qt-5.41.0/CMakeLists.txt  2017-12-02 10:52:37.0 +0100
+++ new/bluez-qt-5.42.0/CMakeLists.txt  2018-01-06 00:40:53.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.41.0") # handled by release scripts
+set(KF5_VERSION "5.42.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.41.0 NO_MODULE)
+find_package(ECM 5.42.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -19,6 +19,7 @@
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
+include(ECMQtDeclareLoggingCategory)
 
 
 option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
@@ -103,4 +104,6 @@
 endif()
 endif()
 
+install(FILES bluez.categories DESTINATION ${KDE_INSTALL_CONFDIR})
+
 feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.41.0/bluez.categories 
new/bluez-qt-5.42.0/bluez.categories
--- old/bluez-qt-5.41.0/bluez.categories1970-01-01 01:00:00.0 
+0100
+++ new/bluez-qt-5.42.0/bluez.categories2018-01-06 00:40:53.0 
+0100
@@ -0,0 +1 @@
+org.kde.bluez bluez
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.41.0/src/CMakeLists.txt 
new/bluez-qt-5.42.0/src/CMakeLists.txt
--- old/bluez-qt-5.41.0/src/CMakeLists.txt  2017-12-02 10:52:37.0 
+0100
+++ new/bluez-qt-5.42.0/src/CMakeLists.txt  

commit bluez-qt for openSUSE:Factory

2018-01-09 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2018-01-09 14:38:56

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Tue Jan  9 14:38:56 2018 rev:33 rq:559411 version:5.41.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-11-16 
14:35:08.275454028 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2018-01-09 
14:39:02.999593710 +0100
@@ -1,0 +2,10 @@
+Sun Dec 17 09:43:47 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.41.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.41.0.php
+- Changes since 5.40.0:
+  * Do not leak rfkill file descriptors. (kde#386886)
+
+---

Old:

  bluez-qt-5.40.0.tar.xz

New:

  bluez-qt-5.41.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.c3qnMd/_old  2018-01-09 14:39:04.383528800 +0100
+++ /var/tmp/diff_new_pack.c3qnMd/_new  2018-01-09 14:39:04.387528613 +0100
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.40
+%define _tar_path 5.41
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.40.0
+Version:5.41.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.40.0.tar.xz -> bluez-qt-5.41.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.40.0/CMakeLists.txt 
new/bluez-qt-5.41.0/CMakeLists.txt
--- old/bluez-qt-5.40.0/CMakeLists.txt  2017-11-04 22:35:19.0 +0100
+++ new/bluez-qt-5.41.0/CMakeLists.txt  2017-12-02 10:52:37.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.40.0") # handled by release scripts
+set(KF5_VERSION "5.41.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.40.0 NO_MODULE)
+find_package(ECM 5.41.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.40.0/src/rfkill.cpp 
new/bluez-qt-5.41.0/src/rfkill.cpp
--- old/bluez-qt-5.40.0/src/rfkill.cpp  2017-11-04 22:35:19.0 +0100
+++ new/bluez-qt-5.41.0/src/rfkill.cpp  2017-12-02 10:52:37.0 +0100
@@ -128,7 +128,7 @@
 void Rfkill::init()
 {
 #ifdef Q_OS_LINUX
-m_readFd = ::open("/dev/rfkill", O_RDONLY);
+m_readFd = ::open("/dev/rfkill", O_RDONLY | O_CLOEXEC);
 
 if (m_readFd == -1) {
 qCWarning(BLUEZQT) << "Cannot open /dev/rfkill for reading!";
@@ -157,7 +157,7 @@
 return true;
 }
 
-m_writeFd = ::open("/dev/rfkill", O_WRONLY);
+m_writeFd = ::open("/dev/rfkill", O_WRONLY | O_CLOEXEC);
 
 if (m_writeFd == -1) {
 qCWarning(BLUEZQT) << "Cannot open /dev/rfkill for writing!";




commit bluez-qt for openSUSE:Factory

2017-11-16 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-11-16 14:35:08

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Thu Nov 16 14:35:08 2017 rev:32 rq:541629 version:5.40.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-10-27 
13:52:29.989038900 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-11-16 
14:35:08.275454028 +0100
@@ -1,0 +2,10 @@
+Mon Nov 13 07:01:13 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.40.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.40.0.php
+- Changes since 5.39.0:
+  * None
+
+---

Old:

  bluez-qt-5.39.0.tar.xz

New:

  bluez-qt-5.40.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.s3cMHB/_old  2017-11-16 14:35:09.023426914 +0100
+++ /var/tmp/diff_new_pack.s3cMHB/_new  2017-11-16 14:35:09.023426914 +0100
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.39
+%define _tar_path 5.40
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.39.0
+Version:5.40.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.39.0.tar.xz -> bluez-qt-5.40.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.39.0/CMakeLists.txt 
new/bluez-qt-5.40.0/CMakeLists.txt
--- old/bluez-qt-5.39.0/CMakeLists.txt  2017-10-07 13:06:36.0 +0200
+++ new/bluez-qt-5.40.0/CMakeLists.txt  2017-11-04 22:35:19.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.39.0") # handled by release scripts
+set(KF5_VERSION "5.40.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.39.0 NO_MODULE)
+find_package(ECM 5.40.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit bluez-qt for openSUSE:Factory

2017-10-27 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-10-27 13:52:27

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Fri Oct 27 13:52:27 2017 rev:31 rq:536295 version:5.39.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-09-19 
16:21:22.396439101 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-10-27 
13:52:29.989038900 +0200
@@ -1,0 +2,10 @@
+Mon Oct 23 06:41:36 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.39.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.39.0.php
+- Changes since 5.38.0:
+  * None
+
+---

Old:

  bluez-qt-5.38.0.tar.xz

New:

  bluez-qt-5.39.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.t7bJID/_old  2017-10-27 13:52:31.028990291 +0200
+++ /var/tmp/diff_new_pack.t7bJID/_new  2017-10-27 13:52:31.028990291 +0200
@@ -18,13 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.38
+%define _tar_path 5.39
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
 %{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.38.0
+Version:5.39.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.38.0.tar.xz -> bluez-qt-5.39.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.38.0/CMakeLists.txt 
new/bluez-qt-5.39.0/CMakeLists.txt
--- old/bluez-qt-5.38.0/CMakeLists.txt  2017-09-02 10:46:53.0 +0200
+++ new/bluez-qt-5.39.0/CMakeLists.txt  2017-10-07 13:06:36.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.38.0") # handled by release scripts
+set(KF5_VERSION "5.39.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.38.0 NO_MODULE)
+find_package(ECM 5.39.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit bluez-qt for openSUSE:Factory

2017-09-19 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-09-19 16:21:19

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Tue Sep 19 16:21:19 2017 rev:30 rq:526618 version:5.38.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-08-24 
17:52:57.295726087 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-09-19 
16:21:22.396439101 +0200
@@ -1,0 +2,12 @@
+Tue Sep 12 07:11:16 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.38.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.38.0.php
+- Changes since 5.37.0:
+  * autotests: remove now unnecessary compat code
+  * autotests: fix failure to find fakebluez in the bin dir.
+  * Autotests: Fix finding fakebluez binary (kde#383453)
+
+---

Old:

  bluez-qt-5.37.0.tar.xz

New:

  bluez-qt-5.38.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.Uwn0Ta/_old  2017-09-19 16:21:23.380300421 +0200
+++ /var/tmp/diff_new_pack.Uwn0Ta/_new  2017-09-19 16:21:23.384299856 +0200
@@ -18,9 +18,13 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.37
+%define _tar_path 5.38
+# Full KF5 version (e.g. 5.33.0)
+%{!?_kf5_version: %global _kf5_version %{version}}
+# Last major and minor KF5 version (e.g. 5.33)
+%{!?_kf5_bugfix_version: %global _kf5_bugfix_version %(echo %{_kf5_version} | 
awk -F. '{print $1"."$2}')}
 Name:   bluez-qt
-Version:5.37.0
+Version:5.38.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+
@@ -28,7 +32,7 @@
 Url:https://projects.kde.org/attica
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 BuildRequires:  cmake >= 3.0
-BuildRequires:  extra-cmake-modules >= %{_tar_path}
+BuildRequires:  extra-cmake-modules >= %{_kf5_bugfix_version}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  udev

++ bluez-qt-5.37.0.tar.xz -> bluez-qt-5.38.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.37.0/CMakeLists.txt 
new/bluez-qt-5.38.0/CMakeLists.txt
--- old/bluez-qt-5.37.0/CMakeLists.txt  2017-08-06 18:24:35.0 +0200
+++ new/bluez-qt-5.38.0/CMakeLists.txt  2017-09-02 10:46:53.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.37.0") # handled by release scripts
+set(KF5_VERSION "5.38.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.37.0 NO_MODULE)
+find_package(ECM 5.38.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.37.0/autotests/autotests.cpp 
new/bluez-qt-5.38.0/autotests/autotests.cpp
--- old/bluez-qt-5.37.0/autotests/autotests.cpp 2017-08-06 18:24:35.0 
+0200
+++ new/bluez-qt-5.38.0/autotests/autotests.cpp 2017-09-02 10:46:53.0 
+0200
@@ -64,9 +64,6 @@
 : QObject(nullptr)
 , m_fakebluezPath(QCoreApplication::applicationDirPath() + 
QStringLiteral("/fakebluez"))
 {
-// Fallback for old layout, can be removed after August 2017
-if (!QFile::exists(m_fakebluezPath))
-m_fakebluezPath = QFINDTESTDATA("fakebluez/fakebluez");
 }
 
 void StartJob::exec()




commit bluez-qt for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-08-24 17:52:54

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Thu Aug 24 17:52:54 2017 rev:29 rq:516650 version:5.37.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-07-17 
10:21:13.323721619 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-08-24 
17:52:57.295726087 +0200
@@ -1,0 +2,12 @@
+Sat Aug 12 09:23:13 UTC 2017 - christo...@krop.fr
+
+- Update to 5.37.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.37.0.php
+- Changes since 5.36.0 :
+  * Autotests: repair finding helper binary in current setup
+  * autotests: fix running with CTEST_PARALLEL_LEVEL=8
+  * autotests: prepare for CMAKE_RUNTIME_OUTPUT_DIRECTORY being set
+
+---

Old:

  bluez-qt-5.36.0.tar.xz

New:

  bluez-qt-5.37.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.TeOCTr/_old  2017-08-24 17:52:58.091613986 +0200
+++ /var/tmp/diff_new_pack.TeOCTr/_new  2017-08-24 17:52:58.095613423 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.36
+%define _tar_path 5.37
 Name:   bluez-qt
-Version:5.36.0
+Version:5.37.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.36.0.tar.xz -> bluez-qt-5.37.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.36.0/CMakeLists.txt 
new/bluez-qt-5.37.0/CMakeLists.txt
--- old/bluez-qt-5.36.0/CMakeLists.txt  2017-06-30 12:14:39.0 +0200
+++ new/bluez-qt-5.37.0/CMakeLists.txt  2017-08-06 18:24:35.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.36.0") # handled by release scripts
+set(KF5_VERSION "5.37.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.36.0 NO_MODULE)
+find_package(ECM 5.37.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -32,7 +32,7 @@
 )
 
 # Dependencies
-set(REQUIRED_QT_VERSION 5.6.0)
+set(REQUIRED_QT_VERSION 5.7.0)
 
 # Required Qt5 components to build this framework
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core DBus Network)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.36.0/autotests/CMakeLists.txt 
new/bluez-qt-5.37.0/autotests/CMakeLists.txt
--- old/bluez-qt-5.36.0/autotests/CMakeLists.txt2017-06-30 
12:14:39.0 +0200
+++ new/bluez-qt-5.37.0/autotests/CMakeLists.txt2017-08-06 
18:24:35.0 +0200
@@ -16,8 +16,9 @@
 foreach(_testname ${ARGN})
 add_executable(${_testname} ${_testname}.cpp ${bluezqt_autotests_SRCS})
 target_link_libraries(${_testname} Qt5::DBus Qt5::Test KF5BluezQt)
-add_test(bluezqt-${_testname} ${_testname})
+add_test(NAME bluezqt-${_testname} COMMAND ${_testname})
 ecm_mark_as_test(${_testname})
+set_tests_properties(bluezqt-${_testname} PROPERTIES RUN_SERIAL TRUE)
 endforeach(_testname)
 endmacro()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.36.0/autotests/autotests.cpp 
new/bluez-qt-5.37.0/autotests/autotests.cpp
--- old/bluez-qt-5.36.0/autotests/autotests.cpp 2017-06-30 12:14:39.0 
+0200
+++ new/bluez-qt-5.37.0/autotests/autotests.cpp 2017-08-06 18:24:35.0 
+0200
@@ -49,6 +49,8 @@
 
 void exec();
 
+bool foundFakeBluez() const { return !m_fakebluezPath.isEmpty(); }
+
 private Q_SLOTS:
 void processError(QProcess::ProcessError error);
 void processFinished(int code, QProcess::ExitStatus status);
@@ -60,8 +62,11 @@
 
 StartJob::StartJob()
 : QObject(nullptr)
-, m_fakebluezPath(QFINDTESTDATA("fakebluez/fakebluez"))
+, m_fakebluezPath(QCoreApplication::applicationDirPath() + 
QStringLiteral("/fakebluez"))
 {
+// Fallback for old layout, can be removed after August 2017
+if (!QFile::exists(m_fakebluezPath))
+m_fakebluezPath = QFINDTESTDATA("fakebluez/fakebluez");
 }
 
 void StartJob::exec()
@@ -124,6 +129,7 @@
 }
 
 StartJob job;
+QVERIFY(job.foundFakeBluez());
 job.exec();
 }
 
diff -urN 

commit bluez-qt for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-07-17 10:21:11

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Mon Jul 17 10:21:11 2017 rev:28 rq:509876 version:5.36.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-07-05 
23:47:44.890580876 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-07-17 
10:21:13.323721619 +0200
@@ -1,0 +2,12 @@
+Wed Jul 12 07:13:58 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.36.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.36.0.php
+- Changes since 5.35.0:
+  * API dox: note CamelCase includes by @class tag
+  * API dox: add namespace to classes named in README.md
+  * [FEATURE] Option to build & install QCH file with the public API dox
+
+---

Old:

  bluez-qt-5.35.0.tar.xz

New:

  bluez-qt-5.36.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.6sDJ3v/_old  2017-07-17 10:21:13.971630286 +0200
+++ /var/tmp/diff_new_pack.6sDJ3v/_new  2017-07-17 10:21:13.975629722 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.35
+%define _tar_path 5.36
 Name:   bluez-qt
-Version:5.35.0
+Version:5.36.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.35.0.tar.xz -> bluez-qt-5.36.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.35.0/CMakeLists.txt 
new/bluez-qt-5.36.0/CMakeLists.txt
--- old/bluez-qt-5.35.0/CMakeLists.txt  2017-06-03 10:44:33.0 +0200
+++ new/bluez-qt-5.36.0/CMakeLists.txt  2017-06-30 12:14:39.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.35.0") # handled by release scripts
+set(KF5_VERSION "5.36.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.35.0 NO_MODULE)
+find_package(ECM 5.36.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -14,12 +14,16 @@
 include(GenerateExportHeader)
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
+include(ECMAddQch)
 include(CMakePackageConfigHelpers)
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
 
+option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt 
Assistant, Qt Creator & KDevelop)" OFF)
+add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. 
Qt Assistant, Qt Creator & KDevelop)")
+
 ecm_setup_version(PROJECT
 VARIABLE_PREFIX BLUEZQT
 VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/bluezqt_version.h"
@@ -58,6 +62,16 @@
 # Create a Config.cmake and a ConfigVersion.cmake file and install them
 set(CMAKECONFIG_INSTALL_DIR "${CMAKECONFIG_INSTALL_PREFIX}/KF5BluezQt")
 
+if (BUILD_QCH)
+ecm_install_qch_export(
+TARGETS KF5BluezQt_QCH
+FILE KF5BluezQtQchTargets.cmake
+DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
+COMPONENT Devel
+)
+set(PACKAGE_INCLUDE_QCHTARGETS 
"include(\"\${CMAKE_CURRENT_LIST_DIR}/KF5BluezQtQchTargets.cmake\")")
+endif()
+
 configure_package_config_file(
 "${CMAKE_CURRENT_SOURCE_DIR}/KF5BluezQtConfig.cmake.in"
 "${CMAKE_CURRENT_BINARY_DIR}/KF5BluezQtConfig.cmake"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.35.0/KF5BluezQtConfig.cmake.in 
new/bluez-qt-5.36.0/KF5BluezQtConfig.cmake.in
--- old/bluez-qt-5.35.0/KF5BluezQtConfig.cmake.in   2017-06-03 
10:44:33.0 +0200
+++ new/bluez-qt-5.36.0/KF5BluezQtConfig.cmake.in   2017-06-30 
12:14:39.0 +0200
@@ -4,4 +4,4 @@
 find_dependency(Qt5Core @REQUIRED_QT_VERSION@)
 
 include("${CMAKE_CURRENT_LIST_DIR}/KF5BluezQtTargets.cmake")
-
+@PACKAGE_INCLUDE_QCHTARGETS@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.35.0/README.md 
new/bluez-qt-5.36.0/README.md
--- old/bluez-qt-5.35.0/README.md   2017-06-03 10:44:33.0 +0200
+++ new/bluez-qt-5.36.0/README.md   2017-06-30 12:14:39.0 +0200
@@ -7,10 +7,10 @@
 BluezQt is a library for communication with BlueZ system and session daemons.
 
 
-  Manager class is used to communicate 

commit bluez-qt for openSUSE:Factory

2017-07-05 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-07-05 23:47:42

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Wed Jul  5 23:47:42 2017 rev:27 rq:502916 version:5.35.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-06-01 
16:17:06.515325769 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-07-05 
23:47:44.890580876 +0200
@@ -1,0 +2,11 @@
+Sun Jun 11 09:27:42 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.35.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.35.0.php
+- Changes since 5.34.0:
+  * Pass an explicit list of arguments. This prevents QProcess from trying to 
handle our space containing path through a shell
+  * Fix property changes being missed immediately after an obejct is added 
(kde#377405)
+
+---

Old:

  bluez-qt-5.34.0.tar.xz

New:

  bluez-qt-5.35.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.MgK81a/_old  2017-07-05 23:47:45.526491311 +0200
+++ /var/tmp/diff_new_pack.MgK81a/_new  2017-07-05 23:47:45.526491311 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.34
+%define _tar_path 5.35
 Name:   bluez-qt
-Version:5.34.0
+Version:5.35.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.34.0.tar.xz -> bluez-qt-5.35.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.34.0/CMakeLists.txt 
new/bluez-qt-5.35.0/CMakeLists.txt
--- old/bluez-qt-5.34.0/CMakeLists.txt  2017-05-06 10:19:23.0 +0200
+++ new/bluez-qt-5.35.0/CMakeLists.txt  2017-06-03 10:44:33.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.34.0") # handled by release scripts
+set(KF5_VERSION "5.35.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.34.0 NO_MODULE)
+find_package(ECM 5.35.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.34.0/autotests/autotests.cpp 
new/bluez-qt-5.35.0/autotests/autotests.cpp
--- old/bluez-qt-5.34.0/autotests/autotests.cpp 2017-05-06 10:19:23.0 
+0200
+++ new/bluez-qt-5.35.0/autotests/autotests.cpp 2017-06-03 10:44:33.0 
+0200
@@ -74,7 +74,7 @@
 connect(FakeBluez::s_process, SIGNAL(error(QProcess::ProcessError)), this, 
SLOT(processError(QProcess::ProcessError)));
 connect(FakeBluez::s_process, SIGNAL(finished(int,QProcess::ExitStatus)), 
this, SLOT(processFinished(int,QProcess::ExitStatus)));
 
-FakeBluez::s_process->start(m_fakebluezPath);
+FakeBluez::s_process->start(m_fakebluezPath, QStringList());
 
 m_eventLoop.exec();
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/bluez-qt-5.34.0/autotests/fakebluez/devicemanager.cpp 
new/bluez-qt-5.35.0/autotests/fakebluez/devicemanager.cpp
--- old/bluez-qt-5.34.0/autotests/fakebluez/devicemanager.cpp   2017-05-06 
10:19:23.0 +0200
+++ new/bluez-qt-5.35.0/autotests/fakebluez/devicemanager.cpp   2017-06-03 
10:44:33.0 +0200
@@ -43,6 +43,8 @@
 runChangeAdapterProperty(properties);
 } else if (actionName == QLatin1String("change-device-property")) {
 runChangeDeviceProperty(properties);
+} else if (actionName == QLatin1String("bug377405")) {
+runBug377405();
 }
 }
 
@@ -103,3 +105,20 @@
 
 
device->changeProperty(properties.value(QStringLiteral("Name")).toString(), 
properties.value(QStringLiteral("Value")));
 }
+
+void DeviceManager::runBug377405()
+{
+QDBusObjectPath adapter1path = 
QDBusObjectPath(QStringLiteral("/org/bluez/hci0"));
+QVariantMap adapterProps;
+adapterProps[QStringLiteral("Path")] = QVariant::fromValue(adapter1path);
+adapterProps[QStringLiteral("Powered")] = false;
+
+runCreateAdapterAction(adapterProps);
+
+QVariantMap properties;
+properties[QStringLiteral("Path")] = QVariant::fromValue(adapter1path);
+properties[QStringLiteral("Name")] = QStringLiteral("Powered");
+properties[QStringLiteral("Value")] = true;
+
+

commit bluez-qt for openSUSE:Factory

2017-06-01 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-06-01 16:17:05

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Thu Jun  1 16:17:05 2017 rev:26 rq:495013 version:5.34.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-04-30 
21:15:20.429093639 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-06-01 
16:17:06.515325769 +0200
@@ -1,0 +2,10 @@
+Mon May 15 13:53:16 CEST 2017 - fab...@ritter-vogt.de
+
+- Update to 5.34.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.34.0.php
+- Changes since 5.33.0:
+  * Add .arcconfig
+
+---

Old:

  bluez-qt-5.33.0.tar.xz

New:

  bluez-qt-5.34.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.eNu5tV/_old  2017-06-01 16:17:07.159234967 +0200
+++ /var/tmp/diff_new_pack.eNu5tV/_new  2017-06-01 16:17:07.163234404 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.33
+%define _tar_path 5.34
 Name:   bluez-qt
-Version:5.33.0
+Version:5.34.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.33.0.tar.xz -> bluez-qt-5.34.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.33.0/.arcconfig 
new/bluez-qt-5.34.0/.arcconfig
--- old/bluez-qt-5.33.0/.arcconfig  1970-01-01 01:00:00.0 +0100
+++ new/bluez-qt-5.34.0/.arcconfig  2017-05-06 10:19:23.0 +0200
@@ -0,0 +1,3 @@
+{
+  "phabricator.uri" : "https://phabricator.kde.org/;
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.33.0/CMakeLists.txt 
new/bluez-qt-5.34.0/CMakeLists.txt
--- old/bluez-qt-5.33.0/CMakeLists.txt  2017-04-01 11:05:11.0 +0200
+++ new/bluez-qt-5.34.0/CMakeLists.txt  2017-05-06 10:19:23.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.33.0") # handled by release scripts
+set(KF5_VERSION "5.34.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.33.0 NO_MODULE)
+find_package(ECM 5.34.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit bluez-qt for openSUSE:Factory

2017-04-30 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-04-30 21:15:14

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Sun Apr 30 21:15:14 2017 rev:25 rq:492034 version:5.33.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-03-28 
15:07:21.495896178 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-04-30 
21:15:20.429093639 +0200
@@ -1,0 +2,12 @@
+Sat Apr 15 10:11:41 CEST 2017 - lbeltr...@kde.org
+
+- Update to 5.33.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.33.0.php
+- Changes since 5.32.0:
+  * Upgrade ECM and KF5 version requirements for 5.33.0 release.
+  * Provide device type for Low Energy devices
+  * Upgrade KF5 version to 5.33.0.
+
+---

Old:

  bluez-qt-5.32.0.tar.xz

New:

  bluez-qt-5.33.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.t55I20/_old  2017-04-30 21:15:22.232839354 +0200
+++ /var/tmp/diff_new_pack.t55I20/_new  2017-04-30 21:15:22.236838789 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.32
+%define _tar_path 5.33
 Name:   bluez-qt
-Version:5.32.0
+Version:5.33.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.32.0.tar.xz -> bluez-qt-5.33.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.32.0/CMakeLists.txt 
new/bluez-qt-5.33.0/CMakeLists.txt
--- old/bluez-qt-5.32.0/CMakeLists.txt  2017-03-03 13:38:41.0 +0100
+++ new/bluez-qt-5.33.0/CMakeLists.txt  2017-04-01 11:05:11.0 +0200
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.32.0") # handled by release scripts
+set(KF5_VERSION "5.33.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.32.0 NO_MODULE)
+find_package(ECM 5.33.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.32.0/src/device.cpp 
new/bluez-qt-5.33.0/src/device.cpp
--- old/bluez-qt-5.32.0/src/device.cpp  2017-03-03 13:38:41.0 +0100
+++ new/bluez-qt-5.33.0/src/device.cpp  2017-04-01 11:05:11.0 +0200
@@ -88,6 +88,10 @@
 
 Device::Type Device::type() const
 {
+if (deviceClass() == 0) {
+return appearanceToType(appearance());
+}
+
 return classToType(d->m_deviceClass);
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.32.0/src/device.h 
new/bluez-qt-5.33.0/src/device.h
--- old/bluez-qt-5.32.0/src/device.h2017-03-03 13:38:41.0 +0100
+++ new/bluez-qt-5.33.0/src/device.h2017-04-01 11:05:11.0 +0200
@@ -190,9 +190,11 @@
 /**
  * Returns a type of the device.
  *
- * Type of device is deduced from its class.
+ * Type of device is deduced from its class (for Bluetooth Classic devices)
+ * or its appearance (for Bluetooth Low Energy devices).
  *
  * @see deviceClass() const
+ * @see appearance() const
  *
  * @return type of device
  */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.32.0/src/utils.cpp 
new/bluez-qt-5.33.0/src/utils.cpp
--- old/bluez-qt-5.32.0/src/utils.cpp   2017-03-03 13:38:41.0 +0100
+++ new/bluez-qt-5.33.0/src/utils.cpp   2017-04-01 11:05:11.0 +0200
@@ -253,4 +253,38 @@
 }
 }
 
+Device::Type appearanceToType(quint16 appearance)
+{
+switch ((appearance & 0xffc0) >> 6) {
+case 0x00:
+return Device::Uncategorized;
+case 0x01:  // Generic Phone
+return Device::Phone;
+case 0x02:  // Generic Computer
+return Device::Computer;
+case 0x05:  // Generic Display
+return Device::AudioVideo;
+case 0x0a:  // Generic Media Player
+return Device::AudioVideo;
+case 0x0b:  // Generic Barcode Scanner
+return Device::Peripheral;
+case 0x0f: // Generic HID
+switch (appearance & 0x3f) {
+case 0x01:  // Keyboard
+return Device::Keyboard;
+case 0x02:  // Mouse
+return Device::Mouse;

commit bluez-qt for openSUSE:Factory

2017-03-28 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-03-28 15:07:18

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Tue Mar 28 15:07:18 2017 rev:24 rq:481482 version:5.32.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-03-03 
14:41:55.307714169 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-03-28 
15:07:21.495896178 +0200
@@ -1,0 +2,11 @@
+Sun Mar 19 14:50:12 CET 2017 - lbeltr...@kde.org
+
+- Update to 5.32.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.32.0.php
+- Changes since 5.31.0:
+  * Upgrade ECM and KF5 version requirements for 5.32.0 release.
+  * Upgrade KF5 version to 5.32.0.
+
+---

Old:

  bluez-qt-5.31.0.tar.xz

New:

  bluez-qt-5.32.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.j1EsMD/_old  2017-03-28 15:07:22.167800983 +0200
+++ /var/tmp/diff_new_pack.j1EsMD/_new  2017-03-28 15:07:22.167800983 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.31
+%define _tar_path 5.32
 Name:   bluez-qt
-Version:5.31.0
+Version:5.32.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+
@@ -43,8 +43,8 @@
 
 %package -n lib%{_libname}%{sonum}
 Summary:Async Bluez wrapper library - development files
-Group:  System/GUI/KDE
 # KUF only due to version number overlapping
+Group:  System/GUI/KDE
 Obsoletes:  lib%{_libname}5
 
 %description -n lib%{_libname}%{sonum}

++ bluez-qt-5.31.0.tar.xz -> bluez-qt-5.32.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.31.0/CMakeLists.txt 
new/bluez-qt-5.32.0/CMakeLists.txt
--- old/bluez-qt-5.31.0/CMakeLists.txt  2017-02-04 19:02:11.0 +0100
+++ new/bluez-qt-5.32.0/CMakeLists.txt  2017-03-03 13:38:41.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.31.0") # handled by release scripts
+set(KF5_VERSION "5.32.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.31.0 NO_MODULE)
+find_package(ECM 5.32.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 




commit bluez-qt for openSUSE:Factory

2017-03-03 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-03-03 14:41:54

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Fri Mar  3 14:41:54 2017 rev:23 rq:461385 version:5.31.0

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2017-02-03 
17:32:07.975987510 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-03-03 
14:41:55.307714169 +0100
@@ -1,0 +2,7 @@
+Thu Feb  9 09:21:23 UTC 2017 - hrvoje.sen...@gmail.com
+
+- Update to 5.31.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.31.0.php
+
+---

Old:

  bluez-qt-5.30.0.tar.xz

New:

  bluez-qt-5.31.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.5GO6di/_old  2017-03-03 14:41:55.847637733 +0100
+++ /var/tmp/diff_new_pack.5GO6di/_new  2017-03-03 14:41:55.847637733 +0100
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.30
+%define _tar_path 5.31
 Name:   bluez-qt
-Version:5.30.0
+Version:5.31.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+
@@ -32,10 +32,10 @@
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  udev
-BuildRequires:  cmake(Qt5Core) >= 5.5.0
-BuildRequires:  cmake(Qt5DBus) >= 5.5.0
-BuildRequires:  cmake(Qt5Network) >= 5.5.0
-BuildRequires:  cmake(Qt5Qml) >= 5.5.0
+BuildRequires:  cmake(Qt5Core) >= 5.6.0
+BuildRequires:  cmake(Qt5DBus) >= 5.6.0
+BuildRequires:  cmake(Qt5Network) >= 5.6.0
+BuildRequires:  cmake(Qt5Qml) >= 5.6.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -73,7 +73,7 @@
 Summary:Async Bluez wrapper library - development files
 Group:  Development/Libraries/C and C++
 Requires:   lib%{_libname}%{sonum} = %{version}
-Requires:   cmake(Qt5Core) >= 5.5.0
+Requires:   cmake(Qt5Core) >= 5.6.0
 
 %description devel
 Development files for QBluez Async Bluez wrapper library.

++ bluez-qt-5.30.0.tar.xz -> bluez-qt-5.31.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.30.0/CMakeLists.txt 
new/bluez-qt-5.31.0/CMakeLists.txt
--- old/bluez-qt-5.30.0/CMakeLists.txt  2017-01-08 16:12:35.0 +0100
+++ new/bluez-qt-5.31.0/CMakeLists.txt  2017-02-04 19:02:11.0 +0100
@@ -1,10 +1,10 @@
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.30.0") # handled by release scripts
+set(KF5_VERSION "5.31.0") # handled by release scripts
 project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.30.0 NO_MODULE)
+find_package(ECM 5.31.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -28,7 +28,7 @@
 )
 
 # Dependencies
-set(REQUIRED_QT_VERSION 5.5.0)
+set(REQUIRED_QT_VERSION 5.6.0)
 
 # Required Qt5 components to build this framework
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core DBus Network)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.30.0/autotests/adaptertest.cpp 
new/bluez-qt-5.31.0/autotests/adaptertest.cpp
--- old/bluez-qt-5.30.0/autotests/adaptertest.cpp   2017-01-08 
16:12:35.0 +0100
+++ new/bluez-qt-5.31.0/autotests/adaptertest.cpp   2017-02-04 
19:02:11.0 +0100
@@ -35,7 +35,7 @@
 using namespace BluezQt;
 
 AdapterTest::AdapterTest()
-: m_manager(0)
+: m_manager(nullptr)
 {
 Autotests::registerMetatypes();
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.30.0/autotests/agentmanagertest.h 
new/bluez-qt-5.31.0/autotests/agentmanagertest.h
--- old/bluez-qt-5.30.0/autotests/agentmanagertest.h2017-01-08 
16:12:35.0 +0100
+++ new/bluez-qt-5.31.0/autotests/agentmanagertest.h2017-02-04 
19:02:11.0 +0100
@@ -32,7 +32,7 @@
 Q_OBJECT
 
 public:
-explicit TestAgent(QObject *parent = Q_NULLPTR);
+explicit TestAgent(QObject *parent = nullptr);
 
 QDBusObjectPath objectPath() const Q_DECL_OVERRIDE;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.30.0/autotests/autotests.cpp 
new/bluez-qt-5.31.0/autotests/autotests.cpp
--- old/bluez-qt-5.30.0/autotests/autotests.cpp 2017-01-08 16:12:35.0 
+0100
+++ 

commit bluez-qt for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2017-01-31 11:53:43

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-12-17 
11:03:14.480323935 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2017-02-03 
17:32:07.975987510 +0100
@@ -1,0 +2,7 @@
+Sun Jan  8 23:37:11 UTC 2017 - hrvoje.sen...@gmail.com
+
+- Update to 5.30.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.30.0.php
+
+---

Old:

  bluez-qt-5.29.0.tar.xz

New:

  bluez-qt-5.30.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.c7fbxO/_old  2017-02-03 17:32:08.683887317 +0100
+++ /var/tmp/diff_new_pack.c7fbxO/_new  2017-02-03 17:32:08.687886751 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bluez-qt
 #
-# 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
@@ -18,16 +18,16 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.29
+%define _tar_path 5.30
 Name:   bluez-qt
-Version:5.29.0
+Version:5.30.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/attica
 Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
-BuildRequires:  cmake >= 2.8.12
+BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem

++ bluez-qt-5.29.0.tar.xz -> bluez-qt-5.30.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.29.0/CMakeLists.txt 
new/bluez-qt-5.30.0/CMakeLists.txt
--- old/bluez-qt-5.29.0/CMakeLists.txt  2016-12-03 11:05:55.0 +0100
+++ new/bluez-qt-5.30.0/CMakeLists.txt  2017-01-08 16:12:35.0 +0100
@@ -1,9 +1,10 @@
-cmake_minimum_required(VERSION 2.8.12)
+cmake_minimum_required(VERSION 3.0)
 
-project(BluezQt)
+set(KF5_VERSION "5.30.0") # handled by release scripts
+project(BluezQt VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.29.0 NO_MODULE)
+find_package(ECM 5.30.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -13,14 +14,13 @@
 include(GenerateExportHeader)
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
-include(ECMPackageConfigHelpers)
+include(CMakePackageConfigHelpers)
 include(KDEInstallDirs)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.29.0") # handled by release scripts
 
-ecm_setup_version(${KF5_VERSION}
+ecm_setup_version(PROJECT
 VARIABLE_PREFIX BLUEZQT
 VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/bluezqt_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5BluezQtConfigVersion.cmake"
@@ -58,7 +58,7 @@
 # Create a Config.cmake and a ConfigVersion.cmake file and install them
 set(CMAKECONFIG_INSTALL_DIR "${CMAKECONFIG_INSTALL_PREFIX}/KF5BluezQt")
 
-ecm_configure_package_config_file(
+configure_package_config_file(
 "${CMAKE_CURRENT_SOURCE_DIR}/KF5BluezQtConfig.cmake.in"
 "${CMAKE_CURRENT_BINARY_DIR}/KF5BluezQtConfig.cmake"
 INSTALL_DESTINATION "${CMAKECONFIG_INSTALL_DIR}"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.29.0/KF5BluezQtConfig.cmake.in 
new/bluez-qt-5.30.0/KF5BluezQtConfig.cmake.in
--- old/bluez-qt-5.29.0/KF5BluezQtConfig.cmake.in   2016-12-03 
11:05:55.0 +0100
+++ new/bluez-qt-5.30.0/KF5BluezQtConfig.cmake.in   2017-01-08 
16:12:35.0 +0100
@@ -1,5 +1,6 @@
 @PACKAGE_INIT@
 
+include(CMakeFindDependencyMacro)
 find_dependency(Qt5Core @REQUIRED_QT_VERSION@)
 
 include("${CMAKE_CURRENT_LIST_DIR}/KF5BluezQtTargets.cmake")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.29.0/src/agent.h 
new/bluez-qt-5.30.0/src/agent.h
--- old/bluez-qt-5.29.0/src/agent.h 2016-12-03 11:05:55.0 +0100
+++ new/bluez-qt-5.30.0/src/agent.h 2017-01-08 

commit bluez-qt for openSUSE:Factory

2016-11-17 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-11-17 12:25:51

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-10-28 
12:15:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-11-17 
12:25:54.0 +0100
@@ -1,0 +2,18 @@
+Mon Nov 14 16:03:02 UTC 2016 - hrvoje.sen...@gmail.com
+
+- (Build)Require udev so udevrulesdir gets owned
+
+---
+Mon Nov 14 12:54:19 UTC 2016 - alarr...@suse.com
+
+- Specify the file to be included in bluez-qt-udev instead of
+  owning the /lib/udev/ directory.
+
+---
+Sat Nov  5 20:05:12 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.28.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.28.0.php
+
+---

Old:

  bluez-qt-5.27.0.tar.xz

New:

  bluez-qt-5.28.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.gBwYuH/_old  2016-11-17 12:25:54.0 +0100
+++ /var/tmp/diff_new_pack.gBwYuH/_new  2016-11-17 12:25:54.0 +0100
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.27
+%define _tar_path 5.28
 Name:   bluez-qt
-Version:5.27.0
+Version:5.28.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+
@@ -31,6 +31,7 @@
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
+BuildRequires:  udev
 BuildRequires:  cmake(Qt5Core) >= 5.5.0
 BuildRequires:  cmake(Qt5DBus) >= 5.5.0
 BuildRequires:  cmake(Qt5Network) >= 5.5.0
@@ -62,6 +63,7 @@
 %package udev
 Summary:bluez-qt integration with udev
 Group:  System/Base
+Requires:   udev
 
 %description udev
 Async Bluez wrapper library.
@@ -103,7 +105,7 @@
 
 %files udev
 %defattr(-,root,root)
-%{_libexecdir}/udev/
+%{_libexecdir}/udev/61-kde-bluetooth-rfkill.rules
 
 %files devel
 %defattr(-,root,root)

++ bluez-qt-5.27.0.tar.xz -> bluez-qt-5.28.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.27.0/CMakeLists.txt 
new/bluez-qt-5.28.0/CMakeLists.txt
--- old/bluez-qt-5.27.0/CMakeLists.txt  2016-10-02 09:42:01.0 +0200
+++ new/bluez-qt-5.28.0/CMakeLists.txt  2016-11-05 11:44:20.0 +0100
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.27.0 NO_MODULE)
+find_package(ECM 5.28.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.27.0") # handled by release scripts
+set(KF5_VERSION "5.28.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT




commit bluez-qt for openSUSE:Factory

2016-10-28 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-10-28 12:15:21

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-09-14 
23:06:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-10-28 
12:15:22.0 +0200
@@ -1,0 +2,8 @@
+Sun Oct  2 12:48:33 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.27.0
+  * Fix crash when trying to add device to unknown adapter (kde#364416)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.27.0.php
+
+---

Old:

  bluez-qt-5.26.0.tar.xz

New:

  bluez-qt-5.27.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.XnSCCW/_old  2016-10-28 12:15:23.0 +0200
+++ /var/tmp/diff_new_pack.XnSCCW/_new  2016-10-28 12:15:23.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.26
+%define _tar_path 5.27
 Name:   bluez-qt
-Version:5.26.0
+Version:5.27.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.26.0.tar.xz -> bluez-qt-5.27.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.26.0/CMakeLists.txt 
new/bluez-qt-5.27.0/CMakeLists.txt
--- old/bluez-qt-5.26.0/CMakeLists.txt  2016-09-06 00:09:50.0 +0200
+++ new/bluez-qt-5.27.0/CMakeLists.txt  2016-10-02 09:42:01.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.26.0 NO_MODULE)
+find_package(ECM 5.27.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.26.0") # handled by release scripts
+set(KF5_VERSION "5.27.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.26.0/autotests/managertest.cpp 
new/bluez-qt-5.27.0/autotests/managertest.cpp
--- old/bluez-qt-5.26.0/autotests/managertest.cpp   2016-09-06 
00:09:50.0 +0200
+++ new/bluez-qt-5.27.0/autotests/managertest.cpp   2016-10-02 
09:42:01.0 +0200
@@ -409,4 +409,32 @@
 delete manager;
 }
 
+void ManagerTest::bug364416()
+{
+// Bug 364416: Crash when device is added with adapter that is unknown to 
Manager
+
+FakeBluez::start();
+FakeBluez::runTest(QStringLiteral("bluez-standard"));
+
+Manager *manager = new Manager;
+
+InitManagerJob *job = manager->init();
+job->exec();
+
+QVERIFY(!job->error());
+
+// Add device to invalid adapter
+QVariantMap deviceProps;
+deviceProps[QStringLiteral("Path")] = 
QVariant::fromValue(QDBusObjectPath("/org/bluez/hci0/dev_40_79_6A_0C_39_75"));
+deviceProps[QStringLiteral("Adapter")] = 
QVariant::fromValue(QDBusObjectPath(QStringLiteral("/org/bluez/hci0")));
+deviceProps[QStringLiteral("Address")] = 
QStringLiteral("40:79:6A:0C:39:75");
+deviceProps[QStringLiteral("Name")] = QStringLiteral("TestDevice");
+FakeBluez::runAction(QStringLiteral("devicemanager"), 
QStringLiteral("create-device"), deviceProps);
+
+// Wait for Manager to receive the interfacesAdded signal
+QTest::qWait(100);
+
+delete manager;
+}
+
 QTEST_MAIN(ManagerTest)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.26.0/autotests/managertest.h 
new/bluez-qt-5.27.0/autotests/managertest.h
--- old/bluez-qt-5.26.0/autotests/managertest.h 2016-09-06 00:09:50.0 
+0200
+++ new/bluez-qt-5.27.0/autotests/managertest.h 2016-10-02 09:42:01.0 
+0200
@@ -40,6 +40,7 @@
 void usableAdapterTest();
 void deviceForAddressTest();
 void adapterWithDevicesRemovedTest();
+void bug364416();
 
 };
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.26.0/src/debug.cpp 
new/bluez-qt-5.27.0/src/debug.cpp
--- old/bluez-qt-5.26.0/src/debug.cpp   2016-09-06 00:09:50.0 +0200
+++ new/bluez-qt-5.27.0/src/debug.cpp   2016-10-02 09:42:01.0 +0200
@@ -22,9 +22,5 @@
 
 #include "debug.h"
 
-#if 

commit bluez-qt for openSUSE:Factory

2016-09-14 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-09-14 23:06:23

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-08-29 
14:54:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-09-14 
23:06:25.0 +0200
@@ -1,0 +2,8 @@
+Tue Sep  6 20:45:56 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.26.0
+  * Fix include dir in pri file
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.26.0.php
+
+---

Old:

  bluez-qt-5.25.0.tar.xz

New:

  bluez-qt-5.26.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.sBN6uG/_old  2016-09-14 23:06:26.0 +0200
+++ /var/tmp/diff_new_pack.sBN6uG/_new  2016-09-14 23:06:26.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.25
+%define _tar_path 5.26
 Name:   bluez-qt
-Version:5.25.0
+Version:5.26.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.25.0.tar.xz -> bluez-qt-5.26.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.25.0/CMakeLists.txt 
new/bluez-qt-5.26.0/CMakeLists.txt
--- old/bluez-qt-5.25.0/CMakeLists.txt  2016-08-06 10:24:31.0 +0200
+++ new/bluez-qt-5.26.0/CMakeLists.txt  2016-09-06 00:09:50.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.25.0 NO_MODULE)
+find_package(ECM 5.26.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.25.0") # handled by release scripts
+set(KF5_VERSION "5.26.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.25.0/src/CMakeLists.txt 
new/bluez-qt-5.26.0/src/CMakeLists.txt
--- old/bluez-qt-5.25.0/src/CMakeLists.txt  2016-08-06 10:24:31.0 
+0200
+++ new/bluez-qt-5.26.0/src/CMakeLists.txt  2016-09-06 00:09:50.0 
+0200
@@ -126,6 +126,7 @@
 LIB_NAME KF5BluezQt
 DEPS "core"
 FILENAME_VAR PRI_FILENAME
+INCLUDE_INSTALL_DIR ${KDE_INSTALL_INCLUDEDIR_KF5}/BluezQt
 )
 install(FILES ${PRI_FILENAME}
 DESTINATION ${ECM_MKSPECS_INSTALL_DIR})




commit bluez-qt for openSUSE:Factory

2016-08-29 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-08-29 14:54:20

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-07-15 
12:30:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-08-29 
14:54:22.0 +0200
@@ -1,0 +2,8 @@
+Sun Aug  7 21:49:32 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.25.0
+  * Qt >= 5.5 is now required
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.25.0.php
+
+---

Old:

  bluez-qt-5.24.0.tar.xz

New:

  bluez-qt-5.25.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.g8ApDy/_old  2016-08-29 14:54:23.0 +0200
+++ /var/tmp/diff_new_pack.g8ApDy/_new  2016-08-29 14:54:23.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.24
+%define _tar_path 5.25
 Name:   bluez-qt
-Version:5.24.0
+Version:5.25.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+
@@ -31,10 +31,10 @@
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  cmake(Qt5Core) >= 5.4.0
-BuildRequires:  cmake(Qt5DBus) >= 5.4.0
-BuildRequires:  cmake(Qt5Network) >= 5.4.0
-BuildRequires:  cmake(Qt5Qml) >= 5.4.0
+BuildRequires:  cmake(Qt5Core) >= 5.5.0
+BuildRequires:  cmake(Qt5DBus) >= 5.5.0
+BuildRequires:  cmake(Qt5Network) >= 5.5.0
+BuildRequires:  cmake(Qt5Qml) >= 5.5.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -71,7 +71,7 @@
 Summary:Async Bluez wrapper library - development files
 Group:  Development/Libraries/C and C++
 Requires:   lib%{_libname}%{sonum} = %{version}
-Requires:   cmake(Qt5Core) >= 5.4.0
+Requires:   cmake(Qt5Core) >= 5.5.0
 
 %description devel
 Development files for QBluez Async Bluez wrapper library.

++ bluez-qt-5.24.0.tar.xz -> bluez-qt-5.25.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.24.0/CMakeLists.txt 
new/bluez-qt-5.25.0/CMakeLists.txt
--- old/bluez-qt-5.24.0/CMakeLists.txt  2016-07-02 10:38:54.0 +0200
+++ new/bluez-qt-5.25.0/CMakeLists.txt  2016-08-06 10:24:31.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.24.0 NO_MODULE)
+find_package(ECM 5.25.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.24.0") # handled by release scripts
+set(KF5_VERSION "5.25.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
@@ -28,7 +28,7 @@
 )
 
 # Dependencies
-set(REQUIRED_QT_VERSION 5.4.0)
+set(REQUIRED_QT_VERSION 5.5.0)
 
 # Required Qt5 components to build this framework
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core DBus Network)




commit bluez-qt for openSUSE:Factory

2016-07-15 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-07-15 12:30:13

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-07-03 
12:19:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-07-15 
12:30:16.0 +0200
@@ -1,0 +2,7 @@
+Wed Jul  6 15:01:23 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.24.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.24.0.php
+
+---

Old:

  bluez-qt-5.23.0.tar.xz

New:

  bluez-qt-5.24.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.n1focs/_old  2016-07-15 12:30:17.0 +0200
+++ /var/tmp/diff_new_pack.n1focs/_new  2016-07-15 12:30:17.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.23
+%define _tar_path 5.24
 Name:   bluez-qt
-Version:5.23.0
+Version:5.24.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.23.0.tar.xz -> bluez-qt-5.24.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.23.0/CMakeLists.txt 
new/bluez-qt-5.24.0/CMakeLists.txt
--- old/bluez-qt-5.23.0/CMakeLists.txt  2016-06-06 11:24:22.0 +0200
+++ new/bluez-qt-5.24.0/CMakeLists.txt  2016-07-02 10:38:54.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.23.0 NO_MODULE)
+find_package(ECM 5.24.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.23.0") # handled by release scripts
+set(KF5_VERSION "5.24.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT




commit bluez-qt for openSUSE:Factory

2016-07-03 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-07-03 12:19:07

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-05-19 
12:05:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-07-03 
12:19:08.0 +0200
@@ -1,0 +2,7 @@
+Mon Jun  6 21:22:40 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.23.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.23.0.php
+
+---

Old:

  bluez-qt-5.22.0.tar.xz

New:

  bluez-qt-5.23.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.kVvmjR/_old  2016-07-03 12:19:09.0 +0200
+++ /var/tmp/diff_new_pack.kVvmjR/_new  2016-07-03 12:19:09.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.22
+%define _tar_path 5.23
 Name:   bluez-qt
-Version:5.22.0
+Version:5.23.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.22.0.tar.xz -> bluez-qt-5.23.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.22.0/CMakeLists.txt 
new/bluez-qt-5.23.0/CMakeLists.txt
--- old/bluez-qt-5.22.0/CMakeLists.txt  2016-05-06 21:29:36.0 +0200
+++ new/bluez-qt-5.23.0/CMakeLists.txt  2016-06-06 11:24:22.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.22.0 NO_MODULE)
+find_package(ECM 5.23.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.22.0") # handled by release scripts
+set(KF5_VERSION "5.23.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.22.0/metainfo.yaml 
new/bluez-qt-5.23.0/metainfo.yaml
--- old/bluez-qt-5.22.0/metainfo.yaml   2016-05-06 21:29:36.0 +0200
+++ new/bluez-qt-5.23.0/metainfo.yaml   2016-06-06 11:24:22.0 +0200
@@ -12,3 +12,7 @@
 - qmake: BluezQt
   cmake: KF5::BluezQt
 cmakename: KF5BluezQt
+
+public_lib: true
+group: Frameworks
+subgroup: Tier 1




commit bluez-qt for openSUSE:Factory

2016-05-19 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-05-19 12:05:07

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-04-12 
19:08:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-05-19 
12:05:08.0 +0200
@@ -1,0 +2,7 @@
+Sat May  7 18:29:32 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.22.0 (boo#980066)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.22.0.php
+
+---

Old:

  bluez-qt-5.21.0.tar.xz

New:

  bluez-qt-5.22.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.wY0bQK/_old  2016-05-19 12:05:09.0 +0200
+++ /var/tmp/diff_new_pack.wY0bQK/_new  2016-05-19 12:05:09.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.21
+%define _tar_path 5.22
 Name:   bluez-qt
-Version:5.21.0
+Version:5.22.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.21.0.tar.xz -> bluez-qt-5.22.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.21.0/CMakeLists.txt 
new/bluez-qt-5.22.0/CMakeLists.txt
--- old/bluez-qt-5.21.0/CMakeLists.txt  2016-04-03 22:25:48.0 +0200
+++ new/bluez-qt-5.22.0/CMakeLists.txt  2016-05-06 21:29:36.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.21.0 NO_MODULE)
+find_package(ECM 5.22.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.21.0") # handled by release scripts
+set(KF5_VERSION "5.22.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT




commit bluez-qt for openSUSE:Factory

2016-04-12 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-04-12 19:08:50

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-03-16 
10:27:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-04-12 
19:08:52.0 +0200
@@ -1,0 +2,9 @@
+Mon Apr  4 14:18:19 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.21.0 (boo#974793)
+  * ObexManager: Split error messages for missing objects
+  * Upgrade Qt version requirement to 5.4.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.21.0.php
+
+---

Old:

  bluez-qt-5.20.0.tar.xz

New:

  bluez-qt-5.21.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.6qSF7Q/_old  2016-04-12 19:08:53.0 +0200
+++ /var/tmp/diff_new_pack.6qSF7Q/_new  2016-04-12 19:08:53.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.20
+%define _tar_path 5.21
 Name:   bluez-qt
-Version:5.20.0
+Version:5.21.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.20.0.tar.xz -> bluez-qt-5.21.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.20.0/CMakeLists.txt 
new/bluez-qt-5.21.0/CMakeLists.txt
--- old/bluez-qt-5.20.0/CMakeLists.txt  2016-03-04 23:07:23.0 +0100
+++ new/bluez-qt-5.21.0/CMakeLists.txt  2016-04-03 22:25:48.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.20.0 NO_MODULE)
+find_package(ECM 5.21.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.20.0") # handled by release scripts
+set(KF5_VERSION "5.21.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
@@ -28,7 +28,7 @@
 )
 
 # Dependencies
-set(REQUIRED_QT_VERSION "5.3.0")
+set(REQUIRED_QT_VERSION 5.4.0)
 
 # Required Qt5 components to build this framework
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core DBus Network)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.20.0/src/manager_p.cpp 
new/bluez-qt-5.21.0/src/manager_p.cpp
--- old/bluez-qt-5.20.0/src/manager_p.cpp   2016-03-04 23:07:23.0 
+0100
+++ new/bluez-qt-5.21.0/src/manager_p.cpp   2016-04-03 22:25:48.0 
+0200
@@ -409,6 +409,8 @@
 return;
 }
 
+qCDebug(BLUEZQT) << "Setting usable adapter" << adapter;
+
 bool wasBtOperational = q->isBluetoothOperational();
 
 m_usableAdapter = adapter;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.20.0/src/obexmanager_p.cpp 
new/bluez-qt-5.21.0/src/obexmanager_p.cpp
--- old/bluez-qt-5.20.0/src/obexmanager_p.cpp   2016-03-04 23:07:23.0 
+0100
+++ new/bluez-qt-5.21.0/src/obexmanager_p.cpp   2016-04-03 22:25:48.0 
+0200
@@ -150,8 +150,13 @@
 }
 }
 
-if (!m_obexClient || !m_obexAgentManager) {
-Q_EMIT initError(QStringLiteral("Cannot find org.bluez.obex.Client1 
and org.bluez.obex.AgentManager1 objects!"));
+if (!m_obexClient) {
+Q_EMIT initError(QStringLiteral("Cannot find org.bluez.obex.Client1 
object!"));
+return;
+}
+
+if (!m_obexAgentManager) {
+Q_EMIT initError(QStringLiteral("Cannot find 
org.bluez.obex.AgentManager1 object!"));
 return;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.20.0/src/pendingcall.cpp 
new/bluez-qt-5.21.0/src/pendingcall.cpp
--- old/bluez-qt-5.20.0/src/pendingcall.cpp 2016-03-04 23:07:23.0 
+0100
+++ new/bluez-qt-5.21.0/src/pendingcall.cpp 2016-04-03 22:25:48.0 
+0200
@@ -223,7 +223,7 @@
 
 void PendingCallPrivate::emitInternalError(const QString )
 {
-qCWarning(BLUEZQT) << "PendingCall Error:" << errorText;
+qCWarning(BLUEZQT) << "PendingCall Internal error:" << errorText;
 m_error = PendingCall::InternalError;
 m_errorText = errorText;
 emitFinished();
diff -urN '--exclude=CVS' 

commit bluez-qt for openSUSE:Factory

2016-03-16 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-03-16 10:27:13

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-02-24 
18:52:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-03-16 
10:27:14.0 +0100
@@ -1,0 +2,7 @@
+Sun Mar  6 09:53:32 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.20.0 (boo#970856)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.20.0.php
+
+---

Old:

  bluez-qt-5.19.0.tar.xz

New:

  bluez-qt-5.20.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.FUvNX0/_old  2016-03-16 10:27:15.0 +0100
+++ /var/tmp/diff_new_pack.FUvNX0/_new  2016-03-16 10:27:15.0 +0100
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.19
+%define _tar_path 5.20
 Name:   bluez-qt
-Version:5.19.0
+Version:5.20.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.19.0.tar.xz -> bluez-qt-5.20.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.19.0/CMakeLists.txt 
new/bluez-qt-5.20.0/CMakeLists.txt
--- old/bluez-qt-5.19.0/CMakeLists.txt  2016-02-06 10:28:08.0 +0100
+++ new/bluez-qt-5.20.0/CMakeLists.txt  2016-03-04 23:07:23.0 +0100
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.19.0 NO_MODULE)
+find_package(ECM 5.20.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -15,17 +15,16 @@
 include(ECMGenerateHeaders)
 include(ECMPackageConfigHelpers)
 include(KDEInstallDirs)
-include(KDEFrameworkCompilerSettings)
+include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.19.0") # handled by release scripts
+set(KF5_VERSION "5.20.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
 VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/bluezqt_version.h"
 PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5BluezQtConfigVersion.cmake"
 SOVERSION 6
-
 )
 
 # Dependencies




commit bluez-qt for openSUSE:Factory

2016-02-24 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-02-24 18:52:46

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2016-01-20 
09:40:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-02-24 
18:52:47.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb  6 17:58:01 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.19.0 (boo#967668)
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.19.0.php
+
+---

Old:

  bluez-qt-5.18.0.tar.xz

New:

  bluez-qt-5.19.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.IzOwLg/_old  2016-02-24 18:52:48.0 +0100
+++ /var/tmp/diff_new_pack.IzOwLg/_new  2016-02-24 18:52:48.0 +0100
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.18
+%define _tar_path 5.19
 Name:   bluez-qt
-Version:5.18.0
+Version:5.19.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.18.0.tar.xz -> bluez-qt-5.19.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.18.0/CMakeLists.txt 
new/bluez-qt-5.19.0/CMakeLists.txt
--- old/bluez-qt-5.18.0/CMakeLists.txt  2016-01-01 20:47:23.0 +0100
+++ new/bluez-qt-5.19.0/CMakeLists.txt  2016-02-06 10:28:08.0 +0100
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.18.0 NO_MODULE)
+find_package(ECM 5.19.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.18.0") # handled by release scripts
+set(KF5_VERSION "5.19.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT




commit bluez-qt for openSUSE:Factory

2016-01-20 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2016-01-20 09:40:10

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2015-12-29 
12:50:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2016-01-20 
09:40:12.0 +0100
@@ -1,0 +2,7 @@
+Sat Jan  2 17:41:23 UTC 2016 - hrvoje.sen...@gmail.com
+
+- Update to 5.18.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.18.0.php
+
+---

Old:

  bluez-qt-5.17.0.tar.xz

New:

  bluez-qt-5.18.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.1MH024/_old  2016-01-20 09:40:13.0 +0100
+++ /var/tmp/diff_new_pack.1MH024/_new  2016-01-20 09:40:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bluez-qt
 #
-# 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
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.17
+%define _tar_path 5.18
 Name:   bluez-qt
-Version:5.17.0
+Version:5.18.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.17.0.tar.xz -> bluez-qt-5.18.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.17.0/CMakeLists.txt 
new/bluez-qt-5.18.0/CMakeLists.txt
--- old/bluez-qt-5.17.0/CMakeLists.txt  2015-12-06 14:57:07.0 +0100
+++ new/bluez-qt-5.18.0/CMakeLists.txt  2016-01-01 20:47:23.0 +0100
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.17.0 NO_MODULE)
+find_package(ECM 5.18.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.17.0") # handled by release scripts
+set(KF5_VERSION "5.18.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.17.0/autotests/devicetest.cpp 
new/bluez-qt-5.18.0/autotests/devicetest.cpp
--- old/bluez-qt-5.17.0/autotests/devicetest.cpp2015-12-06 
14:57:07.0 +0100
+++ new/bluez-qt-5.18.0/autotests/devicetest.cpp2016-01-01 
20:47:23.0 +0100
@@ -106,10 +106,10 @@
 initJob->exec();
 QVERIFY(!initJob->error());
 
-Q_FOREACH (AdapterPtr adapter, m_manager->adapters()) {
+Q_FOREACH (const AdapterPtr , m_manager->adapters()) {
 QVERIFY(!adapter->ubi().isEmpty());
 
-Q_FOREACH (DevicePtr device, adapter->devices()) {
+Q_FOREACH (const DevicePtr , adapter->devices()) {
 QVERIFY(!device->ubi().isEmpty());
 
 DeviceUnit u;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/bluez-qt-5.17.0/autotests/fakebluez/deviceinterface.cpp 
new/bluez-qt-5.18.0/autotests/fakebluez/deviceinterface.cpp
--- old/bluez-qt-5.17.0/autotests/fakebluez/deviceinterface.cpp 2015-12-06 
14:57:07.0 +0100
+++ new/bluez-qt-5.18.0/autotests/fakebluez/deviceinterface.cpp 2016-01-01 
20:47:23.0 +0100
@@ -27,7 +27,7 @@
 #include 
 #include 
 
-static const QString MediaPlayerUuid = 
QLatin1String("110E--1000-8000-00805F9B34FB");
+static const QLatin1String MediaPlayerUuid 
("110E--1000-8000-00805F9B34FB");
 
 // DeviceObject
 DeviceObject::DeviceObject(const QDBusObjectPath , QObject *parent)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.17.0/autotests/inputtest.cpp 
new/bluez-qt-5.18.0/autotests/inputtest.cpp
--- old/bluez-qt-5.17.0/autotests/inputtest.cpp 2015-12-06 14:57:07.0 
+0100
+++ new/bluez-qt-5.18.0/autotests/inputtest.cpp 2016-01-01 20:47:23.0 
+0100
@@ -144,7 +144,7 @@
 }
 }
 
-QString InputTest::reconnectModeString(InputPtr input) const
+QString InputTest::reconnectModeString(const InputPtr ) const
 {
 switch (input->reconnectMode()) {
 case 

commit bluez-qt for openSUSE:Factory

2015-12-29 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2015-12-29 12:50:14

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2015-11-24 
22:21:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2015-12-29 
12:50:15.0 +0100
@@ -1,0 +2,7 @@
+Thu Dec 10 23:01:48 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.17.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.17.0.php
+
+---

Old:

  bluez-qt-5.16.0.tar.xz

New:

  bluez-qt-5.17.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.rvArP4/_old  2015-12-29 12:50:16.0 +0100
+++ /var/tmp/diff_new_pack.rvArP4/_new  2015-12-29 12:50:16.0 +0100
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.16
+%define _tar_path 5.17
 Name:   bluez-qt
-Version:5.16.0
+Version:5.17.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.16.0.tar.xz -> bluez-qt-5.17.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.16.0/CMakeLists.txt 
new/bluez-qt-5.17.0/CMakeLists.txt
--- old/bluez-qt-5.16.0/CMakeLists.txt  2015-11-08 11:56:53.0 +0100
+++ new/bluez-qt-5.17.0/CMakeLists.txt  2015-12-06 14:57:07.0 +0100
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.16.0 NO_MODULE)
+find_package(ECM 5.17.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.16.0") # handled by release scripts
+set(KF5_VERSION "5.17.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT




commit bluez-qt for openSUSE:Factory

2015-11-24 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2015-11-24 22:21:43

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2015-10-19 
22:21:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2015-11-24 
22:21:44.0 +0100
@@ -1,0 +2,10 @@
+Sun Nov  8 16:56:57 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.16.0 (boo#955067)
+  * isBluetoothOperational now also depends on unblocked rfkill
+  * Fix determining global state of rfkill switch
+  * QML API: Mark properties without notify signal as constants
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.16.0.php
+
+---

Old:

  bluez-qt-5.15.0.tar.xz

New:

  bluez-qt-5.16.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.v0J1UA/_old  2015-11-24 22:21:44.0 +0100
+++ /var/tmp/diff_new_pack.v0J1UA/_new  2015-11-24 22:21:44.0 +0100
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.15
+%define _tar_path 5.16
 Name:   bluez-qt
-Version:5.15.0
+Version:5.16.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.15.0.tar.xz -> bluez-qt-5.16.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.15.0/CMakeLists.txt 
new/bluez-qt-5.16.0/CMakeLists.txt
--- old/bluez-qt-5.15.0/CMakeLists.txt  2015-10-03 12:10:31.0 +0200
+++ new/bluez-qt-5.16.0/CMakeLists.txt  2015-11-08 11:56:53.0 +0100
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.15.0 NO_MODULE)
+find_package(ECM 5.16.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.15.0") # handled by release scripts
+set(KF5_VERSION "5.16.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.15.0/README.md 
new/bluez-qt-5.16.0/README.md
--- old/bluez-qt-5.15.0/README.md   2015-10-03 12:10:31.0 +0200
+++ new/bluez-qt-5.16.0/README.md   2015-11-08 11:56:53.0 +0100
@@ -14,9 +14,3 @@
 All method calls are asynchronous using PendingCall that helps tracking
 the call progress and handle errors.
 
-## Links
-
-- Home page: 
-- Mailing list: 
-- IRC channel: \#kde-devel and \#solid on Freenode
-- Git repository: 

diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.15.0/src/imports/declarativeadapter.h 
new/bluez-qt-5.16.0/src/imports/declarativeadapter.h
--- old/bluez-qt-5.15.0/src/imports/declarativeadapter.h2015-10-03 
12:10:31.0 +0200
+++ new/bluez-qt-5.16.0/src/imports/declarativeadapter.h2015-11-08 
11:56:53.0 +0100
@@ -33,8 +33,8 @@
 {
 Q_OBJECT
 
-Q_PROPERTY(QString ubi READ ubi)
-Q_PROPERTY(QString address READ address)
+Q_PROPERTY(QString ubi READ ubi CONSTANT)
+Q_PROPERTY(QString address READ address CONSTANT)
 Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)
 Q_PROPERTY(QString systemName READ systemName NOTIFY systemNameChanged)
 Q_PROPERTY(quint32 adapterClass READ adapterClass NOTIFY 
adapterClassChanged)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.15.0/src/imports/declarativedevice.h 
new/bluez-qt-5.16.0/src/imports/declarativedevice.h
--- old/bluez-qt-5.15.0/src/imports/declarativedevice.h 2015-10-03 
12:10:31.0 +0200
+++ new/bluez-qt-5.16.0/src/imports/declarativedevice.h 2015-11-08 
11:56:53.0 +0100
@@ -33,8 +33,8 @@
 {
 Q_OBJECT
 
-Q_PROPERTY(QString ubi READ ubi)
-Q_PROPERTY(QString address READ address)
+Q_PROPERTY(QString ubi READ ubi CONSTANT)
+Q_PROPERTY(QString address READ address CONSTANT)
 Q_PROPERTY(QString name READ name WRITE 

commit bluez-qt for openSUSE:Factory

2015-10-19 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2015-10-19 22:21:21

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2015-09-24 
07:09:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2015-10-19 
22:21:22.0 +0200
@@ -1,0 +2,12 @@
+Mon Oct  5 17:36:57 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.15.0
+  * Fix fakebluez crash in obexmanagertest with ASAN
+  * Forward declare all exported classes in types.h
+  * ObexTransfer: Set error when transfer session is removed
+  * Utils: Hold pointers to managers instances
+  * ObexTransfer: Set error when org.bluez.obex crashes
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.15.0.php
+
+---

Old:

  bluez-qt-5.14.0.tar.xz

New:

  bluez-qt-5.15.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.m2wXCW/_old  2015-10-19 22:21:22.0 +0200
+++ /var/tmp/diff_new_pack.m2wXCW/_new  2015-10-19 22:21:22.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.14
+%define _tar_path 5.15
 Name:   bluez-qt
-Version:5.14.0
+Version:5.15.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.14.0.tar.xz -> bluez-qt-5.15.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.14.0/CMakeLists.txt 
new/bluez-qt-5.15.0/CMakeLists.txt
--- old/bluez-qt-5.14.0/CMakeLists.txt  2015-09-04 22:04:48.0 +0200
+++ new/bluez-qt-5.15.0/CMakeLists.txt  2015-10-03 12:10:31.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.14.0 NO_MODULE)
+find_package(ECM 5.15.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.14.0") # handled by release scripts
+set(KF5_VERSION "5.15.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.14.0/autotests/adaptertest.cpp 
new/bluez-qt-5.15.0/autotests/adaptertest.cpp
--- old/bluez-qt-5.14.0/autotests/adaptertest.cpp   2015-09-04 
22:04:48.0 +0200
+++ new/bluez-qt-5.15.0/autotests/adaptertest.cpp   2015-10-03 
12:10:31.0 +0200
@@ -26,7 +26,6 @@
 
 #include 
 #include 
-#include 
 
 namespace BluezQt
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.14.0/autotests/agentmanagertest.cpp 
new/bluez-qt-5.15.0/autotests/agentmanagertest.cpp
--- old/bluez-qt-5.14.0/autotests/agentmanagertest.cpp  2015-09-04 
22:04:48.0 +0200
+++ new/bluez-qt-5.15.0/autotests/agentmanagertest.cpp  2015-10-03 
12:10:31.0 +0200
@@ -27,7 +27,6 @@
 
 #include 
 #include 
-#include 
 #include 
 
 namespace BluezQt
@@ -122,7 +121,6 @@
 void AgentManagerTest::initTestCase()
 {
 bluezqt_initFakeBluezTestRun();
-QLoggingCategory::setFilterRules(QStringLiteral("BluezQt=false"));
 
 FakeBluez::start();
 FakeBluez::runTest(QStringLiteral("bluez-standard"));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.14.0/autotests/autotests.cpp 
new/bluez-qt-5.15.0/autotests/autotests.cpp
--- old/bluez-qt-5.14.0/autotests/autotests.cpp 2015-09-04 22:04:48.0 
+0200
+++ new/bluez-qt-5.15.0/autotests/autotests.cpp 2015-10-03 12:10:31.0 
+0200
@@ -74,7 +74,6 @@
 connect(FakeBluez::s_process, SIGNAL(error(QProcess::ProcessError)), this, 
SLOT(processError(QProcess::ProcessError)));
 connect(FakeBluez::s_process, SIGNAL(finished(int,QProcess::ExitStatus)), 
this, SLOT(processFinished(int,QProcess::ExitStatus)));
 
-
FakeBluez::s_process->setStandardErrorFile(QStringLiteral("/tmp/fakebluez.out"));
 FakeBluez::s_process->start(m_fakebluezPath);
 
 m_eventLoop.exec();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.14.0/autotests/devicetest.cpp 
new/bluez-qt-5.15.0/autotests/devicetest.cpp
--- 

commit bluez-qt for openSUSE:Factory

2015-09-23 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2015-09-24 07:09:16

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2015-09-02 
07:43:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2015-09-24 
07:09:17.0 +0200
@@ -1,0 +2,10 @@
+Tue Sep  8 17:12:25 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.14.0
+  * Don't forward deviceChanged signal after device was removed
+(kde#351051)
+  * Respect -DBUILD_TESTING=OFF
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.14.0.php
+
+---

Old:

  bluez-qt-5.13.0.tar.xz

New:

  bluez-qt-5.14.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.QFiQbD/_old  2015-09-24 07:09:18.0 +0200
+++ /var/tmp/diff_new_pack.QFiQbD/_new  2015-09-24 07:09:18.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.13
+%define _tar_path 5.14
 Name:   bluez-qt
-Version:5.13.0
+Version:5.14.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.13.0.tar.xz -> bluez-qt-5.14.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.13.0/CMakeLists.txt 
new/bluez-qt-5.14.0/CMakeLists.txt
--- old/bluez-qt-5.13.0/CMakeLists.txt  2015-08-02 12:33:28.0 +0200
+++ new/bluez-qt-5.14.0/CMakeLists.txt  2015-09-04 22:04:48.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.13.0 NO_MODULE)
+find_package(ECM 5.14.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.13.0") # handled by release scripts
+set(KF5_VERSION "5.14.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
@@ -44,10 +44,12 @@
 
 # Subdirectories
 add_subdirectory(src)
-add_subdirectory(tests)
 
-if(Qt5Test_FOUND)
-add_subdirectory(autotests)
+if (BUILD_TESTING)
+add_subdirectory(tests)
+if(Qt5Test_FOUND)
+add_subdirectory(autotests)
+endif()
 endif()
 
 if(Qt5Qml_FOUND)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.13.0/src/adapter_p.cpp 
new/bluez-qt-5.14.0/src/adapter_p.cpp
--- old/bluez-qt-5.13.0/src/adapter_p.cpp   2015-08-02 12:33:28.0 
+0200
+++ new/bluez-qt-5.14.0/src/adapter_p.cpp   2015-09-04 22:04:48.0 
+0200
@@ -84,6 +84,8 @@
 m_devices.removeOne(device);
 Q_EMIT device->deviceRemoved(device);
 Q_EMIT q.data()->deviceRemoved(device);
+
+disconnect(device.data(), ::deviceChanged, q.data(), 
::deviceChanged);
 }
 
 QDBusPendingReply<> AdapterPrivate::setDBusProperty(const QString , const 
QVariant )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.13.0/src/manager_p.cpp 
new/bluez-qt-5.14.0/src/manager_p.cpp
--- old/bluez-qt-5.13.0/src/manager_p.cpp   2015-08-02 12:33:28.0 
+0200
+++ new/bluez-qt-5.14.0/src/manager_p.cpp   2015-09-04 22:04:48.0 
+0200
@@ -377,6 +377,9 @@
 if (m_adapters.isEmpty()) {
 Q_EMIT q->allAdaptersRemoved();
 }
+
+disconnect(adapter.data(), ::adapterChanged, q, 
::adapterChanged);
+disconnect(adapter.data(), ::poweredChanged, this, 
::adapterPoweredChanged);
 }
 
 void ManagerPrivate::removeDevice(const QString )
@@ -387,6 +390,8 @@
 }
 
 device->adapter()->d->removeDevice(device);
+
+disconnect(device.data(), ::deviceChanged, q, 
::deviceChanged);
 }
 
 bool ManagerPrivate::rfkillBlocked() const




commit bluez-qt for openSUSE:Factory

2015-09-01 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2015-09-02 07:43:11

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is "bluez-qt"

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2015-07-14 
17:21:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2015-09-02 
07:43:12.0 +0200
@@ -1,0 +2,11 @@
+Tue Aug  4 19:20:09 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.13.0
+  * The Qt version requirement has been bumped from 5.2 to 5.3
+  * Debug output has been ported to categorized output, for less
+noise by default
+  * Docbook documentation has been reviewed and updated
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.13.0.php
+
+---

Old:

  bluez-qt-5.12.0.tar.xz

New:

  bluez-qt-5.13.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.DuXlAw/_old  2015-09-02 07:43:12.0 +0200
+++ /var/tmp/diff_new_pack.DuXlAw/_new  2015-09-02 07:43:12.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.12
+%define _tar_path 5.13
 Name:   bluez-qt
-Version:5.12.0
+Version:5.13.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+
@@ -31,10 +31,10 @@
 BuildRequires:  extra-cmake-modules >= %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
-BuildRequires:  pkgconfig(Qt5Core) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5DBus) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5Network) >= 5.4.0
-BuildRequires:  pkgconfig(Qt5Qml) >= 5.4.0
+BuildRequires:  cmake(Qt5Core) >= 5.4.0
+BuildRequires:  cmake(Qt5DBus) >= 5.4.0
+BuildRequires:  cmake(Qt5Network) >= 5.4.0
+BuildRequires:  cmake(Qt5Qml) >= 5.4.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -71,7 +71,7 @@
 Summary:Async Bluez wrapper library - development files
 Group:  Development/Libraries/C and C++
 Requires:   lib%{_libname}%{sonum} = %{version}
-Requires:   pkgconfig(Qt5Core) >= 5.4.0
+Requires:   cmake(Qt5Core) >= 5.4.0
 
 %description devel
 Development files for QBluez Async Bluez wrapper library.

++ bluez-qt-5.12.0.tar.xz -> bluez-qt-5.13.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.12.0/CMakeLists.txt 
new/bluez-qt-5.13.0/CMakeLists.txt
--- old/bluez-qt-5.12.0/CMakeLists.txt  2015-07-04 22:28:30.0 +0200
+++ new/bluez-qt-5.13.0/CMakeLists.txt  2015-08-02 12:33:28.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.12.0 NO_MODULE)
+find_package(ECM 5.13.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION "5.12.0") # handled by release scripts
+set(KF5_VERSION "5.13.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
@@ -29,7 +29,7 @@
 )
 
 # Dependencies
-set(REQUIRED_QT_VERSION "5.2.0")
+set(REQUIRED_QT_VERSION "5.3.0")
 
 # Required Qt5 components to build this framework
 find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core DBus Network)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.12.0/src/debug.cpp 
new/bluez-qt-5.13.0/src/debug.cpp
--- old/bluez-qt-5.12.0/src/debug.cpp   2015-07-04 22:28:30.0 +0200
+++ new/bluez-qt-5.13.0/src/debug.cpp   2015-08-02 12:33:28.0 +0200
@@ -22,4 +22,9 @@
 
 #include "debug.h"
 
+#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0)
+// logging category for this framework, default: log stuff >= warning
+Q_LOGGING_CATEGORY(BLUEZQT, "BluezQt", QtWarningMsg)
+#else
 Q_LOGGING_CATEGORY(BLUEZQT, "BluezQt")
+#endif




commit bluez-qt for openSUSE:Factory

2015-07-14 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2015-07-14 17:21:19

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is bluez-qt

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2015-06-23 
12:05:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2015-07-14 
17:21:20.0 +0200
@@ -1,0 +2,10 @@
+Sun Jul  5 18:44:43 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.12.0
+  * Remove all devices from adapter before removing the adapter
+(kde#349363)
+  * Update links in README.md
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.12.0.php
+
+---

Old:

  bluez-qt-5.11.0.tar.xz

New:

  bluez-qt-5.12.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.VxLr29/_old  2015-07-14 17:21:21.0 +0200
+++ /var/tmp/diff_new_pack.VxLr29/_new  2015-07-14 17:21:21.0 +0200
@@ -18,9 +18,9 @@
 
 %define sonum   6
 %define _libname KF5BluezQt
-%define _tar_path 5.11
+%define _tar_path 5.12
 Name:   bluez-qt
-Version:5.11.0
+Version:5.12.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.11.0.tar.xz - bluez-qt-5.12.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.11.0/CMakeLists.txt 
new/bluez-qt-5.12.0/CMakeLists.txt
--- old/bluez-qt-5.11.0/CMakeLists.txt  2015-06-06 11:21:38.0 +0200
+++ new/bluez-qt-5.12.0/CMakeLists.txt  2015-07-04 22:28:30.0 +0200
@@ -3,7 +3,7 @@
 project(BluezQt)
 
 include(FeatureSummary)
-find_package(ECM 5.11.0 NO_MODULE)
+find_package(ECM 5.12.0 NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION Extra CMake 
Modules. URL 
https://projects.kde.org/projects/kdesupport/extra-cmake-modules;)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -18,7 +18,7 @@
 include(KDEFrameworkCompilerSettings)
 include(KDECMakeSettings)
 
-set(KF5_VERSION 5.11.0) # handled by release scripts
+set(KF5_VERSION 5.12.0) # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
 VARIABLE_PREFIX BLUEZQT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.11.0/README.md 
new/bluez-qt-5.12.0/README.md
--- old/bluez-qt-5.11.0/README.md   2015-06-06 11:21:38.0 +0200
+++ new/bluez-qt-5.12.0/README.md   2015-07-04 22:28:30.0 +0200
@@ -16,6 +16,7 @@
 
 ## Links
 
-- Mailing list: https://mail.kde.org/mailman/listinfo/kde-hardware-devel
-- IRC channel: \#solid on Freenode
-- Git repository: 
https://projects.kde.org/projects/kde/workspace/bluez-qt/repository
+- Home page: https://projects.kde.org/projects/frameworks/bluez-qt
+- Mailing list: https://mail.kde.org/mailman/listinfo/kde-frameworks-devel
+- IRC channel: \#kde-devel and \#solid on Freenode
+- Git repository: 
https://projects.kde.org/projects/frameworks/bluez-qt/repository
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.11.0/autotests/managertest.cpp 
new/bluez-qt-5.12.0/autotests/managertest.cpp
--- old/bluez-qt-5.11.0/autotests/managertest.cpp   2015-06-06 
11:21:38.0 +0200
+++ new/bluez-qt-5.12.0/autotests/managertest.cpp   2015-07-04 
22:28:30.0 +0200
@@ -44,7 +44,7 @@
 Autotests::registerMetatypes();
 }
 
-void ManagerTest::cleanupTestCase()
+void ManagerTest::cleanup()
 {
 FakeBluez::stop();
 }
@@ -345,10 +345,70 @@
 FakeBluez::runAction(QStringLiteral(devicemanager), 
QStringLiteral(change-adapter-property), properties);
 
 QTRY_COMPARE(adapter1Spy.count(), 2);
-
 QVERIFY(manager-deviceForAddress(address));
 
 delete manager;
 }
+
+void ManagerTest::adapterWithDevicesRemovedTest()
+{
+// tests whether the devices are always removed from the adapter before 
removing adapter
+
+FakeBluez::start();
+FakeBluez::runTest(QStringLiteral(bluez-standard));
+
+// Create adapters
+QDBusObjectPath adapter1path = 
QDBusObjectPath(QStringLiteral(/org/bluez/hci0));
+QVariantMap adapterProps;
+adapterProps[QStringLiteral(Path)] = QVariant::fromValue(adapter1path);
+adapterProps[QStringLiteral(Address)] = 
QStringLiteral(1C:E5:C3:BC:94:7E);
+adapterProps[QStringLiteral(Name)] = QStringLiteral(TestAdapter);
+adapterProps[QStringLiteral(Powered)] = false;
+FakeBluez::runAction(QStringLiteral(devicemanager), 

commit bluez-qt for openSUSE:Factory

2015-06-23 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2015-06-23 12:05:25

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is bluez-qt

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2015-05-29 
09:59:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2015-06-23 
12:05:26.0 +0200
@@ -1,0 +2,7 @@
+Sun Jun  7 19:07:06 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.11.0
+  * For more details please see:
+https://www.kde.org/announcements/kde-frameworks-5.11.0.php
+
+---

Old:

  bluez-qt-5.3.1.tar.xz

New:

  bluez-qt-5.11.0.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.3aBmV2/_old  2015-06-23 12:05:26.0 +0200
+++ /var/tmp/diff_new_pack.3aBmV2/_new  2015-06-23 12:05:26.0 +0200
@@ -16,20 +16,19 @@
 #
 
 
-%define sonum   5
-%define rname bluez-qt
+%define sonum   6
 %define _libname KF5BluezQt
-
+%define _tar_path 5.11
 Name:   bluez-qt
-Version:5.3.1
+Version:5.11.0
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+
 Group:  System/GUI/KDE
 Url:https://projects.kde.org/attica
-Source: %{rname}-%{version}.tar.xz
+Source: 
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 BuildRequires:  cmake = 2.8.12
-BuildRequires:  extra-cmake-modules = 1.8.0
+BuildRequires:  extra-cmake-modules = %{_tar_path}
 BuildRequires:  fdupes
 BuildRequires:  kf5-filesystem
 BuildRequires:  pkgconfig(Qt5Core) = 5.4.0
@@ -44,6 +43,8 @@
 %package -n lib%{_libname}%{sonum}
 Summary:Async Bluez wrapper library - development files
 Group:  System/GUI/KDE
+# KUF only due to version number overlapping
+Obsoletes:  lib%{_libname}5
 
 %description -n lib%{_libname}%{sonum}
 Async Bluez wrapper library.
@@ -76,7 +77,7 @@
 Development files for QBluez Async Bluez wrapper library.
 
 %prep
-%setup -q -n %{rname}-%{version}
+%setup -q -n %{name}-%{version}
 
 %build
   %cmake_kf5 -d build -- -DUDEV_RULES_INSTALL_DIR=%_libexecdir/udev

++ bluez-qt-5.3.1.tar.xz - bluez-qt-5.11.0.tar.xz ++
 11647 lines of diff (skipped)




commit bluez-qt for openSUSE:Factory

2015-05-29 Thread h_root
Hello community,

here is the log from the commit of package bluez-qt for openSUSE:Factory 
checked in at 2015-05-29 09:59:24

Comparing /work/SRC/openSUSE:Factory/bluez-qt (Old)
 and  /work/SRC/openSUSE:Factory/.bluez-qt.new (New)


Package is bluez-qt

Changes:

--- /work/SRC/openSUSE:Factory/bluez-qt/bluez-qt.changes2015-05-11 
19:28:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.bluez-qt.new/bluez-qt.changes   2015-05-29 
09:59:25.0 +0200
@@ -1,0 +2,8 @@
+Fri May 22 15:29:20 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.3.1:
+  * Bugfix release
+  * For more details please see:
+https://www.kde.org/announcements/plasma-5.3.1.php
+
+---

Old:

  bluez-qt-5.3.0.tar.xz

New:

  bluez-qt-5.3.1.tar.xz



Other differences:
--
++ bluez-qt.spec ++
--- /var/tmp/diff_new_pack.XwxeXm/_old  2015-05-29 09:59:25.0 +0200
+++ /var/tmp/diff_new_pack.XwxeXm/_new  2015-05-29 09:59:25.0 +0200
@@ -21,7 +21,7 @@
 %define _libname KF5BluezQt
 
 Name:   bluez-qt
-Version:5.3.0
+Version:5.3.1
 Release:0
 Summary:Async Bluez wrapper library
 License:LGPL-2.1+

++ bluez-qt-5.3.0.tar.xz - bluez-qt-5.3.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.3.0/CMakeLists.txt 
new/bluez-qt-5.3.1/CMakeLists.txt
--- old/bluez-qt-5.3.0/CMakeLists.txt   2015-04-23 11:29:43.0 +0200
+++ new/bluez-qt-5.3.1/CMakeLists.txt   2015-05-21 18:31:54.0 +0200
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 2.8.12)
 
 project(BluezQt)
-set(PROJECT_VERSION 5.3.0)
+set(PROJECT_VERSION 5.3.1)
 
 # ECM setup
 find_package(ECM 1.7.0 REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.3.0/src/adapter_p.cpp 
new/bluez-qt-5.3.1/src/adapter_p.cpp
--- old/bluez-qt-5.3.0/src/adapter_p.cpp2015-04-23 11:29:43.0 
+0200
+++ new/bluez-qt-5.3.1/src/adapter_p.cpp2015-05-21 18:31:54.0 
+0200
@@ -93,7 +93,9 @@
 
 void AdapterPrivate::propertiesChanged(const QString interface, const 
QVariantMap changed, const QStringList invalidated)
 {
-Q_UNUSED(interface)
+if (interface != Strings::orgBluezAdapter1()) {
+return;
+}
 
 QVariantMap::const_iterator i;
 for (i = changed.constBegin(); i != changed.constEnd(); ++i) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.3.0/src/device_p.cpp 
new/bluez-qt-5.3.1/src/device_p.cpp
--- old/bluez-qt-5.3.0/src/device_p.cpp 2015-04-23 11:29:43.0 +0200
+++ new/bluez-qt-5.3.1/src/device_p.cpp 2015-05-21 18:31:54.0 +0200
@@ -80,7 +80,9 @@
 
 void DevicePrivate::propertiesChanged(const QString interface, const 
QVariantMap changed, const QStringList invalidated)
 {
-Q_UNUSED(interface)
+if (interface != Strings::orgBluezDevice1()) {
+return;
+}
 
 QVariantMap::const_iterator i;
 for (i = changed.constBegin(); i != changed.constEnd(); ++i) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bluez-qt-5.3.0/src/obextransfer.cpp 
new/bluez-qt-5.3.1/src/obextransfer.cpp
--- old/bluez-qt-5.3.0/src/obextransfer.cpp 2015-04-23 11:29:43.0 
+0200
+++ new/bluez-qt-5.3.1/src/obextransfer.cpp 2015-05-21 18:31:54.0 
+0200
@@ -98,9 +98,12 @@
 
 void ObexTransferPrivate::propertiesChanged(const QString interface, const 
QVariantMap changed, const QStringList invalidated)
 {
-Q_UNUSED(interface)
 Q_UNUSED(invalidated)
 
+if (interface != Strings::orgBluezObexTransfer1()) {
+return;
+}
+
 QVariantMap::const_iterator i;
 for (i = changed.constBegin(); i != changed.constEnd(); ++i) {
 const QVariant value = i.value();