summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-bcrypt_4.0.1.bb
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2023-12-04 17:08:54 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-12-06 22:55:49 +0000
commit37076ad1e1f8793d9b58a0b4ae95152e8d10703a (patch)
treef6d2c91c04179a9951e4a0ecf9365a96ab3a09ff /meta/recipes-devtools/python/python3-bcrypt_4.0.1.bb
parenta02279663f911ecd64c0802bb7d21cc743e0fd4e (diff)
downloadpoky-37076ad1e1f8793d9b58a0b4ae95152e8d10703a.tar.gz
python3-bcrypt: upgrade 4.0.1 -> 4.1.1
* Refresh -crates.inc https://github.com/pyca/bcrypt/blob/4.1.1/README.rst#changelog 4.1.1 * Fixed the type signature on the kdf method. 4.1.0 * Dropped support for Python 3.6. * Bumped MSRV to 1.64. (Note: Rust 1.63 can be used by setting the BCRYPT_ALLOW_RUST_163 environment variable) (From OE-Core rev: 9851e8a4b7f138cd8346eca3cdc831b12ee9d9e2) 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.0.1.bb')
-rw-r--r--meta/recipes-devtools/python/python3-bcrypt_4.0.1.bb36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-devtools/python/python3-bcrypt_4.0.1.bb b/meta/recipes-devtools/python/python3-bcrypt_4.0.1.bb
deleted file mode 100644
index d8377de96c..0000000000
--- a/meta/recipes-devtools/python/python3-bcrypt_4.0.1.bb
+++ /dev/null
@@ -1,36 +0,0 @@
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 += "${PYTHON_PN}-cffi-native"
7LDFLAGS:append = "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', ' -fuse-ld=bfd', '', d)}"
8
9SRC_URI[sha256sum] = "27d375903ac8261cfe4047f6709d16f7d18d39b1ec92aaf72af989552a650ebd"
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 ${PYTHON_PN}-pytest \
23 ${PYTHON_PN}-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 ${PYTHON_PN}-cffi \
33 ${PYTHON_PN}-ctypes \
34 ${PYTHON_PN}-shell \
35 ${PYTHON_PN}-six \
36"