Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-gssapi for openSUSE:Factory checked in at 2023-08-18 19:27:31 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-gssapi (Old) and /work/SRC/openSUSE:Factory/.python-gssapi.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-gssapi" Fri Aug 18 19:27:31 2023 rev:13 rq:1103791 version:1.8.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-gssapi/python-gssapi.changes 2023-04-22 21:58:15.440426159 +0200 +++ /work/SRC/openSUSE:Factory/.python-gssapi.new.1766/python-gssapi.changes 2023-08-18 19:27:40.887242982 +0200 @@ -1,0 +2,6 @@ +Mon Aug 14 06:41:06 UTC 2023 - Dirk Müller <[email protected]> + +- add d9200d1018ac916b30433da23898c8c5fbde0f28.patch to + improve cython 3.x interoperability + +------------------------------------------------------------------- New: ---- d9200d1018ac916b30433da23898c8c5fbde0f28.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-gssapi.spec ++++++ --- /var/tmp/diff_new_pack.ADYLUb/_old 2023-08-18 19:27:41.743244517 +0200 +++ /var/tmp/diff_new_pack.ADYLUb/_new 2023-08-18 19:27:41.751244532 +0200 @@ -24,8 +24,9 @@ Release: 0 Summary: A Python interface to RFC 2743/2744 (plus common extensions) License: ISC -URL: https://pythongssapi.github.io/python-gssapi/stable/ +URL: https://github.com/pythongssapi/python-gssapi Source: https://files.pythonhosted.org/packages/source/g/gssapi/gssapi-%{version}.tar.gz +Patch1: https://github.com/pythongssapi/python-gssapi/commit/d9200d1018ac916b30433da23898c8c5fbde0f28.patch BuildRequires: %{python_module Cython} BuildRequires: %{python_module decorator} BuildRequires: %{python_module devel} @@ -47,7 +48,7 @@ usable with other GSSAPI mechanisms. %prep -%setup -q -n gssapi-%{version} +%autosetup -p1 -n gssapi-%{version} sed -i "s/'gssapi.tests'//" setup.py mv gssapi/tests . ++++++ d9200d1018ac916b30433da23898c8c5fbde0f28.patch ++++++ >From d9200d1018ac916b30433da23898c8c5fbde0f28 Mon Sep 17 00:00:00 2001 From: Jordan Borean <[email protected]> Date: Tue, 18 Jul 2023 08:57:11 +1000 Subject: [PATCH] Fix Cython 3 Compatibility Fixes compatibility with Cython 3 by fixing up the import so it doesn't try and do a recursive import. This also increases the upper bound for Cython to 4.0.0 now that 3.0.0 is compatible. Signed-off-by: Jordan Borean <[email protected]> --- gssapi/raw/_enum_extensions/ext_dce.pyx | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gssapi/raw/_enum_extensions/ext_dce.pyx b/gssapi/raw/_enum_extensions/ext_dce.pyx index fd2989ae..190c8285 100644 --- a/gssapi/raw/_enum_extensions/ext_dce.pyx +++ b/gssapi/raw/_enum_extensions/ext_dce.pyx @@ -1,6 +1,6 @@ from gssapi.raw.cython_types cimport OM_uint32 -import gssapi.raw._enum_extensions as ext_registry +from gssapi.raw import _enum_extensions as ext_registry cdef extern from "python_gssapi_ext.h": diff --git a/pyproject.toml b/pyproject.toml index 2f5c208c..5ee26df6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "Cython >= 0.29.29, < 3.0.0", # 0.29.29 includes fixes for Python 3.11 + "Cython >= 0.29.29, < 4.0.0", # 0.29.29 includes fixes for Python 3.11 "setuptools >= 40.6.0", # Start of PEP 517 support for setuptools ] build-backend = "setuptools.build_meta" diff --git a/setup.py b/setup.py index 36c7aafa..881b9f9f 100755 --- a/setup.py +++ b/setup.py @@ -274,7 +274,7 @@ def gssapi_modules(lst): setup( name='gssapi', - version='1.8.2', + version='1.8.3', author='The Python GSSAPI Team', author_email='[email protected]', packages=['gssapi', 'gssapi.raw', 'gssapi.raw._enum_extensions',
