summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-cryptography_41.0.1.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-06-25 23:22:27 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-27 16:23:40 +0100
commit3ecfadb08aadc524643ed32f330d70d008dd57e8 (patch)
treee9c3c5578e71d15bde9d9824e729321088220404 /meta/recipes-devtools/python/python3-cryptography_41.0.1.bb
parentf01cd7aeaf18a89afe9670a0ff0a8a0d46c02131 (diff)
downloadpoky-3ecfadb08aadc524643ed32f330d70d008dd57e8.tar.gz
python3-cryptography: update 39.0.2 -> 41.0.1
Drop 0002-Cargo.toml-edition-2018-2021.patch (issue fixed upstream) License-Update: PSF licensed code removed as of https://github.com/pyca/cryptography/commit/5e6476a4c6e094926a983dcf5cbe9488c30aeb53 (From OE-Core rev: 5c7ea0531bd099006c258b50c7b1747182123ae0) Signed-off-by: Alexander Kanavin <alex@linutronix.de> 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.1.bb')
-rw-r--r--meta/recipes-devtools/python/python3-cryptography_41.0.1.bb70
1 files changed, 70 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-cryptography_41.0.1.bb b/meta/recipes-devtools/python/python3-cryptography_41.0.1.bb
new file mode 100644
index 0000000000..fc4f70246b
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-cryptography_41.0.1.bb
@@ -0,0 +1,70 @@
1SUMMARY = "Provides cryptographic recipes and primitives to python developers"
2HOMEPAGE = "https://cryptography.io/"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0 | BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=8c3617db4fb6fae01f1d253ab91511e4 \
6 file://LICENSE.APACHE;md5=4e168cce331e5c827d4c2b68a6200e1b \
7 file://LICENSE.BSD;md5=5ae30ba4123bc4f2fa49aa0b0dce887b \
8 "
9LDSHARED += "-pthread"
10
11SRC_URI[sha256sum] = "d34579085401d3f49762d2f7d6634d6b6c2ae1242202e860f4d26b046e3a1006"
12
13SRC_URI += "file://0001-pyproject.toml-remove-benchmark-disable-option.patch \
14 file://0001-cryptography-cffi-substitute-include-path-from-targe.patch \
15 file://check-memfree.py \
16 file://run-ptest \
17 "
18
19require ${BPN}-crates.inc
20
21inherit pypi python_setuptools3_rust cargo-update-recipe-crates pkgconfig
22
23DEPENDS += " \
24 ${PYTHON_PN}-cffi-native \
25"
26
27RDEPENDS:${PN} += " \
28 ${PYTHON_PN}-cffi \
29"
30
31RDEPENDS:${PN}:append:class-target = " \
32 ${PYTHON_PN}-numbers \
33 ${PYTHON_PN}-threading \
34"
35
36RDEPENDS:${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
49inherit ptest
50
51do_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
63FILES:${PN}-ptest += " \
64 ${PTEST_PATH}/check-memfree.py \
65"
66FILES:${PN}-dbg += " \
67 ${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/hazmat/bindings/.debug \
68"
69
70BBCLASSEXTEND = "native nativesdk"