diff -Nru attica-kf5-5.52.0/attica.categories attica-kf5-5.53.0/attica.categories --- attica-kf5-5.52.0/attica.categories 2018-11-03 11:58:07.000000000 +0000 +++ attica-kf5-5.53.0/attica.categories 2018-12-01 14:37:41.000000000 +0000 @@ -1 +1 @@ -org.kde.attica attica +org.kde.attica attica IDENTIFIER [ATTICA] diff -Nru attica-kf5-5.52.0/autotests/configtest.cpp attica-kf5-5.53.0/autotests/configtest.cpp --- attica-kf5-5.52.0/autotests/configtest.cpp 2018-11-03 11:58:07.000000000 +0000 +++ attica-kf5-5.53.0/autotests/configtest.cpp 2018-12-01 14:37:41.000000000 +0000 @@ -21,7 +21,7 @@ */ -#include +#include #include using namespace Attica; diff -Nru attica-kf5-5.52.0/autotests/providertest.cpp attica-kf5-5.53.0/autotests/providertest.cpp --- attica-kf5-5.52.0/autotests/providertest.cpp 2018-11-03 11:58:07.000000000 +0000 +++ attica-kf5-5.53.0/autotests/providertest.cpp 2018-12-01 14:37:41.000000000 +0000 @@ -21,7 +21,7 @@ */ -#include +#include #include #include diff -Nru attica-kf5-5.52.0/CMakeLists.txt attica-kf5-5.53.0/CMakeLists.txt --- attica-kf5-5.52.0/CMakeLists.txt 2018-11-03 11:58:07.000000000 +0000 +++ attica-kf5-5.53.0/CMakeLists.txt 2018-12-01 14:37:41.000000000 +0000 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.0) -set(KF5_VERSION "5.52.0") # handled by release scripts +set(KF5_VERSION "5.53.0") # handled by release scripts project(Attica VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.52.0 NO_MODULE) +find_package(ECM 5.53.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -31,7 +31,7 @@ SOVERSION 5) # Dependencies -set(REQUIRED_QT_VERSION 5.8.0) +set(REQUIRED_QT_VERSION 5.9.0) # Required Qt5 components to build this framework find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Core Network) diff -Nru attica-kf5-5.52.0/debian/changelog attica-kf5-5.53.0/debian/changelog --- attica-kf5-5.52.0/debian/changelog 2018-11-22 14:40:43.000000000 +0000 +++ attica-kf5-5.53.0/debian/changelog 2018-12-09 20:47:06.000000000 +0000 @@ -1,3 +1,9 @@ +attica-kf5 (5.53.0-0ubuntu1) disco; urgency=medium + + * New upstream release (5.53.0) + + -- José Manuel Santamaría Lema Sun, 09 Dec 2018 20:47:06 +0000 + attica-kf5 (5.52.0-0ubuntu1) disco; urgency=medium [ Rik Mills ] diff -Nru attica-kf5-5.52.0/debian/control attica-kf5-5.53.0/debian/control --- attica-kf5-5.52.0/debian/control 2018-11-22 14:40:43.000000000 +0000 +++ attica-kf5-5.53.0/debian/control 2018-12-09 20:47:06.000000000 +0000 @@ -6,7 +6,7 @@ Build-Depends: cmake (>= 3.0~), debhelper (>= 11~), doxygen, - extra-cmake-modules (>= 5.52.0~), + extra-cmake-modules (>= 5.53.0~), graphviz, libqt5sql5-sqlite:native, pkg-kde-tools (>= 0.15.15ubuntu1~), diff -Nru attica-kf5-5.52.0/src/config.h attica-kf5-5.53.0/src/config.h --- attica-kf5-5.52.0/src/config.h 2018-11-03 11:58:07.000000000 +0000 +++ attica-kf5-5.53.0/src/config.h 2018-12-01 14:37:41.000000000 +0000 @@ -23,8 +23,8 @@ #ifndef ATTICA_CONFIG_H #define ATTICA_CONFIG_H -#include -#include +#include +#include #include "attica_export.h" diff -Nru attica-kf5-5.52.0/src/provider.cpp attica-kf5-5.53.0/src/provider.cpp --- attica-kf5-5.52.0/src/provider.cpp 2018-11-03 11:58:07.000000000 +0000 +++ attica-kf5-5.53.0/src/provider.cpp 2018-12-01 14:37:41.000000000 +0000 @@ -614,7 +614,7 @@ if (!project.url().isEmpty()) { postParameters.insert(QLatin1String("url"), project.url()); } - if (project.developers().count()) { + if (!project.developers().isEmpty()) { postParameters.insert(QLatin1String("developers"), project.developers().join(QLatin1String("\n"))); } if (!project.version().isEmpty()) { diff -Nru attica-kf5-5.52.0/src/qtplatformdependent_p.h attica-kf5-5.53.0/src/qtplatformdependent_p.h --- attica-kf5-5.52.0/src/qtplatformdependent_p.h 2018-11-03 11:58:07.000000000 +0000 +++ attica-kf5-5.53.0/src/qtplatformdependent_p.h 2018-12-01 14:37:41.000000000 +0000 @@ -41,7 +41,7 @@ { public: QtPlatformDependent(); - virtual ~QtPlatformDependent(); + ~QtPlatformDependent() override; void setNam(QNetworkAccessManager *nam) override; QNetworkAccessManager *nam() override; diff -Nru attica-kf5-5.52.0/tests/projecttest/projecttest.cpp attica-kf5-5.53.0/tests/projecttest/projecttest.cpp --- attica-kf5-5.52.0/tests/projecttest/projecttest.cpp 2018-11-03 11:58:07.000000000 +0000 +++ attica-kf5-5.53.0/tests/projecttest/projecttest.cpp 2018-12-01 14:37:41.000000000 +0000 @@ -301,7 +301,7 @@ m_editor->projects->insertItem(0, p.name(), p.id()); // TODO: start project jobs here } - if (!listJob->itemList().count()) { + if (listJob->itemList().isEmpty()) { output.append(QLatin1String("No Projects found.")); } } else if (j->metadata().error() == Metadata::OcsError) { @@ -337,7 +337,7 @@ //new_bsa->setData(Qt::UserRole, QVariant(bs.id())); } - if (!listJob->itemList().count()) { + if (listJob->itemList().isEmpty()) { output.append(QLatin1String("No OBS'en found.")); } } else if (j->metadata().error() == Metadata::OcsError) { @@ -368,7 +368,7 @@ QListWidgetItem *new_bsj = new QListWidgetItem(bsj.name(), m_editor->buildServiceJobs); new_bsj->setData(Qt::UserRole, QVariant(bsj.id())); } - if (!listJob->itemList().count()) { + if (listJob->itemList().isEmpty()) { output.append(QLatin1String("No jobs found.")); } } else if (j->metadata().error() == Metadata::OcsError) {