Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package attica-qt5 for openSUSE:Factory checked in at 2021-05-10 15:35:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/attica-qt5 (Old) and /work/SRC/openSUSE:Factory/.attica-qt5.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "attica-qt5" Mon May 10 15:35:02 2021 rev:91 rq:891718 version:5.82.0 Changes: -------- --- /work/SRC/openSUSE:Factory/attica-qt5/attica-qt5.changes 2021-04-12 12:34:17.913103622 +0200 +++ /work/SRC/openSUSE:Factory/.attica-qt5.new.2988/attica-qt5.changes 2021-05-10 15:35:19.542529532 +0200 @@ -1,0 +2,9 @@ +Sat May 1 16:40:27 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 5.82.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.82.0 +- No code change since 5.81.0 + +------------------------------------------------------------------- Old: ---- attica-5.81.0.tar.xz attica-5.81.0.tar.xz.sig New: ---- attica-5.82.0.tar.xz attica-5.82.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ attica-qt5.spec ++++++ --- /var/tmp/diff_new_pack.tzFOD5/_old 2021-05-10 15:35:20.038527627 +0200 +++ /var/tmp/diff_new_pack.tzFOD5/_new 2021-05-10 15:35:20.042527612 +0200 @@ -19,7 +19,7 @@ %define sonum 5 %define rname attica %define _libname KF5Attica -%define _tar_path 5.81 +%define _tar_path 5.82 # 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.81.0 +Version: 5.82.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.14.0 -BuildRequires: cmake(Qt5Network) >= 5.14.0 -BuildRequires: cmake(Qt5Widgets) >= 5.14.0 +BuildRequires: cmake(Qt5Core) >= 5.15.0 +BuildRequires: cmake(Qt5Network) >= 5.15.0 +BuildRequires: cmake(Qt5Widgets) >= 5.15.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.14.0 -Requires: cmake(Qt5Network) >= 5.14.0 -Requires: cmake(Qt5Widgets) >= 5.14.0 +Requires: cmake(Qt5Core) >= 5.15.0 +Requires: cmake(Qt5Network) >= 5.15.0 +Requires: cmake(Qt5Widgets) >= 5.15.0 %description -n attica-qt5-devel Development files for attica, Attica a library to access Open Collaboration Service servers. @@ -75,12 +75,12 @@ %autosetup -p1 -n %{rname}-%{version} %build - %cmake_kf5 -d build - %cmake_build +%cmake_kf5 -d build +%cmake_build %install - %kf5_makeinstall -C build - %fdupes %{buildroot} +%kf5_makeinstall -C build +%fdupes %{buildroot} %post -n lib%{_libname}%{sonum} -p /sbin/ldconfig %postun -n lib%{_libname}%{sonum} -p /sbin/ldconfig ++++++ attica-5.81.0.tar.xz -> attica-5.82.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/attica-5.81.0/.gitignore new/attica-5.82.0/.gitignore --- old/attica-5.81.0/.gitignore 2021-04-03 11:27:20.000000000 +0200 +++ new/attica-5.82.0/.gitignore 2021-05-01 11:36:02.000000000 +0200 @@ -22,3 +22,6 @@ .cmake/ /.clang-format /compile_commands.json +.clangd +.idea +/cmake-build* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/attica-5.81.0/CMakeLists.txt new/attica-5.82.0/CMakeLists.txt --- old/attica-5.81.0/CMakeLists.txt 2021-04-03 11:27:20.000000000 +0200 +++ new/attica-5.82.0/CMakeLists.txt 2021-05-01 11:36:02.000000000 +0200 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.5) -set(KF_VERSION "5.81.0") # handled by release scripts +set(KF_VERSION "5.82.0") # handled by release scripts project(Attica VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.81.0 NO_MODULE) +find_package(ECM 5.82.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) @@ -35,7 +35,7 @@ SOVERSION 5) # Dependencies -set(REQUIRED_QT_VERSION 5.14.0) +set(REQUIRED_QT_VERSION 5.15.0) # Required Qt5 components to build this framework find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Core Network) @@ -44,7 +44,7 @@ # Enable static build option(ATTICA_STATIC_BUILD "Build a static library" Off) -add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050e00) +add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00) add_definitions(-DQT_NO_FOREACH) add_subdirectory(src) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/attica-5.81.0/src/atticabasejob.cpp new/attica-5.82.0/src/atticabasejob.cpp --- old/attica-5.81.0/src/atticabasejob.cpp 2021-04-03 11:27:20.000000000 +0200 +++ new/attica-5.82.0/src/atticabasejob.cpp 2021-05-01 11:36:02.000000000 +0200 @@ -131,16 +131,9 @@ qCDebug(ATTICA) << "executing" << Utils::toString(d->m_reply->operation()) << "request for" << d->m_reply->url(); connect(d->m_reply, &QNetworkReply::finished, this, &BaseJob::dataFinished); connect(d->m_reply->manager(), &QNetworkAccessManager::authenticationRequired, this, &BaseJob::authenticationRequired); -#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0) - connect(d->m_reply, - static_cast<void (QNetworkReply::*)(QNetworkReply::NetworkError)>(&QNetworkReply::error), -#else - connect(d->m_reply, - &QNetworkReply::errorOccurred, -#endif - [](QNetworkReply::NetworkError code) { - qCDebug(ATTICA) << "error found" << code; - }); + connect(d->m_reply, &QNetworkReply::errorOccurred, [](QNetworkReply::NetworkError code) { + qCDebug(ATTICA) << "error found" << code; + }); } void BaseJob::authenticationRequired(QNetworkReply *reply, QAuthenticator *auth)