diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2026-01-20 14:03:29 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-01-20 08:27:14 -0800 |
| commit | e102cccecf76806c3941942931dd13486ba8a77e (patch) | |
| tree | 25ef2ce39e4b01cff7efbb3aa1a9d966b323cf38 /meta-python/recipes-devtools | |
| parent | df2ac278120e9fdb04b62a044d391b91f52b62f1 (diff) | |
| download | meta-openembedded-e102cccecf76806c3941942931dd13486ba8a77e.tar.gz | |
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 <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pynacl/0001-Build-bindings-reproducibly.patch | 39 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pynacl_1.6.2.bb (renamed from meta-python/recipes-devtools/python/python3-pynacl_1.5.0.bb) | 5 |
2 files changed, 2 insertions, 42 deletions
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 @@ | |||
| 1 | From eccc9ea5eef13ee353de610af36fb7759b70e2e4 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Colin Watson <cjwatson@debian.org> | ||
| 3 | Date: Mon, 26 Aug 2024 18:14:33 +0100 | ||
| 4 | Subject: [PATCH] Build bindings reproducibly | ||
| 5 | |||
| 6 | `glob` output isn't guaranteed to be in any particular order, so | ||
| 7 | `_sodium.*.so` wasn't always reproducible. | ||
| 8 | |||
| 9 | Upstream-Status: Backport [https://github.com/pyca/pynacl/pull/836] | ||
| 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 11 | --- | ||
| 12 | src/bindings/build.py | 12 ++++++++---- | ||
| 13 | 1 file changed, 8 insertions(+), 4 deletions(-) | ||
| 14 | |||
| 15 | diff --git a/src/bindings/build.py b/src/bindings/build.py | ||
| 16 | index 9634237..777237b 100644 | ||
| 17 | --- a/src/bindings/build.py | ||
| 18 | +++ b/src/bindings/build.py | ||
| 19 | @@ -22,12 +22,16 @@ from cffi import FFI | ||
| 20 | __all__ = ["ffi"] | ||
| 21 | |||
| 22 | |||
| 23 | -HEADERS = glob.glob( | ||
| 24 | - os.path.join(os.path.abspath(os.path.dirname(__file__)), "*.h") | ||
| 25 | +HEADERS = sorted( | ||
| 26 | + glob.glob(os.path.join(os.path.abspath(os.path.dirname(__file__)), "*.h")) | ||
| 27 | ) | ||
| 28 | |||
| 29 | -MINIMAL_HEADERS = glob.glob( | ||
| 30 | - os.path.join(os.path.abspath(os.path.dirname(__file__)), "minimal", "*.h") | ||
| 31 | +MINIMAL_HEADERS = sorted( | ||
| 32 | + glob.glob( | ||
| 33 | + os.path.join( | ||
| 34 | + os.path.abspath(os.path.dirname(__file__)), "minimal", "*.h" | ||
| 35 | + ) | ||
| 36 | + ) | ||
| 37 | ) | ||
| 38 | |||
| 39 | |||
diff --git a/meta-python/recipes-devtools/python/python3-pynacl_1.5.0.bb b/meta-python/recipes-devtools/python/python3-pynacl_1.6.2.bb index 393066de9d..d72d2be2f1 100644 --- a/meta-python/recipes-devtools/python/python3-pynacl_1.5.0.bb +++ b/meta-python/recipes-devtools/python/python3-pynacl_1.6.2.bb | |||
| @@ -4,10 +4,9 @@ HOMEPAGE = "https://github.com/pyca/pynacl" | |||
| 4 | LICENSE = "Apache-2.0" | 4 | LICENSE = "Apache-2.0" |
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8cc789b082b3d97e1ccc5261f8594d3f" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8cc789b082b3d97e1ccc5261f8594d3f" |
| 6 | 6 | ||
| 7 | SRC_URI += "file://0001-Build-bindings-reproducibly.patch" | 7 | SRC_URI[sha256sum] = "018494d6d696ae03c7e656e5e74cdfd8ea1326962cc401bcf018f1ed8436811c" |
| 8 | SRC_URI[sha256sum] = "8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba" | ||
| 9 | 8 | ||
| 10 | PYPI_PACKAGE = "PyNaCl" | 9 | PYPI_PACKAGE = "pynacl" |
| 11 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | 10 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" |
| 12 | 11 | ||
| 13 | inherit pypi python_setuptools_build_meta | 12 | inherit pypi python_setuptools_build_meta |
