[SCM] qtdeclarative packaging branch, experimental, updated. debian/5.9.2-3-3-g4958664

Dmitry Shachnev mitya57 at moszumanska.debian.org
Thu Dec 7 13:40:11 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/qt/qtdeclarative.git;a=commitdiff;h=4958664

The following commit has been merged in the experimental branch:
commit 4958664b256e2d45d6239b2a8bfeb14ddada8f8f
Author: Dmitry Shachnev <mitya57 at gmail.com>
Date:   Thu Dec 7 16:39:52 2017 +0300

    Drop revert_singletons_change.diff, QTBUG-64017 was fixed upstream.
---
 debian/changelog                              |   1 +
 debian/patches/revert_singletons_change.patch | 136 --------------------------
 debian/patches/series                         |   1 -
 3 files changed, 1 insertion(+), 137 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 74122df..e37086a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ qtdeclarative-opensource-src (5.10.0-1) UNRELEASED; urgency=medium
   [ Dmitry Shachnev ]
   * New upstream release.
   * Update debian/watch for the new tarball names.
+  * Drop revert_singletons_change.diff, QTBUG-64017 was fixed upstream.
 
  -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org>  Thu, 07 Dec 2017 16:37:42 +0300
 
diff --git a/debian/patches/revert_singletons_change.patch b/debian/patches/revert_singletons_change.patch
deleted file mode 100644
index 9808ef6..0000000
--- a/debian/patches/revert_singletons_change.patch
+++ /dev/null
@@ -1,136 +0,0 @@
-Description: revert commit 98358715930739ca which caused issues in some apps
-Author: Dmitry Shachnev <mitya57 at debian.org>
-Bug: https://bugreports.qt.io/browse/QTBUG-64017
-Bug: https://bugs.kde.org/show_bug.cgi?id=385648
-Forwarded: no
-Last-Update: 2017-10-26
-
---- a/src/qml/qml/qqmlimport.cpp
-+++ b/src/qml/qml/qqmlimport.cpp
-@@ -471,17 +471,6 @@
-                 resultList.append(ref);
-             }
-         }
--
--        if (QQmlTypeModule *module = QQmlMetaType::typeModule(import->uri, import->majversion)) {
--            module->walkCompositeSingletons([&resultList, &set](const QQmlType &singleton) {
--                QQmlImports::CompositeSingletonReference ref;
--                ref.typeName = singleton.elementName();
--                ref.prefix = set.prefix;
--                ref.majorVersion = singleton.majorVersion();
--                ref.minorVersion = singleton.minorVersion();
--                resultList.append(ref);
--            });
--        }
-     }
- }
- 
---- a/src/qml/qml/qqmlmetatype.cpp
-+++ b/src/qml/qml/qqmlmetatype.cpp
-@@ -1265,18 +1265,6 @@
-     return QQmlType();
- }
- 
--void QQmlTypeModule::walkCompositeSingletons(const std::function<void(const QQmlType &)> &callback) const
--{
--    QMutexLocker lock(metaTypeDataLock());
--    for (auto typeCandidates = d->typeHash.begin(), end = d->typeHash.end();
--         typeCandidates != end; ++typeCandidates) {
--        for (auto type: typeCandidates.value()) {
--            if (type->regType == QQmlType::CompositeSingletonType)
--                callback(QQmlType(type));
--        }
--    }
--}
--
- QQmlTypeModuleVersion::QQmlTypeModuleVersion()
- : m_module(0), m_minor(0)
- {
---- a/src/qml/qml/qqmlmetatype_p.h
-+++ b/src/qml/qml/qqmlmetatype_p.h
-@@ -299,8 +299,6 @@
-     QQmlType type(const QHashedStringRef &, int) const;
-     QQmlType type(const QV4::String *, int) const;
- 
--    void walkCompositeSingletons(const std::function<void(const QQmlType &)> &callback) const;
--
-     QQmlTypeModulePrivate *priv() { return d; }
- private:
-     //Used by register functions and creates the QQmlTypeModule for them
---- a/tests/auto/qml/qmldiskcache/tst_qmldiskcache.cpp
-+++ b/tests/auto/qml/qmldiskcache/tst_qmldiskcache.cpp
-@@ -59,7 +59,6 @@
-     void cacheResources();
-     void stableOrderOfDependentCompositeTypes();
-     void singletonDependency();
--    void cppRegisteredSingletonDependency();
- };
- 
- // A wrapper around QQmlComponent to ensure the temporary reference counts
-@@ -791,66 +790,6 @@
-     }
- }
- 
--void tst_qmldiskcache::cppRegisteredSingletonDependency()
--{
--    qmlClearTypeRegistrations();
--    QScopedPointer<QQmlEngine> engine(new QQmlEngine);
--
--    QTemporaryDir tempDir;
--    QVERIFY(tempDir.isValid());
--
--    const auto writeTempFile = [&tempDir](const QString &fileName, const char *contents) {
--        QFile f(tempDir.path() + '/' + fileName);
--        const bool ok = f.open(QIODevice::WriteOnly | QIODevice::Truncate);
--        Q_ASSERT(ok);
--        f.write(contents);
--        return f.fileName();
--    };
--
--    writeTempFile("MySingleton.qml", "import QtQml 2.0
pragma Singleton
QtObject { property int value: 42 }");
--
--    qmlRegisterSingletonType(QUrl::fromLocalFile(tempDir.path() + QLatin1String("/MySingleton.qml")), "CppRegisteredSingletonDependency", 1, 0, "Singly");
--
--    const QString testFilePath = writeTempFile("main.qml", "import QtQml 2.0
import CppRegisteredSingletonDependency 1.0
QtObject {
"
--                                                           "    function getValue() { return Singly.value; }
"
--                                                           "}");
--
--    {
--        CleanlyLoadingComponent component(engine.data(), QUrl::fromLocalFile(testFilePath));
--        QScopedPointer<QObject> obj(component.create());
--        QVERIFY(!obj.isNull());
--        QVariant value;
--        QVERIFY(QMetaObject::invokeMethod(obj.data(), "getValue", Q_RETURN_ARG(QVariant, value)));
--        QCOMPARE(value.toInt(), 42);
--    }
--
--    const QString testFileCachePath = testFilePath + QLatin1Char('c');
--    QVERIFY(QFile::exists(testFileCachePath));
--    QDateTime initialCacheTimeStamp = QFileInfo(testFileCachePath).lastModified();
--
--    engine.reset(new QQmlEngine);
--    waitForFileSystem();
--
--    writeTempFile("MySingleton.qml", "import QtQml 2.0
pragma Singleton
QtObject { property int value: 100 }");
--    waitForFileSystem();
--
--    {
--        CleanlyLoadingComponent component(engine.data(), QUrl::fromLocalFile(testFilePath));
--        QScopedPointer<QObject> obj(component.create());
--        QVERIFY(!obj.isNull());
--
--        {
--            QVERIFY(QFile::exists(testFileCachePath));
--            QDateTime newCacheTimeStamp = QFileInfo(testFileCachePath).lastModified();
--            QVERIFY2(newCacheTimeStamp > initialCacheTimeStamp, qPrintable(newCacheTimeStamp.toString()));
--        }
--
--        QVariant value;
--        QVERIFY(QMetaObject::invokeMethod(obj.data(), "getValue", Q_RETURN_ARG(QVariant, value)));
--        QCOMPARE(value.toInt(), 100);
--    }
--}
--
- QTEST_MAIN(tst_qmldiskcache)
- 
- #include "tst_qmldiskcache.moc"
diff --git a/debian/patches/series b/debian/patches/series
index 48f1452..ab002cf 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -5,4 +5,3 @@ disableopengltests.patch
 fix_test_remove_qlibraryinfo.patch
 Do-not-make-lack-of-SSE2-support-on-x86-32-fatal.patch
 disable_jit_on_mips.patch
-revert_singletons_change.patch

-- 
qtdeclarative packaging



More information about the pkg-kde-commits mailing list