osc copypac from project:devel:languages:python package:python-cryptography revision:76

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cryptography?expand=0&rev=78
This commit is contained in:
Ondřej Súkup 2017-11-10 19:27:10 +00:00 committed by Git OBS Bridge
parent 87aad2f50b
commit bf0f957a49
2 changed files with 5 additions and 17 deletions

View File

@ -1,8 +1,3 @@
-------------------------------------------------------------------
Fri Nov 10 09:21:12 UTC 2017 - mimi.vx@gmail.com
- fix build on systems without python2
-------------------------------------------------------------------
Thu Nov 9 06:06:39 UTC 2017 - arun@gmx.de

View File

@ -16,13 +16,6 @@
#
# trick needed for build on systems without python2
%if 0%{?have_python2}
%bcond_with py2
%else
%bcond_without py2
%endif
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-cryptography
Version: 2.1.3
@ -59,6 +52,10 @@ Requires: python-pyasn1 >= 0.1.8
Requires: python-setuptools >= 11.3
Requires: python-six >= 1.4.1
%requires_eq python-cffi
%ifpython2
BuildRequires: python2-enum34
BuildRequires: python2-ipaddress
%endif
# SECTION Test requirements
BuildRequires: %{python_module hypothesis}
BuildRequires: %{python_module iso8601}
@ -68,14 +65,10 @@ BuildRequires: %{python_module pyasn1 >= 0.1.8}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module virtualenv}
# /SECTION
%if %{with py2}
%if "%python_flavor" == "python2"
BuildRequires: python2-enum34
BuildRequires: python2-ipaddress
%ifpython2
Requires: python-enum34
Requires: python-ipaddress
%endif
%endif
%python_subpackages
%description