python-M2Crypto/python-M2Crypto.spec
Alberto Planas Dominguez f1553254a2 Accepting request 287536 from home:dimstar:Factory
Please get this some exposure in d:l:p to see if it results in new issues; in oS:F, this package is currently build disabled so it stays as a swig 3.0.4 generated one... but that can't stay like this forever of course... with this patch, the package crda builds again when python-M2Crypto is built using swig 3.0.5...

OBS-URL: https://build.opensuse.org/request/show/287536
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-M2Crypto?expand=0&rev=21
2015-02-24 15:11:02 +00:00

88 lines
3.0 KiB
RPMSpec

#
# spec file for package python-M2Crypto
#
# Copyright (c) 2015 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/
#
Name: python-M2Crypto
Version: 0.22.3
Release: 0
Url: http://chandlerproject.org/bin/view/Projects/MeTooCrypto
Summary: Crypto and SSL toolkit for Python
License: MIT and ZPL-2.0 and BSD-3-Clause
Group: Development/Languages/Python
Source: http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-%{version}.tar.gz
# PATCH-FIX-UPSTREAM python-M2Crypto-SWIG-3.0.5.patch -- https://github.com/martinpaljak/M2Crypto/issues/60
Patch0: python-M2Crypto-SWIG-3.0.5.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: openssl
BuildRequires: openssl-devel
BuildRequires: python-devel
BuildRequires: python-setuptools
BuildRequires: swig
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1010
BuildRequires: fdupes
%endif
%endif
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Provides: python-m2crypto = %{version}
Obsoletes: python-m2crypto < %{version}
%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.
It currently lives at
http://wiki.osafoundation.org/bin/view/Projects/MeTooCrypto. The
original M2Crypto homepage is at http://sandbox.rulemaker.net/ngps/m2/.
%prep
%setup -n M2Crypto-%{version}
%patch0 -p1
%build
CFLAGS="%{optflags}" python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
# The SWIG shadow file is not being installed by setup.py
cp SWIG/_m2crypto.py %{buildroot}%{python_sitearch}/M2Crypto/
# install demo files manually
# (otherwise we can't perform %%fdupes on them the right way)
#chmod 0644 demo/{https.howto/get_https,ssl/twistedsslclient,ssl/twistedsslserver,tinderbox/slave,x509/certdata2pem}.py
export DOCDIR=%{buildroot}%{_docdir}/%{name}
mkdir -p $DOCDIR
%fdupes $DOCDIR
install -m 644 README $DOCDIR
%files
%defattr(-,root,root)
%doc %{_docdir}/%{name}
%{python_sitearch}/*
%changelog