Matěj Cepl
06d9f4cf69
All checks were successful
obs/scm/build
- feat[m2]: add m2.time_t_bits to checking for 32bitness. - fix[tests]: Use only X509_VERSION_1 (0) as version for CSR. - fix[EC]: raise ValueError when load_key_bio() cannot read the file. - ci: use -mpip wheel instead of -mbuild - fix: use PyMem_Malloc() instead of malloc() - fix[hints]: more work on conversion of type hints to the py3k ones - fix: make the package build even on Python 3.6 - ci[local]: skip freezing local tests - fix[hints]: remove AnyStr type - test: add suggested test for RSA.{get,set}_ex_data - fix: implement interfaces for RSA_{get,set}_ex_new_{data,index} - fix: generate src/SWIG/x509_v_flag.h to overcome weaknesses of swig - fix: replace literal enumeration of all VERIFY_ constants by a cycle - test: unify various test cases in test_ssl related to ftpslib - fix: replace deprecated url keyword in setup.cfg with complete project_urls map
109 lines
3.5 KiB
RPMSpec
109 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package python-M2Crypto
|
|
#
|
|
# Copyright (c) 2024 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/
|
|
#
|
|
|
|
|
|
%define oldpython python
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-M2Crypto
|
|
Version: 0.43.0
|
|
Release: 0
|
|
Summary: Crypto and SSL toolkit for Python
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
URL: https://sr.ht/~mcepl/m2crypto/
|
|
Source0: https://files.pythonhosted.org/packages/source/M/M2crypto/m2crypto-%{version}.tar.gz
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module typing}
|
|
BuildRequires: %{python_module wheel}
|
|
# For debugging
|
|
BuildRequires: %{python_module readline}
|
|
BuildRequires: fdupes
|
|
BuildRequires: openssl
|
|
BuildRequires: openssl-devel
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-typing
|
|
Requires: python-xml
|
|
# hpj: SLES 12 and Leap 42.1 need swig3 to build this package
|
|
%if 0%{?sle_version} == 120100
|
|
BuildRequires: swig3
|
|
%else
|
|
BuildRequires: swig
|
|
%endif
|
|
%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.
|
|
|
|
%package -n %{name}-doc
|
|
Summary: Documentation for the Crypto and SSL toolkit for Python
|
|
Group: Development/Libraries/Python
|
|
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
|
|
%autosetup -p1 -n m2crypto-%{version}
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%check
|
|
%python_expand ls -l %{buildroot}%{$python_sitearch}/M2Crypto/*.so*
|
|
export PYTEST_ADDOPTS="--import-mode=append"
|
|
# Ignore test_verify_with_static_callback that fails with openssl 3.2
|
|
donttest="test_verify_with_static_callback"
|
|
%pytest_arch -k "not ($donttest)" tests
|
|
|
|
%files %{python_files}
|
|
%doc CHANGES LICENCE README.rst
|
|
%{python_sitearch}/M2Crypto
|
|
%{python_sitearch}/M2Crypto-%{version}*-info
|
|
|
|
%files -n %{name}-doc
|
|
%doc doc/*.rst
|
|
|
|
%changelog
|