Hello community, here is the log from the commit of package attica-qt5 for openSUSE:Factory checked in at 2020-12-15 12:27:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/attica-qt5 (Old) and /work/SRC/openSUSE:Factory/.attica-qt5.new.2328 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "attica-qt5" Tue Dec 15 12:27:50 2020 rev:86 rq:855399 version:5.77.0 Changes: -------- --- /work/SRC/openSUSE:Factory/attica-qt5/attica-qt5.changes 2020-11-23 10:21:54.128780975 +0100 +++ /work/SRC/openSUSE:Factory/.attica-qt5.new.2328/attica-qt5.changes 2020-12-15 12:28:00.603885519 +0100 @@ -1,0 +2,10 @@ +Sat Dec 5 18:56:06 UTC 2020 - Christophe Giboudeaux <[email protected]> + +- Update to 5.77.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/kde-frameworks-5.77.0 +- Changes since 5.76.0: + * Fix crash in provider loading by checking reply pointer before deref (kde#427974) + +------------------------------------------------------------------- Old: ---- attica-5.76.0.tar.xz attica-5.76.0.tar.xz.sig New: ---- attica-5.77.0.tar.xz attica-5.77.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ attica-qt5.spec ++++++ --- /var/tmp/diff_new_pack.90qQI2/_old 2020-12-15 12:28:01.435886189 +0100 +++ /var/tmp/diff_new_pack.90qQI2/_new 2020-12-15 12:28:01.439886193 +0100 @@ -19,7 +19,7 @@ %define sonum 5 %define rname attica %define _libname KF5Attica -%define _tar_path 5.76 +%define _tar_path 5.77 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) @@ -27,7 +27,7 @@ # Only needed for the package signature condition %bcond_without lang Name: attica-qt5 -Version: 5.76.0 +Version: 5.77.0 Release: 0 Summary: Open Collaboration Service client library License: LGPL-2.1-or-later @@ -43,9 +43,9 @@ BuildRequires: fdupes BuildRequires: kf5-filesystem BuildRequires: pkgconfig -BuildRequires: cmake(Qt5Core) >= 5.12.0 -BuildRequires: cmake(Qt5Network) >= 5.12.0 -BuildRequires: cmake(Qt5Widgets) >= 5.12.0 +BuildRequires: cmake(Qt5Core) >= 5.13.0 +BuildRequires: cmake(Qt5Network) >= 5.13.0 +BuildRequires: cmake(Qt5Widgets) >= 5.13.0 %description Attica is a library to access Open Collaboration Service servers. @@ -64,9 +64,9 @@ Summary: Open Collaboration Service client library - development files Group: Development/Libraries/C and C++ Requires: lib%{_libname}%{sonum} = %{version} -Requires: cmake(Qt5Core) >= 5.12.0 -Requires: cmake(Qt5Network) >= 5.12.0 -Requires: cmake(Qt5Widgets) >= 5.12.0 +Requires: cmake(Qt5Core) >= 5.13.0 +Requires: cmake(Qt5Network) >= 5.13.0 +Requires: cmake(Qt5Widgets) >= 5.13.0 %description -n attica-qt5-devel Development files for attica, Attica a library to access Open Collaboration Service servers. ++++++ attica-5.76.0.tar.xz -> attica-5.77.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/attica-5.76.0/CMakeLists.txt new/attica-5.77.0/CMakeLists.txt --- old/attica-5.76.0/CMakeLists.txt 2020-11-07 12:31:27.000000000 +0100 +++ new/attica-5.77.0/CMakeLists.txt 2020-12-05 11:00:51.000000000 +0100 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.5) -set(KF5_VERSION "5.76.0") # handled by release scripts +set(KF5_VERSION "5.77.0") # handled by release scripts project(Attica VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.76.0 NO_MODULE) +find_package(ECM 5.77.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://commits.kde.org/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -34,7 +34,7 @@ SOVERSION 5) # Dependencies -set(REQUIRED_QT_VERSION 5.12.0) +set(REQUIRED_QT_VERSION 5.13.0) # Required Qt5 components to build this framework find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Core Network) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/attica-5.76.0/src/postfiledata.cpp new/attica-5.77.0/src/postfiledata.cpp --- old/attica-5.76.0/src/postfiledata.cpp 2020-11-07 12:31:27.000000000 +0100 +++ new/attica-5.77.0/src/postfiledata.cpp 2020-12-05 11:00:51.000000000 +0100 @@ -61,7 +61,7 @@ if (r > 90) { r += 6; } - str[i++] = char(r); + str[i++] = QLatin1Char(char(r)); } return str; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/attica-5.76.0/src/providermanager.cpp new/attica-5.77.0/src/providermanager.cpp --- old/attica-5.76.0/src/providermanager.cpp 2020-11-07 12:31:27.000000000 +0100 +++ new/attica-5.77.0/src/providermanager.cpp 2020-12-05 11:00:51.000000000 +0100 @@ -143,11 +143,15 @@ void ProviderManager::fileFinished(const QString &url) { QNetworkReply *reply = d->m_downloads.take(url); - if (reply->error()) - Q_EMIT failedToLoad(QUrl(url), reply->error()); - else - parseProviderFile(QLatin1String(reply->readAll()), QUrl(url)); - reply->deleteLater(); + if (reply) { + if (reply->error()) + Q_EMIT failedToLoad(QUrl(url), reply->error()); + else + parseProviderFile(QLatin1String(reply->readAll()), QUrl(url)); + reply->deleteLater(); + } else { + Q_EMIT failedToLoad(QUrl(url), QNetworkReply::UnknownNetworkError); + } } void ProviderManager::addProviderFromXml(const QString &providerXml) _______________________________________________ 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]
