Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-click-spinner for
openSUSE:Factory checked in at 2022-09-20 19:24:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-click-spinner (Old)
and /work/SRC/openSUSE:Factory/.python-click-spinner.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-click-spinner"
Tue Sep 20 19:24:16 2022 rev:4 rq:1004982 version:0.1.10
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-click-spinner/python-click-spinner.changes
2021-05-18 18:27:38.878648915 +0200
+++
/work/SRC/openSUSE:Factory/.python-click-spinner.new.2083/python-click-spinner.changes
2022-09-20 19:24:18.338598286 +0200
@@ -1,0 +2,7 @@
+Tue Sep 20 12:23:36 UTC 2022 - [email protected]
+
+- added patches
+ fix https://github.com/click-contrib/click-spinner
+ + python-click-spinner-remove-six.patch
+
+-------------------------------------------------------------------
New:
----
python-click-spinner-remove-six.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-click-spinner.spec ++++++
--- /var/tmp/diff_new_pack.7Jc62i/_old 2022-09-20 19:24:18.826599686 +0200
+++ /var/tmp/diff_new_pack.7Jc62i/_new 2022-09-20 19:24:18.830599698 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-click-spinner
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,8 @@
URL: https://github.com/click-contrib/click-spinner
Group: Development/Languages/Python
Source:
https://github.com/click-contrib/click-spinner/archive/v%{version}.tar.gz#/click-spinner-%{version}.tar.gz
+# https://github.com/click-contrib/click-spinner
+Patch0: python-click-spinner-remove-six.patch
BuildRequires: %{python_module click}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
@@ -41,7 +43,7 @@
Spinner for Click.
%prep
-%setup -q -n click-spinner-%{version}
+%autosetup -p1 -n click-spinner-%{version}
%build
export LANG=en_US.UTF-8
++++++ python-click-spinner-remove-six.patch ++++++
Index: click-spinner-0.1.10/tests/test_spinner.py
===================================================================
--- click-spinner-0.1.10.orig/tests/test_spinner.py
+++ click-spinner-0.1.10/tests/test_spinner.py
@@ -2,7 +2,7 @@ import sys
import os
import time
import tempfile
-from six import StringIO
+from io import StringIO
import click
from click.testing import CliRunner