mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Upgrade to release 2.4.133: - [attribute type] telfhash added. - [add_gitlab_user] new gitlab user fetch script to MISP object. - Bump object templates. - Bump changelog. - Bump version. - Bump test cases. - [type] updated. - Bump file obj version in tests. - [data] misp-objects updated. - Bump build system to poetry 1.1. - [type] new type added. - [add_github_user] add ssh keys of the user in the MISP object. - [add_github_user] more fields added from the GitHub API. - Bump deps, objects. - Add test for delete=True in get_event. - [add_github_user] add following to the MISP object. - Bump dependencies. - Pass a list to add_attributes. - Use MISPObject instead of GenericObjectGenerator. - [doc] add a reference to the license. - Add docstrings and extend conf.py for RTD. - Remove PyMISPExpanded from the docs. - Add comments to ELF, PE, and MachO object generators. - Improve error message, add comments, rename whitelist to allowedlist. - Remove SG search for search() func as this doesn't support SG searching, but the index does. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
22 lines
638 B
BlitzBasic
22 lines
638 B
BlitzBasic
DESCRIPTION = "Python API for MISP"
|
|
HOMEPAGE = "https://github.com/MISP/PyMISP"
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
|
|
|
|
SRC_URI[md5sum] = "00e258da18f59845687f58389a2e8e12"
|
|
SRC_URI[sha256sum] = "4a2a8a4da78c6321550522d5cf1575c095773d0867c0a4f5157a658f6e1994d5"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS_${PN} += " \
|
|
${PYTHON_PN}-dateutil \
|
|
${PYTHON_PN}-json \
|
|
${PYTHON_PN}-jsonschema \
|
|
${PYTHON_PN}-requests \
|
|
${PYTHON_PN}-six \
|
|
"
|
|
|
|
# Fixes: python3-pymisp requires /bin/bash, but no
|
|
# providers found in RDEPENDS_python3-pymisp? [file-rdep
|
|
RDEPENDS_${PN} += "bash"
|