Stephan Kulow 2014-05-17 19:45:03 +00:00 committed by Git OBS Bridge
parent 6bbbe12431
commit 0744608d05
2 changed files with 0 additions and 123 deletions

View File

@ -1,53 +0,0 @@
-------------------------------------------------------------------
Sun Oct 6 07:58:13 UTC 2013 - tchvatal@suse.com
- Fix the doc build for real
-------------------------------------------------------------------
Tue Oct 1 08:55:05 UTC 2013 - speilicke@suse.com
- BuildRequire texlive-babel to get access to english.tpl
-------------------------------------------------------------------
Mon Jul 23 12:48:35 UTC 2012 - werner@suse.de
- Make it build with TeXLive 2012
-------------------------------------------------------------------
Mon Jul 9 18:34:08 PDT 2012 - msuman@opensuse.org
- Update to version 0.13
* Add OPENSSL_VERSION_NUMBER, SSLeay_version and related
constants for retrieving version information about the
underlying OpenSSL library.
* Support OpenSSL 1.0.0a and related changes.
* Remove SSLv2 support if the underlying OpenSSL library does
not provide it.
* Add a new method to the X509 type, get_signature_algorithm.
* Add a new method to the Connection type, get_peer_cert_chain.
* Add the PKey.check method to verify the internal consistency
of a PKey instance.
* Bug fixes.
-------------------------------------------------------------------
Fri Jun 15 14:36:11 UTC 2012 - saschpe@suse.de
- Changed license of doc package to Apache-2.0 (bnc#767269)
-------------------------------------------------------------------
Tue Sep 13 20:55:06 UTC 2011 - saschpe@suse.de
- Recommend base package instead of requiring it
-------------------------------------------------------------------
Thu Sep 1 08:48:23 UTC 2011 - saschpe@suse.de
- Changed license to Apache-2.0, to fix bnc#715423
-------------------------------------------------------------------
Wed Aug 31 14:21:58 UTC 2011 - saschpe@suse.de
- Initial version, obsoletes 'python-openssl':
* Builds properly on all SUSE version
* Has real HTML documentation

View File

@ -1,70 +0,0 @@
#
# spec file for package python-pyOpenSSL-doc
#
# Copyright (c) 2014 SUSE LINUX Products 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-pyOpenSSL-doc
Version: 0.13.1
Release: 0
Url: http://launchpad.net/pyopenssl
Summary: Python wrapper module around the OpenSSL library - Documentation
License: Apache-2.0
Group: Development/Languages/Python
Source: http://pypi.python.org/packages/source/p/pyOpenSSL/pyOpenSSL-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: latex2html
BuildRequires: python-devel
BuildRequires: texlive-latex
%if %suse_version > 1220
BuildRequires: texlive-cm-super
BuildRequires: texlive-ec
BuildRequires: texlive-times
BuildRequires: tex(english.ldf)
BuildRequires: tex(fancyhdr.sty)
BuildRequires: tex(fncychap.sty)
BuildRequires: tex(longtable.sty)
%endif
%if 0%{?suse_version}
Recommends: python-pyOpenSSL
%endif
%description
High-level wrapper around a subset of the OpenSSL library, includes
* SSL.Connection objects, wrapping the methods of Python's portable
sockets
* Callbacks written in Python
* Extensive error-handling mechanism, mirroring OpenSSL's error codes
... and much more ;)
This is the documentation for pyOpenSSL
%prep
%setup -q -n pyOpenSSL-%{version}
%build
cd doc && make html
%install
install -d %{buildroot}%{_docdir}/python-pyOpenSSL
mv doc/html %{buildroot}%{_docdir}/python-pyOpenSSL/
%files
%defattr(-,root,root,-)
%doc LICENSE README
%{_docdir}/python-pyOpenSSL
%{_docdir}/python-pyOpenSSL/html
%changelog