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-04-15 16:42:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kf6-kcalendarcore (Old) and /work/SRC/openSUSE:Factory/.kf6-kcalendarcore.new.1907 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kf6-kcalendarcore" Tue Apr 15 16:42:49 2025 rev:14 rq:1268829 version:6.13.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kf6-kcalendarcore/kf6-kcalendarcore.changes 2025-03-17 22:15:47.917981990 +0100 +++ /work/SRC/openSUSE:Factory/.kf6-kcalendarcore.new.1907/kf6-kcalendarcore.changes 2025-04-15 16:45:21.013707757 +0200 @@ -1,0 +2,14 @@ +Sat Apr 5 12:32:33 UTC 2025 - Christophe Marin <christo...@krop.fr> + +- Update to 6.13.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/frameworks/6/6.13.0 +- Changes since 6.12.0: + * Clean headers + * Remove unused warning pragma + * Port to not deprecated methods + * It compiles fine without qt6.9 deprecated methods + * Update dependency version to 6.13.0 + +------------------------------------------------------------------- Old: ---- kcalendarcore-6.12.0.tar.xz kcalendarcore-6.12.0.tar.xz.sig New: ---- kcalendarcore-6.13.0.tar.xz kcalendarcore-6.13.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kf6-kcalendarcore.spec ++++++ --- /var/tmp/diff_new_pack.18rpMX/_old 2025-04-15 16:45:23.001791004 +0200 +++ /var/tmp/diff_new_pack.18rpMX/_new 2025-04-15 16:45:23.013791506 +0200 @@ -1,7 +1,7 @@ # # spec file for package kf6-kcalendarcore # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,13 +20,13 @@ %define sonum 6 %define rname kcalendarcore -# Full KF6 version (e.g. 6.12.0) +# Full KF6 version (e.g. 6.13.0) %{!?_kf6_version: %global _kf6_version %{version}} # Last major and minor KF6 version (e.g. 6.0) %{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} | awk -F. '{print $1"."$2}')} %bcond_without released Name: kf6-kcalendarcore -Version: 6.12.0 +Version: 6.13.0 Release: 0 Summary: Library to access and handle calendar data License: LGPL-2.0-or-later ++++++ kcalendarcore-6.12.0.tar.xz -> kcalendarcore-6.13.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalendarcore-6.12.0/CMakeLists.txt new/kcalendarcore-6.13.0/CMakeLists.txt --- old/kcalendarcore-6.12.0/CMakeLists.txt 2025-03-07 15:24:10.000000000 +0100 +++ new/kcalendarcore-6.13.0/CMakeLists.txt 2025-04-04 15:59:13.000000000 +0200 @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.16) -set(KF_VERSION "6.12.0") # handled by release scripts +set(KF_VERSION "6.13.0") # handled by release scripts project(KCalendarCore VERSION ${KF_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 6.12.0 NO_MODULE) +find_package(ECM 6.13.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) @@ -66,7 +66,7 @@ ) ecm_set_disabled_deprecation_versions( - QT 6.8.0 + QT 6.9.0 ) ########### Targets ########### diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalendarcore-6.12.0/autotests/testidentical.cpp new/kcalendarcore-6.13.0/autotests/testidentical.cpp --- old/kcalendarcore-6.12.0/autotests/testidentical.cpp 2025-03-07 15:24:10.000000000 +0100 +++ new/kcalendarcore-6.13.0/autotests/testidentical.cpp 2025-04-04 15:59:13.000000000 +0200 @@ -28,19 +28,12 @@ QTest::newRow("invalid") << QDateTime() << QDateTime(); -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wdeprecated-declarations" - QTest::newRow("utc-tz") << QDateTime(QDate(2023, 11, 18), QTime(13, 31), Qt::UTC) << QDateTime(QDate(2023, 11, 18), QTime(13, 31), QTimeZone::utc()); - QTest::newRow("tz-newoffset") << QDateTime(QDate(2023, 11, 18), QTime(13, 31), Qt::UTC) + QTest::newRow("utc-tz") << QDateTime(QDate(2023, 11, 18), QTime(13, 31), QTimeZone::UTC) + << QDateTime(QDate(2023, 11, 18), QTime(13, 31), QTimeZone::utc()); + QTest::newRow("tz-newoffset") << QDateTime(QDate(2023, 11, 18), QTime(13, 31), QTimeZone::UTC) << QDateTime(QDate(2023, 11, 18), QTime(13, 31), QTimeZone::fromSecondsAheadOfUtc(0)); - QTest::newRow("utc-newoffset") << QDateTime(QDate(2023, 11, 18), QTime(13, 31), Qt::UTC) + QTest::newRow("utc-newoffset") << QDateTime(QDate(2023, 11, 18), QTime(13, 31), QTimeZone::UTC) << QDateTime(QDate(2023, 11, 18), QTime(13, 31), QTimeZone::fromSecondsAheadOfUtc(0)); - QTest::newRow("utc-oldoffset-newoffset") << QDateTime(QDate(2023, 11, 18), QTime(13, 31), Qt::OffsetFromUTC, 0) - << QDateTime(QDate(2023, 11, 18), QTime(13, 31), QTimeZone::fromSecondsAheadOfUtc(0)); - - QTest::newRow("offset") << QDateTime(QDate(2023, 11, 18), QTime(13, 31), Qt::OffsetFromUTC, 3600) - << QDateTime(QDate(2023, 11, 18), QTime(13, 31), QTimeZone::fromSecondsAheadOfUtc(3600)); -#pragma GCC diagnostic pop } void testTrue() @@ -72,12 +65,6 @@ << QDateTime(QDate(2022, 02, 22), QTime(22, 22, 22), QTimeZone("Africa/Abidjan")) << QDateTime(QDate(2022, 02, 22), QTime(22, 22, 22), QTimeZone("Africa/Accra")); -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wdeprecated-declarations" - QTest::newRow("invalid timeSpec") - << QDateTime(QDate(2022, 02, 22), QTime(22, 22, 22), QDateTime().timeSpec()) - << QDateTime(); -#pragma GCC diagnostic pop QTest::newRow("invalid timeZone") << QDateTime(QDate(2022, 02, 22), QTime(22, 22, 22), QDateTime().timeZone()) << QDateTime(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalendarcore-6.12.0/autotests/testtostring.cpp new/kcalendarcore-6.13.0/autotests/testtostring.cpp --- old/kcalendarcore-6.12.0/autotests/testtostring.cpp 2025-03-07 15:24:10.000000000 +0100 +++ new/kcalendarcore-6.13.0/autotests/testtostring.cpp 2025-04-04 15:59:13.000000000 +0200 @@ -11,7 +11,6 @@ #include <QDebug> #include <QTest> -#include <qtest.h> using namespace KCalendarCore; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalendarcore-6.12.0/src/incidence.cpp new/kcalendarcore-6.13.0/src/incidence.cpp --- old/kcalendarcore-6.12.0/src/incidence.cpp 2025-03-07 15:24:10.000000000 +0100 +++ new/kcalendarcore-6.13.0/src/incidence.cpp 2025-04-04 15:59:13.000000000 +0200 @@ -25,7 +25,7 @@ #include "kcalendarcore_debug.h" #include "utils_p.h" -#include <math.h> +#include <cmath> #include <QStringList> #include <QTextDocument> // for .toHtmlEscaped() and Qt::mightBeRichText() @@ -1047,7 +1047,7 @@ return; } - if (isnan(geolatitude)) { + if (std::isnan(geolatitude)) { geolatitude = INVALID_LATLON; } if (geolatitude != INVALID_LATLON && (geolatitude < -90.0 || geolatitude > 90.0)) { @@ -1075,7 +1075,7 @@ return; } - if (isnan(geolongitude)) { + if (std::isnan(geolongitude)) { geolongitude = INVALID_LATLON; } if (geolongitude != INVALID_LATLON && (geolongitude < -180.0 || geolongitude > 180.0)) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kcalendarcore-6.12.0/src/utils_p.h new/kcalendarcore-6.13.0/src/utils_p.h --- old/kcalendarcore-6.12.0/src/utils_p.h 2025-03-07 15:24:10.000000000 +0100 +++ new/kcalendarcore-6.13.0/src/utils_p.h 2025-04-04 15:59:13.000000000 +0200 @@ -6,8 +6,8 @@ SPDX-License-Identifier: LGPL-2.0-or-later */ -#ifndef KCALCORE_UTILS_H -#define KCALCORE_UTILS_H +#ifndef KCALCORE_UTILS_P_H +#define KCALCORE_UTILS_P_H #include "kcalendarcore_export.h"