Accepting request 958123 from devel:languages:python
- Update to 1.7.3 - Fix up sha512sum file generation in the GitHub release asset - Added Python type annotation to classes and functions - Update to 1.7.2: - Fix distutil deprecation on Python 3.10 by using setuptools instead - Update to 1.7.0: - Add Kerberos specific GSS-API Extensions - Tidy up docs and turn warnings into errors - Update to 1.6.14: - Enable specification of krb5-config via environment variable - Support for GSS_C_CHANNEL_BOUND_FLAG - Support for docs build with sphinx 4 - Fix undefined variable in get_all_statuses() - Add support for str objects in the cred store dict OBS-URL: https://build.opensuse.org/request/show/958123 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-gssapi?expand=0&rev=8
This commit is contained in:
commit
589be120ed
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:16ed3b5d7fc37683be27f34a2a65062cb11d815d019bb2e89ffeb395576e51c8
|
|
||||||
size 1064583
|
|
3
gssapi-1.7.3.tar.gz
Normal file
3
gssapi-1.7.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c69b9f633a0c03c1b84ba14c73b0ec132f6323056e675702c1a5f75f316e06fb
|
||||||
|
size 1260350
|
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 22 21:53:06 UTC 2022 - Matej Cepl <mcepl@suse.com>
|
||||||
|
|
||||||
|
- Update to 1.7.3
|
||||||
|
- Fix up sha512sum file generation in the GitHub release asset
|
||||||
|
- Added Python type annotation to classes and functions
|
||||||
|
- Update to 1.7.2:
|
||||||
|
- Fix distutil deprecation on Python 3.10 by using setuptools
|
||||||
|
instead
|
||||||
|
- Update to 1.7.0:
|
||||||
|
- Add Kerberos specific GSS-API Extensions
|
||||||
|
- Tidy up docs and turn warnings into errors
|
||||||
|
- Update to 1.6.14:
|
||||||
|
- Enable specification of krb5-config via environment variable
|
||||||
|
- Support for GSS_C_CHANNEL_BOUND_FLAG
|
||||||
|
- Support for docs build with sphinx 4
|
||||||
|
- Fix undefined variable in get_all_statuses()
|
||||||
|
- Add support for str objects in the cred store dict
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 1 12:46:00 UTC 2021 - Antonio Larrosa <alarrosa@suse.com>
|
Mon Feb 1 12:46:00 UTC 2021 - Antonio Larrosa <alarrosa@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-gssapi
|
# spec file for package python-gssapi
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# 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
|
||||||
@ -19,7 +19,7 @@
|
|||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-gssapi
|
Name: python-gssapi
|
||||||
Version: 1.6.12
|
Version: 1.7.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A Python interface to RFC 2743/2744 (plus common extensions)
|
Summary: A Python interface to RFC 2743/2744 (plus common extensions)
|
||||||
License: ISC
|
License: ISC
|
||||||
@ -28,7 +28,9 @@ Source: https://files.pythonhosted.org/packages/source/g/gssapi/gssapi-%
|
|||||||
BuildRequires: %{python_module Cython}
|
BuildRequires: %{python_module Cython}
|
||||||
BuildRequires: %{python_module decorator}
|
BuildRequires: %{python_module decorator}
|
||||||
BuildRequires: %{python_module devel}
|
BuildRequires: %{python_module devel}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: krb5-devel
|
BuildRequires: krb5-devel
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
@ -45,10 +47,10 @@ usable with other GSSAPI mechanisms.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags} -DHAS_GSSAPI_EXT_H -fno-strict-aliasing"
|
export CFLAGS="%{optflags} -DHAS_GSSAPI_EXT_H -fno-strict-aliasing"
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
Loading…
Reference in New Issue
Block a user