diff options
| author | Martin Jansa <martin.jansa@gmail.com> | 2025-11-14 13:58:04 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-11-14 07:39:48 -0800 |
| commit | a78e6d21094eacf338ca8038c05fea24f19b2ddf (patch) | |
| tree | 4c62444552a8ff1b47150c8c41136ef21f8242f4 /meta-python/recipes-devtools/python/python3-checksec-py_0.7.5.bb | |
| parent | 38ea8a4617ad395b2addd24bd1f6b57a8242fa0b (diff) | |
| download | meta-openembedded-a78e6d21094eacf338ca8038c05fea24f19b2ddf.tar.gz | |
python3-checksec-py, python3-pylddwrap, python3-icontract: add recipes
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.
https://github.com/Wenzel/checksec.py/commit/976d530867756d1393189708aa98308b07b1f3b2
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>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-checksec-py_0.7.5.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-checksec-py_0.7.5.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-checksec-py_0.7.5.bb b/meta-python/recipes-devtools/python/python3-checksec-py_0.7.5.bb new file mode 100644 index 0000000000..8d8e54e227 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-checksec-py_0.7.5.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | SUMMARY = "Recipe to embedded the Python PiP Package checksec_py" | ||
| 2 | HOMEPAGE = "https://pypi.org/project/checksec_py" | ||
| 3 | LICENSE = "GPL-3.0-only" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=1ebbd3e34237af26da5dc08a4e440464" | ||
| 5 | |||
| 6 | PR = "r0" | ||
| 7 | |||
| 8 | inherit pypi python_poetry_core | ||
| 9 | PYPI_PACKAGE = "checksec_py" | ||
| 10 | SRC_URI[sha256sum] = "892854f95d17a76d8f45a5c0cc597b9f1bebced3fffb9c7205d0baaf5eace886" | ||
| 11 | |||
| 12 | SRC_URI += " \ | ||
| 13 | file://0001-main-Add-option-to-ignore-symlinks.patch \ | ||
| 14 | " | ||
| 15 | |||
| 16 | RDEPENDS:${PN} += " \ | ||
| 17 | python3-docopt \ | ||
| 18 | python3-lief \ | ||
| 19 | python3-pylddwrap \ | ||
| 20 | python3-rich \ | ||
| 21 | " | ||
| 22 | |||
| 23 | # python3-lief is not available for x86: | ||
| 24 | # https://github.com/lief-project/LIEF/commit/3def579f75965aa19c021d840a759bce2afc0a31#r152197203 | ||
| 25 | COMPATIBLE_HOST:x86 = "null" | ||
| 26 | |||
| 27 | BBCLASSEXTEND = "native nativesdk" | ||
