From e102cccecf76806c3941942931dd13486ba8a77e Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Tue, 20 Jan 2026 14:03:29 +0200 Subject: python3-pynacl: Upgrade 1.5.0 -> 1.6.2 Upgrade to release 1.6.2: - Updated libsodium to 1.0.20-stable (2025-12-31 build) to resolve CVE-2025-69277. From 1.6.1: - The MAKE environment variable can now be used to specify the make binary that should be used in the build process. From 1.6.0: - BACKWARDS INCOMPATIBLE: Removed support for Python 3.6 and 3.7. - Added support for the low level AEAD AES bindings. - Added support for crypto_core_ed25519_from_uniform. - Update libsodium to 1.0.20-stable (2025-08-27 build). - Added support for free-threaded Python 3.14. - Added support for Windows on ARM wheels. Signed-off-by: Leon Anavi Signed-off-by: Khem Raj --- .../0001-Build-bindings-reproducibly.patch | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-pynacl/0001-Build-bindings-reproducibly.patch (limited to 'meta-python/recipes-devtools/python/python3-pynacl') diff --git a/meta-python/recipes-devtools/python/python3-pynacl/0001-Build-bindings-reproducibly.patch b/meta-python/recipes-devtools/python/python3-pynacl/0001-Build-bindings-reproducibly.patch deleted file mode 100644 index 3e7480b485..0000000000 --- a/meta-python/recipes-devtools/python/python3-pynacl/0001-Build-bindings-reproducibly.patch +++ /dev/null @@ -1,39 +0,0 @@ -From eccc9ea5eef13ee353de610af36fb7759b70e2e4 Mon Sep 17 00:00:00 2001 -From: Colin Watson -Date: Mon, 26 Aug 2024 18:14:33 +0100 -Subject: [PATCH] Build bindings reproducibly - -`glob` output isn't guaranteed to be in any particular order, so -`_sodium.*.so` wasn't always reproducible. - -Upstream-Status: Backport [https://github.com/pyca/pynacl/pull/836] -Signed-off-by: Khem Raj ---- - src/bindings/build.py | 12 ++++++++---- - 1 file changed, 8 insertions(+), 4 deletions(-) - -diff --git a/src/bindings/build.py b/src/bindings/build.py -index 9634237..777237b 100644 ---- a/src/bindings/build.py -+++ b/src/bindings/build.py -@@ -22,12 +22,16 @@ from cffi import FFI - __all__ = ["ffi"] - - --HEADERS = glob.glob( -- os.path.join(os.path.abspath(os.path.dirname(__file__)), "*.h") -+HEADERS = sorted( -+ glob.glob(os.path.join(os.path.abspath(os.path.dirname(__file__)), "*.h")) - ) - --MINIMAL_HEADERS = glob.glob( -- os.path.join(os.path.abspath(os.path.dirname(__file__)), "minimal", "*.h") -+MINIMAL_HEADERS = sorted( -+ glob.glob( -+ os.path.join( -+ os.path.abspath(os.path.dirname(__file__)), "minimal", "*.h" -+ ) -+ ) - ) - - -- cgit v1.2.3-54-g00ecf