14
0

- Update to 4.7.0

- Build SAML support by default again

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-social-auth-core?expand=0&rev=55
This commit is contained in:
2025-08-19 08:06:51 +00:00
committed by Git OBS Bridge
parent 5425ae8397
commit 52f945d068
5 changed files with 40 additions and 15 deletions

11
pyproject-license.patch Normal file
View File

@@ -0,0 +1,11 @@
--- a/pyproject.toml 2025-06-27 08:29:45.000000000 +0200
+++ b/pyproject.toml 2025-08-18 21:15:04.317633319 +0200
@@ -49,8 +49,6 @@
]
description = "Python social authentication made simple."
keywords = ["oauth", "openid", "saml", "social auth"]
-license = "BSD-3-Clause"
-license-files = ["LICENSE"]
name = "social-auth-core"
readme = "README.md"
requires-python = ">=3.9"

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Aug 18 19:16:52 UTC 2025 - Georg Pfuetzenreuter <georg.pfuetzenreuter@suse.com>
- Add pyproject-license.patch to work around setup failure on Leap
-------------------------------------------------------------------
Mon Aug 18 18:42:10 UTC 2025 - Georg Pfuetzenreuter <georg.pfuetzenreuter@suse.com>
- Update to 4.7.0:
* multiple versions skipped, reference upstream changelog
- Build SAML support by default again (remove conditionals, update dependencies)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jun 16 06:12:22 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com> Mon Jun 16 06:12:22 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-social-auth-core # spec file for package python-social-auth-core
# #
# Copyright (c) 2025 SUSE LLC # Copyright (c) 2025 SUSE LLC and contributors
# Copyright (c) 2017-2018 Matthias Fehring <buschmann23@opensuse.org> # Copyright (c) 2017-2018 Matthias Fehring <buschmann23@opensuse.org>
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
@@ -18,16 +18,18 @@
%define modname social-core %define modname social-core
# saml is optional: packages in TW and Leap not compatible
%bcond_with saml
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-social-auth-core Name: python-social-auth-core
Version: 4.5.4 Version: 4.7.0
Release: 0 Release: 0
Summary: Python Social Auth Core Summary: Python Social Auth Core
License: BSD-3-Clause License: BSD-3-Clause
URL: https://github.com/python-social-auth/social-core URL: https://github.com/python-social-auth/social-core
Source: https://github.com/python-social-auth/%{modname}/archive/%{version}.tar.gz#/%{modname}-%{version}.tar.gz Source: https://github.com/python-social-auth/%{modname}/archive/%{version}.tar.gz#/%{modname}-%{version}.tar.gz
%if 0%{?suse_version} < 1600
# hack around "configuration error: `project.license` must be valid exactly by one definition"
Patch0: pyproject-license.patch
%endif
BuildRequires: %{python_module PyJWT >= 2.7.0} BuildRequires: %{python_module PyJWT >= 2.7.0}
BuildRequires: %{python_module cryptography >= 2.1.1} BuildRequires: %{python_module cryptography >= 2.1.1}
BuildRequires: %{python_module defusedxml >= 0.5.0} BuildRequires: %{python_module defusedxml >= 0.5.0}
@@ -43,20 +45,22 @@ BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
# SECTION test requirements # SECTION test requirements
BuildRequires: %{python_module pytest} BuildRequires: %{python_module pytest}
BuildRequires: %{python_module google-auth}
BuildRequires: %{python_module httpretty >= 0.9.6} BuildRequires: %{python_module httpretty >= 0.9.6}
BuildRequires: %{python_module responses}
BuildRequires: %{python_module typing_extensions}
#/SECTION #/SECTION
# SECTION optional requirements for tests # SECTION optional requirements for tests
BuildRequires: %{python_module python-jose >= 3.0.0} BuildRequires: %{python_module python-jose >= 3.0.0}
%if %{with saml} BuildRequires: %{python_module lxml}
BuildRequires: %{python_module lxml < 4.7} BuildRequires: %{python_module python3-saml >= 1.5.0}
BuildRequires: %{python_module python3-saml >= 1.2.1}
%endif
#/SECTION #/SECTION
Requires: python-PyJWT >= 2.0.0 Requires: python-PyJWT >= 2.0.0
Requires: python-cryptography >= 2.1.1 Requires: python-cryptography >= 2.1.1
Requires: python-defusedxml >= 0.5.0 Requires: python-defusedxml >= 0.5.0
Requires: python-oauthlib >= 1.0.3 Requires: python-oauthlib >= 1.0.3
Requires: python-python3-openid >= 3.0.10 Requires: python-python3-openid >= 3.0.10
Requires: python-python3-saml >= 1.5.0
Requires: python-requests >= 2.9.1 Requires: python-requests >= 2.9.1
Requires: python-requests-oauthlib >= 0.6.1 Requires: python-requests-oauthlib >= 0.6.1
Recommends: python-python-jose >= 3.0.0 Recommends: python-python-jose >= 3.0.0
@@ -83,10 +87,8 @@ storage solutions.
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%check %check
%if !%{with saml} # Steam auth tests require internet access
donttest+=" or test_saml" %pytest -k 'not SteamOpenIdMissingSteamIdTest'
%endif
%pytest -k "not (dummyprefix $donttest)"
%files %{python_files} %files %{python_files}
%doc CHANGELOG.md README.md %doc CHANGELOG.md README.md

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0070f7d9a0eb4903de2990d6b8cd42ff5ea91f8caff83386a2f6a087ebeaa577
size 211976

3
social-core-4.7.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b31568e0a8ce8bc0d5653c83d360b71d8f8889d13b31ec2d896285c15ab9a826
size 223852