Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kcron for openSUSE:Factory checked 
in at 2023-04-23 22:45:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kcron (Old)
 and      /work/SRC/openSUSE:Factory/.kcron.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kcron"

Sun Apr 23 22:45:53 2023 rev:121 rq:1080575 version:23.04.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kcron/kcron.changes      2023-03-03 
22:28:26.587322593 +0100
+++ /work/SRC/openSUSE:Factory/.kcron.new.1533/kcron.changes    2023-04-23 
22:48:15.106978670 +0200
@@ -1,0 +2,20 @@
+Sat Apr 15 08:45:35 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.04.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/23.04.0/
+
+-------------------------------------------------------------------
+Fri Mar 31 16:41:51 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.03.90
+  * New feature release
+
+-------------------------------------------------------------------
+Fri Mar 17 20:43:17 UTC 2023 - Christophe Marin <[email protected]>
+
+- Update to 23.03.80
+  * New feature release
+
+-------------------------------------------------------------------

Old:
----
  kcron-22.12.3.tar.xz
  kcron-22.12.3.tar.xz.sig

New:
----
  kcron-23.04.0.tar.xz
  kcron-23.04.0.tar.xz.sig

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

Other differences:
------------------
++++++ kcron.spec ++++++
--- /var/tmp/diff_new_pack.heUq35/_old  2023-04-23 22:48:15.702982038 +0200
+++ /var/tmp/diff_new_pack.heUq35/_new  2023-04-23 22:48:15.706982060 +0200
@@ -16,11 +16,9 @@
 #
 
 
-# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA)
-%{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:           kcron
-Version:        22.12.3
+Version:        23.04.0
 Release:        0
 Summary:        Cron job configuration tool
 License:        GPL-2.0-or-later


++++++ kcron-22.12.3.tar.xz -> kcron-23.04.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/.kde-ci.yml 
new/kcron-23.04.0/.kde-ci.yml
--- old/kcron-22.12.3/.kde-ci.yml       2023-02-25 05:59:51.000000000 +0100
+++ new/kcron-23.04.0/.kde-ci.yml       2023-04-11 06:49:09.000000000 +0200
@@ -2,7 +2,15 @@
 # SPDX-License-Identifier: CC0-1.0
 
 Dependencies:
-- 'on': ['@all']
+- 'on': ['Linux/Qt6', 'FreeBSD/Qt6']
+  'require':
+    'frameworks/extra-cmake-modules': '@latest-kf6'
+    'frameworks/kconfigwidgets': '@latest-kf6'
+    'frameworks/ki18n': '@latest-kf6'
+    'frameworks/kio': '@latest-kf6'
+    'frameworks/kdoctools': '@latest-kf6'
+
+- 'on': ['Linux/Qt5', 'FreeBSD/Qt5']
   'require':
     'frameworks/extra-cmake-modules': '@stable'
     'frameworks/kconfigwidgets': '@stable'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/CMakeLists.txt 
new/kcron-23.04.0/CMakeLists.txt
--- old/kcron-22.12.3/CMakeLists.txt    2023-02-25 05:59:51.000000000 +0100
+++ new/kcron-23.04.0/CMakeLists.txt    2023-04-11 06:49:09.000000000 +0200
@@ -2,9 +2,9 @@
 project(kcron)
 
 set (QT_MIN_VERSION "5.15.2")
-set (KF5_MIN_VERSION "5.92.0")
+set (KF_MIN_VERSION "5.102.0")
 
-find_package (ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
+find_package (ECM ${KF_MIN_VERSION} REQUIRED NO_MODULE)
 set (CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
 
 add_definitions(-DTRANSLATION_DOMAIN="kcron")
@@ -16,6 +16,13 @@
 include(KDEGitCommitHooks)
 include(KDEClangFormat)
 include(ECMDeprecationSettings)
+if (QT_MAJOR_VERSION STREQUAL "6")
+    set(QT_REQUIRED_VERSION "6.4.0")
+    set(KF_MIN_VERSION "5.240.0")
+    set(KF_MAJOR_VERSION "6")
+else()
+    set(KF_MAJOR_VERSION "5")
+endif()
 file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES *.cpp *.h *.c)
 kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
 
@@ -28,21 +35,21 @@
     find_package(Qt6Core5Compat)
 endif()
 
-find_package(KF5 REQUIRED COMPONENTS
+find_package(KF${KF_MAJOR_VERSION} REQUIRED COMPONENTS
     ConfigWidgets
     CoreAddons
     Auth
     I18n
     KIO
 )
-find_package(KF5DocTools ${KF5_MIN_VERSION})
-set_package_properties(KF5DocTools PROPERTIES DESCRIPTION
+find_package(KF${KF_MAJOR_VERSION}DocTools ${KF_MIN_VERSION})
+set_package_properties(KF${KF_MAJOR_VERSION}DocTools PROPERTIES DESCRIPTION
     "Tools to generate documentation"
     TYPE OPTIONAL
 )
 
 ecm_set_disabled_deprecation_versions(QT 5.15.2
-    KF 5.92
+    KF 5.102
 )
 
 
@@ -59,7 +66,7 @@
 
 kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
 ki18n_install(po)
-if (KF5DocTools_FOUND)
+if (KF${KF_MAJOR_VERSION}DocTools_FOUND)
     kdoctools_install(po)
     add_subdirectory(doc)
 endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/po/ar/kcron.po 
new/kcron-23.04.0/po/ar/kcron.po
--- old/kcron-22.12.3/po/ar/kcron.po    2023-02-25 05:59:51.000000000 +0100
+++ new/kcron-23.04.0/po/ar/kcron.po    2023-04-11 06:49:09.000000000 +0200
@@ -588,7 +588,7 @@
 #: src/kcmCron.cpp:34
 #, kde-format
 msgid "KDE Task Scheduler"
-msgstr "مجدول المهام لِــ كدي"
+msgstr "مجدول المهام لِــ كِيدِي"
 
 #: src/kcmCron.cpp:36
 #, fuzzy, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/po/ca/kcron.po 
new/kcron-23.04.0/po/ca/kcron.po
--- old/kcron-22.12.3/po/ca/kcron.po    2023-02-25 05:59:51.000000000 +0100
+++ new/kcron-23.04.0/po/ca/kcron.po    2023-04-11 06:49:09.000000000 +0200
@@ -1019,3 +1019,16 @@
 #, kde-format
 msgid "Delete the selected variable."
 msgstr "Suprimeix la variable seleccionada."
+
+#~ msgid "All users"
+#~ msgstr "Tots els usuaris"
+
+#~ msgctxt "User login: errorMessage"
+#~ msgid "User %1: %2"
+#~ msgstr "Usuari %1: %2"
+
+#~ msgid "Cron of User:"
+#~ msgstr "Cron de l'usuari:"
+
+#~ msgid "Show All Personal Crons"
+#~ msgstr "Mostra tots els Cron personals"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/po/ka/kcron.po 
new/kcron-23.04.0/po/ka/kcron.po
--- old/kcron-22.12.3/po/ka/kcron.po    2023-02-25 05:59:51.000000000 +0100
+++ new/kcron-23.04.0/po/ka/kcron.po    2023-04-11 06:49:09.000000000 +0200
@@ -8,7 +8,7 @@
 "Project-Id-Version: kcron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-09-26 00:49+0000\n"
-"PO-Revision-Date: 2022-12-25 08:24+0100\n"
+"PO-Revision-Date: 2022-12-01 08:21+0100\n"
 "Last-Translator: Temuri Doghonadze <[email protected]>\n"
 "Language-Team: Georgian <[email protected]>\n"
 "Language: ka\n"
@@ -16,7 +16,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 3.2.2\n"
+"X-Generator: Poedit 3.2\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/po/sl/kcron.po 
new/kcron-23.04.0/po/sl/kcron.po
--- old/kcron-22.12.3/po/sl/kcron.po    2023-02-25 05:59:51.000000000 +0100
+++ new/kcron-23.04.0/po/sl/kcron.po    2023-04-11 06:49:09.000000000 +0200
@@ -1,7 +1,7 @@
 # Translation of kcron.po to Slovenian
 # KDEADMIN translation to Slovenian language.
 # Copyright (C) 2001,2003, 2004, 2005 Free Software Foundation, Inc.
-# $Id: kcron.po 1638558 2022-11-19 03:31:33Z scripty $
+# $Id: kcron.po 1634614 2022-09-26 01:37:36Z scripty $
 # $Source$
 #
 # Rok Papez <[email protected]>, 2000.
@@ -16,17 +16,17 @@
 "Project-Id-Version: kcron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-09-26 00:49+0000\n"
-"PO-Revision-Date: 2022-11-18 09:52+0100\n"
+"PO-Revision-Date: 2021-10-20 08:38+0200\n"
 "Last-Translator: Matjaž Jeran <[email protected]>\n"
 "Language-Team: Slovenian <[email protected]>\n"
 "Language: sl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Translator: Andrej Mernik <[email protected]>\n"
+"X-Generator: Poedit 3.0\n"
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
 "%100==4 ? 3 : 0);\n"
-"Translator: Andrej Mernik <[email protected]>\n"
-"X-Generator: Poedit 3.1.1\n"
 
 #, kde-format
 msgctxt "NAME OF TRANSLATORS"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/po/zh_CN/kcron.po 
new/kcron-23.04.0/po/zh_CN/kcron.po
--- old/kcron-22.12.3/po/zh_CN/kcron.po 2023-02-25 05:59:51.000000000 +0100
+++ new/kcron-23.04.0/po/zh_CN/kcron.po 2023-04-11 06:49:09.000000000 +0200
@@ -3,7 +3,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-09-26 00:49+0000\n"
-"PO-Revision-Date: 2023-02-24 12:58\n"
+"PO-Revision-Date: 2023-04-10 14:12\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/po/zh_TW/kcron.po 
new/kcron-23.04.0/po/zh_TW/kcron.po
--- old/kcron-22.12.3/po/zh_TW/kcron.po 2023-02-25 05:59:51.000000000 +0100
+++ new/kcron-23.04.0/po/zh_TW/kcron.po 2023-04-11 06:49:09.000000000 +0200
@@ -7,19 +7,20 @@
 # Frank Weng (a.k.a. Franklin) <franklin at goodhorse dot idv dot tw>, 2006, 
2007, 2008, 2009.
 # Franklin Weng <franklin at goodhorse dot idv dot tw>, 2007, 2008.
 # Franklin Weng <[email protected]>, 2010.
+# Kisaragi Hiu <[email protected]>, 2022.
 msgid ""
 msgstr ""
 "Project-Id-Version: kcron\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-09-26 00:49+0000\n"
-"PO-Revision-Date: 2010-10-22 08:46+0800\n"
-"Last-Translator: Franklin Weng <[email protected]>\n"
-"Language-Team: Chinese Traditional <[email protected]>\n"
+"PO-Revision-Date: 2022-12-30 18:57+0900\n"
+"Last-Translator: Kisaragi Hiu <[email protected]>\n"
+"Language-Team: Traditional Chinese <[email protected]>\n"
 "Language: zh_TW\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.1\n"
+"X-Generator: Lokalize 22.12.0\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #, kde-format
@@ -77,7 +78,7 @@
 #: src/crontablib/ctcron.cpp:282
 #, kde-format
 msgid "Unable to open crontab file for writing"
-msgstr "無法開啟 crontab 檔案以寫入。"
+msgstr "無法開啟 crontab 檔案以寫入"
 
 #: src/crontablib/ctcron.cpp:282
 #, kde-format
@@ -87,7 +88,7 @@
 #: src/crontablib/ctcron.cpp:304
 #, kde-format
 msgid "KAuth::ExecuteJob Error"
-msgstr ""
+msgstr "KAuth::ExecuteJob 錯誤"
 
 #: src/crontablib/ctdom.cpp:22 src/crontablib/ctdow.cpp:44
 #: src/crontablib/cttask.cpp:296
@@ -408,7 +409,7 @@
 #: src/crontablib/ctSystemCron.cpp:31
 #, kde-format
 msgid "root"
-msgstr ""
+msgstr "root"
 
 #: src/crontablib/cttask.cpp:267
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/src/CMakeLists.txt 
new/kcron-23.04.0/src/CMakeLists.txt
--- old/kcron-22.12.3/src/CMakeLists.txt        2023-02-25 05:59:51.000000000 
+0100
+++ new/kcron-23.04.0/src/CMakeLists.txt        2023-04-11 06:49:09.000000000 
+0200
@@ -17,50 +17,50 @@
 )
 
 target_sources(kcm_cron PRIVATE
-   crontablib/cthost.cpp
-   crontablib/ctcron.cpp
-   crontablib/ctmonth.cpp
-   crontablib/ctminute.cpp
-   crontablib/cthour.cpp
-   crontablib/ctdom.cpp
-   crontablib/ctdow.cpp
-   crontablib/cttask.cpp
-   crontablib/ctunit.cpp
-   crontablib/ctvariable.cpp
-   crontablib/ctSystemCron.cpp
-   crontablib/ctInitializationError.cpp
-   crontablib/ctSaveStatus.cpp
-   crontablib/ctHelper.cpp
+   crontablib/cthost.cpp crontablib/cthost.h
+   crontablib/ctcron.cpp crontablib/ctcron.h
+   crontablib/ctmonth.cpp crontablib/ctmonth.h
+   crontablib/ctminute.cpp crontablib/ctminute.h
+   crontablib/cthour.cpp crontablib/cthour.h
+   crontablib/ctdom.cpp crontablib/ctdom.h
+   crontablib/ctdow.cpp crontablib/ctdow.h
+   crontablib/cttask.cpp crontablib/cttask.h
+   crontablib/ctunit.cpp crontablib/ctunit.h
+   crontablib/ctvariable.cpp crontablib/ctvariable.h
+   crontablib/ctSystemCron.cpp crontablib/ctSystemCron.h
+   crontablib/ctInitializationError.cpp crontablib/ctInitializationError.h
+   crontablib/ctSaveStatus.cpp crontablib/ctSaveStatus.h
+   crontablib/ctHelper.cpp crontablib/ctHelper.h
 
-   genericListWidget.cpp
+   genericListWidget.cpp genericListWidget.h
     
-   tasksWidget.cpp
-   taskWidget.cpp 
+   tasksWidget.cpp tasksWidget.h
+   taskWidget.cpp taskWidget.h 
 
-   variablesWidget.cpp
-   variableWidget.cpp 
+   variablesWidget.cpp variablesWidget.h
+   variableWidget.cpp variableWidget.h 
  
-   taskEditorDialog.cpp 
-   variableEditorDialog.cpp
+   taskEditorDialog.cpp taskEditorDialog.h 
+   variableEditorDialog.cpp variableEditorDialog.h
 
-   crontabWidget.cpp 
+   crontabWidget.cpp crontabWidget.h 
 
-   kcronHelper.cpp
+   kcronHelper.cpp kcronHelper.h
     
-   crontabPrinter.cpp 
-   crontabPrinterWidget.cpp 
+   crontabPrinter.cpp crontabPrinter.h 
+   crontabPrinterWidget.cpp crontabPrinterWidget.h 
 
-   kcmCron.cpp 
+   kcmCron.cpp kcmCron.h 
 )
 
 
 target_link_libraries(kcm_cron 
     Qt${QT_MAJOR_VERSION}::PrintSupport
-    KF5::ConfigWidgets
-    KF5::I18n
-    KF5::KIOWidgets
-    KF5::CoreAddons
-    KF5::AuthCore
+    KF${KF_MAJOR_VERSION}::ConfigWidgets
+    KF${KF_MAJOR_VERSION}::I18n
+    KF${KF_MAJOR_VERSION}::KIOWidgets
+    KF${KF_MAJOR_VERSION}::CoreAddons
+    KF${KF_MAJOR_VERSION}::AuthCore
 )
 
 install(TARGETS  kcm_cron  DESTINATION ${KDE_INSTALL_PLUGINDIR} )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/src/helper/CMakeLists.txt 
new/kcron-23.04.0/src/helper/CMakeLists.txt
--- old/kcron-22.12.3/src/helper/CMakeLists.txt 2023-02-25 05:59:51.000000000 
+0100
+++ new/kcron-23.04.0/src/helper/CMakeLists.txt 2023-04-11 06:49:09.000000000 
+0200
@@ -1,6 +1,6 @@
 
-add_executable(kcron_helper kcronhelper.cpp)
-target_link_libraries(kcron_helper PRIVATE KF5::AuthCore 
Qt${QT_MAJOR_VERSION}::Core KF5::AuthCore)
+add_executable(kcron_helper kcronhelper.cpp kcronhelper.h)
+target_link_libraries(kcron_helper PRIVATE Qt${QT_MAJOR_VERSION}::Core 
KF${KF_MAJOR_VERSION}::AuthCore)
 
 ecm_qt_declare_logging_category(kcron_helper
     HEADER kcm_cron_helper_debug.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kcron-22.12.3/src/helper/local.kcron.crontab.actions 
new/kcron-23.04.0/src/helper/local.kcron.crontab.actions
--- old/kcron-22.12.3/src/helper/local.kcron.crontab.actions    2023-02-25 
05:59:51.000000000 +0100
+++ new/kcron-23.04.0/src/helper/local.kcron.crontab.actions    2023-04-11 
06:49:09.000000000 +0200
@@ -30,6 +30,7 @@
 Name[vi]=Hành động crontab
 Name[x-test]=xxCrontab Actionsxx
 Name[zh_CN]=Crontab 动作
+Name[zh_TW]=Crontab 動作
 Policy=auth_admin
 Persistence=session
 
@@ -65,6 +66,7 @@
 Name[vi]=Ghi crontab
 Name[x-test]=xxWrite Crontabxx
 Name[zh_CN]=编写 Crontab
+Name[zh_TW]=寫入 crontab
 Description=Write into the system crontab file
 Description[bg]=Запис в системна таблица на 
задачите
 Description[ca]=Escriu dins del fitxer «contrab» del sistema
@@ -96,5 +98,6 @@
 Description[vi]=Ghi vào tệp crontab hệ thống
 Description[x-test]=xxWrite into the system crontab filexx
 Description[zh_CN]=写入系统 crontab 文件
+Description[zh_TW]=寫入系統 crontab 檔案
 Policy=auth_admin
 Persistence=session

Reply via email to