Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kactivities-stats for 
openSUSE:Factory checked in at 2022-10-11 17:59:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kactivities-stats (Old)
 and      /work/SRC/openSUSE:Factory/.kactivities-stats.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kactivities-stats"

Tue Oct 11 17:59:34 2022 rev:79 rq:1008969 version:5.99.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kactivities-stats/kactivities-stats.changes      
2022-09-13 15:09:43.488699310 +0200
+++ 
/work/SRC/openSUSE:Factory/.kactivities-stats.new.2275/kactivities-stats.changes
    2022-10-11 18:01:08.489657228 +0200
@@ -1,0 +2,9 @@
+Sat Oct  1 15:55:26 UTC 2022 - Christophe Giboudeaux <[email protected]>
+
+- Update to 5.99.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/frameworks/5/5.99.0
+- No code change since 5.98.0
+
+-------------------------------------------------------------------

Old:
----
  kactivities-stats-5.98.0.tar.xz
  kactivities-stats-5.98.0.tar.xz.sig

New:
----
  kactivities-stats-5.99.0.tar.xz
  kactivities-stats-5.99.0.tar.xz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kactivities-stats.spec ++++++
--- /var/tmp/diff_new_pack.1VPBWW/_old  2022-10-11 18:01:09.157658309 +0200
+++ /var/tmp/diff_new_pack.1VPBWW/_new  2022-10-11 18:01:09.161658315 +0200
@@ -17,7 +17,7 @@
 
 
 %define lname   libKF5ActivitiesStats1
-%define _tar_path 5.98
+%define _tar_path 5.99
 # Full KF5 version (e.g. 5.33.0)
 %{!?_kf5_version: %global _kf5_version %{version}}
 # Last major and minor KF5 version (e.g. 5.33)
@@ -25,7 +25,7 @@
 # Only needed for the package signature condition
 %bcond_without released
 Name:           kactivities-stats
-Version:        5.98.0
+Version:        5.99.0
 Release:        0
 Summary:        KDE Plasma Activities support
 License:        LGPL-2.0-or-later


++++++ kactivities-stats-5.98.0.tar.xz -> kactivities-stats-5.99.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-stats-5.98.0/CMakeLists.txt 
new/kactivities-stats-5.99.0/CMakeLists.txt
--- old/kactivities-stats-5.98.0/CMakeLists.txt 2022-09-05 11:22:06.000000000 
+0200
+++ new/kactivities-stats-5.99.0/CMakeLists.txt 2022-10-01 15:12:24.000000000 
+0200
@@ -2,8 +2,8 @@
 
 cmake_minimum_required(VERSION 3.16)
 
-set(KF_VERSION "5.98.0") # handled by release scripts
-set(KF_DEP_VERSION "5.98.0") # handled by release scripts
+set(KF_VERSION "5.99.0") # handled by release scripts
+set(KF_DEP_VERSION "5.99.0") # handled by release scripts
 project (KActivitiesStats VERSION ${KF_VERSION})
 
 set (REQUIRED_QT_VERSION 5.15.2)
@@ -20,7 +20,7 @@
 
 # Extra CMake stuff
 include (FeatureSummary)
-find_package (ECM 5.98.0  NO_MODULE)
+find_package (ECM 5.99.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/kactivities-stats-5.98.0/autotests/ResultSetQuickCheckTest.cpp 
new/kactivities-stats-5.99.0/autotests/ResultSetQuickCheckTest.cpp
--- old/kactivities-stats-5.98.0/autotests/ResultSetQuickCheckTest.cpp  
2022-09-05 11:22:06.000000000 +0200
+++ new/kactivities-stats-5.99.0/autotests/ResultSetQuickCheckTest.cpp  
2022-10-01 15:12:24.000000000 +0200
@@ -311,7 +311,7 @@
 void ResultSetQuickCheckTest::generateResourceInfos()
 {
     auto *generator = QRandomGenerator::global();
-    for (const QString &resource : qAsConst(resourcesList)) {
+    for (const QString &resource : std::as_const(resourcesList)) {
         // We want every n-th or so to be without the title
         if (generator->bounded(3)) {
             continue;
@@ -347,7 +347,7 @@
 void ResultSetQuickCheckTest::generateResourceLinks()
 {
     auto *generator = QRandomGenerator::global();
-    for (const QString &resource : qAsConst(resourcesList)) {
+    for (const QString &resource : std::as_const(resourcesList)) {
         // We don't want all the resources to be linked
         // to something
         if (generator->bounded(2)) {
@@ -398,7 +398,7 @@
     qDebug() << "Inserting" << resourceScoreCaches.size() << "items into 
ResourceScoreCache";
     int i = 0;
 
-    for (const auto &rsc : qAsConst(resourceScoreCaches)) {
+    for (const auto &rsc : std::as_const(resourceScoreCaches)) {
         std::cerr << '.';
 
         if (++i % 10 == 0) {
@@ -441,7 +441,7 @@
     qDebug() << "Inserting" << resourceInfos.size() << "items into 
ResourceInfo";
     i = 0;
 
-    for (const auto &ri : qAsConst(resourceInfos)) {
+    for (const auto &ri : std::as_const(resourceInfos)) {
         std::cerr << '.';
 
         if (++i % 10 == 0) {
@@ -476,7 +476,7 @@
     qDebug() << "Inserting" << resourceLinks.size() << "items into 
ResourceLink";
     i = 0;
 
-    for (const auto &rl : qAsConst(resourceLinks)) {
+    for (const auto &rl : std::as_const(resourceLinks)) {
         std::cerr << '.';
 
         if (++i % 10 == 0) {
@@ -581,7 +581,7 @@
     using boost::sort;
     using boost::adaptors::filtered;
 
-    for (const auto &agent : qAsConst(agentsList)) {
+    for (const auto &agent : std::as_const(agentsList)) {
         auto memItems = 
ResourceScoreCache::groupByResource(resourceScoreCaches | 
filtered(ResourceScoreCache::initiatingAgent() == agent));
 
         auto baseTerm = UsedResources | Agent{agent} | Activity::any();
@@ -613,7 +613,7 @@
     using boost::sort;
     using boost::adaptors::filtered;
 
-    for (const auto &agent : qAsConst(agentsList)) {
+    for (const auto &agent : std::as_const(agentsList)) {
         /* clang-format off */
         auto memItems = ResourceLink::groupByResource(
                 resourceLinks
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-stats-5.98.0/src/CMakeLists.txt 
new/kactivities-stats-5.99.0/src/CMakeLists.txt
--- old/kactivities-stats-5.98.0/src/CMakeLists.txt     2022-09-05 
11:22:06.000000000 +0200
+++ new/kactivities-stats-5.99.0/src/CMakeLists.txt     2022-10-01 
15:12:24.000000000 +0200
@@ -97,7 +97,7 @@
    TARGETS KF5ActivitiesStats
    EXPORT KF5ActivitiesStatsLibraryTargets
    ${SKIP_NAMELINK}
-   ${KF5_INSTALL_TARGETS_DEFAULT_ARGS}
+   ${KF_INSTALL_TARGETS_DEFAULT_ARGS}
    )
 
 install (
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kactivities-stats-5.98.0/src/resultmodel.cpp 
new/kactivities-stats-5.99.0/src/resultmodel.cpp
--- old/kactivities-stats-5.98.0/src/resultmodel.cpp    2022-09-05 
11:22:06.000000000 +0200
+++ new/kactivities-stats-5.99.0/src/resultmodel.cpp    2022-10-01 
15:12:24.000000000 +0200
@@ -124,7 +124,7 @@
             // not others
             QStringList linkedItems;
 
-            for (const ResultSet::Result &item : qAsConst(m_items)) {
+            for (const ResultSet::Result &item : std::as_const(m_items)) {
                 if (item.linkStatus() == ResultSet::Result::NotLinked) {
                     break;
                 }
@@ -169,7 +169,7 @@
             m_orderingConfig.sync();
 
             // We need to notify others to reload
-            for (const auto &other : qAsConst(s_privates)) {
+            for (const auto &other : std::as_const(s_privates)) {
                 if (other != d && other->cache.m_clientId == m_clientId) {
                     other->fetch(FetchReset);
                 }

Reply via email to