Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package picmi for openSUSE:Factory checked in at 2021-08-16 10:11:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/picmi (Old) and /work/SRC/openSUSE:Factory/.picmi.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "picmi" Mon Aug 16 10:11:01 2021 rev:112 rq:911796 version:21.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/picmi/picmi.changes 2021-07-10 00:02:41.686958907 +0200 +++ /work/SRC/openSUSE:Factory/.picmi.new.1899/picmi.changes 2021-08-16 10:16:56.806705191 +0200 @@ -1,0 +2,26 @@ +Fri Aug 6 09:42:49 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:56 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:07:06 UTC 2021 - Christophe Giboudeaux <christo...@krop.fr> + +- Update to 21.07.80 + * New feature release +- Changes since 21.04.3: + * Add cmake preset support + * Time to increase version +- Only install the license files once + +------------------------------------------------------------------- Old: ---- picmi-21.04.3.tar.xz picmi-21.04.3.tar.xz.sig New: ---- picmi-21.08.0.tar.xz picmi-21.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ picmi.spec ++++++ --- /var/tmp/diff_new_pack.a9XQEu/_old 2021-08-16 10:16:57.298704600 +0200 +++ /var/tmp/diff_new_pack.a9XQEu/_new 2021-08-16 10:16:57.302704596 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: picmi -Version: 21.04.3 +Version: 21.08.0 Release: 0 Summary: Nonogram Logic game License: GPL-2.0-or-later @@ -85,7 +85,6 @@ %if %{with lang} %files lang -f %{name}.lang -%license COPYING* %endif %changelog ++++++ picmi-21.04.3.tar.xz -> picmi-21.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-21.04.3/.gitignore new/picmi-21.08.0/.gitignore --- old/picmi-21.04.3/.gitignore 2021-01-18 02:32:05.000000000 +0100 +++ new/picmi-21.08.0/.gitignore 2021-06-06 20:03:13.000000000 +0200 @@ -3,3 +3,9 @@ *.kdev4 CMakeLists.txt.user* .cmake/ +/.clang-format +/compile_commands.json +.clangd +.cache +.idea +/cmake-build* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-21.04.3/CMakeLists.txt new/picmi-21.08.0/CMakeLists.txt --- old/picmi-21.04.3/CMakeLists.txt 2021-07-06 07:23:53.000000000 +0200 +++ new/picmi-21.08.0/CMakeLists.txt 2021-08-06 02:19:46.000000000 +0200 @@ -1,8 +1,8 @@ project (picmi) -cmake_minimum_required (VERSION 3.5 FATAL_ERROR) -set (QT_MIN_VERSION "5.12.0") -set (KF5_MIN_VERSION "5.68.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 CONFIG) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-21.04.3/CMakePresets.json new/picmi-21.08.0/CMakePresets.json --- old/picmi-21.04.3/CMakePresets.json 1970-01-01 01:00:00.000000000 +0100 +++ new/picmi-21.08.0/CMakePresets.json 2021-06-06 20:03: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/picmi-21.04.3/po/zh_CN/picmi.po new/picmi-21.08.0/po/zh_CN/picmi.po --- old/picmi-21.04.3/po/zh_CN/picmi.po 2021-07-06 07:23:53.000000000 +0200 +++ new/picmi-21.08.0/po/zh_CN/picmi.po 2021-08-06 02:19:46.000000000 +0200 @@ -7,7 +7,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-05-12 03:25+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" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-21.04.3/src/CMakeLists.txt new/picmi-21.08.0/src/CMakeLists.txt --- old/picmi-21.04.3/src/CMakeLists.txt 2021-01-18 02:32:05.000000000 +0100 +++ new/picmi-21.08.0/src/CMakeLists.txt 2021-06-06 20:03:13.000000000 +0200 @@ -43,7 +43,7 @@ add_executable(picmi ${picmi_SRCS}) target_link_libraries(picmi - Qt5::Svg + Qt::Svg KF5::CoreAddons KF5::Crash KF5::DBusAddons diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-21.04.3/src/gui/CMakeLists.txt new/picmi-21.08.0/src/gui/CMakeLists.txt --- old/picmi-21.04.3/src/gui/CMakeLists.txt 2021-01-18 02:32:05.000000000 +0100 +++ new/picmi-21.08.0/src/gui/CMakeLists.txt 2021-06-06 20:03:13.000000000 +0200 @@ -37,8 +37,8 @@ KF5::CoreAddons KF5::I18n KF5::XmlGui - Qt5::Core - Qt5::Svg + Qt::Core + Qt::Svg ) # vim:set ts=4 sw=4 et: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-21.04.3/src/logic/CMakeLists.txt new/picmi-21.08.0/src/logic/CMakeLists.txt --- old/picmi-21.04.3/src/logic/CMakeLists.txt 2021-01-18 02:32:05.000000000 +0100 +++ new/picmi-21.08.0/src/logic/CMakeLists.txt 2021-06-06 20:03:13.000000000 +0200 @@ -16,8 +16,8 @@ KF5KDEGames KF5::CoreAddons KF5::I18n - Qt5::Core - Qt5::Xml + Qt::Core + Qt::Xml ) # vim:set ts=4 sw=4 et: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-21.04.3/test/logic/CMakeLists.txt new/picmi-21.08.0/test/logic/CMakeLists.txt --- old/picmi-21.04.3/test/logic/CMakeLists.txt 2021-01-18 02:32:05.000000000 +0100 +++ new/picmi-21.08.0/test/logic/CMakeLists.txt 2021-06-06 20:03:13.000000000 +0200 @@ -11,6 +11,6 @@ add_test(NAME streaks_test COMMAND streaks_test) ecm_mark_as_test(streaks_test) -target_link_libraries(streaks_test picmi_logic Qt5::Test Qt5::Core) +target_link_libraries(streaks_test picmi_logic Qt::Test Qt::Core) # vim:set ts=4 sw=4 et: