Compare commits
15 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 6f6ca05f71 | |||
| 4c05fed8fd | |||
| 49c4006481 | |||
| 611026faf3 | |||
| 4be264a494 | |||
| 9afe6aba76 | |||
| d56cd799f3 | |||
| 93ab05fa6b | |||
| fd12fac59a | |||
| 224834dea0 | |||
| c844e4f6cd | |||
| 30f9bb5c4d | |||
| cf1675bc9a | |||
| e8deb8131b | |||
| 9c891187c0 |
3
pyopenssl-25.1.0.tar.gz
Normal file
3
pyopenssl-25.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8d031884482e0c67ee92bf9a4d8cceb08d92aba7136432ffb0703c5280fc205b
|
||||
size 179937
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c981cb0a3fd84e8602d7afc209522773b94c1c2446a3c710a75b06fe1beae329
|
||||
size 184073
|
||||
@@ -1,22 +1,3 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 8 08:34:33 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Skip test_client_receives_servers_data failing with openssl 3.6.0
|
||||
and rewrite tests exclusion to be more atomic
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 29 19:11:03 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 25.3.0:
|
||||
* Maximum supported cryptography version is now 46.x.
|
||||
* The minimum cryptography version is now 45.0.7.
|
||||
* pyOpenSSL now sets SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER on
|
||||
connections by default, matching CPython's behavior.
|
||||
* Added OpenSSL.SSL.Context.clear_mode.
|
||||
* Added OpenSSL.SSL.Context.set_tls13_ciphersuites to set the
|
||||
allowed TLS 1.3 ciphers.
|
||||
* Added OpenSSL.SSL.Connection.set_info_callback
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jul 12 17:23:23 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-pyOpenSSL
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -26,7 +26,7 @@
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pyOpenSSL%{psuffix}
|
||||
Version: 25.3.0
|
||||
Version: 25.1.0
|
||||
Release: 0
|
||||
Summary: Python wrapper module around the OpenSSL library
|
||||
License: Apache-2.0
|
||||
@@ -42,7 +42,7 @@ BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-cffi
|
||||
Requires: (python-cryptography >= 45.0.7 with python-cryptography < 47)
|
||||
Requires: (python-cryptography >= 41.0.5 with python-cryptography < 46)
|
||||
%if %{python_version_nodots} < 313
|
||||
Requires: python-typing-extensions >= 4.9
|
||||
%endif
|
||||
@@ -51,7 +51,7 @@ Provides: pyopenssl = %{version}-%release
|
||||
%if %{without test}
|
||||
BuildArch: noarch
|
||||
%else
|
||||
BuildRequires: %{python_module cryptography >= 45.0.7 with %python-cryptography < 47}
|
||||
BuildRequires: %{python_module cryptography >= 41.0.5 with %python-cryptography < 46}
|
||||
BuildRequires: %{python_module pretend}
|
||||
BuildRequires: %{python_module pyOpenSSL >= %version}
|
||||
BuildRequires: %{python_module pytest >= 3.0.1}
|
||||
@@ -84,14 +84,12 @@ other things) a cffi-based interface to OpenSSL.
|
||||
|
||||
%check
|
||||
%if %{with test}
|
||||
SKIPPED_TESTS="network or test_set_tmp_ecdh"
|
||||
SKIPPED_TESTS="(network or test_set_tmp_ecdh)"
|
||||
%if %{__isa_bits} == 32
|
||||
SKIPPED_TESTS="$SKIPPED_TESTS or test_verify_with_time"
|
||||
SKIPPED_TESTS="(network or test_verify_with_time or test_set_tmp_ecdh)"
|
||||
%endif
|
||||
# failure with openssl 3.6.0 https://github.com/pyca/pyopenssl/issues/1455
|
||||
SKIPPED_TESTS="$SKIPPED_TESTS or test_client_receives_servers_data"
|
||||
export LC_ALL=en_US.UTF-8
|
||||
%pytest -k "not ($SKIPPED_TESTS)"
|
||||
%pytest -k "not $SKIPPED_TESTS"
|
||||
%endif
|
||||
|
||||
%if !%{with test}
|
||||
|
||||
Reference in New Issue
Block a user