Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package breeze5-icons for openSUSE:Factory checked in at 2022-06-17 21:18:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/breeze5-icons (Old) and /work/SRC/openSUSE:Factory/.breeze5-icons.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "breeze5-icons" Fri Jun 17 21:18:51 2022 rev:81 rq:982235 version:5.95.0 Changes: -------- --- /work/SRC/openSUSE:Factory/breeze5-icons/breeze5-icons.changes 2022-05-16 18:06:32.409182196 +0200 +++ /work/SRC/openSUSE:Factory/.breeze5-icons.new.1548/breeze5-icons.changes 2022-06-17 21:19:08.834663863 +0200 @@ -1,0 +2,10 @@ +Fri Jun 10 14:12:13 UTC 2022 - Christophe Giboudeaux <[email protected]> + +- Update to 5.95.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/5/5.95.0 +- Changes since 5.94.0: + * port to standard C++ smart pointers where possible + +------------------------------------------------------------------- Old: ---- breeze-icons-5.94.0.tar.xz breeze-icons-5.94.0.tar.xz.sig New: ---- breeze-icons-5.95.0.tar.xz breeze-icons-5.95.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ breeze5-icons.spec ++++++ --- /var/tmp/diff_new_pack.48WPPf/_old 2022-06-17 21:19:09.474664210 +0200 +++ /var/tmp/diff_new_pack.48WPPf/_new 2022-06-17 21:19:09.486664217 +0200 @@ -16,7 +16,7 @@ # -%define _tar_path 5.94 +%define _tar_path 5.95 # Full KF5 version (e.g. 5.33.0) %{!?_kf5_version: %global _kf5_version %{version}} # Last major and minor KF5 version (e.g. 5.33) @@ -24,7 +24,7 @@ # Only needed for the package signature condition %bcond_without released Name: breeze5-icons -Version: 5.94.0 +Version: 5.95.0 Release: 0 Summary: Breeze icon theme License: LGPL-3.0-only ++++++ breeze-icons-5.94.0.tar.xz -> breeze-icons-5.95.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-icons-5.94.0/CMakeLists.txt new/breeze-icons-5.95.0/CMakeLists.txt --- old/breeze-icons-5.94.0/CMakeLists.txt 2022-04-11 21:49:44.000000000 +0200 +++ new/breeze-icons-5.95.0/CMakeLists.txt 2022-06-08 00:50:07.000000000 +0200 @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "5.94.0") # handled by release scripts +set(KF_VERSION "5.95.0") # handled by release scripts project(BreezeIcons VERSION ${KF_VERSION}) # Disallow in-source build @@ -10,7 +10,7 @@ # ECM setup include(FeatureSummary) -find_package(ECM 5.93.0 NO_MODULE) +find_package(ECM 5.95.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) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-icons-5.94.0/autotests/scalabletest.cpp new/breeze-icons-5.95.0/autotests/scalabletest.cpp --- old/breeze-icons-5.94.0/autotests/scalabletest.cpp 2022-04-11 21:49:44.000000000 +0200 +++ new/breeze-icons-5.95.0/autotests/scalabletest.cpp 2022-06-08 00:50:07.000000000 +0200 @@ -155,7 +155,7 @@ // Declare so we can put them into the QTest data table. Q_DECLARE_METATYPE(KIconLoaderDummy::Context) -Q_DECLARE_METATYPE(QSharedPointer<Dir>) +Q_DECLARE_METATYPE(std::shared_ptr<Dir>) class ScalableTest : public QObject { @@ -167,7 +167,7 @@ for (auto dir : ICON_DIRS) { QString themeDir = PROJECT_SOURCE_DIR + QStringLiteral("/") + dir; - QHash<KIconLoaderDummy::Context, QList<QSharedPointer<Dir>>> contextHash; + QHash<KIconLoaderDummy::Context, QList<std::shared_ptr<Dir>>> contextHash; QHash<KIconLoaderDummy::Context, QString> contextStringHash; QSettings config(themeDir + "/index.theme", QSettings::IniFormat); @@ -187,7 +187,7 @@ .arg(themeDir + "/index.theme", directoryPath) .toLatin1() .constData()); - auto dir = QSharedPointer<Dir>::create(config, themeDir); + auto dir = std::make_shared<Dir>(config, themeDir); config.endGroup(); contextHash[dir->context].append(dir); contextStringHash[dir->context] = (dir->contextString); @@ -215,7 +215,7 @@ .arg(inheritedDir + "/index.theme", path) .toLatin1() .constData()); - auto dir = QSharedPointer<Dir>::create(inheritedConfig, inheritedDir); + auto dir = std::make_shared<Dir>(inheritedConfig, inheritedDir); inheritedConfig.endGroup(); contextHash[dir->context].append(dir); contextStringHash[dir->context] = (dir->contextString); @@ -224,7 +224,7 @@ config.endGroup(); QTest::addColumn<KIconLoaderDummy::Context>("context"); - QTest::addColumn<QList<QSharedPointer<Dir>>>("dirs"); + QTest::addColumn<QList<std::shared_ptr<Dir>>>("dirs"); for (auto key : contextHash.keys()) { if (key != KIconLoaderDummy::Application) { @@ -242,10 +242,10 @@ void test_scalable() { QFETCH(KIconLoaderDummy::Context, context); - QFETCH(QList<QSharedPointer<Dir>>, dirs); + QFETCH(QList<std::shared_ptr<Dir>>, dirs); - QList<QSharedPointer<Dir>> fixedDirs; - QList<QSharedPointer<Dir>> scalableDirs; + QList<std::shared_ptr<Dir>> fixedDirs; + QList<std::shared_ptr<Dir>> scalableDirs; for (auto dir : dirs) { switch (dir->type) { case KIconLoaderDummy::Scalable: @@ -307,9 +307,9 @@ void test_scalableDuplicates() { - QFETCH(QList<QSharedPointer<Dir>>, dirs); + QFETCH(QList<std::shared_ptr<Dir>>, dirs); - QList<QSharedPointer<Dir>> scalableDirs; + QList<std::shared_ptr<Dir>> scalableDirs; for (auto dir : dirs) { switch (dir->type) { case KIconLoaderDummy::Scalable: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-icons-5.94.0/icons/index.theme new/breeze-icons-5.95.0/icons/index.theme --- old/breeze-icons-5.94.0/icons/index.theme 2022-04-11 21:49:44.000000000 +0200 +++ new/breeze-icons-5.95.0/icons/index.theme 2022-06-08 00:50:07.000000000 +0200 @@ -24,6 +24,7 @@ Name[id]=Breeze Name[it]=Brezza Name[ja]=Breeze +Name[ka]=Breeze Name[ko]=Breeze Name[lt]=Breeze Name[nl]=Breeze @@ -72,6 +73,7 @@ Comment[id]=Breeze oleh KDE VDG Comment[it]=Brezza del KDE VDG Comment[ja]=KDE VDG ????????? Breeze +Comment[ka]=Breeze KDE VDG-???????????? Comment[ko]=KDE ?????? ????????? ???????????? ????????? Breeze Comment[lt]=Breeze pagal KDE VDG Comment[nl]=Breeze door de KDE VDG diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/breeze-icons-5.94.0/icons-dark/index.theme new/breeze-icons-5.95.0/icons-dark/index.theme --- old/breeze-icons-5.94.0/icons-dark/index.theme 2022-04-11 21:49:44.000000000 +0200 +++ new/breeze-icons-5.95.0/icons-dark/index.theme 2022-06-08 00:50:07.000000000 +0200 @@ -24,6 +24,7 @@ Name[id]=Breeze Gelap Name[it]=Brezza scuro Name[ja]=Breeze ????????? +Name[ka]=Breeze Dark Name[ko]=????????? Breeze Name[lt]=Breeze tamsus Name[nl]=Breeze Dark @@ -72,6 +73,7 @@ Comment[id]=Breeze Gelap oleh KDE VDG Comment[it]=Brezza scuro del KDE VDG Comment[ja]=KDE VDG ????????? Breeze ????????? +Comment[ka]=Breeze Dark "KDE VDG"-???????????? Comment[ko]=KDE ?????? ????????? ???????????? ????????? ????????? Breeze Comment[lt]=Breeze tamsus pagal KDE VDG Comment[nl]=Breeze Dark door de KDE VDG
