Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-PyWebDAV3-GNUHealth for
openSUSE:Factory checked in at 2025-12-22 22:49:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-PyWebDAV3-GNUHealth (Old)
and /work/SRC/openSUSE:Factory/.python-PyWebDAV3-GNUHealth.new.1928 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-PyWebDAV3-GNUHealth"
Mon Dec 22 22:49:29 2025 rev:7 rq:1323954 version:0.13.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-PyWebDAV3-GNUHealth/python-PyWebDAV3-GNUHealth.changes
2025-06-03 17:55:32.274578001 +0200
+++
/work/SRC/openSUSE:Factory/.python-PyWebDAV3-GNUHealth.new.1928/python-PyWebDAV3-GNUHealth.changes
2025-12-22 22:51:52.775549518 +0100
@@ -1,0 +2,7 @@
+Sun Dec 21 12:43:56 UTC 2025 - Axel Braun <[email protected]>
+
+- version 0.13.0
+ * no changelog provided
+ * source file renamed
+
+-------------------------------------------------------------------
Old:
----
PyWebDAV3-GNUHealth-0.12.0.tar.gz
New:
----
pywebdav3_gnuhealth-0.13.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-PyWebDAV3-GNUHealth.spec ++++++
--- /var/tmp/diff_new_pack.ZevYXF/_old 2025-12-22 22:51:53.563581985 +0100
+++ /var/tmp/diff_new_pack.ZevYXF/_new 2025-12-22 22:51:53.563581985 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-PyWebDAV3-GNUHealth
#
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2025 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
@@ -19,14 +19,14 @@
%{?sle15_python_module_pythons}
%bcond_without test
Name: python-PyWebDAV3-GNUHealth
-Version: 0.12.0
+Version: 0.13.0
Release: 0
%define ltmsver 0.15
Summary: WebDAV library for Python - GNU Health port
License: GPL-3.0-or-later
Group: Productivity/Networking/Web/Servers
URL: https://health.gnu.org
-Source0:
https://files.pythonhosted.org/packages/source/P/PyWebDAV3-GNUHealth/PyWebDAV3-GNUHealth-%{version}.tar.gz
+Source0:
https://files.pythonhosted.org/packages/source/P/PyWebDAV3-GNUHealth/pywebdav3_gnuhealth-%{version}.tar.gz
Source1: https://notroj.github.io/litmus/litmus-%{ltmsver}.tar.gz
# TODO: send this upstream (where?)
@@ -60,7 +60,7 @@
Port from Andrew Leech PyWebDAV3 library to Support GNU Health.
%prep
-%autosetup -p1 -n PyWebDAV3-GNUHealth-%{version}
+%autosetup -p1 -n pywebdav3_gnuhealth-%{version}
cp %{SOURCE1} test/
++++++ pywebdav-server-configparser.patch ++++++
--- /var/tmp/diff_new_pack.ZevYXF/_old 2025-12-22 22:51:53.623584457 +0100
+++ /var/tmp/diff_new_pack.ZevYXF/_new 2025-12-22 22:51:53.627584622 +0100
@@ -2,7 +2,7 @@
--- PyWebDAV3-GNUHealth-0.12.0/pywebdav/lib/INI_Parse.py 2023-07-14
17:28:43.000000000 +0200
+++ PyWebDAV3-GNUHealth-0.12.0.patched/pywebdav/lib/INI_Parse.py
2024-02-04 13:05:29.322027790 +0100
@@ -1,8 +1,12 @@
--from configparser import SafeConfigParser
+-from configparser import ConfigParser
+try:
+ from configparser import ConfigParser
+except ImportError:
@@ -11,8 +11,7 @@
class Configuration:
def __init__(self, fileName):
-- cp = SafeConfigParser()
-+ cp = ConfigParser()
+ cp = ConfigParser()
cp.read(fileName)
self.__parser = cp
self.fileName = fileName