14
0

- Add avoid-too-large-dates.patch to avoid test failures on i586

(Y38K bug; gh#IdentityPython/pysaml2#759)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pysaml2?expand=0&rev=50
This commit is contained in:
2021-01-06 10:50:59 +00:00
committed by Git OBS Bridge
parent 21faa36cd4
commit 687446e293
3 changed files with 118 additions and 0 deletions

View File

@@ -26,6 +26,9 @@ Summary: Python implementation of SAML Version 2 to be used in a WSGI env
License: Apache-2.0
URL: https://github.com/IdentityPython/pysaml2
Source: https://github.com/IdentityPython/pysaml2/archive/v%{version}.tar.gz
# PATCH-FIX-UPSTREAM avoid-too-large-dates.patch gh#IdentityPython/pysaml2#759 mcepl@suse.com
# avoid Y38K bug on 32bit machines.
Patch0: avoid-too-large-dates.patch
BuildRequires: %{python_module Paste}
BuildRequires: %{python_module cryptography >= 1.4}
BuildRequires: %{python_module dbm}
@@ -71,6 +74,10 @@ SAML2 service provider or an identity provider.
%prep
%setup -q -n %{modname}-%{version}
%ifarch %{ix86}
%patch0 -p1
%endif
# delete shebang of files not in executable path
find src/ -name '*.py' -print0 | xargs -0 sed -i '1s/#!.*$//'
# remove tests that poll internet