Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package pentobi for openSUSE:Factory checked in at 2026-06-12 19:28:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pentobi (Old) and /work/SRC/openSUSE:Factory/.pentobi.new.1981 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pentobi" Fri Jun 12 19:28:17 2026 rev:18 rq:1358843 version:30.2 Changes: -------- --- /work/SRC/openSUSE:Factory/pentobi/pentobi.changes 2026-03-27 06:46:42.159033178 +0100 +++ /work/SRC/openSUSE:Factory/.pentobi.new.1981/pentobi.changes 2026-06-12 19:29:35.795373004 +0200 @@ -1,0 +2,6 @@ +Fri Jun 12 07:01:23 UTC 2026 - Martin Hauke <[email protected]> + +- Update to vesion 30.2 + * Fixed race condition in pentobi/help/ causing build failures. + +------------------------------------------------------------------- Old: ---- pentobi-30.1.tar.xz New: ---- pentobi-30.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pentobi.spec ++++++ --- /var/tmp/diff_new_pack.Vb8pqC/_old 2026-06-12 19:29:36.467400501 +0200 +++ /var/tmp/diff_new_pack.Vb8pqC/_new 2026-06-12 19:29:36.467400501 +0200 @@ -17,7 +17,7 @@ Name: pentobi -Version: 30.1 +Version: 30.2 Release: 0 Summary: Program to play the board game Blokus License: GPL-3.0-only ++++++ pentobi-30.1.tar.xz -> pentobi-30.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/CMakeLists.txt new/pentobi-30.2/CMakeLists.txt --- old/pentobi-30.1/CMakeLists.txt 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/CMakeLists.txt 2026-06-11 16:21:02.000000000 +0200 @@ -2,8 +2,8 @@ project(pentobi CXX) set(PENTOBI_VERSION_MAJOR 30) -set(PENTOBI_VERSION_MINOR 1) -set(PENTOBI_IS_RELEASE FALSE) +set(PENTOBI_VERSION_MINOR 2) +set(PENTOBI_IS_RELEASE TRUE) set(PENTOBI_VERSION ${PENTOBI_VERSION_MAJOR}.${PENTOBI_VERSION_MINOR}) if(NOT PENTOBI_IS_RELEASE) string(APPEND PENTOBI_VERSION "-dev") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/NEWS.md new/pentobi-30.2/NEWS.md --- old/pentobi-30.1/NEWS.md 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/NEWS.md 2026-06-11 16:21:02.000000000 +0200 @@ -1,22 +1,29 @@ Pentobi Release Notes ===================== -Version 30.1-dev (v30-fixes) ----------------------------- +Version 30.2 (11 Jun 2026) +-------------------------- +* Fixed race condition in pentobi/help/ causing build failures + +Version 30.1 (25 Mar 2026) +-------------------------- + +* Minor translation updates +* Hide tooltip after button was clicked * Avoid console warning message with Qt 6.11 -* Use QT_ANDROID_PACKAGE_NAME instead of package attribute in manifest +* Use QT_ANDROID_PACKAGE_NAME -Version 30.0 (2026-01-05) -------------------------- +Version 30.0 (05 Jan 2026) +-------------------------- * Vietnamese translation (thanks to Loc Huynh) * Fixed horizontal flick in help view on Android * itstool is no longer a build dependency * Minimum required gettext version is now 0.23 -Version 29.0 (2025-12-07) -------------------------- +Version 29.0 (07 Dec 2025) +-------------------------- * Minimum required Qt version is now 6.9 * Minimum required CMake version is now 3.22 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/libpentobi_base/PentobiTree.cpp new/pentobi-30.2/libpentobi_base/PentobiTree.cpp --- old/pentobi-30.1/libpentobi_base/PentobiTree.cpp 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/libpentobi_base/PentobiTree.cpp 2026-06-11 16:21:02.000000000 +0200 @@ -91,7 +91,7 @@ { if (c == Color(0) || c == Color(2)) name = root.get_property("PB", ""); - else if (c == Color(1) || c == Color(2)) + else if (c == Color(1) || c == Color(3)) name = root.get_property("PW", ""); } else diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/pentobi/CMakeLists.txt new/pentobi-30.2/pentobi/CMakeLists.txt --- old/pentobi-30.1/pentobi/CMakeLists.txt 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/pentobi/CMakeLists.txt 2026-06-11 16:21:02.000000000 +0200 @@ -201,9 +201,8 @@ QT_ANDROID_PACKAGE_NAME "net.sf.pentobi" QT_ANDROID_VERSION_CODE ${PENTOBI_ANDROID_CODE} QT_ANDROID_VERSION_NAME ${PENTOBI_VERSION} + QT_ANDROID_PACKAGE_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/android ) - set_property(TARGET pentobi APPEND PROPERTY - QT_ANDROID_PACKAGE_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/android) else() install(TARGETS pentobi) endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/pentobi/help/CMakeLists.txt new/pentobi-30.2/pentobi/help/CMakeLists.txt --- old/pentobi-30.1/pentobi/help/CMakeLists.txt 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/pentobi/help/CMakeLists.txt 2026-06-11 16:21:02.000000000 +0200 @@ -28,6 +28,7 @@ foreach(lang ${linguas}) list(APPEND index_files "help/index_${lang}.xml") add_custom_command(OUTPUT "help/index_${lang}.xml" + COMMAND ${CMAKE_COMMAND} -E make_directory help COMMAND "${GETTEXT_MSGFMT_EXECUTABLE}" --xml --template "${CMAKE_CURRENT_SOURCE_DIR}/docbook/index.xml" -l "${lang}" -o "help/index_${lang}.xml" --replace-text diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/pentobi/help/docbook/index.xml new/pentobi-30.2/pentobi/help/docbook/index.xml --- old/pentobi-30.1/pentobi/help/docbook/index.xml 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/pentobi/help/docbook/index.xml 2026-06-11 16:21:02.000000000 +0200 @@ -117,7 +117,7 @@ <chapter id="trigon_rules"> <title>Trigon Rules</title> <para> -Trigon is another game variant. The rules a similar to game variant Classic but +Trigon is another game variant. The rules are similar to game variant Classic but it uses a differently shaped board and a different set of pieces. Each color uses 22 pieces that are shaped like the polyiamonds up to size six. A polyiamond is a shape built from a number of equilateral triangles connected diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/pentobi/help/pentobi-manual.pot new/pentobi-30.2/pentobi/help/pentobi-manual.pot --- old/pentobi-30.1/pentobi/help/pentobi-manual.pot 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/pentobi/help/pentobi-manual.pot 2026-06-11 16:21:02.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-29 20:55+0100\n" +"POT-Creation-Date: 2026-03-29 09:00+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <[email protected]>\n" @@ -147,11 +147,11 @@ #: docbook/index.xml:119 msgid "" -"Trigon is another game variant. The rules a similar to game variant Classic " -"but it uses a differently shaped board and a different set of pieces. Each " -"color uses 22 pieces that are shaped like the polyiamonds up to size six. A " -"polyiamond is a shape built from a number of equilateral triangles connected " -"along the edges." +"Trigon is another game variant. The rules are similar to game variant " +"Classic but it uses a differently shaped board and a different set of " +"pieces. Each color uses 22 pieces that are shaped like the polyiamonds up to " +"size six. A polyiamond is a shape built from a number of equilateral " +"triangles connected along the edges." msgstr "" #: docbook/index.xml:127 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/pentobi/help/po/de.po new/pentobi-30.2/pentobi/help/po/de.po --- old/pentobi-30.1/pentobi/help/po/de.po 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/pentobi/help/po/de.po 2026-06-11 16:21:02.000000000 +0200 @@ -4,16 +4,16 @@ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # # Translators: -# Markus Enzenberger <[email protected]>, 2025 +# Markus Enzenberger <[email protected]>, 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-29 20:55+0100\n" +"POT-Creation-Date: 2026-03-29 09:00+0200\n" "PO-Revision-Date: 2019-02-25 15:30+0000\n" -"Last-Translator: Markus Enzenberger <[email protected]>, 2025\n" +"Last-Translator: Markus Enzenberger <[email protected]>, 2026\n" "Language-Team: German (https://app.transifex.com/markus-enzenberger/teams/89074/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -192,11 +192,11 @@ #: docbook/index.xml:119 msgid "" -"Trigon is another game variant. The rules a similar to game variant Classic " -"but it uses a differently shaped board and a different set of pieces. Each " -"color uses 22 pieces that are shaped like the polyiamonds up to size six. A " -"polyiamond is a shape built from a number of equilateral triangles connected" -" along the edges." +"Trigon is another game variant. The rules are similar to game variant " +"Classic but it uses a differently shaped board and a different set of " +"pieces. Each color uses 22 pieces that are shaped like the polyiamonds up to" +" size six. A polyiamond is a shape built from a number of equilateral " +"triangles connected along the edges." msgstr "" "Trigon ist eine weitere Spielvariante. Die Regeln sind ähnlich wie in der " "Spielvariante Klassisch, aber es werden ein anders geformtes Brett und " diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/pentobi/help/po/es.po new/pentobi-30.2/pentobi/help/po/es.po --- old/pentobi-30.1/pentobi/help/po/es.po 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/pentobi/help/po/es.po 2026-06-11 16:21:02.000000000 +0200 @@ -4,17 +4,17 @@ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # # Translators: -# Markus Enzenberger <[email protected]>, 2025 # Francisco Zamorano <[email protected]>, 2026 +# Markus Enzenberger <[email protected]>, 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-29 20:55+0100\n" +"POT-Creation-Date: 2026-03-29 09:00+0200\n" "PO-Revision-Date: 2019-02-25 15:30+0000\n" -"Last-Translator: Francisco Zamorano <[email protected]>, 2026\n" +"Last-Translator: Markus Enzenberger <[email protected]>, 2026\n" "Language-Team: Spanish (https://app.transifex.com/markus-enzenberger/teams/89074/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -197,11 +197,11 @@ #: docbook/index.xml:119 msgid "" -"Trigon is another game variant. The rules a similar to game variant Classic " -"but it uses a differently shaped board and a different set of pieces. Each " -"color uses 22 pieces that are shaped like the polyiamonds up to size six. A " -"polyiamond is a shape built from a number of equilateral triangles connected" -" along the edges." +"Trigon is another game variant. The rules are similar to game variant " +"Classic but it uses a differently shaped board and a different set of " +"pieces. Each color uses 22 pieces that are shaped like the polyiamonds up to" +" size six. A polyiamond is a shape built from a number of equilateral " +"triangles connected along the edges." msgstr "" "Trigón es otra variante de juego. Las reglas son similares a la variante de " "juego clásica, pero en este caso se juega sobre un tablero con una forma " diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/pentobi/help/po/fr.po new/pentobi-30.2/pentobi/help/po/fr.po --- old/pentobi-30.1/pentobi/help/po/fr.po 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/pentobi/help/po/fr.po 2026-06-11 16:21:02.000000000 +0200 @@ -4,16 +4,16 @@ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # # Translators: -# Markus Enzenberger <[email protected]>, 2025 +# Markus Enzenberger <[email protected]>, 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-29 20:55+0100\n" +"POT-Creation-Date: 2026-03-29 09:00+0200\n" "PO-Revision-Date: 2019-02-25 15:30+0000\n" -"Last-Translator: Markus Enzenberger <[email protected]>, 2025\n" +"Last-Translator: Markus Enzenberger <[email protected]>, 2026\n" "Language-Team: French (https://app.transifex.com/markus-enzenberger/teams/89074/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -190,11 +190,11 @@ #: docbook/index.xml:119 msgid "" -"Trigon is another game variant. The rules a similar to game variant Classic " -"but it uses a differently shaped board and a different set of pieces. Each " -"color uses 22 pieces that are shaped like the polyiamonds up to size six. A " -"polyiamond is a shape built from a number of equilateral triangles connected" -" along the edges." +"Trigon is another game variant. The rules are similar to game variant " +"Classic but it uses a differently shaped board and a different set of " +"pieces. Each color uses 22 pieces that are shaped like the polyiamonds up to" +" size six. A polyiamond is a shape built from a number of equilateral " +"triangles connected along the edges." msgstr "" "Trigon est une autre variante du jeu. Les règles sont similaires à celles de" " la variante Classique, mais il utilise un plateau de forme différente et un" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/pentobi/help/po/ru.po new/pentobi-30.2/pentobi/help/po/ru.po --- old/pentobi-30.1/pentobi/help/po/ru.po 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/pentobi/help/po/ru.po 2026-06-11 16:21:02.000000000 +0200 @@ -5,16 +5,16 @@ # # Translators: # Виктор Ерухин <[email protected]>, 2021 -# Markus Enzenberger <[email protected]>, 2025 +# Markus Enzenberger <[email protected]>, 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-29 20:55+0100\n" +"POT-Creation-Date: 2026-03-29 09:00+0200\n" "PO-Revision-Date: 2019-02-25 15:30+0000\n" -"Last-Translator: Markus Enzenberger <[email protected]>, 2025\n" +"Last-Translator: Markus Enzenberger <[email protected]>, 2026\n" "Language-Team: Russian (https://app.transifex.com/markus-enzenberger/teams/89074/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -189,11 +189,11 @@ #: docbook/index.xml:119 msgid "" -"Trigon is another game variant. The rules a similar to game variant Classic " -"but it uses a differently shaped board and a different set of pieces. Each " -"color uses 22 pieces that are shaped like the polyiamonds up to size six. A " -"polyiamond is a shape built from a number of equilateral triangles connected" -" along the edges." +"Trigon is another game variant. The rules are similar to game variant " +"Classic but it uses a differently shaped board and a different set of " +"pieces. Each color uses 22 pieces that are shaped like the polyiamonds up to" +" size six. A polyiamond is a shape built from a number of equilateral " +"triangles connected along the edges." msgstr "" "Trigon - еще один вариант игры. Правила аналогичны варианту Классической " "игры, но в нем используется доска другой формы и другой набор фигур. Для " diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/pentobi/help/po/vi.po new/pentobi-30.2/pentobi/help/po/vi.po --- old/pentobi-30.1/pentobi/help/po/vi.po 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/pentobi/help/po/vi.po 2026-06-11 16:21:02.000000000 +0200 @@ -5,15 +5,16 @@ # # Translators: # Loc Huynh, 2025 +# Markus Enzenberger <[email protected]>, 2026 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-12-29 20:55+0100\n" +"POT-Creation-Date: 2026-03-29 09:00+0200\n" "PO-Revision-Date: 2019-02-25 15:30+0000\n" -"Last-Translator: Loc Huynh, 2025\n" +"Last-Translator: Markus Enzenberger <[email protected]>, 2026\n" "Language-Team: Vietnamese (https://app.transifex.com/markus-enzenberger/teams/89074/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -178,11 +179,11 @@ #: docbook/index.xml:119 msgid "" -"Trigon is another game variant. The rules a similar to game variant Classic " -"but it uses a differently shaped board and a different set of pieces. Each " -"color uses 22 pieces that are shaped like the polyiamonds up to size six. A " -"polyiamond is a shape built from a number of equilateral triangles connected" -" along the edges." +"Trigon is another game variant. The rules are similar to game variant " +"Classic but it uses a differently shaped board and a different set of " +"pieces. Each color uses 22 pieces that are shaped like the polyiamonds up to" +" size six. A polyiamond is a shape built from a number of equilateral " +"triangles connected along the edges." msgstr "" "Trigon là biến thể khác, luật gần giống Classic nhưng bảng hình lục giác và " "dùng mảnh polyiamond (tam giác đều) tối đa 6 tam giác, mỗi màu có 22 mảnh." diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pentobi-30.1/pentobi/unix/io.sourceforge.pentobi.appdata.xml.in new/pentobi-30.2/pentobi/unix/io.sourceforge.pentobi.appdata.xml.in --- old/pentobi-30.1/pentobi/unix/io.sourceforge.pentobi.appdata.xml.in 2026-03-25 08:56:45.000000000 +0100 +++ new/pentobi-30.2/pentobi/unix/io.sourceforge.pentobi.appdata.xml.in 2026-06-11 16:21:02.000000000 +0200 @@ -82,4 +82,15 @@ <mediatype>application/x-blokus-sgf</mediatype> </provides> <content_rating type="oars-1.1"/> +<releases> +<release version="30.2" date="2026-06-11"> +<description> +<ul> +<li> +Fixed race condition causing build failures +</li> +</ul> +</description> +</release> +</releases> </component>
