Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kteatime for openSUSE:Factory checked in at 2023-04-23 22:46:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kteatime (Old) and /work/SRC/openSUSE:Factory/.kteatime.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kteatime" Sun Apr 23 22:46:49 2023 rev:124 rq:1080684 version:23.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kteatime/kteatime.changes 2023-03-03 22:30:06.427698602 +0100 +++ /work/SRC/openSUSE:Factory/.kteatime.new.1533/kteatime.changes 2023-04-23 22:49:43.579478558 +0200 @@ -1,0 +2,20 @@ +Sat Apr 15 08:46:19 UTC 2023 - Christophe Marin <christo...@krop.fr> + +- 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:42:27 UTC 2023 - Christophe Marin <christo...@krop.fr> + +- Update to 23.03.90 + * New feature release + +------------------------------------------------------------------- +Fri Mar 17 20:44:07 UTC 2023 - Christophe Marin <christo...@krop.fr> + +- Update to 23.03.80 + * New feature release + +------------------------------------------------------------------- Old: ---- kteatime-22.12.3.tar.xz kteatime-22.12.3.tar.xz.sig New: ---- kteatime-23.04.0.tar.xz kteatime-23.04.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kteatime.spec ++++++ --- /var/tmp/diff_new_pack.hkROZ0/_old 2023-04-23 22:49:44.095481474 +0200 +++ /var/tmp/diff_new_pack.hkROZ0/_new 2023-04-23 22:49:44.099481496 +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: kteatime -Version: 22.12.3 +Version: 23.04.0 Release: 0 Summary: Timer for various types of tea License: GPL-2.0-or-later ++++++ kteatime-22.12.3.tar.xz -> kteatime-23.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/.kde-ci.yml new/kteatime-23.04.0/.kde-ci.yml --- old/kteatime-22.12.3/.kde-ci.yml 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/.kde-ci.yml 2023-04-12 18:45:01.000000000 +0200 @@ -2,11 +2,24 @@ # SPDX-License-Identifier: CC0-1.0 Dependencies: -- 'on': ['@all'] +- 'on': ['Linux/Qt6', 'FreeBSD/Qt6'] + 'require': + 'frameworks/extra-cmake-modules': '@latest-kf6' + 'frameworks/kconfig': '@latest-kf6' + 'frameworks/kcrash': '@latest-kf6' + 'frameworks/kdoctools': '@latest-kf6' + 'frameworks/ki18n': '@latest-kf6' + 'frameworks/kiconthemes': '@latest-kf6' + 'frameworks/knotifyconfig': '@latest-kf6' + 'frameworks/knotifications': '@latest-kf6' + 'frameworks/ktextwidgets': '@latest-kf6' + 'frameworks/kxmlgui': '@latest-kf6' + +- 'on': ['Linux/Qt5', 'FreeBSD/Qt5'] 'require': 'frameworks/extra-cmake-modules': '@stable' 'frameworks/kconfig': '@stable' - 'frameworks/crash': '@stable' + 'frameworks/kcrash': '@stable' 'frameworks/kdoctools': '@stable' 'frameworks/ki18n': '@stable' 'frameworks/kiconthemes': '@stable' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/CMakeLists.txt new/kteatime-23.04.0/CMakeLists.txt --- old/kteatime-22.12.3/CMakeLists.txt 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/CMakeLists.txt 2023-04-12 18:45:01.000000000 +0200 @@ -1,24 +1,32 @@ cmake_minimum_required(VERSION 3.16 FATAL_ERROR) # KDE Application Version, managed by release script -set (RELEASE_SERVICE_VERSION_MAJOR "22") -set (RELEASE_SERVICE_VERSION_MINOR "12") -set (RELEASE_SERVICE_VERSION_MICRO "3") +set (RELEASE_SERVICE_VERSION_MAJOR "23") +set (RELEASE_SERVICE_VERSION_MINOR "04") +set (RELEASE_SERVICE_VERSION_MICRO "0") set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(kteatime VERSION ${RELEASE_SERVICE_VERSION}) set(QT_MIN_VERSION "5.15.0") -set(KF5_MIN_VERSION "5.89.0") +set(KF_MIN_VERSION "5.92.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}) include(ECMInstallIcons) include(KDEInstallDirs) include(KDECMakeSettings) include(KDECompilerSettings NO_POLICY_SCOPE) include(FeatureSummary) +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() # Search KDE installation find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} CONFIG REQUIRED @@ -26,7 +34,7 @@ Widgets ) -find_package(KF5 ${KF5_MIN_VERSION} REQUIRED +find_package(KF${KF_MAJOR_VERSION} ${KF_MIN_VERSION} REQUIRED Config CoreAddons Crash @@ -37,18 +45,13 @@ TextWidgets XmlGui ) -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 ) -add_definitions( - -DQT_DISABLE_DEPRECATED_BEFORE=0x050F00 - -DQT_DEPRECATED_WARNINGS_SINCE=0x060000 - -DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x055900 - -DKF_DEPRECATED_WARNINGS_SINCE=0x060000 -) +ecm_set_disabled_deprecation_versions(QT 6.4 KF 5.101.0) ADD_SUBDIRECTORY(data) ADD_SUBDIRECTORY(src) ki18n_install(po) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/org.kde.kteatime.appdata.xml new/kteatime-23.04.0/org.kde.kteatime.appdata.xml --- old/kteatime-22.12.3/org.kde.kteatime.appdata.xml 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/org.kde.kteatime.appdata.xml 2023-04-12 18:45:01.000000000 +0200 @@ -146,9 +146,9 @@ <binary>kteatime</binary> </provides> <releases> + <release version="23.04.0" date="2023-04-20"/> <release version="22.12.3" date="2023-03-02"/> <release version="22.12.2" date="2023-02-02"/> <release version="22.12.1" date="2023-01-05"/> - <release version="22.12.0" date="2022-12-08"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/po/ar/kteatime.po new/kteatime-23.04.0/po/ar/kteatime.po --- old/kteatime-22.12.3/po/ar/kteatime.po 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/po/ar/kteatime.po 2023-04-12 18:45:01.000000000 +0200 @@ -32,7 +32,7 @@ #: src/main.cpp:32 #, kde-format msgid "KDE utility for making a fine cup of tea." -msgstr "أداة ÙØ§Ø¬ÙØ© ÙØ¯Ù ÙØ¹Ù Ù ÙÙØ¬Ø§Ù شا٠٠٠تاز." +msgstr "أداة ÙØ§Ø¬ÙØ© ÙÙÙØ¯ÙÙ ÙØ¹Ù Ù ÙÙØ¬Ø§Ù شا٠٠٠تاز." #: src/main.cpp:34 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/po/ca/kteatime.po new/kteatime-23.04.0/po/ca/kteatime.po --- old/kteatime-22.12.3/po/ca/kteatime.po 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/po/ca/kteatime.po 2023-04-12 18:45:01.000000000 +0200 @@ -411,3 +411,16 @@ msgctxt "%1 is the time, %2 is the name of the tea" msgid "%1 left for %2." msgstr "Queden %1 per a %2." + +#~ msgid "Anonymous Tea" +#~ msgstr "Te anònim" + +# skip-rule: common-te +#~ msgid "&Anonymous..." +#~ msgstr "Te &anònim..." + +#~ msgid "Configure &Notifications..." +#~ msgstr "Configura les &notificacions..." + +#~ msgid "Configure notifications" +#~ msgstr "Configura les notificacions" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/po/ka/kteatime.po new/kteatime-23.04.0/po/ka/kteatime.po --- old/kteatime-22.12.3/po/ka/kteatime.po 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/po/ka/kteatime.po 2023-04-12 18:45:01.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: kteatime\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-04 00:48+0000\n" -"PO-Revision-Date: 2022-11-23 06:58+0100\n" +"PO-Revision-Date: 2022-11-17 08:20+0100\n" "Last-Translator: Temuri Doghonadze <temuri.doghona...@gmail.com>\n" "Language-Team: Georgian <kde-i18n-...@kde.org>\n" "Language: ka\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/po/sl/kteatime.po new/kteatime-23.04.0/po/sl/kteatime.po --- old/kteatime-22.12.3/po/sl/kteatime.po 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/po/sl/kteatime.po 2023-04-12 18:45:01.000000000 +0200 @@ -14,17 +14,17 @@ "Project-Id-Version: kteatime\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-04 00:48+0000\n" -"PO-Revision-Date: 2022-11-18 11:24+0100\n" +"PO-Revision-Date: 2021-01-18 08:25+0100\n" "Last-Translator: Matjaž Jeran <matjaz.je...@amis.net>\n" "Language-Team: Slovenian <lugos-...@lugos.si>\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 <andr...@ubuntu.si>\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 <andr...@ubuntu.si>\n" -"X-Generator: Poedit 3.1.1\n" +"X-Generator: Poedit 2.4.2\n" #: src/main.cpp:31 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/po/zh_CN/kteatime.po new/kteatime-23.04.0/po/zh_CN/kteatime.po --- old/kteatime-22.12.3/po/zh_CN/kteatime.po 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/po/zh_CN/kteatime.po 2023-04-12 18:45:01.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-01-04 00:48+0000\n" -"PO-Revision-Date: 2023-02-24 12:58\n" +"PO-Revision-Date: 2023-04-10 14:13\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/src/CMakeLists.txt new/kteatime-23.04.0/src/CMakeLists.txt --- old/kteatime-22.12.3/src/CMakeLists.txt 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/src/CMakeLists.txt 2023-04-12 18:45:01.000000000 +0200 @@ -8,16 +8,16 @@ ki18n_wrap_ui(kteatime settings.ui timeedit.ui) target_link_libraries(kteatime - KF5::ConfigCore - KF5::ConfigGui - KF5::CoreAddons - KF5::Crash - KF5::I18n - KF5::IconThemes - KF5::Notifications - KF5::NotifyConfig - KF5::TextWidgets - KF5::XmlGui + KF${KF_MAJOR_VERSION}::ConfigCore + KF${KF_MAJOR_VERSION}::ConfigGui + KF${KF_MAJOR_VERSION}::CoreAddons + KF${KF_MAJOR_VERSION}::Crash + KF${KF_MAJOR_VERSION}::I18n + KF${KF_MAJOR_VERSION}::IconThemes + KF${KF_MAJOR_VERSION}::Notifications + KF${KF_MAJOR_VERSION}::NotifyConfig + KF${KF_MAJOR_VERSION}::TextWidgets + KF${KF_MAJOR_VERSION}::XmlGui ) install( TARGETS kteatime ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/src/settings.cpp new/kteatime-23.04.0/src/settings.cpp --- old/kteatime-22.12.3/src/settings.cpp 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/src/settings.cpp 2023-04-12 18:45:01.000000000 +0200 @@ -110,8 +110,8 @@ connect(mUi->downButton, &QToolButton::clicked, this, &SettingsDialog::downButtonClicked); connect(mUi->teaNameEdit, &QLineEdit::textChanged, this, &SettingsDialog::nameValueChanged); - connect(mUi->minutesSpin, QOverload<int>::of(&QSpinBox::valueChanged), this, &SettingsDialog::timeValueChanged); - connect(mUi->secondsSpin, QOverload<int>::of(&QSpinBox::valueChanged), this, &SettingsDialog::timeValueChanged); + connect(mUi->minutesSpin, &QSpinBox::valueChanged, this, &SettingsDialog::timeValueChanged); + connect(mUi->secondsSpin, &QSpinBox::valueChanged, this, &SettingsDialog::timeValueChanged); } SettingsDialog::~SettingsDialog() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kteatime-22.12.3/src/timeedit.cpp new/kteatime-23.04.0/src/timeedit.cpp --- old/kteatime-22.12.3/src/timeedit.cpp 2023-02-25 06:14:54.000000000 +0100 +++ new/kteatime-23.04.0/src/timeedit.cpp 2023-04-12 18:45:01.000000000 +0200 @@ -71,8 +71,8 @@ x = qMin( qMax( 0, y ), desktopSize.height() - height() ); move( QPoint( x, y ) ); - connect(mUi->minutes, QOverload<int>::of(&KPluralHandlingSpinBox::valueChanged), this, &TimeEditDialog::checkOkButtonState); - connect(mUi->seconds, QOverload<int>::of(&KPluralHandlingSpinBox::valueChanged), this, &TimeEditDialog::checkOkButtonState); + connect(mUi->minutes, &KPluralHandlingSpinBox::valueChanged, this, &TimeEditDialog::checkOkButtonState); + connect(mUi->seconds, &KPluralHandlingSpinBox::valueChanged, this, &TimeEditDialog::checkOkButtonState); connect(mButtonBox, &QDialogButtonBox::accepted, this, &TimeEditDialog::accept); connect(mButtonBox, &QDialogButtonBox::rejected, this, &TimeEditDialog::reject);