mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-15 14:56:43 +01:00
they were sent for meta-security long time ago in 2021:
https://lists.yoctoproject.org/g/yocto/message/54470
but never merged there, now there are lief, docopt, rich, asttokens
already in meta-python and checksec-py depends on lief version, e.g.
976d530867
is needed to fixcompatibility with newer lief currently in meta-python
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
28 lines
765 B
BlitzBasic
28 lines
765 B
BlitzBasic
SUMMARY = "Recipe to embedded the Python PiP Package checksec_py"
|
|
HOMEPAGE = "https://pypi.org/project/checksec_py"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1ebbd3e34237af26da5dc08a4e440464"
|
|
|
|
PR = "r0"
|
|
|
|
inherit pypi python_poetry_core
|
|
PYPI_PACKAGE = "checksec_py"
|
|
SRC_URI[sha256sum] = "892854f95d17a76d8f45a5c0cc597b9f1bebced3fffb9c7205d0baaf5eace886"
|
|
|
|
SRC_URI += " \
|
|
file://0001-main-Add-option-to-ignore-symlinks.patch \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-docopt \
|
|
python3-lief \
|
|
python3-pylddwrap \
|
|
python3-rich \
|
|
"
|
|
|
|
# python3-lief is not available for x86:
|
|
# https://github.com/lief-project/LIEF/commit/3def579f75965aa19c021d840a759bce2afc0a31#r152197203
|
|
COMPATIBLE_HOST:x86 = "null"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|