Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libqt5-qtscxml for openSUSE:Factory checked in at 2025-05-31 19:15:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libqt5-qtscxml (Old) and /work/SRC/openSUSE:Factory/.libqt5-qtscxml.new.16005 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtscxml" Sat May 31 19:15:32 2025 rev:32 rq:1280919 version:5.15.17+kde0 Changes: -------- --- /work/SRC/openSUSE:Factory/libqt5-qtscxml/libqt5-qtscxml.changes 2024-11-27 22:13:23.721626841 +0100 +++ /work/SRC/openSUSE:Factory/.libqt5-qtscxml.new.16005/libqt5-qtscxml.changes 2025-05-31 19:16:23.937598006 +0200 @@ -1,0 +2,7 @@ +Wed May 28 08:36:32 UTC 2025 - Fabian Vogt <fab...@ritter-vogt.de> + +- Update to version 5.15.17+kde0, rebased upstream: + * Bump version to 5.15.17 + * qtscxml: Error out when no script content given + +------------------------------------------------------------------- Old: ---- qtscxml-everywhere-src-5.15.16+kde0.obscpio New: ---- qtscxml-everywhere-src-5.15.17+kde0.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libqt5-qtscxml.spec ++++++ --- /var/tmp/diff_new_pack.2ARk3o/_old 2025-05-31 19:16:24.481620488 +0200 +++ /var/tmp/diff_new_pack.2ARk3o/_new 2025-05-31 19:16:24.481620488 +0200 @@ -22,11 +22,11 @@ %define qt5_snapshot 1 %define libname libQt5Scxml5 %define base_name libqt5 -%define real_version 5.15.16 -%define so_version 5.15.16 +%define real_version 5.15.17 +%define so_version 5.15.17 %define tar_version qtscxml-everywhere-src-%{version} Name: libqt5-qtscxml -Version: 5.15.16+kde0 +Version: 5.15.17+kde0 Release: 0 Summary: Qt 5 State Chart XML Library License: LGPL-3.0-only OR (GPL-2.0-only OR GPL-3.0-or-later) ++++++ _service ++++++ --- /var/tmp/diff_new_pack.2ARk3o/_old 2025-05-31 19:16:24.517621976 +0200 +++ /var/tmp/diff_new_pack.2ARk3o/_new 2025-05-31 19:16:24.525622306 +0200 @@ -1,12 +1,12 @@ <services> <service name="obs_scm" mode="disabled"> <param name="changesgenerate">enable</param> - <param name="versionformat">5.15.16+kde@TAG_OFFSET@</param> + <param name="versionformat">5.15.17+kde@TAG_OFFSET@</param> <param name="url">https://invent.kde.org/qt/qt/qtscxml.git</param> <param name="scm">git</param> <param name="filename">qtscxml-everywhere-src</param> <param name="revision">kde/5.15</param> - <param name="parent-tag">v5.15.16-lts-lgpl</param> + <param name="parent-tag">v5.15.17-lts-lgpl</param> <param name="changesgenerate">enable</param> </service> <service name="set_version" mode="disabled"/> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.2ARk3o/_old 2025-05-31 19:16:24.549623299 +0200 +++ /var/tmp/diff_new_pack.2ARk3o/_new 2025-05-31 19:16:24.553623464 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://invent.kde.org/qt/qt/qtscxml.git</param> - <param name="changesrevision">64398dfca74a6d4c37d51b56ecfcd1d7ccb6e533</param></service></servicedata> + <param name="changesrevision">2b7b19239671784fbf79d6dbc0e985da044ff9dd</param></service></servicedata> (No newline at EOF) ++++++ qtscxml-everywhere-src-5.15.16+kde0.obscpio -> qtscxml-everywhere-src-5.15.17+kde0.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtscxml-everywhere-src-5.15.16+kde0/.qmake.conf new/qtscxml-everywhere-src-5.15.17+kde0/.qmake.conf --- old/qtscxml-everywhere-src-5.15.16+kde0/.qmake.conf 2024-11-08 14:36:27.000000000 +0100 +++ new/qtscxml-everywhere-src-5.15.17+kde0/.qmake.conf 2024-11-20 14:56:50.000000000 +0100 @@ -4,4 +4,4 @@ DEFINES += QT_NO_FOREACH QT_NO_JAVA_STYLE_ITERATORS QT_NO_LINKED_LIST -MODULE_VERSION = 5.15.16 +MODULE_VERSION = 5.15.17 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtscxml-everywhere-src-5.15.16+kde0/src/scxml/qscxmlcompiler.cpp new/qtscxml-everywhere-src-5.15.17+kde0/src/scxml/qscxmlcompiler.cpp --- old/qtscxml-everywhere-src-5.15.16+kde0/src/scxml/qscxmlcompiler.cpp 2024-11-08 14:36:27.000000000 +0100 +++ new/qtscxml-everywhere-src-5.15.17+kde0/src/scxml/qscxmlcompiler.cpp 2024-11-20 14:56:50.000000000 +0100 @@ -2084,6 +2084,9 @@ scriptI->content = QString::fromUtf8(data); } } + } else { + addError(scriptI->xmlLocation, + QStringLiteral("neither src nor any content has been given in the script tag")); } return flushInstruction(); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtscxml-everywhere-src-5.15.16+kde0/tests/auto/parser/data/badInitial.scxml.errors new/qtscxml-everywhere-src-5.15.17+kde0/tests/auto/parser/data/badInitial.scxml.errors --- old/qtscxml-everywhere-src-5.15.16+kde0/tests/auto/parser/data/badInitial.scxml.errors 2024-11-08 14:36:27.000000000 +0100 +++ new/qtscxml-everywhere-src-5.15.17+kde0/tests/auto/parser/data/badInitial.scxml.errors 2024-11-20 14:56:50.000000000 +0100 @@ -1,2 +1,3 @@ :/tst_parser/data/badInitial.scxml:8:13: error: Unexpected element initial +:/tst_parser/data/badInitial.scxml:7:12: error: neither src nor any content has been given in the script tag :/tst_parser/data/badInitial.scxml:12:8: error: Error parsing SCXML file: Opening and ending tag mismatch. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtscxml-everywhere-src-5.15.16+kde0/tests/auto/parser/data/commentInScript.scxml.errors new/qtscxml-everywhere-src-5.15.17+kde0/tests/auto/parser/data/commentInScript.scxml.errors --- old/qtscxml-everywhere-src-5.15.16+kde0/tests/auto/parser/data/commentInScript.scxml.errors 2024-11-08 14:36:27.000000000 +0100 +++ new/qtscxml-everywhere-src-5.15.17+kde0/tests/auto/parser/data/commentInScript.scxml.errors 2024-11-20 14:56:50.000000000 +0100 @@ -1 +1,2 @@ +:/tst_parser/data/commentInScript.scxml:6:12: error: neither src nor any content has been given in the script tag :/tst_parser/data/commentInScript.scxml:6:0: error: Error parsing SCXML file: Premature end of document. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtscxml-everywhere-src-5.15.16+kde0/tests/auto/parser/data/emptyScript.scxml new/qtscxml-everywhere-src-5.15.17+kde0/tests/auto/parser/data/emptyScript.scxml --- old/qtscxml-everywhere-src-5.15.16+kde0/tests/auto/parser/data/emptyScript.scxml 1970-01-01 01:00:00.000000000 +0100 +++ new/qtscxml-everywhere-src-5.15.17+kde0/tests/auto/parser/data/emptyScript.scxml 2024-11-20 14:56:50.000000000 +0100 @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<scxml xmlns="http://www.w3.org/2005/07/scxml" version="1.0" binding="early" xmlns:qt="http://www.qt.io/2015/02/scxml-ext" name="StateChart" qt:editorversion="11.0.1"> + <state id="Initial"> + <transition type="external" event="crash" target="Final_1"> + <script> + </script> + </transition> + </state> + <final id="Final_1"> + </final> +</scxml> + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtscxml-everywhere-src-5.15.16+kde0/tests/auto/parser/data/emptyScript.scxml.errors new/qtscxml-everywhere-src-5.15.17+kde0/tests/auto/parser/data/emptyScript.scxml.errors --- old/qtscxml-everywhere-src-5.15.16+kde0/tests/auto/parser/data/emptyScript.scxml.errors 1970-01-01 01:00:00.000000000 +0100 +++ new/qtscxml-everywhere-src-5.15.17+kde0/tests/auto/parser/data/emptyScript.scxml.errors 2024-11-20 14:56:50.000000000 +0100 @@ -0,0 +1 @@ +:/tst_parser/data/emptyScript.scxml:5:20: error: neither src nor any content has been given in the script tag \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qtscxml-everywhere-src-5.15.16+kde0/tests/auto/parser/tst_parser.qrc new/qtscxml-everywhere-src-5.15.17+kde0/tests/auto/parser/tst_parser.qrc --- old/qtscxml-everywhere-src-5.15.16+kde0/tests/auto/parser/tst_parser.qrc 2024-11-08 14:36:27.000000000 +0100 +++ new/qtscxml-everywhere-src-5.15.17+kde0/tests/auto/parser/tst_parser.qrc 2024-11-20 14:56:50.000000000 +0100 @@ -80,5 +80,7 @@ <file>data/syntaxErrors9.scxml</file> <file>data/test1.scxml.errors</file> <file>data/test1.scxml</file> + <file>data/emptyScript.scxml</file> + <file>data/emptyScript.scxml.errors</file> </qresource> </RCC> ++++++ qtscxml-everywhere-src.obsinfo ++++++ --- /var/tmp/diff_new_pack.2ARk3o/_old 2025-05-31 19:16:25.021642805 +0200 +++ /var/tmp/diff_new_pack.2ARk3o/_new 2025-05-31 19:16:25.025642971 +0200 @@ -1,5 +1,5 @@ name: qtscxml-everywhere-src -version: 5.15.16+kde0 -mtime: 1731072987 -commit: 64398dfca74a6d4c37d51b56ecfcd1d7ccb6e533 +version: 5.15.17+kde0 +mtime: 1732111010 +commit: 2b7b19239671784fbf79d6dbc0e985da044ff9dd