Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-jaraco.versioning for
openSUSE:Factory checked in at 2026-05-15 23:52:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-jaraco.versioning (Old)
and /work/SRC/openSUSE:Factory/.python-jaraco.versioning.new.1966 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-jaraco.versioning"
Fri May 15 23:52:54 2026 rev:4 rq:1353432 version:1.1.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-jaraco.versioning/python-jaraco.versioning.changes
2025-04-11 16:45:41.936499569 +0200
+++
/work/SRC/openSUSE:Factory/.python-jaraco.versioning.new.1966/python-jaraco.versioning.changes
2026-05-15 23:52:55.755674269 +0200
@@ -1,0 +2,6 @@
+Wed May 6 02:00:39 UTC 2026 - Steve Kowalik <[email protected]>
+
+- Add patch support-packaging-26.1.patch:
+ * Fix docstring test to support packaging 26.1 changes.
+
+-------------------------------------------------------------------
New:
----
support-packaging-26.1.patch
----------(New B)----------
New:
- Add patch support-packaging-26.1.patch:
* Fix docstring test to support packaging 26.1 changes.
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-jaraco.versioning.spec ++++++
--- /var/tmp/diff_new_pack.LJaPSl/_old 2026-05-15 23:52:56.583708353 +0200
+++ /var/tmp/diff_new_pack.LJaPSl/_new 2026-05-15 23:52:56.587708518 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-jaraco.versioning
#
-# Copyright (c) 2025 SUSE LLC
+# 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
@@ -24,6 +24,8 @@
License: MIT
URL: https://github.com/jaraco/jaraco.versioning
Source:
https://files.pythonhosted.org/packages/source/j/jaraco.versioning/jaraco.versioning-1.1.0.tar.gz
+# PATCH-FIX-OPENSUSE https://github.com/jaraco/jaraco.versioning/issues/4
+Patch0: support-packaging-26.1.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools >= 56}
BuildRequires: %{python_module setuptools_scm >= 3.4.1}
++++++ support-packaging-26.1.patch ++++++
Index: jaraco.versioning-1.1.0/jaraco/versioning.py
===================================================================
--- jaraco.versioning-1.1.0.orig/jaraco/versioning.py
+++ jaraco.versioning-1.1.0/jaraco/versioning.py
@@ -52,7 +52,7 @@ class SummableVersion(packaging.version.
A special version that can be added to another Version.
>>> SummableVersion('1.1') + packaging.version.Version('2.3')
- <Version('3.4')>
+ <SummableVersion('3.4')>
"""
def __add__(self, other):