mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
(From OE-Core rev: 5d02d9bde0805b5782db36a06c8c4ac5e4839662) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
884 B
BlitzBasic
36 lines
884 B
BlitzBasic
SUMMARY = "Modern password hashing for your software and your servers."
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=8f7bb094c7232b058c7e9f2e431f389c"
|
|
HOMEPAGE = "https://pypi.org/project/bcrypt/"
|
|
|
|
DEPENDS += "python3-cffi-native"
|
|
LDFLAGS += "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', '-fuse-ld=bfd', '', d)}"
|
|
|
|
SRC_URI[sha256sum] = "cf69eaf5185fd58f268f805b505ce31f9b9fc2d64b376642164e9244540c1221"
|
|
|
|
inherit pypi python_setuptools3_rust ptest-cargo cargo-update-recipe-crates
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
CARGO_SRC_DIR = "src/_bcrypt"
|
|
|
|
require ${BPN}-crates.inc
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
RDEPENDS:${PN}:class-target += "\
|
|
python3-cffi \
|
|
python3-ctypes \
|
|
python3-shell \
|
|
"
|