summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-cryptography_42.0.7.bb
diff options
context:
space:
mode:
authorTim Orling <tim.orling@konsulko.com>2024-05-21 09:24:17 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-05-23 11:26:39 +0100
commitb31f7fd4aeafb2b4744dbec760ea5a86edd2697a (patch)
treeb94b8d350a7b1e373e08011c1967f765f9cad78d /meta/recipes-devtools/python/python3-cryptography_42.0.7.bb
parentd80224d83bc285aa70346fad7a78766f1ec05e00 (diff)
downloadpoky-b31f7fd4aeafb2b4744dbec760ea5a86edd2697a.tar.gz
python3-cryptography: upgrade 42.0.5 -> 42.0.7
Also upgrade python3-cryptography-vectors Refresh python3-cryptography-crates.inc 42.0.7 - 2024-05-06 Restored Windows 7 compatibility for our pre-built wheels. Note that we do not test on Windows 7 and wheels for our next release will not support it. Microsoft no longer provides support for Windows 7 and users are encouraged to upgrade. 42.0.6 - 2024-05-04 Fixed compilation when using LibreSSL 3.9.1. https://cryptography.io/en/latest/changelog/#v42-0-7 https://cryptography.io/en/latest/changelog/#v42-0-6 https://github.com/pyca/cryptography/compare/42.0.5...42.0.7 (From OE-Core rev: e4b16965cea57f72554c2e71ec07091afeeec9d8) 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.7.bb')
-rw-r--r--meta/recipes-devtools/python/python3-cryptography_42.0.7.bb67
1 files changed, 67 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-cryptography_42.0.7.bb b/meta/recipes-devtools/python/python3-cryptography_42.0.7.bb
new file mode 100644
index 0000000000..5964400a04
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-cryptography_42.0.7.bb
@@ -0,0 +1,67 @@
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] = "ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2"
12
13SRC_URI += "file://0001-pyproject.toml-remove-benchmark-disable-option.patch \
14 file://check-memfree.py \
15 file://run-ptest \
16 "
17
18require ${BPN}-crates.inc
19
20inherit pypi python_setuptools3_rust cargo-update-recipe-crates pkgconfig
21
22DEPENDS += " \
23 python3-cffi-native \
24"
25
26RDEPENDS:${PN} += " \
27 python3-cffi \
28"
29
30RDEPENDS:${PN}:append:class-target = " \
31 python3-numbers \
32 python3-threading \
33"
34
35RDEPENDS:${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
49inherit ptest
50
51do_install_ptest() {
52 install -D ${UNPACKDIR}/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}-dbg += " \
64 ${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/hazmat/bindings/.debug \
65"
66
67BBCLASSEXTEND = "native nativesdk"