Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-pyqtgraph for
openSUSE:Factory checked in at 2026-06-10 15:56:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-pyqtgraph (Old)
and /work/SRC/openSUSE:Factory/.python-pyqtgraph.new.2375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pyqtgraph"
Wed Jun 10 15:56:01 2026 rev:16 rq:1358302 version:0.14.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-pyqtgraph/python-pyqtgraph.changes
2026-01-03 17:27:27.099818524 +0100
+++
/work/SRC/openSUSE:Factory/.python-pyqtgraph.new.2375/python-pyqtgraph.changes
2026-06-10 15:56:07.672114239 +0200
@@ -1,0 +2,6 @@
+Wed Jun 10 06:49:20 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch skip-single-values-svgexport.patch:
+ * Skip single values when exporting to SVG.
+
+-------------------------------------------------------------------
New:
----
skip-single-values-svgexport.patch
----------(New B)----------
New:
- Add patch skip-single-values-svgexport.patch:
* Skip single values when exporting to SVG.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-pyqtgraph.spec ++++++
--- /var/tmp/diff_new_pack.U89CSb/_old 2026-06-10 15:56:09.880205741 +0200
+++ /var/tmp/diff_new_pack.U89CSb/_new 2026-06-10 15:56:09.880205741 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-pyqtgraph
#
-# Copyright (c) 2025 SUSE LLC and contributors
+# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -29,8 +29,10 @@
# PATCH-FIX-OPENSUSE - Borrowed from Fedora -
https://src.fedoraproject.org/rpms/python-pyqtgraph/tree/
# Upstream issue: https://github.com/pyqtgraph/pyqtgraph/issues/2644
Patch1: drop-unpackaged-sphinx-extensions.patch
-BuildRequires: %{python_module base >= 3.7}
-BuildRequires: %{python_module numpy >= 1.17}
+# PATCH-FIX-OPENSUSE - Skip single values when exporting to SVG
+Patch2: skip-single-values-svgexport.patch
+BuildRequires: %{python_module base >= 3.10}
+BuildRequires: %{python_module numpy >= 1.25}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pydata-sphinx-theme}
BuildRequires: %{python_module qt5 >= 5.12}
@@ -42,7 +44,8 @@
BuildRequires: python3-sphinx-autodoc-typehints
BuildRequires: python3-sphinx-design
BuildRequires: python3-sphinx-qt-documentation
-Requires: python-numpy >= 1.17
+Requires: python-colorama
+Requires: python-numpy >= 1.25
Requires: (python-qt5 >= 5.12 or python-PyQt6 >= 6.1)
Recommends: python-colorcet
Recommends: python-cupy
++++++ skip-single-values-svgexport.patch ++++++
Index: pyqtgraph-pyqtgraph-0.14.0/pyqtgraph/exporters/SVGExporter.py
===================================================================
--- pyqtgraph-pyqtgraph-0.14.0.orig/pyqtgraph/exporters/SVGExporter.py
+++ pyqtgraph-pyqtgraph-0.14.0/pyqtgraph/exporters/SVGExporter.py
@@ -424,6 +424,8 @@ def correctCoordinates(node, defs, item,
if oldCoords == '':
continue
for c in oldCoords.split(' '):
+ if ',' not in c:
+ continue
x,y = c.split(',')
if x[0].isalpha():
t = x[0]