Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package kteatime for openSUSE:Factory 
checked in at 2021-08-16 10:10:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kteatime (Old)
 and      /work/SRC/openSUSE:Factory/.kteatime.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kteatime"

Mon Aug 16 10:10:41 2021 rev:104 rq:911744 version:21.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/kteatime/kteatime.changes        2021-07-10 
00:02:13.243180096 +0200
+++ /work/SRC/openSUSE:Factory/.kteatime.new.1899/kteatime.changes      
2021-08-16 10:16:15.718754594 +0200
@@ -1,0 +2,28 @@
+Fri Aug  6 09:40:57 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 21.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/21.08.0
+- No code change since 21.07.90
+
+-------------------------------------------------------------------
+Fri Jul 30 10:05:32 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 21.07.90
+  * New feature release
+- No code change since 21.07.80
+
+-------------------------------------------------------------------
+Sat Jul 17 20:06:40 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 21.07.80
+  * New feature release
+- Changes since 21.04.3:
+  * It's away default in ecm
+  * Time to increase version
+  * Add build support
+  * Add cmake preset support
+- Only install the license files once
+
+-------------------------------------------------------------------

Old:
----
  kteatime-21.04.3.tar.xz
  kteatime-21.04.3.tar.xz.sig

New:
----
  kteatime-21.08.0.tar.xz
  kteatime-21.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ kteatime.spec ++++++
--- /var/tmp/diff_new_pack.Qr0Fju/_old  2021-08-16 10:16:16.122754108 +0200
+++ /var/tmp/diff_new_pack.Qr0Fju/_new  2021-08-16 10:16:16.126754103 +0200
@@ -21,7 +21,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without lang
 Name:           kteatime
-Version:        21.04.3
+Version:        21.08.0
 Release:        0
 Summary:        Timer for various types of tea
 License:        GPL-2.0-or-later
@@ -48,7 +48,6 @@
 BuildRequires:  cmake(Qt5Widgets)
 Obsoletes:      %{name}5 < %{version}
 Provides:       %{name}5 = %{version}
-Recommends:     %{name}-lang
 
 %description
 Timer utility by KDE where the user can select a particular type of tea,
@@ -82,7 +81,6 @@
 
 %if %{with lang}
 %files lang -f %{name}.lang
-%license COPYING*
 %endif
 
 %changelog


++++++ kteatime-21.04.3.tar.xz -> kteatime-21.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-21.04.3/.gitignore 
new/kteatime-21.08.0/.gitignore
--- old/kteatime-21.04.3/.gitignore     2021-07-05 21:20:22.000000000 +0200
+++ new/kteatime-21.08.0/.gitignore     2021-08-05 00:05:46.000000000 +0200
@@ -20,3 +20,9 @@
 CMakeLists.txt.user*
 *.unc-backup*
 .cmake/
+/.clang-format
+/compile_commands.json
+.clangd
+.cache
+.idea
+/cmake-build*
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-21.04.3/CMakeLists.txt 
new/kteatime-21.08.0/CMakeLists.txt
--- old/kteatime-21.04.3/CMakeLists.txt 2021-07-06 07:24:42.000000000 +0200
+++ new/kteatime-21.08.0/CMakeLists.txt 2021-08-06 02:20:35.000000000 +0200
@@ -1,15 +1,15 @@
-cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
+cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
 
 # KDE Application Version, managed by release script
 set (RELEASE_SERVICE_VERSION_MAJOR "21")
-set (RELEASE_SERVICE_VERSION_MINOR "04")
-set (RELEASE_SERVICE_VERSION_MICRO "3")
+set (RELEASE_SERVICE_VERSION_MINOR "08")
+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.12.0")
-set(KF5_MIN_VERSION "5.57.0")
+set(QT_MIN_VERSION "5.15.0")
+set(KF5_MIN_VERSION "5.83.0")
 
 
 find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
@@ -38,8 +38,8 @@
 include(KDECMakeSettings)
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(FeatureSummary)
-
-add_definitions(-DQT_NO_FOREACH)
+set(CMAKE_CXX_STANDARD 17)
+set(CMAKE_CXX_STANDARD_REQUIRED ON)
 
 ADD_SUBDIRECTORY(doc)
 ADD_SUBDIRECTORY(data)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-21.04.3/CMakePresets.json 
new/kteatime-21.08.0/CMakePresets.json
--- old/kteatime-21.04.3/CMakePresets.json      1970-01-01 01:00:00.000000000 
+0100
+++ new/kteatime-21.08.0/CMakePresets.json      2021-08-05 00:05:46.000000000 
+0200
@@ -0,0 +1,83 @@
+{
+    "version": 2,
+    "configurePresets": [
+        {
+            "name": "dev",
+            "displayName": "Build as debug",
+            "generator": "Ninja",
+            "binaryDir": "${sourceDir}/build",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug",
+               "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
+            }
+        },
+        {
+            "name": "asan",
+            "displayName": "Build with Asan support.",
+            "generator": "Ninja",
+            "binaryDir": "${sourceDir}/build-asan",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug",
+                "ECM_ENABLE_SANITIZERS" : "'address;undefined'",
+               "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
+            }
+        },
+        {
+            "name": "unity",
+            "displayName": "Build with CMake unity support.",
+            "generator": "Ninja",
+            "binaryDir": "${sourceDir}/build-unity",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug",
+               "USE_UNITY_CMAKE_SUPPORT": "ON",
+               "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
+            }
+        },
+        {
+            "name": "release",
+            "displayName": "Build as release mode.",
+            "generator": "Ninja",
+            "binaryDir": "${sourceDir}/build-release",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Release"
+            }
+        },
+        {
+            "name": "profile",
+            "displayName": "profile",
+            "generator": "Ninja",
+            "binaryDir": "${sourceDir}/build-profile",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "RelWithDebInfo",
+               "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
+            }
+       },
+        {
+            "name": "clazy",
+            "displayName": "clazy",
+            "generator": "Ninja",
+            "binaryDir": "${sourceDir}/build-clazy",
+            "cacheVariables": {
+                "CMAKE_BUILD_TYPE": "Debug"
+            },
+            "environment": {
+                "CXX": "clazy",
+                "CCACHE_DISABLE": "ON"
+            }
+        }
+    ],
+    "buildPresets": [
+        {
+            "name": "dev",
+            "configurePreset": "dev"
+        },
+        {
+            "name": "clazy",
+            "configurePreset": "clazy",
+            "environment": {
+                "CLAZY_CHECKS" : 
"level0,level1,detaching-member,ifndef-define-typo,isempty-vs-count,qrequiredresult-candidates,reserve-candidates,signal-with-return-value,unneeded-cast,function-args-by-ref,function-args-by-value,returning-void-expression,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch,old-style-connect,qstring-allocations,container-inside-loop,heap-allocated-small-trivial-type,inefficient-qlist,qstring-varargs,level2,detaching-member,heap-allocated-small-trivial-type,isempty-vs-count,qstring-varargs,qvariant-template-instantiation,raw-environment-function,reserve-candidates,signal-with-return-value,thread-with-slots,no-ctor-missing-parent-argument,no-missing-typeinfo",
+                "CCACHE_DISABLE" : "ON"
+            }
+        }
+    ]
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-21.04.3/org.kde.kteatime.appdata.xml 
new/kteatime-21.08.0/org.kde.kteatime.appdata.xml
--- old/kteatime-21.04.3/org.kde.kteatime.appdata.xml   2021-07-05 
21:20:22.000000000 +0200
+++ new/kteatime-21.08.0/org.kde.kteatime.appdata.xml   2021-08-05 
00:05:46.000000000 +0200
@@ -141,9 +141,9 @@
     <binary>kteatime</binary>
   </provides>
   <releases>
+    <release version="21.08.0" date="2021-08-12"/>
     <release version="21.04.3" date="2021-07-08"/>
     <release version="21.04.2" date="2021-06-10"/>
     <release version="21.04.1" date="2021-05-13"/>
-    <release version="21.04.0" date="2021-04-22"/>
   </releases>
 </component>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-21.04.3/po/hi/kteatime.po 
new/kteatime-21.08.0/po/hi/kteatime.po
--- old/kteatime-21.04.3/po/hi/kteatime.po      2021-07-06 07:24:42.000000000 
+0200
+++ new/kteatime-21.08.0/po/hi/kteatime.po      2021-08-06 02:20:35.000000000 
+0200
@@ -3,20 +3,21 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Ravishankar Shrivastava <raviratl...@yahoo.com>, 2008.
+# Raghavendra Kamath <ra...@raghukamath.com>, 2021.
 msgid ""
 msgstr ""
 "Project-Id-Version: kteatime\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-01-19 02:51+0100\n"
-"PO-Revision-Date: 2008-01-29 14:01+0530\n"
-"Last-Translator: Ravishankar Shrivastava <raviratl...@yahoo.com>\n"
-"Language-Team: Hindi <indlinux-hi...@lists.sourceforge.net>\n"
+"PO-Revision-Date: 2021-07-10 10:57+0530\n"
+"Last-Translator: Raghavendra Kamath <ra...@raghukamath.com>\n"
+"Language-Team: kde-hindi\n"
 "Language: hi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
-"X-Generator: KBabel 1.11.4\n"
+"X-Generator: Lokalize 21.04.3\n"
 
 #: src/main.cpp:40
 #, kde-format
@@ -95,7 +96,7 @@
 #, fuzzy, kde-format
 #| msgid "seconds."
 msgid "seconds"
-msgstr "??????????????????"
+msgstr "???????????????"
 
 #: src/main.cpp:87
 #, kde-format
@@ -141,8 +142,8 @@
 msgctxt "Auto hide popup after"
 msgid " second"
 msgid_plural " seconds"
-msgstr[0] "??????????????????"
-msgstr[1] "??????????????????"
+msgstr[0] "???????????????"
+msgstr[1] "???????????????"
 
 #: src/settings.cpp:96
 #, fuzzy, kde-format
@@ -150,8 +151,8 @@
 msgctxt "Reminder every"
 msgid " second"
 msgid_plural " seconds"
-msgstr[0] "??????????????????"
-msgstr[1] "??????????????????"
+msgstr[0] "???????????????"
+msgstr[1] "???????????????"
 
 #. i18n: ectx: property (title), widget (QGroupBox, kbuttongroup1)
 #: src/settings.ui:18
@@ -279,8 +280,8 @@
 #, kde-format
 msgid "%1 second"
 msgid_plural "%1 seconds"
-msgstr[0] "%1 ??????????????????"
-msgstr[1] "%1 ??????????????????"
+msgstr[0] "%1 ???????????????"
+msgstr[1] "%1 ???????????????"
 
 #: src/tea.cpp:130
 #, kde-format
@@ -329,8 +330,8 @@
 #| msgid "seconds."
 msgid " second"
 msgid_plural " seconds"
-msgstr[0] "??????????????????"
-msgstr[1] "??????????????????"
+msgstr[0] "???????????????"
+msgstr[1] "???????????????"
 
 #. i18n: ectx: property (text), widget (QLabel, minutesLabel_2)
 #: src/timeedit.ui:32
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-21.04.3/po/ia/kteatime.po 
new/kteatime-21.08.0/po/ia/kteatime.po
--- old/kteatime-21.04.3/po/ia/kteatime.po      2021-07-06 07:24:42.000000000 
+0200
+++ new/kteatime-21.08.0/po/ia/kteatime.po      2021-08-06 02:20:35.000000000 
+0200
@@ -7,7 +7,7 @@
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-01-19 02:51+0100\n"
-"PO-Revision-Date: 2021-03-19 22:51+0100\n"
+"PO-Revision-Date: 2021-03-21 22:17+0100\n"
 "Last-Translator: Giovanni Sora <g.s...@tiscali.it>\n"
 "Language-Team: Interlingua <kde-i18n-...@kde.org>\n"
 "Language: ia\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-21.04.3/po/pl/kteatime.po 
new/kteatime-21.08.0/po/pl/kteatime.po
--- old/kteatime-21.04.3/po/pl/kteatime.po      2021-07-06 07:24:42.000000000 
+0200
+++ new/kteatime-21.08.0/po/pl/kteatime.po      2021-08-06 02:20:35.000000000 
+0200
@@ -1,5 +1,5 @@
 # translation of kteatime.po to
-# Version: $Revision: 1596277 $
+# Version: $Revision: 1596384 $
 # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2009 Free Software 
Foundation, Inc.
 # Piotr Szyma??ski <djur...@linuxpl.org>, 2002.
 # Krzysztof Lichota <lich...@mimuw.edu.pl>, 2002, 2006, 2007.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-21.04.3/po/zh_CN/kteatime.po 
new/kteatime-21.08.0/po/zh_CN/kteatime.po
--- old/kteatime-21.04.3/po/zh_CN/kteatime.po   2021-07-06 07:24:42.000000000 
+0200
+++ new/kteatime-21.08.0/po/zh_CN/kteatime.po   2021-08-06 02:20:35.000000000 
+0200
@@ -13,7 +13,7 @@
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2021-01-19 02:51+0100\n"
-"PO-Revision-Date: 2021-06-20 07:37\n"
+"PO-Revision-Date: 2021-07-26 13:50\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-21.04.3/src/CMakeLists.txt 
new/kteatime-21.08.0/src/CMakeLists.txt
--- old/kteatime-21.04.3/src/CMakeLists.txt     2021-07-05 21:20:22.000000000 
+0200
+++ new/kteatime-21.08.0/src/CMakeLists.txt     2021-08-05 00:05:46.000000000 
+0200
@@ -1,12 +1,12 @@
 add_definitions(-DTRANSLATION_DOMAIN=\"kteatime\")
+add_executable(kteatime)
 
-set(kteatime_SRCS settings.cpp timeedit.cpp toplevel.cpp tealistmodel.cpp 
tea.cpp main.cpp )
+target_sources(kteatime PRIVATE settings.cpp timeedit.cpp toplevel.cpp 
tealistmodel.cpp tea.cpp main.cpp )
 
 set_property(SOURCE main.cpp APPEND PROPERTY COMPILE_DEFINITIONS 
"KTEATIME_VERSION=\"${kteatime_VERSION}\"")
 
-ki18n_wrap_ui(kteatime_SRCS settings.ui timeedit.ui)
+ki18n_wrap_ui(kteatime settings.ui timeedit.ui)
 
-add_executable(kteatime ${kteatime_SRCS})
 target_link_libraries(kteatime
     KF5::ConfigCore
     KF5::ConfigGui
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kteatime-21.04.3/src/org.kde.kteatime.desktop 
new/kteatime-21.08.0/src/org.kde.kteatime.desktop
--- old/kteatime-21.04.3/src/org.kde.kteatime.desktop   2021-07-05 
21:20:22.000000000 +0200
+++ new/kteatime-21.08.0/src/org.kde.kteatime.desktop   2021-08-05 
00:05:46.000000000 +0200
@@ -94,7 +94,7 @@
 GenericName[hne]=????????? ???????????????
 GenericName[hr]=Pomo??nik za kuhanje ??aja
 GenericName[hu]=Teaf??z??
-GenericName[ia]=Tea Cooker (Cocinero de The)
+GenericName[ia]=Le Tea Cooker (Cocinero de The)
 GenericName[is]=Teketillinn
 GenericName[it]=Teiera
 GenericName[ja]=?????????????????????

Reply via email to