Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-keyring for openSUSE:Factory 
checked in at 2021-09-26 21:48:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-keyring (Old)
 and      /work/SRC/openSUSE:Factory/.python-keyring.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-keyring"

Sun Sep 26 21:48:39 2021 rev:41 rq:921255 version:23.2.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-keyring/python-keyring.changes    
2021-07-10 22:53:33.588195081 +0200
+++ /work/SRC/openSUSE:Factory/.python-keyring.new.1899/python-keyring.changes  
2021-09-26 21:49:29.426835319 +0200
@@ -1,0 +2,11 @@
+Fri Sep 24 09:21:13 UTC 2021 - Steve Kowalik <[email protected]>
+
+- Update to 23.2.1:
+  * #530: In libsecret tests, use a session collection to allow tests
+    to pass on Debian.
+  * #521: Add libsecret backend.
+  * #519: macOS backend APIs updated to newer, non-legacy APIs.
+- Add patch support-new-importlib.patch:
+  * Support new importlib-metadata.
+
+-------------------------------------------------------------------

Old:
----
  keyring-23.0.1.tar.gz

New:
----
  keyring-23.2.1.tar.gz
  support-new-importlib.patch

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

Other differences:
------------------
++++++ python-keyring.spec ++++++
--- /var/tmp/diff_new_pack.zVwg3P/_old  2021-09-26 21:49:29.938835952 +0200
+++ /var/tmp/diff_new_pack.zVwg3P/_new  2021-09-26 21:49:29.942835957 +0200
@@ -19,14 +19,13 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:           python-keyring
-Version:        23.0.1
+Version:        23.2.1
 Release:        0
 Summary:        System keyring service access from Python
 License:        MIT AND Python-2.0
-Group:          Development/Languages/Python
 URL:            https://github.com/jaraco/keyring
 Source:         
https://files.pythonhosted.org/packages/source/k/keyring/keyring-%{version}.tar.gz
-# Patch:          fix-kwallet-tests.patch
+Patch0:         support-new-importlib.patch
 BuildRequires:  %{python_module SecretStorage >= 3}
 BuildRequires:  %{python_module entrypoints}
 BuildRequires:  %{python_module importlib-metadata}

++++++ keyring-23.0.1.tar.gz -> keyring-23.2.1.tar.gz ++++++
++++ 2996 lines of diff (skipped)

++++++ support-new-importlib.patch ++++++
Index: keyring-23.2.1/tests/test_packaging.py
===================================================================
--- keyring-23.2.1.orig/tests/test_packaging.py
+++ keyring-23.2.1/tests/test_packaging.py
@@ -9,7 +9,7 @@ def test_entry_point():
     that's a callable.
     """
     matches = metadata.entry_points(group='console_scripts', name='keyring')
-    (script,) = matches
+    script = matches[0]
     assert callable(script.load())
 
 

Reply via email to