diff options
| author | Tim Orling <tim.orling@konsulko.com> | 2024-02-28 08:25:31 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-02-29 10:26:13 +0000 |
| commit | af7d65adfbe0bae4eecac00caf5b73f0e790d0f5 (patch) | |
| tree | fee5d94d33959d410785164e7cafb8f8fb7500f6 /meta/recipes-devtools/python/python3-cryptography_42.0.5.bb | |
| parent | eb11e03c8175dd71b69aaf6b8fd81d2bb0df18d8 (diff) | |
| download | poky-af7d65adfbe0bae4eecac00caf5b73f0e790d0f5.tar.gz | |
python3-cryptography{-vectors}: upgrade to 42.0.5
* Includes an upgrade to pyo3 from 0.20.0 to 0.20.3 which fixes ppc64
* Refresh -crates.inc
https://cryptography.io/en/latest/changelog/#v42-0-5
https://cryptography.io/en/latest/changelog/#v42-0-4
https://cryptography.io/en/latest/changelog/#v42-0-3
42.0.5 - 2024-02-23
* Limit the number of name constraint checks that will be performed in
X.509 path validation to protect against denial of service attacks.
* Upgrade pyo3 version, which fixes building on PowerPC.
42.0.4 - 2024-02-20
* Fixed a null-pointer-dereference and segfault that could occur when
creating a PKCS#12 bundle. Credit to Alexander-Programming for
reporting the issue. CVE-2024-26130
* Fixed ASN.1 encoding for PKCS7/SMIME signed messages. The fields
SMIMECapabilities and SignatureAlgorithmIdentifier should now be
correctly encoded according to the definitions in RFC 2633 RFC 3370.
42.0.3 - 2024-02-15
* Fixed an initialization issue that caused key loading failures for
some users.
CVE: CVE-2024-26130
https://nvd.nist.gov/vuln/detail/CVE-2024-26130
(From OE-Core rev: 83dad4a93ff81c6c1e048443e0827d825670158b)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-cryptography_42.0.5.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-cryptography_42.0.5.bb | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-cryptography_42.0.5.bb b/meta/recipes-devtools/python/python3-cryptography_42.0.5.bb new file mode 100644 index 0000000000..2bcb5717e4 --- /dev/null +++ b/meta/recipes-devtools/python/python3-cryptography_42.0.5.bb | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | SUMMARY = "Provides cryptographic recipes and primitives to python developers" | ||
| 2 | HOMEPAGE = "https://cryptography.io/" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "Apache-2.0 | BSD-3-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8c3617db4fb6fae01f1d253ab91511e4 \ | ||
| 6 | file://LICENSE.APACHE;md5=4e168cce331e5c827d4c2b68a6200e1b \ | ||
| 7 | file://LICENSE.BSD;md5=5ae30ba4123bc4f2fa49aa0b0dce887b \ | ||
| 8 | " | ||
| 9 | LDSHARED += "-pthread" | ||
| 10 | |||
| 11 | SRC_URI[sha256sum] = "6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1" | ||
| 12 | |||
| 13 | SRC_URI += "file://0001-pyproject.toml-remove-benchmark-disable-option.patch \ | ||
| 14 | file://check-memfree.py \ | ||
| 15 | file://run-ptest \ | ||
| 16 | " | ||
| 17 | |||
| 18 | require ${BPN}-crates.inc | ||
| 19 | |||
| 20 | inherit pypi python_setuptools3_rust cargo-update-recipe-crates pkgconfig | ||
| 21 | |||
| 22 | DEPENDS += " \ | ||
| 23 | python3-cffi-native \ | ||
| 24 | " | ||
| 25 | |||
| 26 | RDEPENDS:${PN} += " \ | ||
| 27 | python3-cffi \ | ||
| 28 | " | ||
| 29 | |||
| 30 | RDEPENDS:${PN}:append:class-target = " \ | ||
| 31 | python3-numbers \ | ||
| 32 | python3-threading \ | ||
| 33 | " | ||
| 34 | |||
| 35 | RDEPENDS:${PN}-ptest += " \ | ||
| 36 | python3-bcrypt \ | ||
| 37 | python3-cryptography-vectors (= ${PV}) \ | ||
| 38 | python3-hypothesis \ | ||
| 39 | python3-iso8601 \ | ||
| 40 | python3-mmap \ | ||
| 41 | python3-pretend \ | ||
| 42 | python3-psutil \ | ||
| 43 | python3-pytest \ | ||
| 44 | python3-unittest-automake-output \ | ||
| 45 | python3-pytest-subtests \ | ||
| 46 | python3-pytz \ | ||
| 47 | " | ||
| 48 | |||
| 49 | inherit ptest | ||
| 50 | |||
| 51 | do_install_ptest() { | ||
| 52 | install -D ${WORKDIR}/check-memfree.py ${D}${PTEST_PATH}/ | ||
| 53 | install -d ${D}${PTEST_PATH}/tests | ||
| 54 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 55 | # remove test_x509.py as it needs benchmark and we don't | ||
| 56 | # want to introduce the benchmark dependency | ||
| 57 | rm -rf ${D}${PTEST_PATH}/tests/bench/test_x509.py | ||
| 58 | install -d ${D}${PTEST_PATH}/tests/hazmat | ||
| 59 | cp -rf ${S}/tests/hazmat/* ${D}${PTEST_PATH}/tests/hazmat/ | ||
| 60 | cp -r ${S}/pyproject.toml ${D}${PTEST_PATH}/ | ||
| 61 | } | ||
| 62 | |||
| 63 | FILES:${PN}-ptest += " \ | ||
| 64 | ${PTEST_PATH}/check-memfree.py \ | ||
| 65 | " | ||
| 66 | FILES:${PN}-dbg += " \ | ||
| 67 | ${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/hazmat/bindings/.debug \ | ||
| 68 | " | ||
| 69 | |||
| 70 | BBCLASSEXTEND = "native nativesdk" | ||
