Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package fritzing for openSUSE:Factory checked in at 2025-12-11 18:40:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fritzing (Old) and /work/SRC/openSUSE:Factory/.fritzing.new.1939 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fritzing" Thu Dec 11 18:40:13 2025 rev:5 rq:1321978 version:1.0.6 Changes: -------- --- /work/SRC/openSUSE:Factory/fritzing/fritzing.changes 2025-11-04 18:41:57.712428900 +0100 +++ /work/SRC/openSUSE:Factory/.fritzing.new.1939/fritzing.changes 2025-12-11 18:43:03.129785922 +0100 @@ -1,0 +2,5 @@ +Wed Dec 10 05:16:36 UTC 2025 - Glen Masgai <[email protected]> + +- Added 0005-Work-around-build-issues-with-Qt-6.10.1.patch + +------------------------------------------------------------------- New: ---- 0005-Work-around-build-issues-with-Qt-6.10.1.patch ----------(New B)---------- New: - Added 0005-Work-around-build-issues-with-Qt-6.10.1.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fritzing.spec ++++++ --- /var/tmp/diff_new_pack.bqQPR7/_old 2025-12-11 18:43:04.309835503 +0100 +++ /var/tmp/diff_new_pack.bqQPR7/_new 2025-12-11 18:43:04.313835671 +0100 @@ -43,6 +43,8 @@ Patch3: https://src.fedoraproject.org/rpms/fritzing/raw/rawhide/f/0002-remove-twitter4j.patch#/0003-Remove-TwitterSaurus-examples.patch # PATCH-FIX-FEDORA 0004-Work-around-build-issues-with-Qt-6.9.patch -- work around build issues with Qt 6.9 Patch4: https://src.fedoraproject.org/rpms/fritzing/raw/rawhide/f/0004-Work-around-build-issues-with-Qt-6.9.patch +# PATCH-FIX-OPENSUSE 0005-Work-around-build-issues-with-Qt-6.10.1.patch -- work around build issues with Qt 6.10.1 +Patch5: 0005-Work-around-build-issues-with-Qt-6.10.1.patch BuildRequires: appstream-glib BuildRequires: fdupes BuildRequires: libboost_headers-devel ++++++ 0005-Work-around-build-issues-with-Qt-6.10.1.patch ++++++ diff --git a/src/commands.cpp b/src/commands.cpp index fb808bff..807be618 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -509,7 +509,7 @@ QString FlipItemCommand::getParamString() const { + BaseCommand::getParamString() + QString(" id:%1 by:%2") .arg(m_itemID) - .arg(m_orientation); + .arg((int)m_orientation); } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -1830,7 +1830,7 @@ QString RotateFlipLabelCommand::getParamString() const { } result += QString(" id:%1 degrees:%2 orientation:%3") - .arg(m_itemID).arg(m_degrees).arg(m_orientation); + .arg(m_itemID).arg(m_degrees).arg((int)m_orientation); return result; } diff --git a/src/items/itembase.cpp b/src/items/itembase.cpp index 431bab55..5f7d3146 100644 --- a/src/items/itembase.cpp +++ b/src/items/itembase.cpp @@ -2006,7 +2006,7 @@ void ItemBase::debugInfo2(const QString & msg) const .arg(this->instanceTitle()) .arg(this->viewLayerID()) .arg(this->viewLayerPlacement()) - .arg(this->wireFlags()) + .arg((int)this->wireFlags()) .arg((long) dynamic_cast<const QGraphicsItem *>(this), 0, 16) .arg(m_viewID) .arg(this->zValue()) diff --git a/src/sketch/sketchwidget.cpp b/src/sketch/sketchwidget.cpp index f10e56b6..7d5b1d8c 100644 --- a/src/sketch/sketchwidget.cpp +++ b/src/sketch/sketchwidget.cpp @@ -1384,7 +1384,7 @@ long SketchWidget::createWire(ConnectorItem * from, ConnectorItem * to, .arg(newID) .arg(fromPos.x()).arg(fromPos.y()) .arg(toPos.x()).arg(toPos.y()) - .arg(wireFlags) + .arg((int)wireFlags) .arg(from->attachedToTitle()).arg(from->connectorSharedID()) .arg(to->attachedToTitle()).arg(to->connectorSharedID()) .arg(m_viewID)
