Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package picmi for openSUSE:Factory checked in at 2023-04-23 22:47:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/picmi (Old) and /work/SRC/openSUSE:Factory/.picmi.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "picmi" Sun Apr 23 22:47:14 2023 rev:132 rq:1080737 version:23.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/picmi/picmi.changes 2023-03-03 22:30:50.899888249 +0100 +++ /work/SRC/openSUSE:Factory/.picmi.new.1533/picmi.changes 2023-04-23 22:50:23.191702376 +0200 @@ -1,0 +2,20 @@ +Sat Apr 15 08:46:41 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:42:45 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 23.03.90 + * New feature release + +------------------------------------------------------------------- +Fri Mar 17 20:44:33 UTC 2023 - Christophe Marin <[email protected]> + +- Update to 23.03.80 + * New feature release + +------------------------------------------------------------------- Old: ---- picmi-22.12.3.tar.xz picmi-22.12.3.tar.xz.sig New: ---- picmi-23.04.0.tar.xz picmi-23.04.0.tar.xz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ picmi.spec ++++++ --- /var/tmp/diff_new_pack.xdhvSI/_old 2023-04-23 22:50:23.723705382 +0200 +++ /var/tmp/diff_new_pack.xdhvSI/_new 2023-04-23 22:50:23.731705427 +0200 @@ -16,11 +16,9 @@ # -# 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: picmi -Version: 22.12.3 +Version: 23.04.0 Release: 0 Summary: Nonogram Logic game License: GPL-2.0-or-later ++++++ picmi-22.12.3.tar.xz -> picmi-23.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-22.12.3/.kde-ci.yml new/picmi-23.04.0/.kde-ci.yml --- old/picmi-22.12.3/.kde-ci.yml 2023-02-25 06:22:48.000000000 +0100 +++ new/picmi-23.04.0/.kde-ci.yml 2023-04-12 18:41:39.000000000 +0200 @@ -2,7 +2,20 @@ # 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' + 'games/libkdegames': '@latest-kf6' + 'frameworks/kcoreaddons': '@latest-kf6' + 'frameworks/kcrash': '@latest-kf6' + 'frameworks/kdbusaddons': '@latest-kf6' + 'frameworks/kdoctools': '@latest-kf6' + 'frameworks/ki18n': '@latest-kf6' + 'frameworks/kio': '@latest-kf6' + 'frameworks/knewstuff': '@latest-kf6' + 'frameworks/kxmlgui': '@latest-kf6' + +- 'on': ['Linux/Qt5', 'FreeBSD/Qt5', 'Windows/Qt5', 'Android/Qt5'] 'require': 'frameworks/extra-cmake-modules': '@stable' 'games/libkdegames': '@same' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-22.12.3/CMakeLists.txt new/picmi-23.04.0/CMakeLists.txt --- old/picmi-22.12.3/CMakeLists.txt 2023-02-25 06:22:48.000000000 +0100 +++ new/picmi-23.04.0/CMakeLists.txt 2023-04-12 18:41:39.000000000 +0200 @@ -1,9 +1,9 @@ cmake_minimum_required (VERSION 3.16 FATAL_ERROR) # KDE Gear 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_COMPACT_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}${RELEASE_SERVICE_VERSION_MINOR}${RELEASE_SERVICE_VERSION_MICRO}") # Bump PICMI_BASE_VERSION once new features are added @@ -13,9 +13,9 @@ project(picmi VERSION ${PICMI_VERSION}) set (QT_MIN_VERSION "5.15.2") -set (KF5_MIN_VERSION "5.91.0") +set (KF_MIN_VERSION "5.91.0") -find_package(ECM ${KF5_MIN_VERSION} REQUIRED CONFIG) +find_package(ECM ${KF_MIN_VERSION} REQUIRED CONFIG) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ) include(KDEInstallDirs) @@ -28,6 +28,13 @@ include(ECMAddTests) include(ECMQtDeclareLoggingCategory) 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() include(ECMSetupVersion) find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} CONFIG REQUIRED @@ -36,7 +43,7 @@ Svg Test ) -find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS +find_package(KF${KF_MAJOR_VERSION} ${KF_MIN_VERSION} REQUIRED COMPONENTS CoreAddons Crash DBusAddons @@ -50,7 +57,7 @@ ecm_set_disabled_deprecation_versions( QT 5.15.2 - KF 5.91 + KF 5.103 KDEGAMES 7.3 ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-22.12.3/org.kde.picmi.appdata.xml new/picmi-23.04.0/org.kde.picmi.appdata.xml --- old/picmi-22.12.3/org.kde.picmi.appdata.xml 2023-02-25 06:22:48.000000000 +0100 +++ new/picmi-23.04.0/org.kde.picmi.appdata.xml 2023-04-12 18:41:39.000000000 +0200 @@ -139,9 +139,9 @@ </screenshot> </screenshots> <releases> + <release version="2.0.23040" date="2023-04-20"/> <release version="2.0.22123" date="2023-03-02"/> <release version="2.0.22122" date="2023-02-02"/> <release version="2.0.22121" date="2023-01-05"/> - <release version="2.0.22120" date="2022-12-08"/> </releases> </component> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-22.12.3/po/ka/picmi.po new/picmi-23.04.0/po/ka/picmi.po --- old/picmi-22.12.3/po/ka/picmi.po 2023-02-25 06:22:48.000000000 +0100 +++ new/picmi-23.04.0/po/ka/picmi.po 2023-04-12 18:41:39.000000000 +0200 @@ -8,7 +8,7 @@ "Project-Id-Version: picmi\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-09-20 00:43+0000\n" -"PO-Revision-Date: 2022-12-05 08:23+0100\n" +"PO-Revision-Date: 2022-12-06 09:13+0100\n" "Last-Translator: Temuri Doghonadze <[email protected]>\n" "Language-Team: Georgian <[email protected]>\n" "Language: ka\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-22.12.3/po/zh_CN/picmi.po new/picmi-23.04.0/po/zh_CN/picmi.po --- old/picmi-22.12.3/po/zh_CN/picmi.po 2023-02-25 06:22:48.000000000 +0100 +++ new/picmi-23.04.0/po/zh_CN/picmi.po 2023-04-12 18:41:39.000000000 +0200 @@ -3,7 +3,7 @@ "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: https://bugs.kde.org\n" "POT-Creation-Date: 2022-09-20 00:43+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/picmi-22.12.3/src/CMakeLists.txt new/picmi-23.04.0/src/CMakeLists.txt --- old/picmi-22.12.3/src/CMakeLists.txt 2023-02-25 06:22:48.000000000 +0100 +++ new/picmi-23.04.0/src/CMakeLists.txt 2023-04-12 18:41:39.000000000 +0200 @@ -28,8 +28,8 @@ target_sources(picmi PRIVATE main.cpp - outofboundsexception.cpp - systemexception.cpp + outofboundsexception.cpp outofboundsexception.h + systemexception.cpp systemexception.h picmi.qrc ) @@ -47,12 +47,12 @@ target_link_libraries(picmi Qt${QT_MAJOR_VERSION}::Svg - KF5::CoreAddons - KF5::Crash - KF5::DBusAddons - KF5::I18n - KF5::KIOWidgets - KF5::XmlGui + KF${KF_MAJOR_VERSION}::CoreAddons + KF${KF_MAJOR_VERSION}::Crash + KF${KF_MAJOR_VERSION}::DBusAddons + KF${KF_MAJOR_VERSION}::I18n + KF${KF_MAJOR_VERSION}::KIOWidgets + KF${KF_MAJOR_VERSION}::XmlGui KF5KDEGames picmi_gui picmi_logic diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-22.12.3/src/gui/CMakeLists.txt new/picmi-23.04.0/src/gui/CMakeLists.txt --- old/picmi-22.12.3/src/gui/CMakeLists.txt 2023-02-25 06:22:48.000000000 +0100 +++ new/picmi-23.04.0/src/gui/CMakeLists.txt 2023-04-12 18:41:39.000000000 +0200 @@ -1,21 +1,21 @@ add_library(picmi_gui STATIC) target_sources(picmi_gui PRIVATE - mainwindow.cpp - renderer.cpp - scene.cpp - selectboardwindow.cpp - settingswindow.cpp - view.cpp + mainwindow.cpp mainwindow.h + renderer.cpp renderer.h + scene.cpp scene.h + selectboardwindow.cpp selectboardwindow.h + settingswindow.cpp settingswindow.h + view.cpp view.h ) target_sources(picmi_gui PRIVATE - graphicsitems/cellitem.cpp - graphicsitems/highlightitem.cpp - graphicsitems/pixmapitem.cpp - graphicsitems/reloadableitem.cpp - graphicsitems/streakitem.cpp - graphicsitems/textbanneritem.cpp + graphicsitems/cellitem.cpp graphicsitems/cellitem.h + graphicsitems/highlightitem.cpp graphicsitems/highlightitem.h + graphicsitems/pixmapitem.cpp graphicsitems/pixmapitem.h + graphicsitems/reloadableitem.cpp graphicsitems/reloadableitem.h + graphicsitems/streakitem.cpp graphicsitems/streakitem.h + graphicsitems/textbanneritem.cpp graphicsitems/textbanneritem.h ) ki18n_wrap_ui(picmi_gui @@ -25,9 +25,9 @@ target_link_libraries(picmi_gui KF5KDEGames - KF5::CoreAddons - KF5::I18n - KF5::XmlGui + KF${KF_MAJOR_VERSION}::CoreAddons + KF${KF_MAJOR_VERSION}::I18n + KF${KF_MAJOR_VERSION}::XmlGui Qt${QT_MAJOR_VERSION}::Core Qt${QT_MAJOR_VERSION}::Svg ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-22.12.3/src/logic/CMakeLists.txt new/picmi-23.04.0/src/logic/CMakeLists.txt --- old/picmi-22.12.3/src/logic/CMakeLists.txt 2023-02-25 06:22:48.000000000 +0100 +++ new/picmi-23.04.0/src/logic/CMakeLists.txt 2023-04-12 18:41:39.000000000 +0200 @@ -1,20 +1,20 @@ add_library(picmi_logic STATIC) target_sources(picmi_logic PRIVATE - board.cpp - boardmap.cpp - boardstate.cpp - elapsedtime.cpp - levelloader.cpp - picmi.cpp - streaks.cpp - settings.cpp + board.cpp board.h + boardmap.cpp boardmap.h + boardstate.cpp boardstate.h + elapsedtime.cpp elapsedtime.h + levelloader.cpp levelloader.h + picmi.cpp picmi.h + streaks.cpp streaks.h + settings.cpp settings.h ) target_link_libraries(picmi_logic KF5KDEGames - KF5::CoreAddons - KF5::I18n + KF${KF_MAJOR_VERSION}::CoreAddons + KF${KF_MAJOR_VERSION}::I18n Qt${QT_MAJOR_VERSION}::Core Qt${QT_MAJOR_VERSION}::Xml ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/picmi-22.12.3/test/logic/CMakeLists.txt new/picmi-23.04.0/test/logic/CMakeLists.txt --- old/picmi-22.12.3/test/logic/CMakeLists.txt 2023-02-25 06:22:48.000000000 +0100 +++ new/picmi-23.04.0/test/logic/CMakeLists.txt 2023-04-12 18:41:39.000000000 +0200 @@ -3,7 +3,7 @@ ${CMAKE_SOURCE_DIR} ) -add_executable(streaks_test streaks_test.cpp) +add_executable(streaks_test streaks_test.cpp streaks_test.h) add_test(NAME streaks_test COMMAND streaks_test) ecm_mark_as_test(streaks_test)
