Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-restview for openSUSE:Factory
checked in at 2021-04-06 17:29:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-restview (Old)
and /work/SRC/openSUSE:Factory/.python-restview.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-restview"
Tue Apr 6 17:29:54 2021 rev:5 rq:882577 version:2.9.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-restview/python-restview.changes
2021-01-13 18:36:22.678342724 +0100
+++
/work/SRC/openSUSE:Factory/.python-restview.new.2401/python-restview.changes
2021-04-06 17:31:17.791226572 +0200
@@ -1,0 +2,5 @@
+Thu Apr 1 12:58:17 UTC 2021 - Mark??ta Machov?? <[email protected]>
+
+- Add false.patch to fix recent build failure
+
+-------------------------------------------------------------------
New:
----
false.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-restview.spec ++++++
--- /var/tmp/diff_new_pack.3XfBKF/_old 2021-04-06 17:31:18.363227218 +0200
+++ /var/tmp/diff_new_pack.3XfBKF/_new 2021-04-06 17:31:18.367227223 +0200
@@ -25,6 +25,8 @@
Group: Development/Languages/Python
URL: https://mg.pov.lt/restview/
Source:
https://files.pythonhosted.org/packages/source/r/restview/restview-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM
https://github.com/mgedmin/restview/commit/a1ded30a87c65f3ce59a18497a7fc5099317c2be
New mock release returns False from patcher.stop()
+Patch0: false.patch
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -48,6 +50,7 @@
%prep
%setup -q -n restview-%{version}
+%autopatch -p1
%build
%python_build
++++++ false.patch ++++++
>From a1ded30a87c65f3ce59a18497a7fc5099317c2be Mon Sep 17 00:00:00 2001
From: Marius Gedminas <[email protected]>
Date: Sat, 12 Dec 2020 13:21:04 +0200
Subject: [PATCH] New mock release returns False from patcher.stop()
---
src/restview/tests.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/restview/tests.py b/src/restview/tests.py
index c868c57..2b33ce2 100644
--- a/src/restview/tests.py
+++ b/src/restview/tests.py
@@ -669,7 +669,7 @@ def
doctest_RestViewer_rest_to_html_strict_and_error_handling():
</body>
</html>
- >>> stderr_patcher.stop()
+ >>> _ = stderr_patcher.stop()
"""
@@ -718,7 +718,7 @@ def
doctest_RestViewer_rest_to_html_pypi_strict_and_error_handling():
</body>
</html>
- >>> stderr_patcher.stop()
+ >>> _ = stderr_patcher.stop()
"""