- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
40 lines
1.1 KiB
BlitzBasic
40 lines
1.1 KiB
BlitzBasic
SUMMARY = "Pure-Python RSA implementation"
|
|
SECTION = "devel/python"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=c403f6882d4f97a9cd927df987d55634"
|
|
|
|
SRC_URI[sha256sum] = "e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"
|
|
|
|
inherit pypi python_poetry_core update-alternatives
|
|
|
|
ALTERNATIVE:${PN} = "\
|
|
pyrsa-decrypt \
|
|
pyrsa-encrypt \
|
|
pyrsa-keygen \
|
|
pyrsa-priv2pub \
|
|
pyrsa-sign \
|
|
pyrsa-verify \
|
|
"
|
|
|
|
ALTERNATIVE_LINK_NAME[pyrsa-decrypt] = "${bindir}/pyrsa-decrypt"
|
|
ALTERNATIVE_LINK_NAME[pyrsa-encrypt] = "${bindir}/pyrsa-encrypt"
|
|
ALTERNATIVE_LINK_NAME[pyrsa-keygen] = "${bindir}/pyrsa-keygen"
|
|
ALTERNATIVE_LINK_NAME[pyrsa-priv2pub] = "${bindir}/pyrsa-priv2pub"
|
|
ALTERNATIVE_LINK_NAME[pyrsa-sign] = "${bindir}/pyrsa-sign"
|
|
ALTERNATIVE_LINK_NAME[pyrsa-verify] = "${bindir}/pyrsa-verify"
|
|
ALTERNATIVE_PRIORITY = "30"
|
|
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-compression \
|
|
python3-crypt \
|
|
python3-doctest \
|
|
python3-logging \
|
|
python3-math \
|
|
python3-multiprocessing \
|
|
python3-netclient \
|
|
python3-pickle \
|
|
"
|
|
|
|
RDEPENDS:${PN} += "python3-pyasn1"
|