Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kmousetool for openSUSE:Factory checked in at 2021-08-16 10:06:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kmousetool (Old) and /work/SRC/openSUSE:Factory/.kmousetool.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kmousetool" Mon Aug 16 10:06:39 2021 rev:124 rq:911704 version:21.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kmousetool/kmousetool.changes 2021-07-09 23:59:04.148650569 +0200 +++ /work/SRC/openSUSE:Factory/.kmousetool.new.1899/kmousetool.changes 2021-08-16 10:07:57.203355802 +0200 @@ -1,0 +2,29 @@ +Fri Aug 6 09:39:30 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- 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:13 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.07.90 + * New feature release +- No code change since 21.07.80 + +------------------------------------------------------------------- +Sat Jul 17 20:06:19 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.07.80 + * New feature release +- Changes since 21.04.3: + * Use Qt:: directly + * Add build support + clazy support + * Install po file + * Add cmake preset support + * Time to increase version +- Only install the license files once + +------------------------------------------------------------------- Old: ---- kmousetool-21.04.3.tar.xz kmousetool-21.04.3.tar.xz.sig New: ---- kmousetool-21.08.0.tar.xz kmousetool-21.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kmousetool.spec ++++++ --- /var/tmp/diff_new_pack.ixupoA/_old 2021-08-16 10:07:57.739355160 +0200 +++ /var/tmp/diff_new_pack.ixupoA/_new 2021-08-16 10:07:57.743355156 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kmousetool -Version: 21.04.3 +Version: 21.08.0 Release: 0 Summary: Automatic Mouse Click License: GPL-2.0-or-later @@ -49,7 +49,6 @@ BuildRequires: pkgconfig(xext) BuildRequires: pkgconfig(xt) BuildRequires: pkgconfig(xtst) -Recommends: %{name}-lang Provides: kmousetool5 = %{version} Obsoletes: kmousetool5 < %{version} @@ -85,7 +84,6 @@ %if %{with lang} %files lang -f %{name}.lang -%license COPYING* %endif %changelog ++++++ kmousetool-21.04.3.tar.xz -> kmousetool-21.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmousetool-21.04.3/.gitignore new/kmousetool-21.08.0/.gitignore --- old/kmousetool-21.04.3/.gitignore 2021-03-28 15:50:59.000000000 +0200 +++ new/kmousetool-21.08.0/.gitignore 2021-07-22 03:37:13.000000000 +0200 @@ -20,3 +20,4 @@ CMakeLists.txt.user* *.unc-backup* .cmake/ +.clang-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmousetool-21.04.3/CMakeLists.txt new/kmousetool-21.08.0/CMakeLists.txt --- old/kmousetool-21.04.3/CMakeLists.txt 2021-07-06 07:19:43.000000000 +0200 +++ new/kmousetool-21.08.0/CMakeLists.txt 2021-07-22 03:37:13.000000000 +0200 @@ -1,8 +1,8 @@ project(kmousetool) -cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR) -set(QT_MIN_VERSION "5.9.0") -set(KF5_MIN_VERSION "5.46.0") +cmake_minimum_required (VERSION 3.16 FATAL_ERROR) +set(QT_MIN_VERSION "5.15.0") +set(KF5_MIN_VERSION "5.83.0") find_package (ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) @@ -42,9 +42,7 @@ add_subdirectory( doc ) add_subdirectory( kmousetool ) +ki18n_install(po) +kdoctools_install(po) feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) -ki18n_install(po) -if (KF5DocTools_FOUND) - kdoctools_install(po) -endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmousetool-21.04.3/CMakePresets.json new/kmousetool-21.08.0/CMakePresets.json --- old/kmousetool-21.04.3/CMakePresets.json 1970-01-01 01:00:00.000000000 +0100 +++ new/kmousetool-21.08.0/CMakePresets.json 2021-07-22 03:37:13.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", + "CMAKE_UNITY_BUILD": "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/kmousetool-21.04.3/CMakePresets.json.license new/kmousetool-21.08.0/CMakePresets.json.license --- old/kmousetool-21.04.3/CMakePresets.json.license 1970-01-01 01:00:00.000000000 +0100 +++ new/kmousetool-21.08.0/CMakePresets.json.license 2021-07-22 03:37:13.000000000 +0200 @@ -0,0 +1,2 @@ +# SPDX-FileCopyrightText: 2021 Laurent Montel <[email protected]> +# SPDX-License-Identifier: BSD-3-Clause diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmousetool-21.04.3/kmousetool/CMakeLists.txt new/kmousetool-21.08.0/kmousetool/CMakeLists.txt --- old/kmousetool-21.04.3/kmousetool/CMakeLists.txt 2021-03-28 15:50:59.000000000 +0200 +++ new/kmousetool-21.08.0/kmousetool/CMakeLists.txt 2021-07-22 03:37:13.000000000 +0200 @@ -15,9 +15,9 @@ add_executable(kmousetool ${kmousetool_SRCS}) target_link_libraries(kmousetool - Qt5::Core - Qt5::Gui - Qt5::Widgets + Qt::Core + Qt::Gui + Qt::Widgets Phonon::phonon4qt5 KF5::DBusAddons KF5::I18n diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmousetool-21.04.3/kmousetool/org.kde.kmousetool.appdata.xml new/kmousetool-21.08.0/kmousetool/org.kde.kmousetool.appdata.xml --- old/kmousetool-21.04.3/kmousetool/org.kde.kmousetool.appdata.xml 2021-03-28 15:50:59.000000000 +0200 +++ new/kmousetool-21.08.0/kmousetool/org.kde.kmousetool.appdata.xml 2021-07-22 03:37:13.000000000 +0200 @@ -44,6 +44,7 @@ <summary xml:lang="en-GB">Automatic clicks to reduce the effects of repetitive strain injury</summary> <summary xml:lang="es">Clics autom??ticos para reducir el efecto de lesiones por esfuerzo repetitivo</summary> <summary xml:lang="et">Automaatne kl??psamine ??lekoormuskahjustuse m??jude v??hendamiseks</summary> + <summary xml:lang="eu">Esfortzu errepikakorraren ondoriozko lesioaren efektuak murrizteko klik automatikoak</summary> <summary xml:lang="fi">Hiiren automaattinapsautukset rasitusvammojen vaikutusten v??hent??miseksi</summary> <summary xml:lang="fr">Clics automatiques pour r??duire les effets des troubles musculo-squelettiques</summary> <summary xml:lang="id">Klik otomatis untuk mengurangi efek cedera pegal</summary> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmousetool-21.04.3/po/hi/kmousetool.po new/kmousetool-21.08.0/po/hi/kmousetool.po --- old/kmousetool-21.04.3/po/hi/kmousetool.po 2021-07-06 07:19:43.000000000 +0200 +++ new/kmousetool-21.08.0/po/hi/kmousetool.po 2021-08-06 02:15:32.000000000 +0200 @@ -3,19 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Ravishankar Shrivastava <[email protected]>, 2007. +# Raghavendra Kamath <[email protected]>, 2021. msgid "" msgstr "" "Project-Id-Version: kmousetool\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-10-24 02:05+0200\n" -"PO-Revision-Date: 2007-11-19 15:36+0530\n" -"Last-Translator: Ravishankar Shrivastava <[email protected]>\n" -"Language-Team: Hindi <[email protected]>\n" +"PO-Revision-Date: 2021-07-10 10:57+0530\n" +"Last-Translator: Raghavendra Kamath <[email protected]>\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" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 21.04.3\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" #, kde-format @@ -108,7 +109,7 @@ #, fuzzy, kde-format #| msgid "Drag t&ime (1/10 sec):" msgid "&Drag time (1/10 sec):" -msgstr "??????????????? ????????? (???/?????? ??????????????????) (&i):" +msgstr "??????????????? ????????? (???/?????? ???????????????) (&i):" #. i18n: ectx: property (text), widget (QLabel, movementLabel) #: kmousetoolui.ui:97 @@ -139,7 +140,7 @@ #, fuzzy, kde-format #| msgid "D&well time (1/10 sec):" msgid "Dwell &time (1/10 sec):" -msgstr "??????????????? ????????? (???/?????? ??????????????????) (&w):" +msgstr "??????????????? ????????? (???/?????? ???????????????) (&w):" #. i18n: ectx: property (text), widget (QCheckBox, cbClick) #: kmousetoolui.ui:154 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kmousetool-21.04.3/po/zh_CN/kmousetool.po new/kmousetool-21.08.0/po/zh_CN/kmousetool.po --- old/kmousetool-21.04.3/po/zh_CN/kmousetool.po 2021-07-06 07:19:43.000000000 +0200 +++ new/kmousetool-21.08.0/po/zh_CN/kmousetool.po 2021-08-06 02:15:32.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-10-24 02:05+0200\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"
