diff options
| author | Tim Orling <ticotimo@gmail.com> | 2023-11-28 20:11:38 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-12-02 17:18:57 +0000 |
| commit | a5ee86fd998bb3eb3211933ac87daf584b009152 (patch) | |
| tree | a62b303af623097822db6ea0ae375431917cde62 /meta/recipes-devtools/python/python3-cryptography_41.0.7.bb | |
| parent | 076862d68e2dcda7a16a393fdcbd540a552cdbff (diff) | |
| download | poky-a5ee86fd998bb3eb3211933ac87daf584b009152.tar.gz | |
python3-cryptography{-vectors}: 41.0.5 -> 41.0.7
https://github.com/pyca/cryptography/compare/41.0.5...41.0.7
https://cryptography.io/en/latest/changelog/#v41-0-7
https://cryptography.io/en/latest/changelog/#v41-0-6
41.0.7 - 2023-11-27
Fixed compilation when using LibreSSL 3.8.2.
41.0.6 - 2023-11-27
Fixed a null-pointer-dereference and segfault that could occur when loading
certificates from a PKCS#7 bundle. Credit to pkuzco for reporting the issue.
CVE: CVE-2023-49083
(From OE-Core rev: 25fba6dd44f64e1e476c2e537d4a20cdbdc7ed25)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-cryptography_41.0.7.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-cryptography_41.0.7.bb | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-cryptography_41.0.7.bb b/meta/recipes-devtools/python/python3-cryptography_41.0.7.bb new file mode 100644 index 0000000000..4585677440 --- /dev/null +++ b/meta/recipes-devtools/python/python3-cryptography_41.0.7.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] = "13f93ce9bea8016c253b34afc6bd6a75993e5c40672ed5405a9c832f0d4a00bc" | ||
| 12 | |||
| 13 | SRC_URI += "file://0001-pyproject.toml-remove-benchmark-disable-option.patch \ | ||
| 14 | file://0001-Fix-include-directory-when-cross-compiling-9129.patch \ | ||
| 15 | file://check-memfree.py \ | ||
| 16 | file://run-ptest \ | ||
| 17 | " | ||
| 18 | |||
| 19 | require ${BPN}-crates.inc | ||
| 20 | |||
| 21 | inherit pypi python_setuptools3_rust cargo-update-recipe-crates pkgconfig | ||
| 22 | |||
| 23 | DEPENDS += " \ | ||
| 24 | ${PYTHON_PN}-cffi-native \ | ||
| 25 | " | ||
| 26 | |||
| 27 | RDEPENDS:${PN} += " \ | ||
| 28 | ${PYTHON_PN}-cffi \ | ||
| 29 | " | ||
| 30 | |||
| 31 | RDEPENDS:${PN}:append:class-target = " \ | ||
| 32 | ${PYTHON_PN}-numbers \ | ||
| 33 | ${PYTHON_PN}-threading \ | ||
| 34 | " | ||
| 35 | |||
| 36 | RDEPENDS:${PN}-ptest += " \ | ||
| 37 | ${PYTHON_PN}-bcrypt \ | ||
| 38 | ${PYTHON_PN}-cryptography-vectors (= ${PV}) \ | ||
| 39 | ${PYTHON_PN}-hypothesis \ | ||
| 40 | ${PYTHON_PN}-iso8601 \ | ||
| 41 | ${PYTHON_PN}-pretend \ | ||
| 42 | ${PYTHON_PN}-psutil \ | ||
| 43 | ${PYTHON_PN}-pytest \ | ||
| 44 | ${PYTHON_PN}-unittest-automake-output \ | ||
| 45 | ${PYTHON_PN}-pytest-subtests \ | ||
| 46 | ${PYTHON_PN}-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" | ||
