Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package blinken for openSUSE:Factory checked in at 2023-04-23 22:45:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/blinken (Old) and /work/SRC/openSUSE:Factory/.blinken.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "blinken" Sun Apr 23 22:45:24 2023 rev:153 rq:1080525 version:23.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/blinken/blinken.changes 2023-03-03 22:27:32.307149486 +0100 +++ /work/SRC/openSUSE:Factory/.blinken.new.1533/blinken.changes 2023-04-23 22:47:22.690682507 +0200 @@ -1,0 +2,20 @@ +Sat Apr 15 08:45:13 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 23.04.0 + * New feature release + * For more details please see: + * https://kde.org/announcements/gear/23.04.0/ + +------------------------------------------------------------------- +Fri Mar 31 16:41:33 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 23.03.90 + * New feature release + +------------------------------------------------------------------- +Fri Mar 17 20:42:52 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 23.03.80 + * New feature release + +------------------------------------------------------------------- Old: ---- blinken-22.12.3.tar.xz blinken-22.12.3.tar.xz.sig New: ---- blinken-23.04.0.tar.xz blinken-23.04.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ blinken.spec ++++++ --- /var/tmp/diff_new_pack.UMRfZs/_old 2023-04-23 22:47:24.078690349 +0200 +++ /var/tmp/diff_new_pack.UMRfZs/_new 2023-04-23 22:47:24.082690371 +0200 @@ -17,11 +17,9 @@ %define kf5_version 5.90.0 -# Latest stable Applications (e.g. 17.08 in KA, but 17.11.80 in KUA) -%{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without released Name: blinken -Version: 22.12.3 +Version: 23.04.0 Release: 0 Summary: Simon Says Game License: GPL-2.0-or-later ++++++ blinken-22.12.3.tar.xz -> blinken-23.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blinken-22.12.3/.kde-ci.yml new/blinken-23.04.0/.kde-ci.yml --- old/blinken-22.12.3/.kde-ci.yml 2023-02-25 05:52:24.000000000 +0100 +++ new/blinken-23.04.0/.kde-ci.yml 2023-04-12 18:00:59.000000000 +0200 @@ -2,7 +2,18 @@ # SPDX-License-Identifier: CC0-1.0 Dependencies: -- 'on': ['@all'] +- 'on': ['Linux/Qt6', 'FreeBSD/Qt6', 'Windows/Qt6', 'Android/Qt6'] + 'require': + 'frameworks/extra-cmake-modules': '@latest-kf6' + 'frameworks/ki18n': '@latest-kf6' + 'frameworks/kxmlgui': '@latest-kf6' + 'frameworks/kguiaddons': '@latest-kf6' + 'frameworks/kdoctools': '@latest-kf6' + 'frameworks/kdbusaddons': '@latest-kf6' + 'frameworks/kcrash': '@latest-kf6' + 'libraries/phonon' : '@latest-kf6' + +- 'on': ['Linux/Qt5', 'FreeBSD/Qt5', 'Windows/Qt5', 'Android/Qt5'] 'require': 'frameworks/extra-cmake-modules': '@stable' 'frameworks/ki18n': '@stable' @@ -12,3 +23,6 @@ 'frameworks/kdbusaddons': '@stable' 'frameworks/kcrash': '@stable' 'libraries/phonon' : '@stable' + +Options: + require-passing-tests-on: [ '@all' ] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blinken-22.12.3/CMakeLists.txt new/blinken-23.04.0/CMakeLists.txt --- old/blinken-22.12.3/CMakeLists.txt 2023-02-25 05:52:24.000000000 +0100 +++ new/blinken-23.04.0/CMakeLists.txt 2023-04-12 18:00:59.000000000 +0200 @@ -1,16 +1,16 @@ cmake_minimum_required (VERSION 3.16 FATAL_ERROR) # KDE Application Version, managed by release script -set(RELEASE_SERVICE_VERSION_MAJOR "22") -set(RELEASE_SERVICE_VERSION_MINOR "12") -set(RELEASE_SERVICE_VERSION_MICRO "3") +set(RELEASE_SERVICE_VERSION_MAJOR "23") +set(RELEASE_SERVICE_VERSION_MINOR "04") +set(RELEASE_SERVICE_VERSION_MICRO "0") set(RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE_VERSION_MINOR}.${RELEASE_SERVICE_VERSION_MICRO}") project(blinken VERSION ${RELEASE_SERVICE_VERSION}) # minimal Qt requirement set(QT_MIN_VERSION "5.15.2") -set(KF5_MIN_VERSION "5.90.0") +set(KF5_MIN_VERSION "5.92.0") # ECM find_package (ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE) @@ -26,10 +26,18 @@ include(ECMInstallIcons) include(ECMSetupVersion) include(FeatureSummary) +include(ECMDeprecationSettings) +if (QT_MAJOR_VERSION STREQUAL "6") + set(QT_REQUIRED_VERSION "6.4.0") + set(KF_MIN_VERSION "5.240.0") + set(KF_MAJOR_VERSION "6") +else() + set(KF_MAJOR_VERSION "5") +endif() find_package (Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} CONFIG REQUIRED Core Widgets Svg) -find_package (KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS +find_package (KF${KF_MAJOR_VERSION} ${KF5_MIN_VERSION} REQUIRED COMPONENTS CoreAddons I18n XmlGui GuiAddons DocTools DBusAddons Crash ) @@ -37,7 +45,7 @@ # global include directories include_directories (${CMAKE_CURRENT_BINARY_DIR}) - +ecm_set_disabled_deprecation_versions(QT 6.4 KF 5.101.0) add_subdirectory( doc ) add_subdirectory( src ) @@ -49,7 +57,7 @@ ########### install files ############### ki18n_install(po) -if (KF5DocTools_FOUND) +if (KF${KF_MAJOR_VERSION}DocTools_FOUND) kdoctools_install(po) endif() install( FILES README.packagers DESTINATION ${KDE_INSTALL_DATADIR}/blinken/ ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blinken-22.12.3/org.kde.blinken.appdata.xml new/blinken-23.04.0/org.kde.blinken.appdata.xml --- old/blinken-22.12.3/org.kde.blinken.appdata.xml 2023-02-25 05:52:24.000000000 +0100 +++ new/blinken-23.04.0/org.kde.blinken.appdata.xml 2023-04-12 18:00:59.000000000 +0200 @@ -177,10 +177,10 @@ <binary>blinken</binary> </provides> <releases> + <release version="23.04.0" date="2023-04-20"/> <release version="22.12.3" date="2023-03-02"/> <release version="22.12.2" date="2023-02-02"/> <release version="22.12.1" date="2023-01-05"/> - <release version="22.12.0" date="2022-12-08"/> </releases> <content_rating type="oars-1.1"/> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blinken-22.12.3/po/eo/blinken.po new/blinken-23.04.0/po/eo/blinken.po --- old/blinken-22.12.3/po/eo/blinken.po 2023-02-25 05:52:24.000000000 +0100 +++ new/blinken-23.04.0/po/eo/blinken.po 2023-04-12 18:00:59.000000000 +0200 @@ -1,11 +1,15 @@ +# translation of blinken.pot to Esperanto +# Copyright (C) 2009 Free Software Foundation, Inc. # Axel Rousseau <[email protected]>, 2009. +# Oliver Kellogg <[email protected]>, 2023. +# msgid "" msgstr "" "Project-Id-Version: blinken\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-10-02 00:41+0000\n" -"PO-Revision-Date: 2009-11-03 04:16-0500\n" -"Last-Translator: Axel Rousseau <[email protected]>\n" +"PO-Revision-Date: 2023-01-04 22:00+0100\n" +"Last-Translator: Oliver Kellogg <[email protected]>\n" "Language-Team: Esperanto <[email protected]>\n" "Language: eo\n" "MIME-Version: 1.0\n" @@ -202,19 +206,19 @@ msgstr "Rekordoj" #: highscoredialog.cpp:149 -#, fuzzy, kde-format +#, kde-format msgctxt "@title:group High scores Level 1 tab title" msgid "Level 1" -msgstr "Nivelo %1" +msgstr "Nivelo 1" #: highscoredialog.cpp:150 -#, fuzzy, kde-format +#, kde-format msgctxt "@title:group High scores Level 2 tab title" msgid "Level 2" msgstr "Nivelo 2" #: highscoredialog.cpp:151 -#, fuzzy, kde-format +#, kde-format msgctxt "@title:group High scores Level ? tab tible" msgid "Level ?" msgstr "Nivelo ?" @@ -230,16 +234,13 @@ msgstr "Memora Ludo" #: main.cpp:31 -#, fuzzy, kde-format -#| msgid "" -#| "© 2005-2007 Albert Astals Cid\n" -#| "© 2005-2007 Danny Allen" +#, kde-format msgid "" "© 2005-2007 Albert Astals Cid\n" "SPDX-FileCopyrightText: 2005-2007 Danny Allen " msgstr "" "© 2005-2007 Albert Astals Cid\n" -"© 2005-2007 Danny Allen" +"SPDX-FileCopyrightText: 2005-2007 Danny Allen " #: main.cpp:32 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blinken-22.12.3/po/pt_BR/docs/blinken/index.docbook new/blinken-23.04.0/po/pt_BR/docs/blinken/index.docbook --- old/blinken-22.12.3/po/pt_BR/docs/blinken/index.docbook 2023-02-25 05:52:24.000000000 +0100 +++ new/blinken-23.04.0/po/pt_BR/docs/blinken/index.docbook 2023-04-12 18:00:59.000000000 +0200 @@ -3,11 +3,14 @@ <!ENTITY blinken "<application >Blinken</application >"> - <!ENTITY kappname "&blinken;"> <!ENTITY % addindex "IGNORE"> <!ENTITY % Brazilian-Portuguese "INCLUDE" ><!-- change language only here --> ]> +<!-- +SPDX-FileCopyrightText: 2005 Danny Allen <[email protected]> +SPDX-License-Identifier: GFDL-1.2-only +--> <book id="blinken" lang="&language;"> @@ -17,15 +20,7 @@ <authorgroup> <author -><firstname ->Danny</firstname -> <surname ->Allen</surname -> <affiliation -> <address ->&Danny.Allen.mail;</address> -</affiliation> -</author> +>&Danny.Allen; &Danny.Allen.mail;</author> <othercredit role="translator" ><firstname >Luiz Fernando</firstname @@ -68,9 +63,9 @@ >&FDLNotice;</legalnotice> <date ->26/04/2016</date> +>10/12/2020</date> <releaseinfo ->0.4 (Applications 16.04)</releaseinfo> +>Applications 20.12.0</releaseinfo> <abstract> <para @@ -139,11 +134,11 @@ </screenshot> <para ->O botão <guiicon ->Recordes</guiicon +>O botão <guibutton +>Recordes</guibutton > <action ->abre o diálogo que exibe a <guilabel ->Tabela de Recordes</guilabel +>abre o diálogo que exibe a tabela de <guilabel +>Recordes</guilabel ></action > para cada um dos 3 nÃveis de dificuldade (a <guilabel >Tabela de Recordes</guilabel @@ -155,8 +150,8 @@ <screenshot> <screeninfo ->O botão <guiicon ->Recordes</guiicon +>O botão <guibutton +>Recordes</guibutton ></screeninfo> <mediaobject> <imageobject> @@ -164,24 +159,24 @@ </imageobject> <textobject> <phrase ->O botão <guiicon ->Recordes</guiicon +>O botão <guibutton +>Recordes</guibutton ></phrase> </textobject> </mediaobject> </screenshot> <para ->O botão <guiicon ->Sair</guiicon +>O botão <guibutton +>Sair</guibutton > <action >fecha o aplicativo</action >: </para> <screenshot> <screeninfo ->O botão <guiicon ->Sair</guiicon +>O botão <guibutton +>Sair</guibutton ></screeninfo> <mediaobject> <imageobject> @@ -189,22 +184,22 @@ </imageobject> <textobject> <phrase ->Botão <guiicon ->Sair</guiicon +>Botão <guibutton +>Sair</guibutton ></phrase> </textobject> </mediaobject> </screenshot> <para ->O botão <guiicon ->Ajuda</guiicon +>O botão <guibutton +>Ajuda</guibutton > é diferente, uma vez que ele <action > exibe 4 novos botões</action >. Estes botões são exibidos ao <action >parar a seta do mouse</action -> sobre o botão <guiicon ->Ajuda</guiicon +> sobre o botão <guibutton +>Ajuda</guibutton > e dão acesso ao <guilabel >Manual do &blinken;</guilabel > (este documento), <guilabel @@ -217,8 +212,8 @@ <screenshot> <screeninfo ->Botão <guiicon ->Ajuda</guiicon +>Botão <guibutton +>Ajuda</guibutton ></screeninfo> <mediaobject> <imageobject> @@ -226,8 +221,8 @@ </imageobject> <textobject> <phrase ->Botão <guiicon ->Ajuda</guiicon +>Botão <guibutton +>Ajuda</guibutton ></phrase> </textobject> </mediaobject> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blinken-22.12.3/po/zh_CN/blinken.po new/blinken-23.04.0/po/zh_CN/blinken.po --- old/blinken-22.12.3/po/zh_CN/blinken.po 2023-02-25 05:52:24.000000000 +0100 +++ new/blinken-23.04.0/po/zh_CN/blinken.po 2023-04-12 18:00:59.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-10-02 00:41+0000\n" -"PO-Revision-Date: 2023-02-24 12:58\n" +"PO-Revision-Date: 2023-04-10 14:13\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blinken-22.12.3/po/zh_TW/blinken.po new/blinken-23.04.0/po/zh_TW/blinken.po --- old/blinken-22.12.3/po/zh_TW/blinken.po 2023-02-25 05:52:24.000000000 +0100 +++ new/blinken-23.04.0/po/zh_TW/blinken.po 2023-04-12 18:00:59.000000000 +0200 @@ -3,19 +3,20 @@ # # Frank Weng (a.k.a. Franklin) <franklin at goodhorse dot idv dot tw>, 2006-2009. # Franklin Weng <[email protected]>, 2011. +# Kisaragi Hiu <[email protected]>, 2022. msgid "" msgstr "" "Project-Id-Version: blinken\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-10-02 00:41+0000\n" -"PO-Revision-Date: 2011-01-28 10:32+0800\n" -"Last-Translator: Franklin Weng <[email protected]>\n" -"Language-Team: Chinese Traditional <[email protected]>\n" +"PO-Revision-Date: 2022-12-30 18:58+0900\n" +"Last-Translator: Kisaragi Hiu <[email protected]>\n" +"Language-Team: Traditional Chinese <[email protected]>\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.1\n" +"X-Generator: Lokalize 22.12.0\n" "Plural-Forms: nplurals=1; plural=0;\n" #, kde-format @@ -233,16 +234,13 @@ msgstr "å å¼·è¨æ¶çéæ²" #: main.cpp:31 -#, fuzzy, kde-format -#| msgid "" -#| "© 2005-2007 Albert Astals Cid\n" -#| "© 2005-2007 Danny Allen" +#, kde-format msgid "" "© 2005-2007 Albert Astals Cid\n" "SPDX-FileCopyrightText: 2005-2007 Danny Allen " msgstr "" "© 2005-2007 Albert Astals Cid\n" -"© 2005-2007 Danny Allen" +"SPDX-FileCopyrightText: 2005-2007 Danny Allen" #: main.cpp:32 #, kde-format diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/blinken-22.12.3/src/CMakeLists.txt new/blinken-23.04.0/src/CMakeLists.txt --- old/blinken-22.12.3/src/CMakeLists.txt 2023-02-25 05:52:24.000000000 +0100 +++ new/blinken-23.04.0/src/CMakeLists.txt 2023-04-12 18:00:59.000000000 +0200 @@ -29,13 +29,13 @@ add_executable(blinken ${blinken_SRCS}) target_link_libraries(blinken - KF5::CoreAddons - KF5::I18n - KF5::XmlGui - KF5::GuiAddons + KF${KF_MAJOR_VERSION}::CoreAddons + KF${KF_MAJOR_VERSION}::I18n + KF${KF_MAJOR_VERSION}::XmlGui + KF${KF_MAJOR_VERSION}::GuiAddons Qt::Svg - KF5::DBusAddons - KF5::Crash + KF${KF_MAJOR_VERSION}::DBusAddons + KF${KF_MAJOR_VERSION}::Crash ${PHONON_LIBRARIES} )
