Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package libqt5-qtquickcontrols for
openSUSE:Factory checked in at 2021-01-26 14:44:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libqt5-qtquickcontrols (Old)
and /work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtquickcontrols"
Tue Jan 26 14:44:05 2021 rev:43 rq:866044 version:5.15.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/libqt5-qtquickcontrols/libqt5-qtquickcontrols.changes
2020-11-25 19:29:23.162492874 +0100
+++
/work/SRC/openSUSE:Factory/.libqt5-qtquickcontrols.new.28504/libqt5-qtquickcontrols.changes
2021-01-26 14:44:06.919196303 +0100
@@ -1,0 +2,11 @@
+Sat Jan 16 16:25:13 UTC 2021 - Fabian Vogt <[email protected]>
+
+- Add compatibility with qml-autoreqprov
+
+-------------------------------------------------------------------
+Mon Dec 28 21:58:45 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Add patch to fix unfullfillable import:
+ * fix-handle-deps.patch
+
+-------------------------------------------------------------------
New:
----
fix-handle-deps.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libqt5-qtquickcontrols.spec ++++++
--- /var/tmp/diff_new_pack.u8bifR/_old 2021-01-26 14:44:07.419197077 +0100
+++ /var/tmp/diff_new_pack.u8bifR/_new 2021-01-26 14:44:07.423197083 +0100
@@ -1,7 +1,7 @@
#
# spec file for package libqt5-qtquickcontrols
#
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,6 +16,9 @@
#
+# Internal QML imports of examples
+%global __requires_exclude qmlimport\\(.*example.*
+
%define qt5_snapshot 0
%define base_name libqt5
%define real_version 5.15.2
@@ -29,6 +32,8 @@
Group: Development/Libraries/X11
URL: https://www.qt.io
Source:
https://download.qt.io/official_releases/qt/5.15/%{real_version}/submodules/%{tar_version}.tar.xz
+# PATCH-FIX-OPENSUSE
+Patch1: fix-handle-deps.patch
BuildRequires: fdupes
BuildRequires: libQt5Core-private-headers-devel >= %{version}
BuildRequires: libQt5Gui-private-headers-devel >= %{version}
@@ -51,8 +56,8 @@
%package examples
Summary: Qt5 quickcontrols examples
-Group: Development/Libraries/X11
License: BSD-3-Clause
+Group: Development/Libraries/X11
%description examples
Examples for libqt5-qtquickcontrols module.
++++++ fix-handle-deps.patch ++++++
From: Fabian Vogt <[email protected]>
Subject: Fix unfullfillable import in Handle.qml
The module only exists in version 1.0.
Index: qtquickcontrols-everywhere-src-5.15.2/src/extras/Private/Handle.qml
===================================================================
--- qtquickcontrols-everywhere-src-5.15.2.orig/src/extras/Private/Handle.qml
+++ qtquickcontrols-everywhere-src-5.15.2/src/extras/Private/Handle.qml
@@ -41,7 +41,7 @@ import QtQuick 2.0
import QtGraphicalEffects 1.0
import QtQuick.Controls.Styles 1.4
import QtQuick.Controls.Private 1.0
-import QtQuick.Extras.Private 1.1
+import QtQuick.Extras.Private 1.0
import QtQuick.Extras.Private.CppUtils 1.0
Control {