Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-k5test for openSUSE:Factory 
checked in at 2024-04-04 22:24:01
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-k5test (Old)
 and      /work/SRC/openSUSE:Factory/.python-k5test.new.1905 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-k5test"

Thu Apr  4 22:24:01 2024 rev:5 rq:1164287 version:0.10.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-k5test/python-k5test.changes      
2023-04-22 21:58:11.416402101 +0200
+++ /work/SRC/openSUSE:Factory/.python-k5test.new.1905/python-k5test.changes    
2024-04-04 22:24:06.370556233 +0200
@@ -1,0 +2,10 @@
+Wed Apr  3 07:49:11 UTC 2024 - Dirk Müller <dmuel...@suse.com>
+
+- update to 0.10.4:
+  * Use OIDC for PyPI release
+  * Include both license files
+  * Fix MIT start_kadmind
+  * Set max_renewable_life to 1 week for the MIT KDC
+  * Bump version for next release
+
+-------------------------------------------------------------------

Old:
----
  k5test-0.10.3.tar.gz

New:
----
  k5test-0.10.4.tar.gz

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

Other differences:
------------------
++++++ python-k5test.spec ++++++
--- /var/tmp/diff_new_pack.ZggzZq/_old  2024-04-04 22:24:06.930576850 +0200
+++ /var/tmp/diff_new_pack.ZggzZq/_new  2024-04-04 22:24:06.930576850 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-k5test
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %{?sle15_python_module_pythons}
 Name:           python-k5test
-Version:        0.10.3
+Version:        0.10.4
 Release:        0
 Summary:        A library for testing Python applications in krb5 environments
 License:        MIT

++++++ k5test-0.10.3.tar.gz -> k5test-0.10.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/k5test-0.10.3/PKG-INFO new/k5test-0.10.4/PKG-INFO
--- old/k5test-0.10.3/PKG-INFO  2022-11-01 01:54:55.512789200 +0100
+++ new/k5test-0.10.4/PKG-INFO  2024-03-20 03:48:19.999432800 +0100
@@ -1,11 +1,10 @@
 Metadata-Version: 2.1
 Name: k5test
-Version: 0.10.3
+Version: 0.10.4
 Summary: A library for testing Python applications in self-contained Kerberos 
5 environments
 Home-page: https://github.com/pythongssapi/k5test
 Author: The Python GSSAPI Team
 Author-email: sr...@redhat.com
-License: LICENSE.txt
 Keywords: gssapi,security
 Classifier: Development Status :: 4 - Beta
 Classifier: Programming Language :: Python
@@ -22,8 +21,10 @@
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Topic :: Security
 Requires-Python: >=3.6
-Provides-Extra: extension_test
 License-File: LICENSE.txt
+License-File: K5TEST-LICENSE.txt
+Provides-Extra: extension-test
+Requires-Dist: gssapi; extra == "extension-test"
 
 K5Test
 ======
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/k5test-0.10.3/k5test/realm.py 
new/k5test-0.10.4/k5test/realm.py
--- old/k5test-0.10.3/k5test/realm.py   2022-11-01 01:54:46.000000000 +0100
+++ new/k5test-0.10.4/k5test/realm.py   2024-03-20 03:48:16.000000000 +0100
@@ -126,7 +126,6 @@
         existing=None,
         **paths,
     ):
-
         if existing is not None:
             self.tmpdir = existing
             self.is_existing = True
@@ -500,6 +499,7 @@
                     "kdc_ports": "$port0",
                     "kdc_tcp_ports": "$port0",
                     "database_name": "$tmpdir/db",
+                    "max_renewable_life": "7d",
                 }
             },
             "dbmodules": {
@@ -590,7 +590,7 @@
             start_args.extend(args)
         self._kdc_proc = self._start_daemon(start_args, env, "starting...")
 
-    def start_kadmind(self, env):
+    def start_kadmind(self, env=None):
         if self._kadmind_proc:
             raise Exception("kadmind has already started")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/k5test-0.10.3/k5test.egg-info/PKG-INFO 
new/k5test-0.10.4/k5test.egg-info/PKG-INFO
--- old/k5test-0.10.3/k5test.egg-info/PKG-INFO  2022-11-01 01:54:55.000000000 
+0100
+++ new/k5test-0.10.4/k5test.egg-info/PKG-INFO  2024-03-20 03:48:19.000000000 
+0100
@@ -1,11 +1,10 @@
 Metadata-Version: 2.1
 Name: k5test
-Version: 0.10.3
+Version: 0.10.4
 Summary: A library for testing Python applications in self-contained Kerberos 
5 environments
 Home-page: https://github.com/pythongssapi/k5test
 Author: The Python GSSAPI Team
 Author-email: sr...@redhat.com
-License: LICENSE.txt
 Keywords: gssapi,security
 Classifier: Development Status :: 4 - Beta
 Classifier: Programming Language :: Python
@@ -22,8 +21,10 @@
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Topic :: Security
 Requires-Python: >=3.6
-Provides-Extra: extension_test
 License-File: LICENSE.txt
+License-File: K5TEST-LICENSE.txt
+Provides-Extra: extension-test
+Requires-Dist: gssapi; extra == "extension-test"
 
 K5Test
 ======
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/k5test-0.10.3/setup.py new/k5test-0.10.4/setup.py
--- old/k5test-0.10.3/setup.py  2022-11-01 01:54:46.000000000 +0100
+++ new/k5test-0.10.4/setup.py  2024-03-20 03:48:16.000000000 +0100
@@ -3,14 +3,17 @@
 
 setup(
     name="k5test",
-    version="0.10.3",
+    version="0.10.4",
     author="The Python GSSAPI Team",
     author_email="sr...@redhat.com",
     packages=["k5test"],
     description="A library for testing Python applications in "
     "self-contained Kerberos 5 environments",
     long_description=open("README.md").read(),
-    license="LICENSE.txt",
+    license_files=[
+        "LICENSE.txt",
+        "K5TEST-LICENSE.txt",
+    ],
     url="https://github.com/pythongssapi/k5test";,
     python_requires=">=3.6",
     classifiers=[

Reply via email to