summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-bcrypt_4.3.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-03-04 17:09:03 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-06 11:16:47 +0000
commit01588e832a0a6773b39b0bd81cbe6fa3846a5bcc (patch)
treeae73a1afc73081416a210e2d03de965b80616b21 /meta/recipes-devtools/python/python3-bcrypt_4.3.0.bb
parent47126b32a74abe15082c124beeeb19547845e72c (diff)
downloadpoky-01588e832a0a6773b39b0bd81cbe6fa3846a5bcc.tar.gz
python3-bcrypt: upgrade 4.2.1 -> 4.3.0
Changelog: ============ - Dropped support for Python 3.7. - We now support free-threaded Python 3.13. - We now support PyPy 3.11. - We now publish wheels for free-threaded Python 3.13, for PyPy 3.11 on manylinux, and for ARMv7l on manylinux. (From OE-Core rev: 691453d3eefbc310ec91a02b0a51cfcdd635e292) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-bcrypt_4.3.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-bcrypt_4.3.0.bb21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-bcrypt_4.3.0.bb b/meta/recipes-devtools/python/python3-bcrypt_4.3.0.bb
new file mode 100644
index 0000000000..931aae4310
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-bcrypt_4.3.0.bb
@@ -0,0 +1,21 @@
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 += "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', '-fuse-ld=bfd', '', d)}"
8
9SRC_URI[sha256sum] = "3a3fd2204178b6d2adcf09cb4f6426ffef54762577a7c9b54c159008cb288c18"
10
11inherit pypi python_setuptools3_rust cargo-update-recipe-crates ptest-python-pytest
12
13CARGO_SRC_DIR = "src/_bcrypt"
14
15require ${BPN}-crates.inc
16
17RDEPENDS:${PN}:class-target += "\
18 python3-cffi \
19 python3-ctypes \
20 python3-shell \
21"