Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-breathe for openSUSE:Factory 
checked in at 2023-10-06 21:12:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-breathe (Old)
 and      /work/SRC/openSUSE:Factory/.python-breathe.new.28202 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-breathe"

Fri Oct  6 21:12:43 2023 rev:23 rq:1115886 version:4.35.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-breathe/python-breathe.changes    
2023-09-04 22:52:23.341236870 +0200
+++ /work/SRC/openSUSE:Factory/.python-breathe.new.28202/python-breathe.changes 
2023-10-06 21:13:17.969375801 +0200
@@ -1,0 +2,6 @@
+Wed Oct  4 13:47:35 UTC 2023 - Markéta Machová <mmach...@suse.com>
+
+- Make support-sphinx-7.2.patch backwards-compatible
+  * and sent upstream: https://github.com/breathe-doc/breathe/pull/956
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ support-sphinx-7.2.patch ++++++
--- /var/tmp/diff_new_pack.fOSzr1/_old  2023-10-06 21:13:19.117417277 +0200
+++ /var/tmp/diff_new_pack.fOSzr1/_new  2023-10-06 21:13:19.121417421 +0200
@@ -2,12 +2,16 @@
 ===================================================================
 --- breathe-4.35.0.orig/tests/test_renderer.py
 +++ breathe-4.35.0/tests/test_renderer.py
-@@ -35,7 +35,7 @@ def app(test_params, app_params, make_ap
+@@ -35,7 +35,11 @@ def app(test_params, app_params, make_ap
      """
      args, kwargs = app_params
      assert "srcdir" in kwargs
 -    kwargs["srcdir"].makedirs(exist_ok=True)
-+    kwargs["srcdir"].mkdir(parents=True, exist_ok=True)
++    try:
++        kwargs["srcdir"].mkdir(parents=True, exist_ok=True)
++    except AttributeError:
++        # old version of Sphinx
++        kwargs["srcdir"].makedirs(exist_ok=True)
      (kwargs["srcdir"] / "conf.py").write_text("")
      app_ = make_app(*args, **kwargs)
      yield app_

Reply via email to