109 lines
3.7 KiB
RPMSpec
109 lines
3.7 KiB
RPMSpec
#
|
|
# spec file for package saltbundlepy-m2crypto
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!saltbundlepy_module:%define saltbundlepy_module() saltbundlepy-%{**}}
|
|
%define pythons saltbundlepy
|
|
|
|
# Disable python bytecompile for all distros
|
|
# It's called explicitly in the spec
|
|
%global __brp_python_bytecompile %{nil}
|
|
|
|
Name: saltbundlepy-m2crypto
|
|
Version: 0.38.0
|
|
Release: 0
|
|
Summary: Crypto and SSL toolkit for Python
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
URL: https://gitlab.com/m2crypto/m2crypto
|
|
Source0: https://files.pythonhosted.org/packages/source/M/M2Crypto/M2Crypto-%{version}.tar.gz
|
|
Source1: https://files.pythonhosted.org/packages/source/M/M2Crypto/M2Crypto-%{version}.tar.gz.asc
|
|
Source99: saltbundlepy-m2crypto.keyring
|
|
# PATCH-FIX-UPSTREAM CVE-2020-25657-Bleichenbacher-attack.patch bsc#1178829 mcepl@suse.com
|
|
# Mitigate the Bleichenbacher timing attacks in the RSA decryption API
|
|
Patch0: CVE-2020-25657-Bleichenbacher-attack.patch
|
|
Patch100: remove-parameterized-tests.patch
|
|
BuildRequires: %{saltbundlepy_module devel >= 3.10}
|
|
BuildRequires: %{saltbundlepy_module setuptools}
|
|
BuildRequires: %{saltbundlepy_module typing}
|
|
BuildRequires: fdupes
|
|
%if 0%{?suse_version} == 1110 || 0%{?suse_version} == 1315
|
|
BuildRequires: saltbundle-openssl
|
|
BuildRequires: saltbundle-openssl-devel
|
|
%else
|
|
BuildRequires: openssl
|
|
BuildRequires: openssl-devel
|
|
%endif
|
|
BuildRequires: saltbundlepy-rpm-macros
|
|
Requires: saltbundlepy-base
|
|
BuildRequires: saltbundle-swig
|
|
%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.
|
|
|
|
%package -n %{name}-doc
|
|
Summary: Documentation for the Crypto and SSL toolkit for Python
|
|
Group: Development/Libraries/Python
|
|
Requires: %{name} = %{version}
|
|
BuildArch: noarch
|
|
|
|
%description -n %{name}-doc
|
|
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.
|
|
|
|
Documentation for the Crypto and SSL toolkit for Python
|
|
|
|
%prep
|
|
%setup -q -n M2Crypto-%{version}
|
|
%autopatch -p1
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%if 0%{?ubuntu} && 0%{?ubuntu} < 2004
|
|
%check
|
|
%python_exec setup.py test
|
|
%endif
|
|
|
|
%files %{python_files}
|
|
%doc CHANGES LICENCE README.rst
|
|
%{python_sitearch}/*
|
|
|
|
%files -n %{name}-doc
|
|
%doc doc/*.rst
|
|
|
|
%changelog
|