Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qt6-sensors for openSUSE:Factory checked in at 2025-02-03 21:41:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qt6-sensors (Old) and /work/SRC/openSUSE:Factory/.qt6-sensors.new.2316 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qt6-sensors" Mon Feb 3 21:41:12 2025 rev:30 rq:1242065 version:6.8.2 Changes: -------- --- /work/SRC/openSUSE:Factory/qt6-sensors/qt6-sensors.changes 2025-01-25 19:10:01.090601122 +0100 +++ /work/SRC/openSUSE:Factory/.qt6-sensors.new.2316/qt6-sensors.changes 2025-02-03 21:41:27.457376320 +0100 @@ -1,0 +2,6 @@ +Fri Jan 31 10:23:00 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Update to 6.8.2 + https://www.qt.io/blog/qt-6.8.2-released + +------------------------------------------------------------------- Old: ---- qtsensors-everywhere-src-6.8.1.tar.xz New: ---- qtsensors-everywhere-src-6.8.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qt6-sensors.spec ++++++ --- /var/tmp/diff_new_pack.1LxhWo/_old 2025-02-03 21:41:28.053401024 +0100 +++ /var/tmp/diff_new_pack.1LxhWo/_new 2025-02-03 21:41:28.053401024 +0100 @@ -16,7 +16,7 @@ # -%define real_version 6.8.1 +%define real_version 6.8.2 %define short_version 6.8 %define short_name qtsensors %define tar_name qtsensors-everywhere-src @@ -28,7 +28,7 @@ %endif # Name: qt6-sensors%{?pkg_suffix} -Version: 6.8.1 +Version: 6.8.2 Release: 0 Summary: Qt Sensors API to access sensor hardware License: LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only ++++++ qtsensors-everywhere-src-6.8.1.tar.xz -> qtsensors-everywhere-src-6.8.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.8.1/.cmake.conf new/qtsensors-everywhere-src-6.8.2/.cmake.conf --- old/qtsensors-everywhere-src-6.8.1/.cmake.conf 2024-11-21 04:34:12.000000000 +0100 +++ new/qtsensors-everywhere-src-6.8.2/.cmake.conf 2025-01-24 10:12:05.000000000 +0100 @@ -1,4 +1,4 @@ -set(QT_REPO_MODULE_VERSION "6.8.1") +set(QT_REPO_MODULE_VERSION "6.8.2") set(QT_REPO_MODULE_PRERELEASE_VERSION_SEGMENT "alpha1") set(QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_NO_AS_CONST=1") list(APPEND QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_NO_FOREACH=1") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.8.1/.tag new/qtsensors-everywhere-src-6.8.2/.tag --- old/qtsensors-everywhere-src-6.8.1/.tag 2024-11-21 04:34:12.000000000 +0100 +++ new/qtsensors-everywhere-src-6.8.2/.tag 2025-01-24 10:12:05.000000000 +0100 @@ -1 +1 @@ -6f4415ebe39c4311cbb567703055fcd595be1242 +67201d33d6d90205920b46ce5403db21746cb36c diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.8.1/dependencies.yaml new/qtsensors-everywhere-src-6.8.2/dependencies.yaml --- old/qtsensors-everywhere-src-6.8.1/dependencies.yaml 2024-11-21 04:34:12.000000000 +0100 +++ new/qtsensors-everywhere-src-6.8.2/dependencies.yaml 2025-01-24 10:12:05.000000000 +0100 @@ -1,7 +1,7 @@ dependencies: ../qtbase: - ref: 0db4321f2f13c6870283f3fcc0f1a462fd7cf663 + ref: f1136de66638060b8a1ab9bc0cdf1a91dcb5ec01 required: true ../qtdeclarative: - ref: b34fca34941ecdbf99819bbf58b45332ac9e6fa7 + ref: 75534f3e7fff24ed7ccb364e2ed9950a73da879f required: false diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.8.1/src/sensors/doc/snippets/sensors/CMakeLists.txt new/qtsensors-everywhere-src-6.8.2/src/sensors/doc/snippets/sensors/CMakeLists.txt --- old/qtsensors-everywhere-src-6.8.1/src/sensors/doc/snippets/sensors/CMakeLists.txt 2024-11-21 04:34:12.000000000 +0100 +++ new/qtsensors-everywhere-src-6.8.2/src/sensors/doc/snippets/sensors/CMakeLists.txt 2025-01-24 10:12:05.000000000 +0100 @@ -10,7 +10,7 @@ set(CMAKE_AUTORCC ON) set(CMAKE_AUTOUIC ON) -find_package(Qt6 COMPONENTS Core Sensors) +find_package(Qt6 REQUIRED COMPONENTS Core Sensors) qt_add_executable(sensorsdocsnippet creating.cpp @@ -18,6 +18,7 @@ mybackend.h plugin.cpp start.cpp + myreading.cpp ) target_link_libraries(sensorsdocsnippet PUBLIC @@ -30,3 +31,5 @@ log ) endif() + +qt_autogen_tools(sensorsdocsnippet ENABLE_AUTOGEN_TOOLS moc rcc uic) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.8.1/src/sensors/doc/snippets/sensors/myreading.cpp new/qtsensors-everywhere-src-6.8.2/src/sensors/doc/snippets/sensors/myreading.cpp --- old/qtsensors-everywhere-src-6.8.1/src/sensors/doc/snippets/sensors/myreading.cpp 1970-01-01 01:00:00.000000000 +0100 +++ new/qtsensors-everywhere-src-6.8.2/src/sensors/doc/snippets/sensors/myreading.cpp 2025-01-24 10:12:05.000000000 +0100 @@ -0,0 +1,31 @@ +// Copyright (C) 2016 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + +#include <QSensorReading> + +//! [MyReading-Declaration] +class MyReadingPrivate; + +class MyReading : public QSensorReading +{ + Q_OBJECT + Q_PROPERTY(qreal myprop READ myprop) + DECLARE_READING(MyReading) +public: + qreal myprop() const; + void setMyprop(qreal myprop); +}; +//! [MyReading-Declaration] + +qreal MyReading::myprop() const { return 0.0; } +void setMyprop(qreal myprop) { } + +class MyReadingPrivate +{ +}; + +//! [IMPLEMENT_READING_MyReading] +IMPLEMENT_READING(MyReading) +//! [IMPLEMENT_READING_MyReading] + +#include "myreading.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.8.1/src/sensors/qsensor.cpp new/qtsensors-everywhere-src-6.8.2/src/sensors/qsensor.cpp --- old/qtsensors-everywhere-src-6.8.1/src/sensors/qsensor.cpp 2024-11-21 04:34:12.000000000 +0100 +++ new/qtsensors-everywhere-src-6.8.2/src/sensors/qsensor.cpp 2025-01-24 10:12:05.000000000 +0100 @@ -1323,17 +1323,7 @@ This macro should be used for all reading classes. Pass the \a classname of your reading class. - \code - class MyReading : public QSensorReading - { - \Q_OBJECT - Q_PROPERTY(qreal myprop READ myprop) - DECLARE_READING(MyReading) - public: - qreal myprop() const; - vod setMyprop(qreal myprop); - }; - \endcode + \snippet sensors/myreading.cpp MyReading-Declaration \sa IMPLEMENT_READING() */ @@ -1346,9 +1336,7 @@ This macro should be used for all reading classes. It should be placed into a single compilation unit (source file), not into a header file. Pass the \a classname of your reading class. - \code - IMPLEMENT_READING(MyReading) - \endcode + \snippet sensors/myreading.cpp IMPLEMENT_READING_MyReading \sa DECLARE_READING() */