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 2023-07-26 13:22:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qt6-sensors (Old) and /work/SRC/openSUSE:Factory/.qt6-sensors.new.15225 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qt6-sensors" Wed Jul 26 13:22:52 2023 rev:16 rq:1100008 version:6.5.2 Changes: -------- --- /work/SRC/openSUSE:Factory/qt6-sensors/qt6-sensors.changes 2023-07-08 22:47:35.079282559 +0200 +++ /work/SRC/openSUSE:Factory/.qt6-sensors.new.15225/qt6-sensors.changes 2023-07-26 13:23:26.059819425 +0200 @@ -1,0 +2,6 @@ +Thu Jul 20 09:07:11 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 6.5.2 + * https://www.qt.io/blog/qt-6.5.2-released-1 + +------------------------------------------------------------------- Old: ---- qtsensors-everywhere-src-6.5.1.tar.xz New: ---- qtsensors-everywhere-src-6.5.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qt6-sensors.spec ++++++ --- /var/tmp/diff_new_pack.KtmDcD/_old 2023-07-26 13:23:27.067825131 +0200 +++ /var/tmp/diff_new_pack.KtmDcD/_new 2023-07-26 13:23:27.071825154 +0200 @@ -16,7 +16,7 @@ # -%define real_version 6.5.1 +%define real_version 6.5.2 %define short_version 6.5 %define short_name qtsensors %define tar_name qtsensors-everywhere-src @@ -28,12 +28,12 @@ %endif # Name: qt6-sensors%{?pkg_suffix} -Version: 6.5.1 +Version: 6.5.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-or-later) URL: https://www.qt.io -Source: https://download.qt.io/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz +Source: https://www.nic.funet.fi/pub/mirrors/download.qt-project.org/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz Source99: qt6-sensors-rpmlintrc BuildRequires: pkgconfig BuildRequires: qt6-core-private-devel ++++++ qtsensors-everywhere-src-6.5.1.tar.xz -> qtsensors-everywhere-src-6.5.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.5.1/.cmake.conf new/qtsensors-everywhere-src-6.5.2/.cmake.conf --- old/qtsensors-everywhere-src-6.5.1/.cmake.conf 2023-05-16 11:46:21.000000000 +0200 +++ new/qtsensors-everywhere-src-6.5.2/.cmake.conf 2023-07-07 14:29:01.000000000 +0200 @@ -1,3 +1,3 @@ -set(QT_REPO_MODULE_VERSION "6.5.1") +set(QT_REPO_MODULE_VERSION "6.5.2") set(QT_REPO_MODULE_PRERELEASE_VERSION_SEGMENT "alpha1") set(QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_NO_AS_CONST=1") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.5.1/.tag new/qtsensors-everywhere-src-6.5.2/.tag --- old/qtsensors-everywhere-src-6.5.1/.tag 2023-05-16 11:46:21.000000000 +0200 +++ new/qtsensors-everywhere-src-6.5.2/.tag 2023-07-07 14:29:01.000000000 +0200 @@ -1 +1 @@ -e9a2467376526ff30f55f7af61b42f884e9a9986 +b32513f6f894a3fc443a3b0596548a07934e3e3d diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.5.1/CMakeLists.txt new/qtsensors-everywhere-src-6.5.2/CMakeLists.txt --- old/qtsensors-everywhere-src-6.5.1/CMakeLists.txt 2023-05-16 11:46:21.000000000 +0200 +++ new/qtsensors-everywhere-src-6.5.2/CMakeLists.txt 2023-07-07 14:29:01.000000000 +0200 @@ -17,5 +17,6 @@ find_package(Qt6 ${PROJECT_VERSION} CONFIG OPTIONAL_COMPONENTS Xml Gui Widgets Quick Qml Svg DBus QuickTest ) +qt_internal_project_setup() qt_build_repo() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.5.1/conanfile.py new/qtsensors-everywhere-src-6.5.2/conanfile.py --- old/qtsensors-everywhere-src-6.5.1/conanfile.py 2023-05-16 11:46:21.000000000 +0200 +++ new/qtsensors-everywhere-src-6.5.2/conanfile.py 1970-01-01 01:00:00.000000000 +0100 @@ -1,33 +0,0 @@ -# Copyright (C) 2021 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 - -from conans import ConanFile -import re -from pathlib import Path - - -def _parse_qt_version_by_key(key: str) -> str: - with open(Path(__file__).parent.resolve() / ".cmake.conf") as f: - m = re.search(fr'{key} .*"(.*)"', f.read()) - return m.group(1) if m else "" - - -def _get_qt_minor_version() -> str: - return ".".join(_parse_qt_version_by_key("QT_REPO_MODULE_VERSION").split(".")[:2]) - - -class QtSensors(ConanFile): - name = "qtsensors" - license = "LGPL-3.0, GPL-2.0+, Commercial Qt License Agreement" - author = "The Qt Company <https://www.qt.io/contact-us>" - url = "https://code.qt.io/cgit/qt/qtsensors.git" - description = ( - "The Qt Sensors API provides access to sensor hardware via QML and C++ interfaces. " - ) - topics = "qt", "qt6", "sensor" - settings = "os", "compiler", "arch", "build_type" - # for referencing the version number and prerelease tag and dependencies info - exports = ".cmake.conf", "dependencies.yaml" - exports_sources = "*", "!conan*.*" - python_requires = f"qt-conan-common/{_get_qt_minor_version()}@qt/everywhere" - python_requires_extend = "qt-conan-common.QtLeafModule" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.5.1/dependencies.yaml new/qtsensors-everywhere-src-6.5.2/dependencies.yaml --- old/qtsensors-everywhere-src-6.5.1/dependencies.yaml 2023-05-16 11:46:21.000000000 +0200 +++ new/qtsensors-everywhere-src-6.5.2/dependencies.yaml 2023-07-07 14:29:01.000000000 +0200 @@ -1,7 +1,7 @@ dependencies: ../qtbase: - ref: 55aee8697512af105dfefabc1e2ec41d4df1e45e + ref: af457a9f0f7eb1a2a7d11f495da508faab91a442 required: true ../qtdeclarative: - ref: 65651dc1d333e2aded18b0d6f0b71c35e5b40c1c + ref: f289063ff19588a11dd79213632785cfda2909a0 required: false diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.5.1/examples/sensors/sensorsshowcase/android/AndroidManifest.xml new/qtsensors-everywhere-src-6.5.2/examples/sensors/sensorsshowcase/android/AndroidManifest.xml --- old/qtsensors-everywhere-src-6.5.1/examples/sensors/sensorsshowcase/android/AndroidManifest.xml 2023-05-16 11:46:21.000000000 +0200 +++ new/qtsensors-everywhere-src-6.5.2/examples/sensors/sensorsshowcase/android/AndroidManifest.xml 2023-07-07 14:29:01.000000000 +0200 @@ -52,15 +52,5 @@ android:name="android.app.background_running" android:value="false" /> </activity> - - <provider - android:name="androidx.core.content.FileProvider" - android:authorities="${applicationId}.qtprovider" - android:exported="false" - android:grantUriPermissions="true"> - <meta-data - android:name="android.support.FILE_PROVIDER_PATHS" - android:resource="@xml/qtprovider_paths" /> - </provider> </application> </manifest> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtsensors-everywhere-src-6.5.1/src/plugins/sensors/CMakeLists.txt new/qtsensors-everywhere-src-6.5.2/src/plugins/sensors/CMakeLists.txt --- old/qtsensors-everywhere-src-6.5.1/src/plugins/sensors/CMakeLists.txt 2023-05-16 11:46:21.000000000 +0200 +++ new/qtsensors-everywhere-src-6.5.2/src/plugins/sensors/CMakeLists.txt 2023-07-07 14:29:01.000000000 +0200 @@ -25,6 +25,6 @@ add_subdirectory(iio-sensor-proxy) endif() -if(NOT SENSORS_PLUGINS OR "dummy" IN_LIST SENSORS_PLUGINS) +if("dummy" IN_LIST SENSORS_PLUGINS) add_subdirectory(dummy) endif()
