Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package kf6-kcalendarcore for
openSUSE:Factory checked in at 2025-09-15 19:49:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-kcalendarcore (Old)
and /work/SRC/openSUSE:Factory/.kf6-kcalendarcore.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-kcalendarcore"
Mon Sep 15 19:49:17 2025 rev:19 rq:1304383 version:6.18.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/kf6-kcalendarcore/kf6-kcalendarcore.changes
2025-08-09 20:02:28.788897824 +0200
+++
/work/SRC/openSUSE:Factory/.kf6-kcalendarcore.new.1977/kf6-kcalendarcore.changes
2025-09-15 19:52:25.053869435 +0200
@@ -1,0 +2,15 @@
+Mon Sep 8 13:32:58 UTC 2025 - Christophe Marin <[email protected]>
+
+- Update to 6.18.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/6/6.18.0
+- Changes since 6.17.0:
+ * Update dependency version to 6.18.0
+ * It compiles fine without qt 6.10 deprecated methods
+ * src/memorycalendar.cpp - fix an unsed-comparison warning
+ * Drop unneeded expl. addition of src/build dirs to lib's build includes
interface
+ * ci: require passing tests on all platforms
+ * Update version to 6.18.0
+
+-------------------------------------------------------------------
Old:
----
kcalendarcore-6.17.0.tar.xz
kcalendarcore-6.17.0.tar.xz.sig
New:
----
kcalendarcore-6.18.0.tar.xz
kcalendarcore-6.18.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kf6-kcalendarcore.spec ++++++
--- /var/tmp/diff_new_pack.YmS6xJ/_old 2025-09-15 19:52:26.769941508 +0200
+++ /var/tmp/diff_new_pack.YmS6xJ/_new 2025-09-15 19:52:26.785942181 +0200
@@ -20,11 +20,11 @@
%define sonum 6
%define rname kcalendarcore
-# Full KF6 version (e.g. 6.17.0)
+# Full KF6 version (e.g. 6.18.0)
%{!?_kf6_version: %global _kf6_version %{version}}
%bcond_without released
Name: kf6-kcalendarcore
-Version: 6.17.0
+Version: 6.18.0
Release: 0
Summary: Library to access and handle calendar data
License: LGPL-2.0-or-later
++++++ kcalendarcore-6.17.0.tar.xz -> kcalendarcore-6.18.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kcalendarcore-6.17.0/.kde-ci.yml
new/kcalendarcore-6.18.0/.kde-ci.yml
--- old/kcalendarcore-6.17.0/.kde-ci.yml 2025-08-01 12:28:58.000000000
+0200
+++ new/kcalendarcore-6.18.0/.kde-ci.yml 2025-09-08 10:11:11.000000000
+0200
@@ -5,4 +5,4 @@
Options:
test-before-installing: True
- require-passing-tests-on: ['Linux', 'Windows']
+ require-passing-tests-on: ['@all']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kcalendarcore-6.17.0/CMakeLists.txt
new/kcalendarcore-6.18.0/CMakeLists.txt
--- old/kcalendarcore-6.17.0/CMakeLists.txt 2025-08-01 12:28:58.000000000
+0200
+++ new/kcalendarcore-6.18.0/CMakeLists.txt 2025-09-08 10:11:11.000000000
+0200
@@ -1,11 +1,11 @@
cmake_minimum_required(VERSION 3.16)
-set(KF_VERSION "6.17.0") # handled by release scripts
+set(KF_VERSION "6.18.0") # handled by release scripts
project(KCalendarCore VERSION ${KF_VERSION})
# ECM setup
include(FeatureSummary)
-find_package(ECM 6.17.0 NO_MODULE)
+find_package(ECM 6.18.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)
@@ -59,7 +59,7 @@
)
ecm_set_disabled_deprecation_versions(
- QT 6.9.0
+ QT 6.10.0
)
########### Targets ###########
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kcalendarcore-6.17.0/src/CMakeLists.txt
new/kcalendarcore-6.18.0/src/CMakeLists.txt
--- old/kcalendarcore-6.17.0/src/CMakeLists.txt 2025-08-01 12:28:58.000000000
+0200
+++ new/kcalendarcore-6.18.0/src/CMakeLists.txt 2025-09-08 10:11:11.000000000
+0200
@@ -113,7 +113,6 @@
)
target_include_directories(KF6CalendarCore INTERFACE
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF}/KCalendarCore>")
-target_include_directories(KF6CalendarCore PUBLIC
"$<BUILD_INTERFACE:${KCalendarCore_SOURCE_DIR}/src;${KCalendarCore_BINARY_DIR}/src>")
target_link_libraries(KF6CalendarCore
PUBLIC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kcalendarcore-6.17.0/src/memorycalendar.cpp
new/kcalendarcore-6.18.0/src/memorycalendar.cpp
--- old/kcalendarcore-6.17.0/src/memorycalendar.cpp 2025-08-01
12:28:58.000000000 +0200
+++ new/kcalendarcore-6.18.0/src/memorycalendar.cpp 2025-09-08
10:11:11.000000000 +0200
@@ -522,7 +522,7 @@
exception->setRecurrenceId(delta.end(exception->recurrenceId()));
}
}
- d->mDtStartBeingUpdated == QDateTime();
+ d->mDtStartBeingUpdated = QDateTime();
notifyIncidenceChanged(inc);