commit bluez-qt for openSUSE:Factory
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.changes 2016-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.senjan@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.000000000 +0100 +++ new/bluez-qt-5.30.0/CMakeLists.txt 2017-01-08 16:12:35.000000000 +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.000000000 +0100 +++ new/bluez-qt-5.30.0/KF5BluezQtConfig.cmake.in 2017-01-08 16:12:35.000000000 +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.000000000 +0100 +++ new/bluez-qt-5.30.0/src/agent.h 2017-01-08 16:12:35.000000000 +0100 @@ -50,7 +50,6 @@ { Q_OBJECT - Q_ENUMS(Capability) Q_PROPERTY(Capability capability READ capability) public: @@ -63,6 +62,7 @@ KeyboardOnly = 2, NoInputNoOutput = 3 }; + Q_ENUM(Capability) /** * Creates a new Agent object. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.29.0/src/device.h new/bluez-qt-5.30.0/src/device.h --- old/bluez-qt-5.29.0/src/device.h 2016-12-03 11:05:55.000000000 +0100 +++ new/bluez-qt-5.30.0/src/device.h 2017-01-08 16:12:35.000000000 +0100 @@ -43,7 +43,6 @@ { Q_OBJECT - Q_ENUMS(Type) Q_PROPERTY(QString ubi READ ubi) Q_PROPERTY(QString address READ address) Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged) @@ -109,6 +108,7 @@ /** The device is not of any of the known types. */ Uncategorized }; + Q_ENUM(Type) /** * Destroys a Device object. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.29.0/src/input.h new/bluez-qt-5.30.0/src/input.h --- old/bluez-qt-5.29.0/src/input.h 2016-12-03 11:05:55.000000000 +0100 +++ new/bluez-qt-5.30.0/src/input.h 2017-01-08 16:12:35.000000000 +0100 @@ -39,7 +39,6 @@ class BLUEZQT_EXPORT Input : public QObject { Q_OBJECT - Q_ENUMS(ReconnectMode) Q_PROPERTY(ReconnectMode reconnectMode READ reconnectMode NOTIFY reconnectModeChanged) public: @@ -54,6 +53,7 @@ /** Device shall attempt to restore the lost connection, but host may also restore the connection. */ AnyReconnect }; + Q_ENUM(ReconnectMode) /** * Destroys an Input object. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.29.0/src/job.h new/bluez-qt-5.30.0/src/job.h --- old/bluez-qt-5.29.0/src/job.h 2016-12-03 11:05:55.000000000 +0100 +++ new/bluez-qt-5.30.0/src/job.h 2017-01-08 16:12:35.000000000 +0100 @@ -57,7 +57,6 @@ class BLUEZQT_EXPORT Job : public QObject { Q_OBJECT - Q_ENUMS(Error) Q_PROPERTY(int error READ error) Q_PROPERTY(QString errorText READ errorText) Q_PROPERTY(bool running READ isRunning) @@ -87,6 +86,7 @@ /** Subclasses should define error codes starting at this value */ UserDefinedError = 100 }; + Q_ENUM(Error) /** * Executes the job synchronously. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.29.0/src/mediaplayer.h new/bluez-qt-5.30.0/src/mediaplayer.h --- old/bluez-qt-5.29.0/src/mediaplayer.h 2016-12-03 11:05:55.000000000 +0100 +++ new/bluez-qt-5.30.0/src/mediaplayer.h 2017-01-08 16:12:35.000000000 +0100 @@ -42,7 +42,6 @@ class BLUEZQT_EXPORT MediaPlayer : public QObject { Q_OBJECT - Q_ENUMS(Equalizer Repeat Shuffle Status) Q_PROPERTY(QString name READ name NOTIFY nameChanged) Q_PROPERTY(Equalizer equalizer READ equalizer WRITE setEqualizer NOTIFY equalizerChanged) Q_PROPERTY(Repeat repeat READ repeat WRITE setRepeat NOTIFY repeatChanged) @@ -59,6 +58,7 @@ /** Equalizer off. */ EqualizerOff }; + Q_ENUM(Equalizer) /** Repeat state. */ enum Repeat { @@ -71,6 +71,7 @@ /** Repeat group. */ RepeatGroup }; + Q_ENUM(Repeat) /** Shuffle state. */ enum Shuffle { @@ -81,6 +82,7 @@ /** Shuffle group. */ ShuffleGroup }; + Q_ENUM(Shuffle) /** Player status. */ enum Status { @@ -97,6 +99,7 @@ /** Error */ Error }; + Q_ENUM(Status) /** * Destroys a MediaPlayer object. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.29.0/src/obextransfer.h new/bluez-qt-5.30.0/src/obextransfer.h --- old/bluez-qt-5.29.0/src/obextransfer.h 2016-12-03 11:05:55.000000000 +0100 +++ new/bluez-qt-5.30.0/src/obextransfer.h 2017-01-08 16:12:35.000000000 +0100 @@ -44,7 +44,6 @@ { Q_OBJECT - Q_ENUMS(Status) Q_PROPERTY(Status status READ status NOTIFY statusChanged) Q_PROPERTY(QString name READ name) Q_PROPERTY(QString type READ type) @@ -72,6 +71,7 @@ /** Indicates that the transfer status is unknown. */ Unknown }; + Q_ENUM(Status) /** * Destroys an ObexTransfer object. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bluez-qt-5.29.0/src/pendingcall.h new/bluez-qt-5.30.0/src/pendingcall.h --- old/bluez-qt-5.29.0/src/pendingcall.h 2016-12-03 11:05:55.000000000 +0100 +++ new/bluez-qt-5.30.0/src/pendingcall.h 2017-01-08 16:12:35.000000000 +0100 @@ -42,7 +42,6 @@ { Q_OBJECT - Q_ENUMS(Error) Q_PROPERTY(QVariant value READ value) Q_PROPERTY(QVariantList values READ values) Q_PROPERTY(int error READ error) @@ -102,6 +101,7 @@ /** Indicates an unknown error. */ UnknownError = 100 }; + Q_ENUM(Error) /** * Destroys a PendingCall object.
participants (1)
-
root@hilbertn.suse.de