Hello community,
here is the log from the commit of package libqt5-qtdeclarative for
openSUSE:Factory checked in at 2020-11-25 19:28:48
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libqt5-qtdeclarative (Old)
and /work/SRC/openSUSE:Factory/.libqt5-qtdeclarative.new.5913 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtdeclarative"
Wed Nov 25 19:28:48 2020 rev:63 rq:850015 version:5.15.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/libqt5-qtdeclarative/libqt5-qtdeclarative.changes
2020-09-18 15:21:31.133975964 +0200
+++
/work/SRC/openSUSE:Factory/.libqt5-qtdeclarative.new.5913/libqt5-qtdeclarative.changes
2020-11-25 19:29:08.822474816 +0100
@@ -1,0 +2,9 @@
+Fri Nov 20 12:08:48 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Update to 5.15.2:
+ * New bugfix release
+ * For more details please see:
+
http://code.qt.io/cgit/qt/qtdeclarative.git/plain/dist/changes-5.15.2/?h=5.15.2
+- Refresh qtdeclarative-5.15.0-FixMaxXMaxYExtent.patch
+
+-------------------------------------------------------------------
Old:
----
qtdeclarative-everywhere-src-5.15.1.tar.xz
New:
----
qtdeclarative-everywhere-src-5.15.2.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ libqt5-qtdeclarative.spec ++++++
--- /var/tmp/diff_new_pack.2MYT3K/_old 2020-11-25 19:29:11.670478402 +0100
+++ /var/tmp/diff_new_pack.2MYT3K/_new 2020-11-25 19:29:11.674478407 +0100
@@ -19,11 +19,11 @@
%define qt5_snapshot 0
%define libname libQtQuick5
%define base_name libqt5
-%define real_version 5.15.1
-%define so_version 5.15.1
-%define tar_version qtdeclarative-everywhere-src-5.15.1
+%define real_version 5.15.2
+%define so_version 5.15.2
+%define tar_version qtdeclarative-everywhere-src-5.15.2
Name: libqt5-qtdeclarative
-Version: 5.15.1
+Version: 5.15.2
Release: 0
Summary: Qt 5 Declarative Library
License: LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later)
++++++ qtdeclarative-5.15.0-FixMaxXMaxYExtent.patch ++++++
--- /var/tmp/diff_new_pack.2MYT3K/_old 2020-11-25 19:29:11.718478462 +0100
+++ /var/tmp/diff_new_pack.2MYT3K/_new 2020-11-25 19:29:11.718478462 +0100
@@ -22,9 +22,11 @@
Pick-to: 5.15
Change-Id: I7f4060c2f46ae07611bedceca0d322c5f7f6affb
========================================================================================================================
---- a/src/quick/items/qquickitemview.cpp
-+++ b/src/quick/items/qquickitemview.cpp
-@@ -1393,7 +1393,7 @@
+Index: qtdeclarative-everywhere-src-5.15.2/src/quick/items/qquickitemview.cpp
+===================================================================
+--- qtdeclarative-everywhere-src-5.15.2.orig/src/quick/items/qquickitemview.cpp
++++ qtdeclarative-everywhere-src-5.15.2/src/quick/items/qquickitemview.cpp
+@@ -1393,7 +1393,7 @@ qreal QQuickItemView::maxYExtent() const
{
Q_D(const QQuickItemView);
if (d->layoutOrientation() == Qt::Horizontal)
@@ -33,7 +35,7 @@
if (d->vData.maxExtentDirty) {
d->maxExtent = d->maxExtentForAxis(d->vData, false);
-@@ -1421,7 +1421,7 @@
+@@ -1421,7 +1421,7 @@ qreal QQuickItemView::maxXExtent() const
{
Q_D(const QQuickItemView);
if (d->layoutOrientation() == Qt::Vertical)
@@ -42,10 +44,11 @@
if (d->hData.maxExtentDirty) {
d->maxExtent = d->maxExtentForAxis(d->hData, true);
-
---- a/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp
-+++ b/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp
-@@ -73,6 +73,8 @@
+Index:
qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp
+===================================================================
+---
qtdeclarative-everywhere-src-5.15.2.orig/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp
++++
qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp
+@@ -73,6 +73,8 @@ public:
tst_QQuickListView();
private slots:
@@ -54,17 +57,17 @@
void init();
void cleanupTestCase();
// Test QAbstractItemModel model types
-@@ -297,6 +299,8 @@
-
+@@ -299,6 +301,8 @@ private slots:
void requiredObjectListModel();
+ void clickHeaderAndFooterWhenClip();
+ // WARNING: please add new tests to tst_qquicklistview2; this file is too
slow to work with.
+
private:
template <class T> void items(const QUrl &source);
template <class T> void changed(const QUrl &source);
-@@ -10042,6 +10046,8 @@
- }
+@@ -10094,6 +10098,8 @@ void tst_QQuickListView::clickHeaderAndF
+ QVERIFY(root->property("footerPressed").toBool());
}
+// WARNING: please add new tests to tst_qquicklistview2; this file is too
slow to work with.
@@ -72,9 +75,10 @@
QTEST_MAIN(tst_QQuickListView)
#include "tst_qquicklistview.moc"
-
---- a/tests/auto/quick/qquicklistview2/data/maxXExtent.qml
-+++ b/tests/auto/quick/qquicklistview2/data/maxXExtent.qml
+Index:
qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/qquicklistview2/data/maxXExtent.qml
+===================================================================
+--- /dev/null
++++
qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/qquicklistview2/data/maxXExtent.qml
@@ -0,0 +1,54 @@
+/****************************************************************************
+**
@@ -130,9 +134,10 @@
+ }
+ }
+}
-
---- a/tests/auto/quick/qquicklistview2/data/maxYExtent.qml
-+++ b/tests/auto/quick/qquicklistview2/data/maxYExtent.qml
+Index:
qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/qquicklistview2/data/maxYExtent.qml
+===================================================================
+--- /dev/null
++++
qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/qquicklistview2/data/maxYExtent.qml
@@ -0,0 +1,55 @@
+/****************************************************************************
+**
@@ -189,9 +194,10 @@
+ }
+ }
+}
-
---- a/tests/auto/quick/qquicklistview2/qquicklistview2.pro
-+++ b/tests/auto/quick/qquicklistview2/qquicklistview2.pro
+Index:
qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/qquicklistview2/qquicklistview2.pro
+===================================================================
+--- /dev/null
++++
qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/qquicklistview2/qquicklistview2.pro
@@ -0,0 +1,12 @@
+CONFIG += testcase
+TARGET = tst_qquicklistview2
@@ -205,9 +211,10 @@
+TESTDATA = data/*
+
+QT += core-private gui-private qml-private quick-private testlib qmltest
-
---- a/tests/auto/quick/qquicklistview2/tst_qquicklistview2.cpp
-+++ b/tests/auto/quick/qquicklistview2/tst_qquicklistview2.cpp
+Index:
qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/qquicklistview2/tst_qquicklistview2.cpp
+===================================================================
+--- /dev/null
++++
qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/qquicklistview2/tst_qquicklistview2.cpp
@@ -0,0 +1,114 @@
+/****************************************************************************
+**
@@ -323,10 +330,11 @@
+QTEST_MAIN(tst_QQuickListView2)
+
+#include "tst_qquicklistview2.moc"
-
---- a/tests/auto/quick/quick.pro
-+++ b/tests/auto/quick/quick.pro
-@@ -65,6 +65,7 @@
+Index: qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/quick.pro
+===================================================================
+--- qtdeclarative-everywhere-src-5.15.2.orig/tests/auto/quick/quick.pro
++++ qtdeclarative-everywhere-src-5.15.2/tests/auto/quick/quick.pro
+@@ -67,6 +67,7 @@ QUICKTESTS += \
qquickitem2 \
qquickitemlayer \
qquicklistview \
++++++ qtdeclarative-everywhere-src-5.15.1.tar.xz ->
qtdeclarative-everywhere-src-5.15.2.tar.xz ++++++
/work/SRC/openSUSE:Factory/libqt5-qtdeclarative/qtdeclarative-everywhere-src-5.15.1.tar.xz
/work/SRC/openSUSE:Factory/.libqt5-qtdeclarative.new.5913/qtdeclarative-everywhere-src-5.15.2.tar.xz
differ: char 26, line 1
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives:
https://lists.opensuse.org/archives/list/[email protected]