From fcf7fd510866f3eb211ffddfd655b065b6f6af08e364fc6867a015279122df0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Wed, 19 Feb 2020 09:00:04 +0000 Subject: [PATCH 1/2] Accepting request 775308 from home:jayvdb:branches:devel:languages:python - Update to v19.1 * Removed deprecated aliases ContextType, ConnectionType, PKeyType, X509NameType, X509ReqType, X509Type, X509StoreType, CRLType, PKCS7Type, PKCS12Type, and NetscapeSPKIType. Use the classes without the ``Type`` suffix instead. * The minimum ``cryptography`` version is now 2.8 * Deprecated ``OpenSSL.SSL.Context.set_npn_advertise_callback, OpenSSL.SSL.Context.set_npn_select_callback, and OpenSSL.SSL.Connection.get_next_proto_negotiated ALPN should be used instead. * Support bytearray in SSL.Connection.send() by using cffi's from_buffer * The OpenSSL.SSL.Context.set_alpn_select_callback can return a new NO_OVERLAPPING_PROTOCOLS sentinel value to allow a TLS handshake to complete without an application protocol. OBS-URL: https://build.opensuse.org/request/show/775308 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyOpenSSL?expand=0&rev=69 --- pyOpenSSL-19.0.0.tar.gz | 3 --- pyOpenSSL-19.1.0.tar.gz | 3 +++ python-pyOpenSSL.changes | 17 +++++++++++++++++ python-pyOpenSSL.spec | 12 ++++++------ 4 files changed, 26 insertions(+), 9 deletions(-) delete mode 100644 pyOpenSSL-19.0.0.tar.gz create mode 100644 pyOpenSSL-19.1.0.tar.gz diff --git a/pyOpenSSL-19.0.0.tar.gz b/pyOpenSSL-19.0.0.tar.gz deleted file mode 100644 index ab5b2dc..0000000 --- a/pyOpenSSL-19.0.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:aeca66338f6de19d1aa46ed634c3b9ae519a64b458f8468aec688e7e3c20f200 -size 168551 diff --git a/pyOpenSSL-19.1.0.tar.gz b/pyOpenSSL-19.1.0.tar.gz new file mode 100644 index 0000000..7d74a81 --- /dev/null +++ b/pyOpenSSL-19.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a24494b2602aaf402be5c9e30a0b82d4a5c67528fe8fb475e3f3bc00dd69507 +size 160510 diff --git a/python-pyOpenSSL.changes b/python-pyOpenSSL.changes index b45236d..c791b88 100644 --- a/python-pyOpenSSL.changes +++ b/python-pyOpenSSL.changes @@ -1,3 +1,20 @@ +------------------------------------------------------------------- +Tue Feb 18 16:49:55 UTC 2020 - John Vandenberg + +- Update to v19.1 + * Removed deprecated aliases ContextType, ConnectionType, PKeyType, X509NameType, + X509ReqType, X509Type, X509StoreType, CRLType, PKCS7Type, PKCS12Type, and NetscapeSPKIType. + Use the classes without the ``Type`` suffix instead. + * The minimum ``cryptography`` version is now 2.8 + * Deprecated ``OpenSSL.SSL.Context.set_npn_advertise_callback, + OpenSSL.SSL.Context.set_npn_select_callback, and + OpenSSL.SSL.Connection.get_next_proto_negotiated + ALPN should be used instead. + * Support bytearray in SSL.Connection.send() by using cffi's from_buffer + * The OpenSSL.SSL.Context.set_alpn_select_callback can return a new + NO_OVERLAPPING_PROTOCOLS sentinel value to allow a TLS handshake + to complete without an application protocol. + ------------------------------------------------------------------- Thu Aug 22 12:02:59 UTC 2019 - Bernhard Wiedemann diff --git a/python-pyOpenSSL.spec b/python-pyOpenSSL.spec index a727e6a..8452be2 100644 --- a/python-pyOpenSSL.spec +++ b/python-pyOpenSSL.spec @@ -1,7 +1,7 @@ # # spec file for package python-pyOpenSSL # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 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 @@ -12,14 +12,14 @@ # 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/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define oldpython python Name: python-pyOpenSSL -Version: 19.0.0 +Version: 19.1.0 Release: 0 Summary: Python wrapper module around the OpenSSL library License: Apache-2.0 @@ -29,7 +29,7 @@ Source: https://files.pythonhosted.org/packages/source/p/pyOpenSSL/pyOpe Patch1: skip-networked-test.patch Patch2: fix-compilation-2020.patch BuildRequires: %{python_module cffi} -BuildRequires: %{python_module cryptography >= 2.3.0} +BuildRequires: %{python_module cryptography >= 2.8} BuildRequires: %{python_module flaky} BuildRequires: %{python_module pretend} BuildRequires: %{python_module pytest >= 3.0.1} @@ -40,7 +40,7 @@ BuildRequires: fdupes BuildRequires: openssl BuildRequires: python-rpm-macros Requires: python-cffi -Requires: python-cryptography >= 2.3.0 +Requires: python-cryptography >= 2.8 Requires: python-six >= 1.5.2 Provides: pyOpenSSL = %{version} BuildArch: noarch @@ -73,7 +73,7 @@ other things) a cffi-based interface to OpenSSL. %check export LC_ALL=en_US.UTF-8 %{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib} -py.test-%{$python_bin_suffix} -m "not network" +py.test-%{$python_bin_suffix} -vv -m "not network" } %files %{python_files} From e1c01f54a07a511328e6267a575ca2484ed9e574626fc48d38b1396574f49e06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Wed, 19 Feb 2020 09:02:47 +0000 Subject: [PATCH 2/2] OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyOpenSSL?expand=0&rev=70 --- python-pyOpenSSL.spec | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/python-pyOpenSSL.spec b/python-pyOpenSSL.spec index 8452be2..b4e720a 100644 --- a/python-pyOpenSSL.spec +++ b/python-pyOpenSSL.spec @@ -1,7 +1,7 @@ # # spec file for package python-pyOpenSSL # -# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,7 +23,6 @@ Version: 19.1.0 Release: 0 Summary: Python wrapper module around the OpenSSL library License: Apache-2.0 -Group: Development/Languages/Python URL: https://github.com/pyca/pyopenssl Source: https://files.pythonhosted.org/packages/source/p/pyOpenSSL/pyOpenSSL-%{version}.tar.gz Patch1: skip-networked-test.patch @@ -72,9 +71,7 @@ other things) a cffi-based interface to OpenSSL. %check export LC_ALL=en_US.UTF-8 -%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib} -py.test-%{$python_bin_suffix} -vv -m "not network" -} +%pytest -m 'not network' %files %{python_files} %license LICENSE