Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kturtle for openSUSE:Factory checked in at 2021-08-16 10:10:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kturtle (Old) and /work/SRC/openSUSE:Factory/.kturtle.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kturtle" Mon Aug 16 10:10:49 2021 rev:130 rq:911762 version:21.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kturtle/kturtle.changes 2021-07-10 00:02:24.935089175 +0200 +++ /work/SRC/openSUSE:Factory/.kturtle.new.1899/kturtle.changes 2021-08-16 10:16:31.914735120 +0200 @@ -1,0 +2,27 @@ +Fri Aug 6 09:41:27 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:40 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:49 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.07.80 + * New feature release +- Changes since 21.04.3: + * Time to increase version + use qt_ macro + qt:: + * Ignore files + * Add cmake preset support +- Only install the license files once + +------------------------------------------------------------------- Old: ---- kturtle-21.04.3.tar.xz kturtle-21.04.3.tar.xz.sig New: ---- kturtle-21.08.0.tar.xz kturtle-21.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kturtle.spec ++++++ --- /var/tmp/diff_new_pack.VrNht2/_old 2021-08-16 10:16:32.382734558 +0200 +++ /var/tmp/diff_new_pack.VrNht2/_new 2021-08-16 10:16:32.386734553 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kturtle -Version: 21.04.3 +Version: 21.08.0 Release: 0 Summary: Logo Programming Environment License: GPL-2.0-or-later @@ -45,7 +45,6 @@ BuildRequires: cmake(Qt5Widgets) Obsoletes: %{name}5 < %{version} Provides: %{name}5 = %{version} -Recommends: %{name}-lang %description KTurtle is an educational Logo programming environment. @@ -87,7 +86,6 @@ %if %{with lang} %files lang -f %{name}.lang -%license COPYING* %endif %changelog ++++++ kturtle-21.04.3.tar.xz -> kturtle-21.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kturtle-21.04.3/.gitignore new/kturtle-21.08.0/.gitignore --- old/kturtle-21.04.3/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/kturtle-21.08.0/.gitignore 2021-08-04 23:51:52.000000000 +0200 @@ -0,0 +1,8 @@ +/.clang-format +/compile_commands.json +.clangd +.cache +.idea +/cmake-build* +CMakeLists.txt.user +build*/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kturtle-21.04.3/CMakeLists.txt new/kturtle-21.08.0/CMakeLists.txt --- old/kturtle-21.04.3/CMakeLists.txt 2021-07-06 07:17:05.000000000 +0200 +++ new/kturtle-21.08.0/CMakeLists.txt 2021-08-06 02:12:51.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(kturtle VERSION ${RELEASE_SERVICE_VERSION}) -set(QT_MIN_VERSION "5.11.0") -set(KF5_MIN_VERSION "5.46.0") +set(QT_MIN_VERSION "5.15.0") +set(KF5_MIN_VERSION "5.83.0") find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kturtle-21.04.3/CMakePresets.json new/kturtle-21.08.0/CMakePresets.json --- old/kturtle-21.04.3/CMakePresets.json 1970-01-01 01:00:00.000000000 +0100 +++ new/kturtle-21.08.0/CMakePresets.json 2021-08-04 23:51:52.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/kturtle-21.04.3/org.kde.kturtle.appdata.xml new/kturtle-21.08.0/org.kde.kturtle.appdata.xml --- old/kturtle-21.04.3/org.kde.kturtle.appdata.xml 2021-07-05 21:02:36.000000000 +0200 +++ new/kturtle-21.08.0/org.kde.kturtle.appdata.xml 2021-08-04 23:51:52.000000000 +0200 @@ -153,10 +153,10 @@ <binary>kturtle</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> <content_rating type="oars-1.1"/> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kturtle-21.04.3/po/de/kturtle.po new/kturtle-21.08.0/po/de/kturtle.po --- old/kturtle-21.04.3/po/de/kturtle.po 2021-07-06 07:17:04.000000000 +0200 +++ new/kturtle-21.08.0/po/de/kturtle.po 2021-08-06 02:12:51.000000000 +0200 @@ -11,7 +11,7 @@ "Project-Id-Version: kturtle\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-01-22 02:27+0100\n" -"PO-Revision-Date: 2021-05-10 06:12+0200\n" +"PO-Revision-Date: 2021-05-10 06:31+0200\n" "Last-Translator: Burkhard L??ck <[email protected]>\n" "Language-Team: German <[email protected]>\n" "Language: de\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kturtle-21.04.3/po/fi/kturtle.po new/kturtle-21.08.0/po/fi/kturtle.po --- old/kturtle-21.04.3/po/fi/kturtle.po 2021-07-06 07:17:04.000000000 +0200 +++ new/kturtle-21.08.0/po/fi/kturtle.po 2021-08-06 02:12:51.000000000 +0200 @@ -2,7 +2,7 @@ # # Marko Gronroos <[email protected]>, 2004. # Ilpo Kantonen <[email protected]>, 2005, 2006. -# Tommi Nieminen <[email protected]>, 2010, 2020. +# Tommi Nieminen <[email protected]>, 2010, 2020, 2021. # Jiri Gr??nroos <[email protected]>, 2013. # Lasse Liehu <[email protected]>, 2010, 2012, 2013, 2014, 2015. msgid "" @@ -10,7 +10,7 @@ "Project-Id-Version: kturtle\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-01-22 02:27+0100\n" -"PO-Revision-Date: 2020-12-27 17:47+0200\n" +"PO-Revision-Date: 2021-07-05 19:56+0300\n" "Last-Translator: Tommi Nieminen <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" "Language: fi\n" @@ -60,11 +60,10 @@ msgstr "yliviivaus" #: colorpicker.cpp:30 -#, fuzzy, kde-format -#| msgid "Color Picker" +#, kde-format msgctxt "@title:window" msgid "Color Picker" -msgstr "V??rinvalinta" +msgstr "V??rivalinta" #: colorpicker.cpp:49 #, kde-format @@ -115,8 +114,7 @@ msgstr "<p style='white-space:pre'><b>VIRHE:</b> %1</p>" #: directiondialog.cpp:194 -#, fuzzy, kde-format -#| msgid "Direction Chooser" +#, kde-format msgctxt "@title:window" msgid "Direction Chooser" msgstr "Suunnan valinta" @@ -193,8 +191,7 @@ msgstr "&Hylk???? muutokset" #: errordialog.cpp:27 -#, fuzzy, kde-format -#| msgid "Errors" +#, kde-format msgctxt "@title:window" msgid "Errors" msgstr "Virheet" @@ -2160,11 +2157,10 @@ msgstr "PNG-kuvat" #: mainwindow.cpp:1031 -#, fuzzy, kde-format -#| msgid "Save as SVG" +#, kde-format msgctxt "@title:window" msgid "Save as SVG" -msgstr "Tallenna SVG:n??" +msgstr "Tallenna SVG:ksi" # Erisnimi; SVG #: mainwindow.cpp:1031 @@ -2173,11 +2169,10 @@ msgstr "Scalable Vector Graphics" #: mainwindow.cpp:1041 -#, fuzzy, kde-format -#| msgid "Save code as HTML" +#, kde-format msgctxt "@title:window" msgid "Save code as HTML" -msgstr "Tallenna koodi HTML:n??" +msgstr "Tallenna koodi HTML:ksi" #: mainwindow.cpp:1041 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kturtle-21.04.3/po/ta/kturtle.po new/kturtle-21.08.0/po/ta/kturtle.po --- old/kturtle-21.04.3/po/ta/kturtle.po 2021-07-06 07:17:05.000000000 +0200 +++ new/kturtle-21.08.0/po/ta/kturtle.po 2021-08-06 02:12:51.000000000 +0200 @@ -1,22 +1,24 @@ -# translation of kturtle.po to +# translation of kturtle.po to # translation of kturtle.po to Tamil # Copyright (C) 2004 Free Software Foundation, Inc. +# # Vasee Vaseeharan <[email protected]>, 2004. # root <[email protected]>, 2004. -# +# Kishore G <[email protected]>, 2021. msgid "" msgstr "" "Project-Id-Version: kturtle\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-01-22 02:27+0100\n" -"PO-Revision-Date: 2004-12-29 02:44-0800\n" -"Last-Translator: Tamil PC <[email protected]>\n" -"Language-Team: <[email protected]>\n" +"PO-Revision-Date: 2021-01-18 19:24+0530\n" +"Last-Translator: Kishore G <[email protected]>\n" +"Language-Team: Tamil <[email protected]>\n" "Language: ta\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: Lokalize 20.12.1\n" #, fuzzy, kde-format msgctxt "NAME OF TRANSLATORS" @@ -1342,7 +1344,7 @@ #: kturtleui.rc:80 #, kde-format msgid "Main Toolbar" -msgstr "" +msgstr "?????????????????? ????????????????????????????????????" #: main.cpp:29 #, kde-format @@ -2115,7 +2117,7 @@ #: mainwindow.cpp:971 #, kde-format msgid "untitled" -msgstr "" +msgstr "??????????????????????????????????????????" #: mainwindow.cpp:1013 #, fuzzy, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kturtle-21.04.3/po/zh_CN/kturtle.po new/kturtle-21.08.0/po/zh_CN/kturtle.po --- old/kturtle-21.04.3/po/zh_CN/kturtle.po 2021-07-06 07:17:05.000000000 +0200 +++ new/kturtle-21.08.0/po/zh_CN/kturtle.po 2021-08-06 02:12:51.000000000 +0200 @@ -10,7 +10,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2021-01-22 02:27+0100\n" -"PO-Revision-Date: 2021-06-20 07:37\n" +"PO-Revision-Date: 2021-07-26 13:49\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kturtle-21.04.3/src/CMakeLists.txt new/kturtle-21.08.0/src/CMakeLists.txt --- old/kturtle-21.04.3/src/CMakeLists.txt 2021-07-05 21:02:36.000000000 +0200 +++ new/kturtle-21.08.0/src/CMakeLists.txt 2021-08-04 23:51:52.000000000 +0200 @@ -25,7 +25,7 @@ resources.qrc ) -qt5_add_dbus_adaptor(kturtle_SRCS interpreter/org.kde.kturtle.Interpreter.xml +qt_add_dbus_adaptor(kturtle_SRCS interpreter/org.kde.kturtle.Interpreter.xml interpreter/interpreter.h Interpreter) file(GLOB ICONS_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/../icons/*-apps-kturtle.png") @@ -38,11 +38,11 @@ KF5::KIOCore KF5::NewStuff KF5::I18n - Qt5::Core - Qt5::Gui - Qt5::Xml - Qt5::Svg - Qt5::PrintSupport + Qt::Core + Qt::Gui + Qt::Xml + Qt::Svg + Qt::PrintSupport KF5::TextWidgets KF5::Crash )
