mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Python 2.7 support was dropped in version 3.2.0 and python3-six dependency was subsequently dropped in version 3.2.1 (From OE-Core rev: 214d41b73d235176123fd78143747845aa9c951e) Signed-off-by: Guðni Már Gilbert <gudnimar@noxmedical.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 50757cc95b3062f11a7455af33e7a7e74ea1d0f7) Signed-off-by: Steve Sakoman <steve@sakoman.com>
37 lines
963 B
BlitzBasic
37 lines
963 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:append = "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', ' -fuse-ld=bfd', '', d)}"
|
|
|
|
SRC_URI[sha256sum] = "33313a1200a3ae90b75587ceac502b048b840fc69e7f7a0905b5f87fac7a1258"
|
|
|
|
inherit pypi python_setuptools3_rust ptest-cargo cargo-update-recipe-crates
|
|
|
|
SRC_URI += " \
|
|
file://0001-Bump-pyo3-from-0.20.0-to-0.20.3-in-src-_bcrypt-746.patch \
|
|
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 \
|
|
"
|