forked from pool/python-pymisp
- update to version 2.4.170.1:
- Changes
- Disable fail fast in GHA.
- Fix
- Update lief code to v0.13.
- update to version 2.4.170:
- Changes
- Other
- Add: support breakOnDuplicate option for attributes:add()
- Update reportlab_generator.py.
- update to version 2.4.169.3:
- Changes
- Fix
- Invalid check if taxo is enabled.
- update to version 2.4.169.2:
- Changes
- Include event reports by default in feed.
- Fix
- Use proper parameter to trigger the request in search_galaxy_clusters.
- Use POST in search galaxy cluster.
- Other
- Rename include_event_reports kwarg to with_event_reports, in-line with
other kwarg naming.
- Add kwarg to allow the inclusion of event reports into to_feed(),
honour with_distribution and valid_distributions kwargs.
- update to version 2.4.169.1:
- Changes
- Add greynoise-ip object.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=107
127 lines
4.4 KiB
RPMSpec
127 lines
4.4 KiB
RPMSpec
#
|
|
# spec file for package python-pymisp
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define skip_python2 1
|
|
%define misp_objects_revision 45bb7539a0067e23b709d082c18dcba56c34bfce
|
|
Name: python-pymisp
|
|
Version: 2.4.170.2
|
|
Release: 0
|
|
Summary: Python API for MISP
|
|
License: BSD-2-Clause
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/MISP/PyMISP
|
|
Source0: https://github.com/MISP/PyMISP/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
# github tarball misses the misp-objects subproject data
|
|
Source1: https://github.com/MISP/misp-objects/archive/%{misp_objects_revision}.tar.gz#/misp-objects.tar.gz
|
|
# pypi tarball missing some files: https://github.com/MISP/PyMISP/issues/554
|
|
#Source: https://files.pythonhosted.org/packages/source/p/pymisp/pymisp-%%{version}.tar.gz
|
|
# packaging tool
|
|
Source2: update-misp-objects.sh
|
|
Source3: python-pymisp-doc-rpmlintrc
|
|
BuildRequires: %{python_module base >= 3.8}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-jsonschema >= 4.18.4
|
|
Recommends: python-oletools
|
|
Requires: python-Deprecated >= 1.2.14
|
|
Requires: python-python-dateutil >= 2.8.2
|
|
Requires: python-requests >= 2.31.0
|
|
Recommends: %{name}-doc
|
|
Recommends: python-extract-msg >= 0.28.0
|
|
Recommends: python-magic >= 0.4.27
|
|
Recommends: python-reportlab
|
|
Recommends: python3-beautifulsoup4 >= 4.12.2
|
|
Recommends: python3-publicsuffixlist
|
|
Recommends: python3-urllib3
|
|
Recommends: python3-validators >= 0.20.0
|
|
Suggests: python-pydeep
|
|
# Other optional requirements which are unavailable in Tumbleweed
|
|
#extract_msg = {version = "^0.42.1", optional = true}
|
|
#RTFDE = {version = "^0.1.0", optional = true}
|
|
#pydeep2 = {version = "^0.5.1", optional = true}
|
|
#lief = {version = "^0.13.2", optional = true}
|
|
#pyfaup = {version = "^1.2", optional = true}
|
|
BuildArch: noarch
|
|
# SECTION tests
|
|
BuildRequires: %{python_module Deprecated >= 1.2.14}
|
|
BuildRequires: %{python_module jsonschema >= 4.18.4}
|
|
BuildRequires: %{python_module oletools}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module python-dateutil >= 2.8.2}
|
|
BuildRequires: %{python_module python-magic >= 0.4.27}
|
|
BuildRequires: %{python_module reportlab}
|
|
BuildRequires: %{python_module requests >= 2.31.0}
|
|
BuildRequires: %{python_module requests-mock}
|
|
# /SECTION
|
|
# SECTION docs
|
|
BuildRequires: python3-CommonMark
|
|
BuildRequires: python3-Sphinx
|
|
BuildRequires: python3-recommonmark >= 0.7.1
|
|
BuildRequires: python3-sphinx-autodoc-typehints
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%package -n %{name}-doc
|
|
Summary: Examples and Documentation for %{name}
|
|
Group: Documentation/HTML
|
|
|
|
%description
|
|
PyMISP is a Python library to access MISP platforms via their REST API.
|
|
|
|
PyMISP allows you to fetch events, add or update events/attributes, add or update samples or search for attributes.
|
|
|
|
%description -n %{name}-doc
|
|
Examples and HTML documentation for %{name}.
|
|
|
|
%prep
|
|
%setup -q -n PyMISP-%{version}
|
|
%setup -T -D -b 1 -n PyMISP-%{version}
|
|
mv ../misp-objects-*/* pymisp/data/misp-objects/
|
|
find pymisp examples -name "*.py" -type f -exec sed -i '1s/^#!.*//' '{}' \+
|
|
find examples -name "*.py" -type f -exec chmod -x '{}' \+
|
|
|
|
%build
|
|
%python_build
|
|
pushd docs
|
|
export LANG=en_US.UTF-8
|
|
make %{?_smp_mflags} html
|
|
rm build/html/.buildinfo
|
|
popd
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
export LANG=en_US.UTF-8
|
|
# requires optional dependencies which we don't have (extract_msg, RTFDE etc.)
|
|
rm tests/test_emailobject.py
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%doc README.md
|
|
%license LICENSE
|
|
%{python_sitelib}/pymisp/
|
|
%{python_sitelib}/pymisp-%{version}*-info
|
|
|
|
%files -n %{name}-doc
|
|
%doc examples docs/build/html
|
|
|
|
%changelog
|