Robert Schweikert
7071fd90c6
This is needed by crda to build correctly with the singlespec version of the python-M2Crypto package. - Provide python-m2crypto in the python2 package OBS-URL: https://build.opensuse.org/request/show/491271 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-M2Crypto?expand=0&rev=33
87 lines
2.6 KiB
RPMSpec
87 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package python-M2Crypto
|
|
#
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
# Tests don't work offline
|
|
%bcond_with tests
|
|
|
|
%define oldpython python
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-M2Crypto
|
|
Version: 0.26.0
|
|
Release: 0
|
|
Url: https://gitlab.com/m2crypto/m2crypto
|
|
Summary: Crypto and SSL toolkit for Python
|
|
License: MIT and ZPL-2.0 and BSD-3-Clause
|
|
Group: Development/Languages/Python
|
|
Source: https://pypi.io/packages/source/M/M2Crypto/M2Crypto-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module typing}
|
|
BuildRequires: fdupes
|
|
BuildRequires: openssl
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: python-rpm-macros
|
|
# hpj: SLES 12 and Leap 42.1 need swig3 to build this package
|
|
%if 0%{?sle_version} == 120100
|
|
BuildRequires: swig3
|
|
%else
|
|
BuildRequires: swig
|
|
%endif
|
|
Provides: python-m2crypto = %{version}
|
|
Obsoletes: python-m2crypto < %{version}
|
|
%ifpython2
|
|
Provides: %{oldpython}-m2crypto = %{version}
|
|
Obsoletes: %{oldpython}-m2crypto < %{version}
|
|
%endif
|
|
%python_subpackages
|
|
|
|
%description
|
|
M2Crypto is a crypto and SSL toolkit for Python featuring the following:
|
|
|
|
RSA, DSA, DH, HMACs, message digests, symmetric ciphers (including
|
|
AES). SSL functionality to implement clients and servers. HTTPS
|
|
extensions to Python's httplib, urllib, and xmlrpclib. Unforgeable
|
|
HMAC'ing AuthCookies for web session management. FTP/TLS client and
|
|
server. S/MIME. ZServerSSL: A HTTPS server for Zope. ZSmime: An S/MIME
|
|
messenger for Zope.
|
|
|
|
%prep
|
|
%setup -q -n M2Crypto-%{version}
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%if %{with tests}
|
|
%check
|
|
%python_exec setup.py test
|
|
%endif
|
|
|
|
%files %{python_files}
|
|
%defattr(-,root,root)
|
|
%doc CHANGES LICENCE README.rst
|
|
%doc doc/
|
|
%{python_sitearch}/*
|
|
|
|
%changelog
|