mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-26 08:01:09 +00:00
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>
40 lines
894 B
BlitzBasic
40 lines
894 B
BlitzBasic
SUMMARY = "Python binding to the Networking and Cryptography (NaCl) library"
|
|
DESCRIPTION = "Python binding to the Networking and Cryptography (NaCl) library"
|
|
HOMEPAGE = "https://github.com/pyca/pynacl"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=8cc789b082b3d97e1ccc5261f8594d3f"
|
|
|
|
SRC_URI[sha256sum] = "018494d6d696ae03c7e656e5e74cdfd8ea1326962cc401bcf018f1ed8436811c"
|
|
|
|
PYPI_PACKAGE = "pynacl"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
DEPENDS += "\
|
|
python3-cffi-native \
|
|
libsodium \
|
|
"
|
|
|
|
do_compile:prepend() {
|
|
export SODIUM_INSTALL=system
|
|
}
|
|
|
|
do_install:prepend() {
|
|
export SODIUM_INSTALL=system
|
|
}
|
|
|
|
RDEPENDS:${PN} = "\
|
|
python3-six \
|
|
python3-cffi \
|
|
libsodium \
|
|
"
|
|
|
|
RPROVIDES:${PN} = "python3-nacl"
|
|
|
|
# in meta-virtualization layer
|
|
#
|
|
RCONFLICTS:${PN} = "python3-nacl"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|