Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package plasma6-disks for openSUSE:Factory 
checked in at 2026-06-18 21:35:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma6-disks (Old)
 and      /work/SRC/openSUSE:Factory/.plasma6-disks.new.1981 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "plasma6-disks"

Thu Jun 18 21:35:59 2026 rev:43 rq:1359177 version:6.7.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma6-disks/plasma6-disks.changes      
2026-05-13 21:38:52.562558188 +0200
+++ /work/SRC/openSUSE:Factory/.plasma6-disks.new.1981/plasma6-disks.changes    
2026-06-18 21:36:50.966655126 +0200
@@ -1,0 +2,35 @@
+Fri Jun 12 19:08:03 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.7.0:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.7.0
+- Changes since 6.6.91:
+  * Update version for new release 6.7.0
+  * Add missing qqml.h include
+
+-------------------------------------------------------------------
+Thu May 28 18:44:51 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.6.91:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.6.91
+- Changes since 6.6.90:
+  * Update version for new release 6.6.91
+  * Skip kcm_smoketest with kcmutils < 6.27.0
+- Drop patches, now upstream:
+  * 0001-Skip-kcm_smoketest-with-kcmutils-6.27.0.patch
+
+-------------------------------------------------------------------
+Sun May 24 11:19:23 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.6.90:
+  * New feature release
+  * For more details see https://kde.org/announcements/plasma/6/6.6.90
+- Changes since 6.6.5:
+  * Update version for new release 6.6.90
+  * Add smoke test for KCM
+  * Update version for new release 6.6.80
+- Add patch to fix tests:
+  * 0001-Skip-kcm_smoketest-with-kcmutils-6.27.0.patch
+
+-------------------------------------------------------------------

Old:
----
  plasma-disks-6.6.5.tar.xz
  plasma-disks-6.6.5.tar.xz.sig

New:
----
  plasma-disks-6.7.0.tar.xz
  plasma-disks-6.7.0.tar.xz.sig

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

Other differences:
------------------
++++++ plasma6-disks.spec ++++++
--- /var/tmp/diff_new_pack.ADCNTM/_old  2026-06-18 21:36:51.698685652 +0200
+++ /var/tmp/diff_new_pack.ADCNTM/_new  2026-06-18 21:36:51.698685652 +0200
@@ -16,20 +16,20 @@
 #
 
 
-%define kf6_version 6.18.0
-%define qt6_version 6.9.0
+%define kf6_version 6.26.0
+%define qt6_version 6.10.0
 
 %define rname plasma-disks
 %bcond_without released
 Name:           plasma6-disks
-Version:        6.6.5
+Version:        6.7.0
 Release:        0
 Summary:        Plasma service for monitoring disk health
 License:        GPL-2.0-only OR GPL-3.0-only
 URL:            https://www.kde.org
-Source:         
https://download.kde.org/stable/plasma/%{version}/%{rname}-%{version}.tar.xz
+Source:         %{rname}-%{version}.tar.xz
 %if %{with released}
-Source1:        
https://download.kde.org/stable/plasma/%{version}/%{rname}-%{version}.tar.xz.sig
+Source1:        %{rname}-%{version}.tar.xz.sig
 Source2:        plasma.keyring
 %endif
 BuildRequires:  kf6-extra-cmake-modules >= %{kf6_version}
@@ -45,6 +45,8 @@
 BuildRequires:  cmake(Qt6Core) >= %{qt6_version}
 BuildRequires:  cmake(Qt6Gui) >= %{qt6_version}
 BuildRequires:  cmake(Qt6Test) >= %{qt6_version}
+# For %check
+BuildRequires:  kf6-kcmutils-imports
 Requires:       /usr/sbin/smartctl
 Provides:       plasma5-disks = %{version}
 Obsoletes:      plasma5-disks < %{version}

++++++ plasma-disks-6.6.5.tar.xz -> plasma-disks-6.7.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/CMakeLists.txt 
new/plasma-disks-6.7.0/CMakeLists.txt
--- old/plasma-disks-6.6.5/CMakeLists.txt       2026-05-12 12:30:08.000000000 
+0200
+++ new/plasma-disks-6.7.0/CMakeLists.txt       2026-06-11 11:35:51.000000000 
+0200
@@ -4,10 +4,10 @@
 cmake_minimum_required(VERSION 3.16)
 
 project(plasma-disks)
-set(PROJECT_VERSION "6.6.5")
+set(PROJECT_VERSION "6.7.0")
 
 set(QT_MIN_VERSION "6.10.0")
-set(KF6_MIN_VERSION "6.22.0")
+set(KF6_MIN_VERSION "6.26.0")
 
 find_package(ECM ${KF6_MIN_VERSION} REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${ECM_MODULE_PATH})
@@ -47,8 +47,8 @@
     "CMAKE_BUILD_TYPE MATCHES [Dd]ebug"
     OFF
 )
-ecm_set_disabled_deprecation_versions(QT 6.9.0
-    KF 6.16.0
+ecm_set_disabled_deprecation_versions(QT 6.11.0
+    KF 6.26.0
 )
 
 add_subdirectory(src)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/autotests/CMakeLists.txt 
new/plasma-disks-6.7.0/autotests/CMakeLists.txt
--- old/plasma-disks-6.6.5/autotests/CMakeLists.txt     2026-05-12 
12:30:08.000000000 +0200
+++ new/plasma-disks-6.7.0/autotests/CMakeLists.txt     2026-06-11 
11:35:51.000000000 +0200
@@ -15,3 +15,13 @@
 
 ecm_add_test(devicetest.cpp TEST_NAME devicetest
     LINK_LIBRARIES Qt6::Test statickdedsmart)
+
+# kcmshell6 < 6.27.0 doesn't know the --smoke-test param, so skip this test for
+# now.
+# TODO: Drop this when KF6_MIN_VERSION >= 6.27.0
+if(KF6KCMUtils_VERSION VERSION_GREATER_EQUAL "6.27.0")
+    add_test(NAME kcm_disks_smoketest COMMAND kcmshell6 --smoke-test kcm_disks)
+    set_tests_properties(kcm_disks_smoketest PROPERTIES
+        ENVIRONMENT_MODIFICATION 
QT_PLUGIN_PATH=path_list_prepend:${CMAKE_BINARY_DIR}/bin
+    )
+endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/org.kde.plasma.disks.metainfo.xml 
new/plasma-disks-6.7.0/org.kde.plasma.disks.metainfo.xml
--- old/plasma-disks-6.6.5/org.kde.plasma.disks.metainfo.xml    2026-05-12 
12:30:08.000000000 +0200
+++ new/plasma-disks-6.7.0/org.kde.plasma.disks.metainfo.xml    2026-06-11 
11:35:51.000000000 +0200
@@ -252,9 +252,9 @@
   </categories>
   <url type="homepage">https://invent.kde.org/plasma/plasma-disks</url>
   <releases>
-    <release version="6.6.5" date="2026-05-12"/>
-    <release version="6.6.4" date="2026-04-06"/>
-    <release version="6.6.3" date="2026-03-17"/>
-    <release version="6.6.2" date="2026-03-03"/>
+    <release version="6.7.0" date="2026-06-16"/>
+    <release version="6.3.90" date="2025-05-15"/>
+    <release version="6.2.0" date="2024-10-08"/>
+    <release version="6.1.0" date="2024-06-18"/>
   </releases>
 </component>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/po/ca/kcm_disks.po 
new/plasma-disks-6.7.0/po/ca/kcm_disks.po
--- old/plasma-disks-6.6.5/po/ca/kcm_disks.po   2026-05-12 12:30:08.000000000 
+0200
+++ new/plasma-disks-6.7.0/po/ca/kcm_disks.po   2026-06-11 11:35:51.000000000 
+0200
@@ -169,3 +169,19 @@
 msgctxt "@action:button notification action to manage device problems"
 msgid "Manage"
 msgstr "Gestiona"
+
+#~ msgctxt "@action/button show detailed smart report"
+#~ msgid "Detailed Information"
+#~ msgstr "Informació detallada"
+
+#~ msgctxt "NAME OF TRANSLATORS"
+#~ msgid "Your names"
+#~ msgstr "Josep M. Ferrer"
+
+#~ msgctxt "@title"
+#~ msgid "Storage Device Health Monitoring"
+#~ msgstr "Monitoratge de l'estat dels dispositius d'emmagatzematge"
+
+#~ msgctxt "@info:credit"
+#~ msgid "Copyright 2020 Harald Sitter"
+#~ msgstr "Copyright 2020 Harald Sitter"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/po/hu/kcm_disks.po 
new/plasma-disks-6.7.0/po/hu/kcm_disks.po
--- old/plasma-disks-6.6.5/po/hu/kcm_disks.po   2026-05-12 12:30:08.000000000 
+0200
+++ new/plasma-disks-6.7.0/po/hu/kcm_disks.po   2026-06-11 11:35:51.000000000 
+0200
@@ -2,13 +2,13 @@
 # This file is distributed under the same license as the plasma-disks package.
 #
 # Kristóf Kiszel <[email protected]>, 2020, 2021.
-# SPDX-FileCopyrightText: 2024 Kristof Kiszel <[email protected]>
+# SPDX-FileCopyrightText: 2024, 2026 Kristof Kiszel <[email protected]>
 msgid ""
 msgstr ""
 "Project-Id-Version: plasma-disks\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2025-11-29 00:44+0000\n"
-"PO-Revision-Date: 2024-09-16 21:37+0200\n"
+"PO-Revision-Date: 2026-05-30 21:42+0200\n"
 "Last-Translator: Kristof Kiszel <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
 "Language: hu\n"
@@ -16,7 +16,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Lokalize 24.08.0\n"
+"X-Generator: Lokalize 26.04.1\n"
 
 #: instabilities.cpp:27
 #, kde-format
@@ -120,7 +120,7 @@
 #: kcm/ui/ReportPage.qml:24
 msgctxt "@action:button copies all displayed text"
 msgid "Copy to Clipboard"
-msgstr ""
+msgstr "Másolás a vágólapra"
 
 #: smartctl.cpp:33
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/po/ia/kcm_disks.po 
new/plasma-disks-6.7.0/po/ia/kcm_disks.po
--- old/plasma-disks-6.6.5/po/ia/kcm_disks.po   2026-05-12 12:30:08.000000000 
+0200
+++ new/plasma-disks-6.7.0/po/ia/kcm_disks.po   2026-06-11 11:35:51.000000000 
+0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: plasma-disks\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2025-11-29 00:44+0000\n"
-"PO-Revision-Date: 2026-02-05 16:27+0100\n"
+"PO-Revision-Date: 2026-01-26 16:24+0100\n"
 "Last-Translator: giovanni <[email protected]>\n"
 "Language-Team: Interlingua <[email protected]>\n"
 "Language: ia\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/po/lt/kcm_disks.po 
new/plasma-disks-6.7.0/po/lt/kcm_disks.po
--- old/plasma-disks-6.6.5/po/lt/kcm_disks.po   2026-05-12 12:30:08.000000000 
+0200
+++ new/plasma-disks-6.7.0/po/lt/kcm_disks.po   2026-06-11 11:35:51.000000000 
+0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: plasma-disks\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2025-11-29 00:44+0000\n"
-"PO-Revision-Date: 2026-01-30 14:14+0200\n"
+"PO-Revision-Date: 2026-01-30 14:10+0200\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "Language: lt\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/po/lv/kcm_disks.po 
new/plasma-disks-6.7.0/po/lv/kcm_disks.po
--- old/plasma-disks-6.6.5/po/lv/kcm_disks.po   2026-05-12 12:30:08.000000000 
+0200
+++ new/plasma-disks-6.7.0/po/lv/kcm_disks.po   2026-06-11 11:35:51.000000000 
+0200
@@ -1,13 +1,13 @@
 # Copyright (C) 2024 This file is copyright:
 # This file is distributed under the same license as the plasma-disks package.
 #
-# SPDX-FileCopyrightText: 2024 Toms Trasūns <[email protected]>
+# SPDX-FileCopyrightText: 2024, 2026 Toms Trasūns <[email protected]>
 msgid ""
 msgstr ""
 "Project-Id-Version: plasma-disks\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2025-11-29 00:44+0000\n"
-"PO-Revision-Date: 2024-06-27 21:35+0300\n"
+"PO-Revision-Date: 2026-03-03 13:17+0200\n"
 "Last-Translator: Toms Trasuns <[email protected]>\n"
 "Language-Team: Latvian <[email protected]>\n"
 "Language: lv\n"
@@ -16,7 +16,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
 "2);\n"
-"X-Generator: Lokalize 24.05.0\n"
+"X-Generator: Lokalize 25.12.2\n"
 
 #: instabilities.cpp:27
 #, kde-format
@@ -121,7 +121,7 @@
 #: kcm/ui/ReportPage.qml:24
 msgctxt "@action:button copies all displayed text"
 msgid "Copy to Clipboard"
-msgstr ""
+msgstr "Kopēt starpliktuvē"
 
 #: smartctl.cpp:33
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/po/nn/kcm_disks.po 
new/plasma-disks-6.7.0/po/nn/kcm_disks.po
--- old/plasma-disks-6.6.5/po/nn/kcm_disks.po   2026-05-12 12:30:08.000000000 
+0200
+++ new/plasma-disks-6.7.0/po/nn/kcm_disks.po   2026-06-11 11:35:51.000000000 
+0200
@@ -7,7 +7,7 @@
 "POT-Creation-Date: 2025-11-29 00:44+0000\n"
 "PO-Revision-Date: 2026-02-26 18:53+0100\n"
 "Last-Translator: Karl Ove Hufthammer <[email protected]>\n"
-"Language-Team: Norwegian Nynorsk <[email protected]>\n"
+"Language-Team: Norwegian Nynorsk <[email protected]>\n"
 "Language: nn\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/po/sv/kcm_disks.po 
new/plasma-disks-6.7.0/po/sv/kcm_disks.po
--- old/plasma-disks-6.6.5/po/sv/kcm_disks.po   2026-05-12 12:30:08.000000000 
+0200
+++ new/plasma-disks-6.7.0/po/sv/kcm_disks.po   2026-06-11 11:35:51.000000000 
+0200
@@ -1,13 +1,13 @@
 # Copyright (C) 2024 This file is copyright:
 # This file is distributed under the same license as the plasma-disks package.
 #
-# SPDX-FileCopyrightText: 2020, 2021, 2024, 2025 Stefan Asserhäll 
<[email protected]>
+# SPDX-FileCopyrightText: 2020, 2021, 2024, 2026 Stefan Asserhäll 
<[email protected]>
 msgid ""
 msgstr ""
 "Project-Id-Version: plasma-disks\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2025-11-29 00:44+0000\n"
-"PO-Revision-Date: 2026-01-17 16:51+0100\n"
+"PO-Revision-Date: 2026-01-20 20:52+0100\n"
 "Last-Translator: Stefan Asserhäll <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
 "Language: sv\n"
@@ -15,7 +15,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Lokalize 25.08.3\n"
+"X-Generator: Lokalize 25.12.1\n"
 
 #: instabilities.cpp:27
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/src/kcm/kcm_disks.json 
new/plasma-disks-6.7.0/src/kcm/kcm_disks.json
--- old/plasma-disks-6.6.5/src/kcm/kcm_disks.json       2026-05-12 
12:30:08.000000000 +0200
+++ new/plasma-disks-6.7.0/src/kcm/kcm_disks.json       2026-06-11 
11:35:51.000000000 +0200
@@ -24,7 +24,7 @@
         "Description[it]": "Controllo dello stato di salute dei dispositivi di 
archiviazione",
         "Description[ka]": "საცავის მოწყობილობის ჯანმრთელობის თვალყურის 
დევნება",
         "Description[ko]": "저장 장치 상태 모니터링",
-        "Description[lt]": "Atminties įtaiso būsenos stebėjimas",
+        "Description[lt]": "Atminties įtaisų būsenos stebėjimas",
         "Description[lv]": "Krātuves ierīces veselības pārraudzība",
         "Description[nl]": "Monitoren van welzijn opslagapparaat",
         "Description[nn]": "Overvaking av helsetilstanden til 
lagringseiningar",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/src/kcm/module.cpp 
new/plasma-disks-6.7.0/src/kcm/module.cpp
--- old/plasma-disks-6.6.5/src/kcm/module.cpp   2026-05-12 12:30:08.000000000 
+0200
+++ new/plasma-disks-6.7.0/src/kcm/module.cpp   2026-06-11 11:35:51.000000000 
+0200
@@ -1,6 +1,8 @@
 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR 
LicenseRef-KDE-Accepted-GPL
 // SPDX-FileCopyrightText: 2020 Harald Sitter <[email protected]>
 
+#include <qqml.h>
+
 #include <KQuickConfigModule>
 
 #include "devicemodel.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/plasma-disks-6.6.5/src/smart.json 
new/plasma-disks-6.7.0/src/smart.json
--- old/plasma-disks-6.6.5/src/smart.json       2026-05-12 12:30:08.000000000 
+0200
+++ new/plasma-disks-6.7.0/src/smart.json       2026-06-11 11:35:51.000000000 
+0200
@@ -24,7 +24,7 @@
         "Description[it]": "Controllo dello stato di salute dei dispositivi di 
archiviazione",
         "Description[ka]": "საცავის მოწყობილობის ჯანმრთელობის თვალყურის 
დევნება",
         "Description[ko]": "저장 장치 상태 모니터링",
-        "Description[lt]": "Atminties įtaiso būsenos stebėjimas",
+        "Description[lt]": "Atminties įtaisų būsenos stebėjimas",
         "Description[lv]": "Krātuves ierīces veselības pārraudzība",
         "Description[nl]": "Monitoren van welzijn opslagapparaat",
         "Description[nn]": "Overvaking av helsetilstanden til 
lagringseiningar",

Reply via email to