Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package knighttime6 for openSUSE:Factory 
checked in at 2026-02-16 13:06:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/knighttime6 (Old)
 and      /work/SRC/openSUSE:Factory/.knighttime6.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "knighttime6"

Mon Feb 16 13:06:00 2026 rev:7 rq:1333073 version:6.6.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/knighttime6/knighttime6.changes  2026-01-18 
22:20:01.106454523 +0100
+++ /work/SRC/openSUSE:Factory/.knighttime6.new.1977/knighttime6.changes        
2026-02-16 13:09:27.778391826 +0100
@@ -1,0 +2,35 @@
+Thu Feb 12 19:42:53 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.6.0:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.6.0
+- Changes since 6.5.91:
+  * Update version for new release 6.6.0
+
+-------------------------------------------------------------------
+Wed Jan 28 16:13:58 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.5.91:
+  * New bugfix release
+  * For more details see https://kde.org/announcements/plasma/6/6.5.91
+- Changes since 6.5.90:
+  * Update version for new release 6.5.91
+
+-------------------------------------------------------------------
+Sat Jan 17 20:26:08 UTC 2026 - Fabian Vogt <[email protected]>
+
+- Update to 6.5.90:
+  * New feature release
+  * For more details see https://kde.org/announcements/plasma/6/6.5.90
+- Changes since 6.5.5:
+  * Update version for new release 6.5.90
+  * Remove unused forward declaration
+  * Update version for new release 6.4.6
+  * Fix daylight duration with flipped morning and evening times (kde#511293)
+  * daemon: Remove hasKey() check in migrateNightLightConfig()
+  * daemon: Migrate config from night light (kde#510182)
+  * Add QHP target
+  * Fix spelling typo
+  * Update version for new release 6.5.80
+
+-------------------------------------------------------------------

Old:
----
  knighttime-6.5.5.tar.xz
  knighttime-6.5.5.tar.xz.sig

New:
----
  knighttime-6.6.0.tar.xz
  knighttime-6.6.0.tar.xz.sig

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

Other differences:
------------------
++++++ knighttime6.spec ++++++
--- /var/tmp/diff_new_pack.y8UD8R/_old  2026-02-16 13:09:28.818435099 +0100
+++ /var/tmp/diff_new_pack.y8UD8R/_new  2026-02-16 13:09:28.818435099 +0100
@@ -25,14 +25,14 @@
 %{!?_plasma6_version: %define _plasma6_version %(echo %{_plasma6_bugfix} | awk 
-F. '{print $1"."$2}')}
 %bcond_without released
 Name:           knighttime6
-Version:        6.5.5
+Version:        6.6.0
 Release:        0
 Summary:        Day-night cycle helper library
 License:        LGPL-2.1-or-later
 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:  fdupes

++++++ knighttime-6.5.5.tar.xz -> knighttime-6.6.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knighttime-6.5.5/CMakeLists.txt 
new/knighttime-6.6.0/CMakeLists.txt
--- old/knighttime-6.5.5/CMakeLists.txt 2026-01-13 13:58:05.000000000 +0100
+++ new/knighttime-6.6.0/CMakeLists.txt 2026-02-12 11:02:51.000000000 +0100
@@ -4,15 +4,15 @@
 
 cmake_minimum_required(VERSION 3.16)
 
-set(PROJECT_VERSION "6.5.5")
+set(PROJECT_VERSION "6.6.0")
 project(KNightTime VERSION ${PROJECT_VERSION})
 
 set(CMAKE_CXX_STANDARD 23)
 set(CMAKE_CXX_STANDARD_REQUIRED ON)
 
-set(PROJECT_DEP_VERSION "6.5.5")
-set(QT_MIN_VERSION "6.9.0")
-set(KF6_MIN_VERSION "6.18.0")
+set(PROJECT_DEP_VERSION "6.6.0")
+set(QT_MIN_VERSION "6.10.0")
+set(KF6_MIN_VERSION "6.22.0")
 set(KDE_COMPILERSETTINGS_LEVEL "5.82")
 
 find_package(ECM ${KF6_MIN_VERSION} REQUIRED NO_MODULE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/knighttime-6.5.5/src/daemon/kdarklightmanager.cpp 
new/knighttime-6.6.0/src/daemon/kdarklightmanager.cpp
--- old/knighttime-6.5.5/src/daemon/kdarklightmanager.cpp       2026-01-13 
13:58:05.000000000 +0100
+++ new/knighttime-6.6.0/src/daemon/kdarklightmanager.cpp       2026-02-12 
11:02:51.000000000 +0100
@@ -61,10 +61,7 @@
     }
 
     for (const QString &key : std::as_const(keysToDelete)) {
-        // hasKey() should be unnecessary with 
https://invent.kde.org/frameworks/kconfig/-/merge_requests/392.
-        if (nightLight.hasKey(key)) {
-            nightLight.deleteEntry(key);
-        }
+        nightLight.deleteEntry(key);
     }
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/knighttime-6.5.5/src/daemon/kdarklightmanagerinterface.h 
new/knighttime-6.6.0/src/daemon/kdarklightmanagerinterface.h
--- old/knighttime-6.5.5/src/daemon/kdarklightmanagerinterface.h        
2026-01-13 13:58:05.000000000 +0100
+++ new/knighttime-6.6.0/src/daemon/kdarklightmanagerinterface.h        
2026-02-12 11:02:51.000000000 +0100
@@ -11,9 +11,7 @@
 #include <QObject>
 #include <QVariant>
 
-class KDarkLightCycle;
 class KDarkLightManager;
-class KDarkLightSchedule;
 
 class KDarkLightManagerInterface : public QObject, public QDBusContext
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/knighttime-6.5.5/src/daemon/org.kde.knighttimed.desktop.in 
new/knighttime-6.6.0/src/daemon/org.kde.knighttimed.desktop.in
--- old/knighttime-6.5.5/src/daemon/org.kde.knighttimed.desktop.in      
2026-01-13 13:58:05.000000000 +0100
+++ new/knighttime-6.6.0/src/daemon/org.kde.knighttimed.desktop.in      
2026-02-12 11:02:51.000000000 +0100
@@ -21,6 +21,7 @@
 Name[ko]=야간 서비스
 Name[lt]=Nakties laiko tarnyba
 Name[lv]=Nakts laika serviss
+Name[nb]=Kveldstid-tjeneste
 Name[nl]=Nachttijdservice
 Name[nn]=Kveldstid-teneste
 Name[pl]=Usługa nocnych barw

Reply via email to