summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-bcrypt_4.1.3.bb
diff options
context:
space:
mode:
authorTim Orling <tim.orling@konsulko.com>2024-05-22 14:20:00 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-05-28 09:38:24 +0100
commit992659911b46e9b0f93733630c5883e0e60f8dc4 (patch)
treed6ec3097d713c169c591ee66c140201370c8cdb1 /meta/recipes-devtools/python/python3-bcrypt_4.1.3.bb
parent7a28f7d717dba2b5ce604248e40bc7b328cafc60 (diff)
downloadpoky-992659911b46e9b0f93733630c5883e0e60f8dc4.tar.gz
python3-bcrypt: upgrade 4.1.2 -> 4.1.3
https://github.com/pyca/bcrypt/compare/4.1.2...4.1.3 Upstream release notes: Bump Rust dependency versions * Drop 0001-Bump-pyo3-from-0.20.0-to-0.20.3-in-src-_bcrypt-746.patch -- merged * Refresh -crates.inc (From OE-Core rev: d2404135fd263947bcfd448657d3d0312e12122a) 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-bcrypt_4.1.3.bb')
-rw-r--r--meta/recipes-devtools/python/python3-bcrypt_4.1.3.bb35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-bcrypt_4.1.3.bb b/meta/recipes-devtools/python/python3-bcrypt_4.1.3.bb
new file mode 100644
index 0000000000..deb5cbdee3
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-bcrypt_4.1.3.bb
@@ -0,0 +1,35 @@
1SUMMARY = "Modern password hashing for your software and your servers."
2LICENSE = "Apache-2.0"
3LIC_FILES_CHKSUM = "file://LICENSE;md5=8f7bb094c7232b058c7e9f2e431f389c"
4HOMEPAGE = "https://pypi.org/project/bcrypt/"
5
6DEPENDS += "python3-cffi-native"
7LDFLAGS:append = "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', ' -fuse-ld=bfd', '', d)}"
8
9SRC_URI[sha256sum] = "2ee15dd749f5952fe3f0430d0ff6b74082e159c50332a1413d51b5689cf06623"
10
11inherit pypi python_setuptools3_rust ptest-cargo cargo-update-recipe-crates
12
13SRC_URI += " \
14 file://run-ptest \
15"
16
17CARGO_SRC_DIR = "src/_bcrypt"
18
19require ${BPN}-crates.inc
20
21RDEPENDS:${PN}-ptest += " \
22 python3-pytest \
23 python3-unittest-automake-output \
24"
25
26do_install_ptest() {
27 install -d ${D}${PTEST_PATH}/tests
28 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
29}
30
31RDEPENDS:${PN}:class-target += "\
32 python3-cffi \
33 python3-ctypes \
34 python3-shell \
35"