Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kontactinterface for openSUSE:Factory checked in at 2024-12-13 22:26:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kontactinterface (Old) and /work/SRC/openSUSE:Factory/.kontactinterface.new.29675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kontactinterface" Fri Dec 13 22:26:59 2024 rev:110 rq:1230472 version:24.12.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kontactinterface/kontactinterface.changes 2024-11-08 11:56:44.698869423 +0100 +++ /work/SRC/openSUSE:Factory/.kontactinterface.new.29675/kontactinterface.changes 2024-12-13 22:27:42.279464568 +0100 @@ -1,0 +2,25 @@ +Sun Dec 8 09:27:59 UTC 2024 - Christophe Marin <christo...@krop.fr> + +- Update to 24.12.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/24.12.0/ +- No code change since 24.11.90 + +------------------------------------------------------------------- +Mon Dec 2 08:43:28 UTC 2024 - Christophe Marin <christo...@krop.fr> + +- Update to 24.11.90 + * New feature release +- No code change since 24.11.80 + +------------------------------------------------------------------- +Sat Nov 16 17:30:07 UTC 2024 - Christophe Marin <christo...@krop.fr> + +- Update to 24.11.80 + * New feature release +- Changes since 24.08.3: + * Use ECMCheckOutboundLicense + * Add clang-format validation job + +------------------------------------------------------------------- Old: ---- kontactinterface-24.08.3.tar.xz kontactinterface-24.08.3.tar.xz.sig New: ---- kontactinterface-24.12.0.tar.xz kontactinterface-24.12.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kontactinterface.spec ++++++ --- /var/tmp/diff_new_pack.zgIUua/_old 2024-12-13 22:27:42.983493931 +0100 +++ /var/tmp/diff_new_pack.zgIUua/_new 2024-12-13 22:27:42.987494098 +0100 @@ -16,12 +16,12 @@ # -%define kf6_version 6.3.0 +%define kf6_version 6.6.0 %define qt6_version 6.6.0 %bcond_without released Name: kontactinterface -Version: 24.08.3 +Version: 24.12.0 Release: 0 Summary: KDE PIM Libraries: Interface to Contacts License: LGPL-2.1-or-later ++++++ kontactinterface-24.08.3.tar.xz -> kontactinterface-24.12.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kontactinterface-24.08.3/.gitlab-ci.yml new/kontactinterface-24.12.0/.gitlab-ci.yml --- old/kontactinterface-24.08.3/.gitlab-ci.yml 2024-10-10 13:38:30.000000000 +0200 +++ new/kontactinterface-24.12.0/.gitlab-ci.yml 2024-12-02 05:19:38.000000000 +0100 @@ -5,7 +5,10 @@ - project: sysadmin/ci-utilities file: - /gitlab-templates/linux-qt6.yml + - /gitlab-templates/json-validation.yml - /gitlab-templates/freebsd-qt6.yml - /gitlab-templates/windows-qt6.yml - /gitlab-templates/reuse-lint.yml - /gitlab-templates/cppcheck.yml + - /gitlab-templates/clang-format.yml + - /gitlab-templates/alpine-qt6.yml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kontactinterface-24.08.3/CMakeLists.txt new/kontactinterface-24.12.0/CMakeLists.txt --- old/kontactinterface-24.08.3/CMakeLists.txt 2024-10-10 13:38:30.000000000 +0200 +++ new/kontactinterface-24.12.0/CMakeLists.txt 2024-12-02 05:19:38.000000000 +0100 @@ -1,13 +1,13 @@ # SPDX-FileCopyrightText: none # SPDX-License-Identifier: BSD-3-Clause cmake_minimum_required(VERSION 3.16 FATAL_ERROR) -set(PIM_VERSION "6.2.3") +set(PIM_VERSION "6.3.0") project(KontactInterface VERSION ${PIM_VERSION}) # ECM setup -set(KF_MIN_VERSION "6.3.0") -set(QT_REQUIRED_VERSION "6.6.0") +set(KF_MIN_VERSION "6.6.0") +set(QT_REQUIRED_VERSION "6.7.0") find_package(ECM ${KF_MIN_VERSION} CONFIG REQUIRED) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) @@ -22,7 +22,10 @@ include(FeatureSummary) include(KDEGitCommitHooks) include(KDEClangFormat) -file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h *.c) +file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES +src/*.cpp +src/*.h +) kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES}) include(ECMQtDeclareLoggingCategory) @@ -31,6 +34,14 @@ include(ECMSetupQtPluginMacroNames) include(ECMAddQch) +include(ECMCheckOutboundLicense) +file(GLOB_RECURSE ALL_SOURCE_FILES +src/*.cpp +src/*.h +) +ecm_check_outbound_license(LICENSES GPL-2.0-only FILES ${ALL_SOURCE_FILES}) + + option(BUILD_QCH "Build API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)" OFF) add_feature_info(QCH ${BUILD_QCH} "API documentation in QCH format (for e.g. Qt Assistant, Qt Creator & KDevelop)") @@ -74,8 +85,8 @@ set(COMPILE_WITH_UNITY_CMAKE_SUPPORT ON) endif() add_definitions(-DQT_NO_CONTEXTLESS_CONNECT) -ecm_set_disabled_deprecation_versions(QT 6.7.2 - KF 6.4.0 +ecm_set_disabled_deprecation_versions(QT 6.8.0 + KF 6.8.0 ) set(KONTACTINTERFACE_HAVE_X11 ${X11_FOUND}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kontactinterface-24.08.3/po/el/kontactinterfaces6.po new/kontactinterface-24.12.0/po/el/kontactinterfaces6.po --- old/kontactinterface-24.08.3/po/el/kontactinterfaces6.po 2024-10-10 13:38:30.000000000 +0200 +++ new/kontactinterface-24.12.0/po/el/kontactinterfaces6.po 2024-12-02 05:19:38.000000000 +0100 @@ -15,8 +15,8 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: KBabel 1.11.4\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kontactinterface-24.08.3/po/fi/kontactinterfaces6.po new/kontactinterface-24.12.0/po/fi/kontactinterfaces6.po --- old/kontactinterface-24.08.3/po/fi/kontactinterfaces6.po 2024-10-10 13:38:30.000000000 +0200 +++ new/kontactinterface-24.12.0/po/fi/kontactinterfaces6.po 2024-12-02 05:19:38.000000000 +0100 @@ -16,8 +16,6 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2012-12-01 22:25:18+0000\n" -"X-Generator: MediaWiki 1.21alpha (963ddae); Translate 2012-11-08\n" #, kde-format msgctxt "NAME OF TRANSLATORS"