14
0

Accepting request 1275322 from home:nkrapp:branches:devel:languages:python

- Update to 44.0.3
  * Fixed compilation when using LibreSSL 4.1.0.

OBS-URL: https://build.opensuse.org/request/show/1275322
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cryptography?expand=0&rev=247
This commit is contained in:
2025-05-12 06:29:50 +00:00
committed by Git OBS Bridge
parent 86212cb275
commit 8cc389ca91
6 changed files with 31 additions and 25 deletions

BIN
cryptography-44.0.2.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
cryptography-44.0.3.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,10 +1,10 @@
Index: cryptography-44.0.2/pyproject.toml Index: cryptography-44.0.3/pyproject.toml
=================================================================== ===================================================================
--- cryptography-44.0.2.orig/pyproject.toml --- cryptography-44.0.3.orig/pyproject.toml
+++ cryptography-44.0.2/pyproject.toml +++ cryptography-44.0.3/pyproject.toml
@@ -67,8 +67,6 @@ nox = ["nox >=2024.04.15", "nox[uv] >=20 @@ -67,8 +67,6 @@ nox = ["nox >=2024.04.15", "nox[uv] >=20
test = [ test = [
"cryptography_vectors==44.0.2", "cryptography_vectors==44.0.3",
"pytest >=7.4.0", "pytest >=7.4.0",
- "pytest-benchmark >=4.0", - "pytest-benchmark >=4.0",
- "pytest-cov >=2.10.1", - "pytest-cov >=2.10.1",
@@ -54,10 +54,10 @@ Index: cryptography-44.0.2/pyproject.toml
[tool.ruff] [tool.ruff]
line-length = 79 line-length = 79
Index: cryptography-44.0.2/tests/bench/test_aead.py Index: cryptography-44.0.3/tests/bench/test_aead.py
=================================================================== ===================================================================
--- cryptography-44.0.2.orig/tests/bench/test_aead.py --- cryptography-44.0.3.orig/tests/bench/test_aead.py
+++ cryptography-44.0.2/tests/bench/test_aead.py +++ cryptography-44.0.3/tests/bench/test_aead.py
@@ -26,84 +26,84 @@ def _aead_supported(cls): @@ -26,84 +26,84 @@ def _aead_supported(cls):
not _aead_supported(ChaCha20Poly1305), not _aead_supported(ChaCha20Poly1305),
reason="Requires OpenSSL with ChaCha20Poly1305 support", reason="Requires OpenSSL with ChaCha20Poly1305 support",
@@ -163,10 +163,10 @@ Index: cryptography-44.0.2/tests/bench/test_aead.py
ct = aes.encrypt(b"\x00" * 12, b"hello world plaintext", None) ct = aes.encrypt(b"\x00" * 12, b"hello world plaintext", None)
- benchmark(aes.decrypt, b"\x00" * 12, ct, None) - benchmark(aes.decrypt, b"\x00" * 12, ct, None)
+ aes.decrypt(b"\x00" * 12, ct, None) + aes.decrypt(b"\x00" * 12, ct, None)
Index: cryptography-44.0.2/tests/bench/test_ec_load.py Index: cryptography-44.0.3/tests/bench/test_ec_load.py
=================================================================== ===================================================================
--- cryptography-44.0.2.orig/tests/bench/test_ec_load.py --- cryptography-44.0.3.orig/tests/bench/test_ec_load.py
+++ cryptography-44.0.2/tests/bench/test_ec_load.py +++ cryptography-44.0.3/tests/bench/test_ec_load.py
@@ -5,9 +5,9 @@ @@ -5,9 +5,9 @@
from ..hazmat.primitives.fixtures_ec import EC_KEY_SECP256R1 from ..hazmat.primitives.fixtures_ec import EC_KEY_SECP256R1
@@ -181,10 +181,10 @@ Index: cryptography-44.0.2/tests/bench/test_ec_load.py
- benchmark(EC_KEY_SECP256R1.private_key) - benchmark(EC_KEY_SECP256R1.private_key)
+def test_load_ec_private_numbers(): +def test_load_ec_private_numbers():
+ EC_KEY_SECP256R1.private_key() + EC_KEY_SECP256R1.private_key()
Index: cryptography-44.0.2/tests/bench/test_hashes.py Index: cryptography-44.0.3/tests/bench/test_hashes.py
=================================================================== ===================================================================
--- cryptography-44.0.2.orig/tests/bench/test_hashes.py --- cryptography-44.0.3.orig/tests/bench/test_hashes.py
+++ cryptography-44.0.2/tests/bench/test_hashes.py +++ cryptography-44.0.3/tests/bench/test_hashes.py
@@ -5,10 +5,10 @@ @@ -5,10 +5,10 @@
from cryptography.hazmat.primitives import hashes from cryptography.hazmat.primitives import hashes
@@ -198,10 +198,10 @@ Index: cryptography-44.0.2/tests/bench/test_hashes.py
- benchmark(bench) - benchmark(bench)
+ bench() + bench()
Index: cryptography-44.0.2/tests/bench/test_hmac.py Index: cryptography-44.0.3/tests/bench/test_hmac.py
=================================================================== ===================================================================
--- cryptography-44.0.2.orig/tests/bench/test_hmac.py --- cryptography-44.0.3.orig/tests/bench/test_hmac.py
+++ cryptography-44.0.2/tests/bench/test_hmac.py +++ cryptography-44.0.3/tests/bench/test_hmac.py
@@ -5,10 +5,10 @@ @@ -5,10 +5,10 @@
from cryptography.hazmat.primitives import hashes, hmac from cryptography.hazmat.primitives import hashes, hmac
@@ -215,10 +215,10 @@ Index: cryptography-44.0.2/tests/bench/test_hmac.py
- benchmark(bench) - benchmark(bench)
+ bench() + bench()
Index: cryptography-44.0.2/tests/bench/test_x509.py Index: cryptography-44.0.3/tests/bench/test_x509.py
=================================================================== ===================================================================
--- cryptography-44.0.2.orig/tests/bench/test_x509.py --- cryptography-44.0.3.orig/tests/bench/test_x509.py
+++ cryptography-44.0.2/tests/bench/test_x509.py +++ cryptography-44.0.3/tests/bench/test_x509.py
@@ -13,40 +13,40 @@ from cryptography import x509 @@ -13,40 +13,40 @@ from cryptography import x509
from ..utils import load_vectors_from_file from ..utils import load_vectors_from_file

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed May 7 15:45:10 UTC 2025 - Nico Krapp <nico.krapp@suse.com>
- Update to 44.0.3
* Fixed compilation when using LibreSSL 4.1.0.
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Mar 23 21:40:26 UTC 2025 - Dirk Müller <dmueller@suse.com> Sun Mar 23 21:40:26 UTC 2025 - Dirk Müller <dmueller@suse.com>

View File

@@ -28,7 +28,7 @@
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: python-cryptography%{psuffix} Name: python-cryptography%{psuffix}
# ALWAYS KEEP IN SYNC WITH python-cryptography-vectors! # ALWAYS KEEP IN SYNC WITH python-cryptography-vectors!
Version: 44.0.2 Version: 44.0.3
Release: 0 Release: 0
Summary: Python library which exposes cryptographic recipes and primitives Summary: Python library which exposes cryptographic recipes and primitives
License: Apache-2.0 OR BSD-3-Clause License: Apache-2.0 OR BSD-3-Clause

BIN
vendor.tar.zst (Stored with Git LFS)

Binary file not shown.