forked from pool/python-pyspnego
Compare commits
6 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| a820a86289 | |||
| d10b4b9921 | |||
| 8814032a95 | |||
| 992423b8e1 | |||
| f9275da63a | |||
| ecf2d9a7a3 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:bc9ba9d6bb0dce05368e36d0be94247bc2e0f0ba0260097fa9fd6b020d18cfde
|
|
||||||
size 264023
|
|
||||||
3
pyspnego-0.12.0.tar.gz
Normal file
3
pyspnego-0.12.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8577372af834dec4b5f1c442febb16723b570ec6b9fa7d991e544aac1e8cc8bd
|
||||||
|
size 264730
|
||||||
@@ -1,3 +1,29 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 12 18:58:54 UTC 2025 - Martin Hauke <mardnh@gmx.de>
|
||||||
|
|
||||||
|
- Update to version 0.12.0
|
||||||
|
* Drop support for Python 3.7 - new minimum is 3.9+.
|
||||||
|
* Add official support for Python 3.14.
|
||||||
|
* Fix CredSSP server certificate generation to limit CN name
|
||||||
|
to 64 characters.
|
||||||
|
* Added support for specifying credentials for spnego.server
|
||||||
|
using the credentials kwarg. This currently only works on
|
||||||
|
Windows/SSPI when specifying a keytab credential for the
|
||||||
|
service.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 25 11:40:09 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
- Convert to libalternatives on SLE-16-based and newer systems
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 11 20:27:41 UTC 2024 - Martin Hauke <mardnh@gmx.de>
|
||||||
|
|
||||||
|
- Update to version 0.11.2
|
||||||
|
* Fix CredSSP acceptor with LibreSSL.
|
||||||
|
* Bump dev deps and add 3.13 support.
|
||||||
|
* Update integration tests for 3.13.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 5 19:04:53 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Mon Aug 5 19:04:53 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-pyspnego
|
# spec file for package python-pyspnego
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,9 +16,14 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%if 0%{?suse_version} > 1500
|
||||||
|
%bcond_without libalternatives
|
||||||
|
%else
|
||||||
|
%bcond_with libalternatives
|
||||||
|
%endif
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-pyspnego
|
Name: python-pyspnego
|
||||||
Version: 0.11.1
|
Version: 0.12.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python SPNEGO authentication library
|
Summary: Python SPNEGO authentication library
|
||||||
License: MIT
|
License: MIT
|
||||||
@@ -28,23 +33,28 @@ Source: https://github.com/jborean93/pyspnego/archive/v%{version}.tar.gz
|
|||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: python-rpm-macros
|
|
||||||
# SECTION test requirements
|
|
||||||
BuildRequires: %{python_module dataclasses if %python-base < 3.7}
|
|
||||||
BuildRequires: %{python_module cryptography}
|
|
||||||
BuildRequires: %{python_module pytest-mock}
|
|
||||||
BuildRequires: %{python_module pytest}
|
|
||||||
# /SECTION
|
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-cryptography
|
Requires: python-cryptography
|
||||||
%if 0%{python_version_nodots} < 37
|
|
||||||
Requires: python-dataclasses
|
|
||||||
%endif
|
|
||||||
Requires(post): update-alternatives
|
|
||||||
Requires(postun): update-alternatives
|
|
||||||
Suggests: python-gssapi >= 1.5.0
|
Suggests: python-gssapi >= 1.5.0
|
||||||
Suggests: python-ruamel.yaml
|
Suggests: python-ruamel.yaml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
# SECTION test requirements
|
||||||
|
BuildRequires: %{python_module cryptography}
|
||||||
|
BuildRequires: %{python_module dataclasses if %python-base < 3.7}
|
||||||
|
BuildRequires: %{python_module pytest-mock}
|
||||||
|
BuildRequires: %{python_module pytest}
|
||||||
|
# /SECTION
|
||||||
|
%if 0%{python_version_nodots} < 37
|
||||||
|
Requires: python-dataclasses
|
||||||
|
%endif
|
||||||
|
%if %{with libalternatives}
|
||||||
|
BuildRequires: alts
|
||||||
|
Requires: alts
|
||||||
|
%else
|
||||||
|
Requires(post): update-alternatives
|
||||||
|
Requires(postun): update-alternatives
|
||||||
|
%endif
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@@ -70,6 +80,9 @@ sed -i '1{/^#!/ d}' src/spnego/__main__.py
|
|||||||
%postun
|
%postun
|
||||||
%python_uninstall_alternative pyspnego-parse
|
%python_uninstall_alternative pyspnego-parse
|
||||||
|
|
||||||
|
%pre
|
||||||
|
%python_libalternatives_reset_alternative pyspnego-parse
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%pytest
|
%pytest
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user