summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pymisp_2.4.155.1.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2022-03-09 18:45:03 +0800
committerTrevor Gamblin <trevor.gamblin@windriver.com>2022-03-10 10:03:30 -0500
commitcbd06ffcb930fe5d66aaeeb68cca09598b0b5bf0 (patch)
tree28a989e39876586a4d5ca6d451be1d0673709d6a /meta-python/recipes-devtools/python/python3-pymisp_2.4.155.1.bb
parenta624f7ced27f789d9e9c62dde56771c02821c24b (diff)
downloadmeta-openembedded-cbd06ffcb930fe5d66aaeeb68cca09598b0b5bf0.tar.gz
python3-pymisp: upgrade 2.4.152 -> 2.4.155.1
Changelog: ========= Changes ------- - Bump required python version for doc. - Remove python 3.6 from metadata. - Re-bump changelog. - Bump version. - Bump changelog. - Bump misp-objects. - Bump deps. - Bump new minimal python version to 3.7. - Perl dependencies not longer required. - Simplify submodules checkout. - Use https for link to documentation. - Bump deps. - [misp-objects] updated to the latest version. - [FIPS] no clean way to support OpenSSL hashlib interface for FIPS. - [FIPS] falling back on older version of Python not having usedforsecurity. - [FIPS] in some cases, the `usedforsecurity` is not used. So fail if the FIPS compliance is required and then the `usedforsecurity` is disabled. - [feeds] FIPS: when MD5 hashes are generated for fast-lookup it's not for security. hashlib provides an option to tell if the hash is used for security or not. By default, it's set to True. For the feed cache generation, it's not. Then usedforsecurity=False - Bump deps. - Bump deps, objects. Fix ----- - Incorrect call when requesting a new API key. - Libfuzzy-dev is not longer required. - [mispevent] cannot type. - Make mypy happy. New ------ - Get_new_authkey for a user. - [dep] Use pydeep2 instead of pydeep. Other ------ - Create add_filetype_object_from_csv.py. - Add feed option for local tag exclusion #817. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pymisp_2.4.155.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-pymisp_2.4.155.1.bb26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.155.1.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.4.155.1.bb
new file mode 100644
index 0000000000..ef18671a0a
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.155.1.bb
@@ -0,0 +1,26 @@
1DESCRIPTION = "Python API for MISP"
2HOMEPAGE = "https://github.com/MISP/PyMISP"
3LICENSE = "BSD-2-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
5
6SRC_URI = "git://github.com/MISP/PyMISP.git;protocol=https;branch=main"
7SRCREV = "03dc22f9598e6caae81b0e40ce27bf3f17799f4e"
8S = "${WORKDIR}/git"
9
10inherit poetry_core
11
12PIP_INSTALL_PACKAGE = "pymisp"
13
14RDEPENDS:${PN} += " \
15 ${PYTHON_PN}-dateutil \
16 ${PYTHON_PN}-json \
17 ${PYTHON_PN}-jsonschema \
18 ${PYTHON_PN}-requests \
19 ${PYTHON_PN}-six \
20 ${PYTHON_PN}-deprecated \
21 ${PYTHON_PN}-wrapt \
22"
23
24# Fixes: python3-pymisp requires /bin/bash, but no
25# providers found in RDEPENDS:python3-pymisp? [file-rdep]
26RDEPENDS:${PN} += "bash"