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 2026-03-16 14:15:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kf6-kcalendarcore (Old)
and /work/SRC/openSUSE:Factory/.kf6-kcalendarcore.new.8177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-kcalendarcore"
Mon Mar 16 14:15:22 2026 rev:25 rq:1338899 version:6.24.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/kf6-kcalendarcore/kf6-kcalendarcore.changes
2026-02-16 13:03:58.172618340 +0100
+++
/work/SRC/openSUSE:Factory/.kf6-kcalendarcore.new.8177/kf6-kcalendarcore.changes
2026-03-16 14:17:38.458032054 +0100
@@ -1,0 +2,14 @@
+Mon Mar 9 08:07:26 UTC 2026 - Christophe Marin <[email protected]>
+
+- Update to 6.24.0
+ * New feature release
+ * For more details please see:
+ * https://kde.org/announcements/frameworks/6/6.24.0
+- Changes since 6.23.0:
+ * Update dependency version to 6.24.0
+ * With get_filename_component use DIRECTORY instead of legacy alias PATH
+ * Fix wrong iCal component parenting when serializing timezone information
+ * Fix memory leaks in unit tests
+ * Update version to 6.24.0
+
+-------------------------------------------------------------------
Old:
----
kcalendarcore-6.23.0.tar.xz
kcalendarcore-6.23.0.tar.xz.sig
New:
----
kcalendarcore-6.24.0.tar.xz
kcalendarcore-6.24.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ kf6-kcalendarcore.spec ++++++
--- /var/tmp/diff_new_pack.NS6iEf/_old 2026-03-16 14:17:38.974053446 +0100
+++ /var/tmp/diff_new_pack.NS6iEf/_new 2026-03-16 14:17:38.974053446 +0100
@@ -20,11 +20,11 @@
%define sonum 6
%define rname kcalendarcore
-# Full KF6 version (e.g. 6.23.0)
+# Full KF6 version (e.g. 6.24.0)
%{!?_kf6_version: %global _kf6_version %{version}}
%bcond_without released
Name: kf6-kcalendarcore
-Version: 6.23.0
+Version: 6.24.0
Release: 0
Summary: Library to access and handle calendar data
License: LGPL-2.0-or-later
++++++ kcalendarcore-6.23.0.tar.xz -> kcalendarcore-6.24.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kcalendarcore-6.23.0/CMakeLists.txt
new/kcalendarcore-6.24.0/CMakeLists.txt
--- old/kcalendarcore-6.23.0/CMakeLists.txt 2026-02-06 13:12:40.000000000
+0100
+++ new/kcalendarcore-6.24.0/CMakeLists.txt 2026-03-07 21:29:15.000000000
+0100
@@ -1,11 +1,11 @@
cmake_minimum_required(VERSION 3.27)
-set(KF_VERSION "6.23.0") # handled by release scripts
+set(KF_VERSION "6.24.0") # handled by release scripts
project(KCalendarCore VERSION ${KF_VERSION})
# ECM setup
include(FeatureSummary)
-find_package(ECM 6.23.0 NO_MODULE)
+find_package(ECM 6.24.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/kcalendarcore-6.23.0/autotests/CMakeLists.txt
new/kcalendarcore-6.24.0/autotests/CMakeLists.txt
--- old/kcalendarcore-6.23.0/autotests/CMakeLists.txt 2026-02-06
13:12:40.000000000 +0100
+++ new/kcalendarcore-6.24.0/autotests/CMakeLists.txt 2026-03-07
21:29:15.000000000 +0100
@@ -114,7 +114,7 @@
_outFile
${_f}
)
- get_filename_component(_outputPath ${_outFile} PATH)
+ get_filename_component(_outputPath ${_outFile} DIRECTORY)
file(MAKE_DIRECTORY ${_outputPath})
set(_runner
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kcalendarcore-6.23.0/autotests/testevent.cpp
new/kcalendarcore-6.24.0/autotests/testevent.cpp
--- old/kcalendarcore-6.23.0/autotests/testevent.cpp 2026-02-06
13:12:40.000000000 +0100
+++ new/kcalendarcore-6.24.0/autotests/testevent.cpp 2026-03-07
21:29:15.000000000 +0100
@@ -118,6 +118,7 @@
QVERIFY(e1 != *e2);
e2->setDtEnd(dt);
QVERIFY(e1 == *e2);
+ delete e2;
}
void EventTest::testCompareAlarms()
@@ -206,6 +207,7 @@
IncidenceBase *event2 = new Event;
*event2 = event1; // Use IncidenceBase's virtual assignment.
QCOMPARE(event1, *event2);
+ delete event2;
}
void EventTest::testSerializer_data()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kcalendarcore-6.23.0/autotests/testfreebusy.cpp
new/kcalendarcore-6.24.0/autotests/testfreebusy.cpp
--- old/kcalendarcore-6.23.0/autotests/testfreebusy.cpp 2026-02-06
13:12:40.000000000 +0100
+++ new/kcalendarcore-6.24.0/autotests/testfreebusy.cpp 2026-03-07
21:29:15.000000000 +0100
@@ -68,6 +68,7 @@
fb1.setDtStart(firstDateTime.addDays(1));
fb2->setDtStart(firstDateTime.addDays(2));
QVERIFY(!(fb1 == *fb2));
+ delete fb2;
}
void FreeBusyTest::testCopyConstructor()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kcalendarcore-6.23.0/autotests/testincidence.cpp
new/kcalendarcore-6.24.0/autotests/testincidence.cpp
--- old/kcalendarcore-6.23.0/autotests/testincidence.cpp 2026-02-06
13:12:40.000000000 +0100
+++ new/kcalendarcore-6.24.0/autotests/testincidence.cpp 2026-03-07
21:29:15.000000000 +0100
@@ -76,6 +76,7 @@
QVERIFY(i1 != *i2);
i2->setDtStart(dt);
QVERIFY(i1 == *i2);
+ delete i2;
}
void IncidenceTest::testSummaryChange()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kcalendarcore-6.23.0/autotests/testtodo.cpp
new/kcalendarcore-6.24.0/autotests/testtodo.cpp
--- old/kcalendarcore-6.23.0/autotests/testtodo.cpp 2026-02-06
13:12:40.000000000 +0100
+++ new/kcalendarcore-6.24.0/autotests/testtodo.cpp 2026-03-07
21:29:15.000000000 +0100
@@ -83,6 +83,7 @@
QVERIFY(t1 != *t2);
t2->setDtDue(dt);
QVERIFY(t1 == *t2);
+ delete t2;
}
void TodoTest::testClone()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/kcalendarcore-6.23.0/src/icalformat.cpp
new/kcalendarcore-6.24.0/src/icalformat.cpp
--- old/kcalendarcore-6.23.0/src/icalformat.cpp 2026-02-06 13:12:40.000000000
+0100
+++ new/kcalendarcore-6.24.0/src/icalformat.cpp 2026-03-07 21:29:15.000000000
+0100
@@ -342,7 +342,7 @@
qCCritical(KCALCORE_LOG) << "bad time zone";
} else {
icalcomponent *tzcomponent = icaltimezone_get_component(tz);
- icalcomponent_add_component(component, component);
+ icalcomponent_add_component(component, tzcomponent);
text.append(icalcomponent_as_ical_string(tzcomponent));
icaltimezone_free(tz, 1);
}