Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kolf for openSUSE:Factory checked in at 2021-08-16 10:10:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kolf (Old) and /work/SRC/openSUSE:Factory/.kolf.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kolf" Mon Aug 16 10:10:25 2021 rev:111 rq:911711 version:21.08.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kolf/kolf.changes 2021-07-10 00:01:50.623355997 +0200 +++ /work/SRC/openSUSE:Factory/.kolf.new.1899/kolf.changes 2021-08-16 10:15:53.698781070 +0200 @@ -1,0 +2,23 @@ +Fri Aug 6 09:39:40 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:16 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:24 UTC 2021 - Christophe Giboudeaux <[email protected]> + +- Update to 21.07.80 + * New feature release +- No code change since 21.04.3 + +------------------------------------------------------------------- Old: ---- kolf-21.04.3.tar.xz kolf-21.04.3.tar.xz.sig New: ---- kolf-21.08.0.tar.xz kolf-21.08.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kolf.spec ++++++ --- /var/tmp/diff_new_pack.Qm0yvl/_old 2021-08-16 10:15:54.138780541 +0200 +++ /var/tmp/diff_new_pack.Qm0yvl/_new 2021-08-16 10:15:54.142780536 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: kolf -Version: 21.04.3 +Version: 21.08.0 Release: 0 Summary: Miniature golf game License: GPL-2.0-or-later AND LGPL-2.0-or-later @@ -49,7 +49,6 @@ BuildRequires: cmake(KF5XmlGui) BuildRequires: cmake(Qt5Gui) BuildRequires: cmake(Qt5Widgets) -Recommends: %{name}-lang %description Kolf is a miniature golf game by KDE. ++++++ kolf-21.04.3.tar.xz -> kolf-21.08.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kolf-21.04.3/.gitignore new/kolf-21.08.0/.gitignore --- old/kolf-21.04.3/.gitignore 2021-07-05 21:15:48.000000000 +0200 +++ new/kolf-21.08.0/.gitignore 2021-08-05 00:01:56.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/kolf-21.04.3/CMakeLists.txt new/kolf-21.08.0/CMakeLists.txt --- old/kolf-21.04.3/CMakeLists.txt 2021-07-06 07:22:08.000000000 +0200 +++ new/kolf-21.08.0/CMakeLists.txt 2021-08-06 02:17:59.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(kolf VERSION ${RELEASE_SERVICE_VERSION}) -set (QT_MIN_VERSION "5.12.0") -set (KF5_MIN_VERSION "5.59.0") +set (QT_MIN_VERSION "5.15.0") +set (KF5_MIN_VERSION "5.83.0") find_package(ECM ${KF5_MIN_VERSION} REQUIRED CONFIG) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH}) @@ -43,7 +43,7 @@ ecm_setup_version(${RELEASE_SERVICE_VERSION} VARIABLE_PREFIX KOLF VERSION_HEADER kolf_version.h) add_definitions( - -DQT_DISABLE_DEPRECATED_BEFORE=0x050C00 + -DQT_DISABLE_DEPRECATED_BEFORE=0x050F00 -DQT_DEPRECATED_WARNINGS_SINCE=0x060000 -DQT_NO_KEYWORDS -DQT_NO_URL_CAST_FROM_STRING @@ -61,12 +61,12 @@ add_subdirectory(graphics) add_subdirectory(doc) -# we have a static copy of Box2D in our source tree -include_directories(${CMAKE_CURRENT_SOURCE_DIR}/external) +add_library(kolfprivate STATIC) -########### next target ############### +# we have a static copy of Box2D in our source tree +target_include_directories(kolfprivate PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/external) -set(box2d_SRCS +target_sources(kolfprivate PRIVATE external/Box2D/Common/b2StackAllocator.cpp external/Box2D/Common/b2Settings.cpp external/Box2D/Common/b2Math.cpp @@ -111,8 +111,7 @@ external/Box2D/Collision/b2CollideEdge.cpp ) - -set(kolf_LIB_SRCS +target_sources(kolfprivate PRIVATE game.cpp kolf.cpp newgame.cpp @@ -135,11 +134,8 @@ ${box2d_SRCS} ) -add_library(kolfprivate STATIC ${kolf_LIB_SRCS}) - target_link_libraries(kolfprivate - Qt5::Gui - Qt5::Widgets + KF5KDEGames KF5::Crash KF5::Completion KF5::ConfigCore @@ -149,16 +145,17 @@ KF5::KIOCore KF5::TextWidgets KF5::XmlGui - KF5KDEGames + Qt::Gui + Qt::Widgets ) ########### next target ############### -set(kolf_SRCS main.cpp) +add_executable(kolf) +target_sources(kolf PRIVATE main.cpp) file(GLOB ICONS_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/pics/*-apps-kolf.png") -ecm_add_app_icon(kolf_SRCS ICONS ${ICONS_SRCS}) -add_executable(kolf ${kolf_SRCS}) +ecm_add_app_icon(kolf ICONS ${ICONS_SRCS}) target_link_libraries( kolf kolfprivate) install(TARGETS kolf ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kolf-21.04.3/org.kde.kolf.appdata.xml new/kolf-21.08.0/org.kde.kolf.appdata.xml --- old/kolf-21.04.3/org.kde.kolf.appdata.xml 2021-07-05 21:15:48.000000000 +0200 +++ new/kolf-21.08.0/org.kde.kolf.appdata.xml 2021-08-05 00:01:56.000000000 +0200 @@ -317,9 +317,9 @@ <binary>kolf</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/kolf-21.04.3/po/ca/kolf.po new/kolf-21.08.0/po/ca/kolf.po --- old/kolf-21.04.3/po/ca/kolf.po 2021-07-06 07:22:08.000000000 +0200 +++ new/kolf-21.08.0/po/ca/kolf.po 2021-08-06 02:17:59.000000000 +0200 @@ -6,20 +6,20 @@ # Miquel Oliete <[email protected]>, 2007. # Manuel Tortosa <[email protected]>, 2009. # Manuel Tortosa Moreno <[email protected]>, 2010. -# Antoni Bella P??rez <[email protected]>, 2020. +# Antoni Bella P??rez <[email protected]>, 2020, 2021. msgid "" msgstr "" "Project-Id-Version: kolf\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-10-24 02:14+0200\n" -"PO-Revision-Date: 2020-08-05 16:22+0200\n" +"PO-Revision-Date: 2021-08-06 01:22+0200\n" "Last-Translator: Antoni Bella P??rez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 20.04.3\n" +"X-Generator: Lokalize 21.07.90\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: &\n" @@ -81,7 +81,7 @@ #: game.cpp:297 #, kde-format msgid "Show border walls" -msgstr "Mostra els murs de la vora" +msgstr "Mostra els murs de frontera" #: game.cpp:495 game.cpp:2423 #, kde-format @@ -180,7 +180,7 @@ #: kolf.cpp:62 #, kde-format msgid "Slope" -msgstr "Pendent" +msgstr "Desnivell" #: kolf.cpp:63 #, kde-format @@ -195,7 +195,7 @@ #: kolf.cpp:65 #, kde-format msgid "Cup" -msgstr "Forat" +msgstr "Tassa" #: kolf.cpp:66 #, kde-format @@ -205,7 +205,7 @@ #: kolf.cpp:67 #, kde-format msgid "Windmill" -msgstr "Molinet" +msgstr "Mol?? de vent" #: kolf.cpp:68 #, kde-format @@ -307,12 +307,12 @@ #: kolf.cpp:162 #, kde-format msgid "Enable &Mouse for Moving Putter" -msgstr "Habilita el &ratol?? per a moure el ??putter??" +msgstr "Habilita el &ratol?? per a moure el llan??ador" #: kolf.cpp:169 #, kde-format msgid "Enable &Advanced Putting" -msgstr "Habilita el ??putting?? &avan??at" +msgstr "Habilita el llan??ament &avan??at" #: kolf.cpp:175 #, kde-format @@ -322,7 +322,7 @@ #: kolf.cpp:182 #, kde-format msgid "Show Putter &Guideline" -msgstr "Mostra la &guia del ??putter??" +msgstr "Mostra la l??nia &guia del llan??ador" #: kolf.cpp:188 #, kde-format @@ -337,12 +337,12 @@ #: kolf.cpp:199 #, kde-format msgid "&About Course" -msgstr "&Sobre la cursa" +msgstr "Sobre el c&..." #: kolf.cpp:202 #, kde-format msgid "&Tutorial" -msgstr "&Guia d'aprenentatge" +msgstr "&Camp d'aprenentatge" #: kolf.cpp:450 kolf.cpp:494 kolf.cpp:521 newgame.cpp:248 scoreboard.cpp:27 #, kde-format @@ -457,7 +457,7 @@ #: landscape.cpp:577 #, kde-format msgid "Whether or not this slope can be moved by other objects, like floaters." -msgstr "Si aquest desnivell el poden moure altres objectes, com flotadors." +msgstr "Si el poden moure o no altres objectes, com les plataformes voladores." #: landscape.cpp:581 #, kde-format @@ -507,7 +507,7 @@ #: main.cpp:53 #, kde-format msgid "Advanced putting mode" -msgstr "Mode ??putting?? avan??at" +msgstr "Mode llan??ament avan??at" #: main.cpp:54 #, kde-format @@ -681,8 +681,8 @@ "generally for competition. Only in strict mode are highscores kept." msgstr "" "En el mode estricte no es permet desfer, editar o canviar forats. " -"Generalment ??s per competicions. Les puntuacions m??ximes nom??s es guarden en " -"mode estricte." +"Generalment ??s per a competici??. Les puntuacions m??ximes nom??s es guarden en " +"el mode estricte." #: newgame.cpp:241 #, kde-format @@ -765,7 +765,7 @@ #: obstacles.cpp:436 #, kde-format msgid "Windmill on top" -msgstr "Molinet a dalt" +msgstr "Mol?? de vent a dalt" #: obstacles.cpp:457 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kolf-21.04.3/po/cs/kolf.po new/kolf-21.08.0/po/cs/kolf.po --- old/kolf-21.04.3/po/cs/kolf.po 2021-07-06 07:22:08.000000000 +0200 +++ new/kolf-21.08.0/po/cs/kolf.po 2021-08-06 02:17:59.000000000 +0200 @@ -2,6 +2,7 @@ # This file is distributed under the same license as the PACKAGE package. # V??t Pel????k <[email protected]>, 2011, 2017, 2019. # Tom???? Chv??tal <[email protected]>, 2012. +# Vit Pelcak <[email protected]>, 2021. # msgid "" msgstr "" @@ -16,7 +17,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Lokalize 19.08.0\n" +"X-Generator: Lokalize 21.04.3\n" #, kde-format msgctxt "NAME OF TRANSLATORS" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kolf-21.04.3/po/zh_CN/kolf.po new/kolf-21.08.0/po/zh_CN/kolf.po --- old/kolf-21.04.3/po/zh_CN/kolf.po 2021-07-06 07:22:08.000000000 +0200 +++ new/kolf-21.08.0/po/zh_CN/kolf.po 2021-08-06 02:17:59.000000000 +0200 @@ -10,7 +10,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2020-10-24 02:14+0200\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"
