summaryrefslogtreecommitdiff
path: root/python-ssl.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 21:31:22 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 21:31:22 +0000
commit5a2379f0efcda4a7e01234a1d40b83070e98af56 (patch)
tree15c170e334538dcbe79dca54c55de0bdcfd5b5d3 /python-ssl.spec
parent3f55a79586d0f95611856f97686266e15286a940 (diff)
automatic import of python-ssl
Diffstat (limited to 'python-ssl.spec')
-rw-r--r--python-ssl.spec252
1 files changed, 252 insertions, 0 deletions
diff --git a/python-ssl.spec b/python-ssl.spec
new file mode 100644
index 0000000..fbf8d4a
--- /dev/null
+++ b/python-ssl.spec
@@ -0,0 +1,252 @@
+%global _empty_manifest_terminate_build 0
+Name: python-ssl
+Version: 1.16
+Release: 1
+Summary: SSL wrapper for socket objects (2.3, 2.4, 2.5 compatible)
+License: Python (MIT-like)
+URL: https://github.com/pypa/ssl
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/83/21/f469c9923235f8c36d5fd5334ed11e2681abad7e0032c5aba964dcaf9bbb/ssl-1.16.tar.gz
+BuildArch: noarch
+
+
+%description
+The old socket.ssl() support for TLS over sockets is being
+superseded in Python 2.6 by a new 'ssl' module. This package
+brings that module to older Python releases, 2.3.5 and up (it may
+also work on older versions of 2.3, but we haven't tried it).
+It's quite similar to the 2.6 ssl module. There's no stand-alone
+documentation for this package; instead, just use the development
+branch documentation for the SSL module at
+http://docs.python.org/dev/library/ssl.html.
+Version 1.0 had a problem with Python 2.5.1 -- the structure of
+the socket object changed from earlier versions.
+Version 1.1 was missing various package metadata information.
+Version 1.2 added more package metadata, and support for
+ssl.get_server_certificate(), and the PEM-to-DER encode/decode
+routines. Plus integrated Paul Moore's patch to setup.py for
+Windows. Plus added support for asyncore, and asyncore HTTPS
+server test.
+Version 1.3 fixed a bug in the test suite.
+Version 1.4 incorporated use of -static switch.
+Version 1.5 fixed bug in Python version check affecting build on
+Python 2.5.0.
+Version 1.7 (and 1.6) fixed some bugs with asyncore support (recv and
+send not being called on the SSLSocket class, wrong semantics for
+sendall).
+Version 1.8 incorporated some code from Chris Stawarz to handle
+sockets which are set to non-blocking before negotiating the SSL
+session.
+Version 1.9 makes ssl.SSLError a subtype of socket.error.
+Version 1.10 fixes a bug in sendall().
+Version 1.11 includes the MANIFEST file, and by default will turne
+unexpected EOFs occurring during a read into a regular EOF. It also
+removes the code for SSLFileStream, to use the regular socket module's
+_fileobject instead.
+Version 1.12 fixes the bug in SSLSocket.accept() reported by Georg
+Brandl, and adds a test case for that fix.
+Version 1.13 fixes a bug in calling do_handshake() automatically
+on non-blocking sockets. Thanks to Giampaolo Rodola. Now includes
+real asyncore test case.
+Version 1.14 incorporates some fixes to naming (rename "recv_from" to
+"recvfrom" and "send_to" to "sendto"), and a fix to the asyncore test
+case to unregister the connection handler when the connection is
+closed. It also exposes the SSL shutdown via the "unwrap" method
+on an SSLSocket. It exposes "subjectPublicKey" in the data received
+from a peer cert.
+Version 1.15 fixes a bug in write retries, where the output buffer has
+changed location because of garbage collection during the interim.
+It also provides the new flag, PROTOCOL_NOSSLv2, which selects SSL23,
+but disallows actual use of SSL2.
+Version 1.16 removes installing tests system-wide (which fixes the
+"permission denied" error when installing in virtualenvs), adds
+``/usr/lib/i386-linux-gnu`` and ``/usr/lib/x86_64-linux-gnu`` to the
+search path (which fixes compilation on ubuntu 12.04) and stopped using
+``SSLv2_method`` if it's not present. Many thanks to `Denis Bilenko`_
+for providing those fixes through his temporary sslfix_ fork.
+The package is now maintained (bugfix only) by PyPA_.
+Authorship: A cast of dozens over the years have written the Python
+SSL support, including Marc-Alan Lemburg, Robin Dunn, GvR, Kalle
+Svensson, Skip Montanaro, Mark Hammond, Martin von Loewis, Jeremy
+Hylton, Andrew Kuchling, Georg Brandl, Bill Janssen, Chris Stawarz,
+Neal Norwitz, and many others. Thanks to Paul Moore, David Bolen and
+Mark Hammond for help with the Windows side of the house. And it's
+all based on OpenSSL, which has its own cast of dozens!
+
+%package -n python3-ssl
+Summary: SSL wrapper for socket objects (2.3, 2.4, 2.5 compatible)
+Provides: python-ssl
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-ssl
+The old socket.ssl() support for TLS over sockets is being
+superseded in Python 2.6 by a new 'ssl' module. This package
+brings that module to older Python releases, 2.3.5 and up (it may
+also work on older versions of 2.3, but we haven't tried it).
+It's quite similar to the 2.6 ssl module. There's no stand-alone
+documentation for this package; instead, just use the development
+branch documentation for the SSL module at
+http://docs.python.org/dev/library/ssl.html.
+Version 1.0 had a problem with Python 2.5.1 -- the structure of
+the socket object changed from earlier versions.
+Version 1.1 was missing various package metadata information.
+Version 1.2 added more package metadata, and support for
+ssl.get_server_certificate(), and the PEM-to-DER encode/decode
+routines. Plus integrated Paul Moore's patch to setup.py for
+Windows. Plus added support for asyncore, and asyncore HTTPS
+server test.
+Version 1.3 fixed a bug in the test suite.
+Version 1.4 incorporated use of -static switch.
+Version 1.5 fixed bug in Python version check affecting build on
+Python 2.5.0.
+Version 1.7 (and 1.6) fixed some bugs with asyncore support (recv and
+send not being called on the SSLSocket class, wrong semantics for
+sendall).
+Version 1.8 incorporated some code from Chris Stawarz to handle
+sockets which are set to non-blocking before negotiating the SSL
+session.
+Version 1.9 makes ssl.SSLError a subtype of socket.error.
+Version 1.10 fixes a bug in sendall().
+Version 1.11 includes the MANIFEST file, and by default will turne
+unexpected EOFs occurring during a read into a regular EOF. It also
+removes the code for SSLFileStream, to use the regular socket module's
+_fileobject instead.
+Version 1.12 fixes the bug in SSLSocket.accept() reported by Georg
+Brandl, and adds a test case for that fix.
+Version 1.13 fixes a bug in calling do_handshake() automatically
+on non-blocking sockets. Thanks to Giampaolo Rodola. Now includes
+real asyncore test case.
+Version 1.14 incorporates some fixes to naming (rename "recv_from" to
+"recvfrom" and "send_to" to "sendto"), and a fix to the asyncore test
+case to unregister the connection handler when the connection is
+closed. It also exposes the SSL shutdown via the "unwrap" method
+on an SSLSocket. It exposes "subjectPublicKey" in the data received
+from a peer cert.
+Version 1.15 fixes a bug in write retries, where the output buffer has
+changed location because of garbage collection during the interim.
+It also provides the new flag, PROTOCOL_NOSSLv2, which selects SSL23,
+but disallows actual use of SSL2.
+Version 1.16 removes installing tests system-wide (which fixes the
+"permission denied" error when installing in virtualenvs), adds
+``/usr/lib/i386-linux-gnu`` and ``/usr/lib/x86_64-linux-gnu`` to the
+search path (which fixes compilation on ubuntu 12.04) and stopped using
+``SSLv2_method`` if it's not present. Many thanks to `Denis Bilenko`_
+for providing those fixes through his temporary sslfix_ fork.
+The package is now maintained (bugfix only) by PyPA_.
+Authorship: A cast of dozens over the years have written the Python
+SSL support, including Marc-Alan Lemburg, Robin Dunn, GvR, Kalle
+Svensson, Skip Montanaro, Mark Hammond, Martin von Loewis, Jeremy
+Hylton, Andrew Kuchling, Georg Brandl, Bill Janssen, Chris Stawarz,
+Neal Norwitz, and many others. Thanks to Paul Moore, David Bolen and
+Mark Hammond for help with the Windows side of the house. And it's
+all based on OpenSSL, which has its own cast of dozens!
+
+%package help
+Summary: Development documents and examples for ssl
+Provides: python3-ssl-doc
+%description help
+The old socket.ssl() support for TLS over sockets is being
+superseded in Python 2.6 by a new 'ssl' module. This package
+brings that module to older Python releases, 2.3.5 and up (it may
+also work on older versions of 2.3, but we haven't tried it).
+It's quite similar to the 2.6 ssl module. There's no stand-alone
+documentation for this package; instead, just use the development
+branch documentation for the SSL module at
+http://docs.python.org/dev/library/ssl.html.
+Version 1.0 had a problem with Python 2.5.1 -- the structure of
+the socket object changed from earlier versions.
+Version 1.1 was missing various package metadata information.
+Version 1.2 added more package metadata, and support for
+ssl.get_server_certificate(), and the PEM-to-DER encode/decode
+routines. Plus integrated Paul Moore's patch to setup.py for
+Windows. Plus added support for asyncore, and asyncore HTTPS
+server test.
+Version 1.3 fixed a bug in the test suite.
+Version 1.4 incorporated use of -static switch.
+Version 1.5 fixed bug in Python version check affecting build on
+Python 2.5.0.
+Version 1.7 (and 1.6) fixed some bugs with asyncore support (recv and
+send not being called on the SSLSocket class, wrong semantics for
+sendall).
+Version 1.8 incorporated some code from Chris Stawarz to handle
+sockets which are set to non-blocking before negotiating the SSL
+session.
+Version 1.9 makes ssl.SSLError a subtype of socket.error.
+Version 1.10 fixes a bug in sendall().
+Version 1.11 includes the MANIFEST file, and by default will turne
+unexpected EOFs occurring during a read into a regular EOF. It also
+removes the code for SSLFileStream, to use the regular socket module's
+_fileobject instead.
+Version 1.12 fixes the bug in SSLSocket.accept() reported by Georg
+Brandl, and adds a test case for that fix.
+Version 1.13 fixes a bug in calling do_handshake() automatically
+on non-blocking sockets. Thanks to Giampaolo Rodola. Now includes
+real asyncore test case.
+Version 1.14 incorporates some fixes to naming (rename "recv_from" to
+"recvfrom" and "send_to" to "sendto"), and a fix to the asyncore test
+case to unregister the connection handler when the connection is
+closed. It also exposes the SSL shutdown via the "unwrap" method
+on an SSLSocket. It exposes "subjectPublicKey" in the data received
+from a peer cert.
+Version 1.15 fixes a bug in write retries, where the output buffer has
+changed location because of garbage collection during the interim.
+It also provides the new flag, PROTOCOL_NOSSLv2, which selects SSL23,
+but disallows actual use of SSL2.
+Version 1.16 removes installing tests system-wide (which fixes the
+"permission denied" error when installing in virtualenvs), adds
+``/usr/lib/i386-linux-gnu`` and ``/usr/lib/x86_64-linux-gnu`` to the
+search path (which fixes compilation on ubuntu 12.04) and stopped using
+``SSLv2_method`` if it's not present. Many thanks to `Denis Bilenko`_
+for providing those fixes through his temporary sslfix_ fork.
+The package is now maintained (bugfix only) by PyPA_.
+Authorship: A cast of dozens over the years have written the Python
+SSL support, including Marc-Alan Lemburg, Robin Dunn, GvR, Kalle
+Svensson, Skip Montanaro, Mark Hammond, Martin von Loewis, Jeremy
+Hylton, Andrew Kuchling, Georg Brandl, Bill Janssen, Chris Stawarz,
+Neal Norwitz, and many others. Thanks to Paul Moore, David Bolen and
+Mark Hammond for help with the Windows side of the house. And it's
+all based on OpenSSL, which has its own cast of dozens!
+
+%prep
+%autosetup -n ssl-1.16
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-ssl -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 1.16-1
+- Package Spec generated