mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Comparing changes since 25.0.0: https://github.com/pyca/pyopenssl/compare/25.0.0...25.1.0 Changelog: https://www.pyopenssl.org/en/latest/changelog.html 25.1.0 (2025-05-17): Backward-incompatible changes: * None Deprecations: * Attempting using any methods that mutate an OpenSSL.SSL.Context after it has been used to create an OpenSSL.SSL.Connection will emit a warning. In a future release, this will raise an exception. Changes: * cryptography maximum version has been increased to 45.0.x. (From OE-Core rev: f83f00c1a5bb17e89651c5b19ec0a65e61a1bde7) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
606 B
BlitzBasic
22 lines
606 B
BlitzBasic
SUMMARY = "Simple Python wrapper around the OpenSSL library"
|
|
HOMEPAGE = "https://pyopenssl.org/"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
|
|
|
|
DEPENDS += "openssl python3-cryptography"
|
|
|
|
SRC_URI[sha256sum] = "8d031884482e0c67ee92bf9a4d8cceb08d92aba7136432ffb0703c5280fc205b"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
PACKAGES =+ "${PN}-tests"
|
|
FILES:${PN}-tests = "${libdir}/${PYTHON_DIR}/site-packages/OpenSSL/test"
|
|
|
|
RDEPENDS:${PN}:class-target = " \
|
|
python3-cryptography \
|
|
python3-threading \
|
|
"
|
|
RDEPENDS:${PN}-tests = "${PN}"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|