Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qt6-opcua for openSUSE:Factory checked in at 2023-07-26 13:22:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qt6-opcua (Old) and /work/SRC/openSUSE:Factory/.qt6-opcua.new.15225 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qt6-opcua" Wed Jul 26 13:22:42 2023 rev:21 rq:1099999 version:6.5.2 Changes: -------- --- /work/SRC/openSUSE:Factory/qt6-opcua/qt6-opcua.changes 2023-07-08 22:47:44.399338579 +0200 +++ /work/SRC/openSUSE:Factory/.qt6-opcua.new.15225/qt6-opcua.changes 2023-07-26 13:23:10.519731467 +0200 @@ -1,0 +2,6 @@ +Thu Jul 20 09:06:56 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 6.5.2 + * https://www.qt.io/blog/qt-6.5.2-released-1 + +------------------------------------------------------------------- Old: ---- qtopcua-everywhere-src-6.5.1.tar.xz New: ---- qtopcua-everywhere-src-6.5.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qt6-opcua.spec ++++++ --- /var/tmp/diff_new_pack.GhCSB7/_old 2023-07-26 13:23:11.235735520 +0200 +++ /var/tmp/diff_new_pack.GhCSB7/_new 2023-07-26 13:23:11.239735543 +0200 @@ -16,7 +16,7 @@ # -%define real_version 6.5.1 +%define real_version 6.5.2 %define short_version 6.5 %define tar_name qtopcua-everywhere-src %define tar_suffix %{nil} @@ -27,7 +27,7 @@ %endif # Name: qt6-opcua%{?pkg_suffix} -Version: 6.5.1 +Version: 6.5.2 Release: 0 Summary: Qt wrapper for existing OPC UA stacks # src/plugins/opcua is GPL-3.0-or-later, rest is dual licensed ++++++ _service ++++++ --- /var/tmp/diff_new_pack.GhCSB7/_old 2023-07-26 13:23:11.279735769 +0200 +++ /var/tmp/diff_new_pack.GhCSB7/_new 2023-07-26 13:23:11.283735792 +0200 @@ -1,9 +1,9 @@ <services> <service name="tar_scm" mode="disabled"> <param name="changesgenerate">disable</param> - <param name="version">6.5.1</param> + <param name="version">6.5.2</param> <param name="url">git://code.qt.io/qt/qtopcua.git</param> - <param name="revision">v6.5.1</param> + <param name="revision">v6.5.2</param> <param name="scm">git</param> <param name="filename">qtopcua-everywhere-src</param> </service> ++++++ qtopcua-everywhere-src-6.5.1.tar.xz -> qtopcua-everywhere-src-6.5.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtopcua-everywhere-src-6.5.1/.cmake.conf new/qtopcua-everywhere-src-6.5.2/.cmake.conf --- old/qtopcua-everywhere-src-6.5.1/.cmake.conf 2023-05-16 11:46:53.000000000 +0200 +++ new/qtopcua-everywhere-src-6.5.2/.cmake.conf 2023-07-07 14:29:42.000000000 +0200 @@ -1,4 +1,4 @@ -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_LEAN_HEADERS=1") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtopcua-everywhere-src-6.5.1/CMakeLists.txt new/qtopcua-everywhere-src-6.5.2/CMakeLists.txt --- old/qtopcua-everywhere-src-6.5.1/CMakeLists.txt 2023-05-16 11:46:53.000000000 +0200 +++ new/qtopcua-everywhere-src-6.5.2/CMakeLists.txt 2023-07-07 14:29:42.000000000 +0200 @@ -13,6 +13,7 @@ find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals Core Network) find_package(Qt6 ${PROJECT_VERSION} CONFIG OPTIONAL_COMPONENTS Gui Quick QuickTest Widgets) +qt_internal_project_setup() # Needed for qt_opcua_disable_optimizations_in_current_dir. include(src/opcua/Qt6OpcUaMacros.cmake) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtopcua-everywhere-src-6.5.1/conanfile.py new/qtopcua-everywhere-src-6.5.2/conanfile.py --- old/qtopcua-everywhere-src-6.5.1/conanfile.py 2023-05-16 11:46:53.000000000 +0200 +++ new/qtopcua-everywhere-src-6.5.2/conanfile.py 1970-01-01 01:00:00.000000000 +0100 @@ -1,31 +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 QtOPCUA(ConanFile): - name = "qtopcua" - license = "GPL-3.0+, Commercial Qt License Agreement" - author = "The Qt Company <https://www.qt.io/contact-us>" - url = "https://code.qt.io/cgit/qt/qtopcua.git" - description = "Qt wrapper for existing OPC UA stacks." - topics = "qt", "qt6", "OPC UA", "OPCUA" - 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/qtopcua-everywhere-src-6.5.1/dependencies.yaml new/qtopcua-everywhere-src-6.5.2/dependencies.yaml --- old/qtopcua-everywhere-src-6.5.1/dependencies.yaml 2023-05-16 11:46:53.000000000 +0200 +++ new/qtopcua-everywhere-src-6.5.2/dependencies.yaml 2023-07-07 14:29:42.000000000 +0200 @@ -1,7 +1,7 @@ dependencies: ../qtbase: - ref: 55aee8697512af105dfefabc1e2ec41d4df1e45e + ref: af457a9f0f7eb1a2a7d11f495da508faab91a442 required: true ../qtdeclarative: - ref: 65651dc1d333e2aded18b0d6f0b71c35e5b40c1c + ref: f289063ff19588a11dd79213632785cfda2909a0 required: true diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtopcua-everywhere-src-6.5.1/src/plugins/opcua/uacpp/quacppbackend.cpp new/qtopcua-everywhere-src-6.5.2/src/plugins/opcua/uacpp/quacppbackend.cpp --- old/qtopcua-everywhere-src-6.5.1/src/plugins/opcua/uacpp/quacppbackend.cpp 2023-05-16 11:46:53.000000000 +0200 +++ new/qtopcua-everywhere-src-6.5.2/src/plugins/opcua/uacpp/quacppbackend.cpp 2023-07-07 14:29:42.000000000 +0200 @@ -28,11 +28,6 @@ #include <limits> -// We only undef max and do not use NOMINMAX, as the UA SDK seems to rely on it. -#ifdef max -#undef max -#endif - quint32 UACppAsyncBackend::m_numClients = 0; bool UACppAsyncBackend::m_platformLayerInitialized = false;
