14
0

- update to 22.4.5:

Added
  * Make openvas-scanner option visible for the client (#784) (#791)
  * Set openvas and nmap caps at container start, with some compose
    installations docker forgets it.
  * documentation about new features bd705d3
  * documentation and examples for credentials 5b6b668
  * description of table_driven_lsc to OSPD_PARAMS ecdb67c
  * log info for VT update (#619) fc3b80c
  * possibility to handle redis tcp connections configured in openvas 29373b7
  * package_unreliable qod_type to nvti_cache 61a3a35
  * use qod_type from advisory when available 47927c7
  * possibility to disable advisories hashsum verification 614a2ec
  * gpg verification for notus (#557) d73d03d
  * documentation for notus-scanner (#537) 9508f09
  * Notus integration (#510) 2f39d2a
  * notus advisories in get_vts (#518) f78c64a
  * merge ospd into ospd-openvas 44cc135
  * smoke test for get.vts (#513) b3c0b6b
  Changed
  * version of the OSP documentation 76d5586
  * Allow openvas access raw sockets and network within container 0eefae9
  * Extend the <get_version/> cmd and add <check_feed/> cmd (#558) c810de8
  * Use poetry as build tool for pip installations #559 f3e42c2
  * Handle script timeout as script preferences instead of server preference (#509) af97d06
  Bug Fixes
  * using empty dict as scanner-params instead of returning 404 7850833
  * within python 3.9 and higher notus results are missing b42c758
  * set to cvss2 when cvss3 is either not present or NULL 2963af4
  * check for param to be present in calculate_vts_collection_hash 358456d

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ospd-openvas?expand=0&rev=5
This commit is contained in:
2023-01-31 23:13:52 +00:00
committed by Git OBS Bridge
parent ab9729bc36
commit b30c2f534d
6 changed files with 95 additions and 34 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-ospd-openvas
#
# Copyright (c) 2020 SUSE LLC
# 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
@@ -19,30 +19,42 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-ospd-openvas
Version: 20.8.0
Version: 22.4.5
Release: 0
Summary: An OSP server implementation
License: AGPL-3.0-or-later
URL: https://github.com/greenbone/ospd-openvas
Source: https://github.com/greenbone/ospd-openvas/archive/v%{version}.tar.gz#/ospd-openvas-%{version}.tar.gz
Source98: https://github.com/greenbone/ospd-openvas/releases/download/v%{version}/ospd-openvas-%{version}.tar.gz.sig
Source98: https://github.com/greenbone/ospd-openvas/releases/download/v%{version}/ospd-openvas-%{version}.tar.gz.asc
Source99: https://www.greenbone.net/GBCommunitySigningKey.asc#/ospd-openvas.keyring
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module defusedxml >= 0.6}
BuildRequires: %{python_module gnupg >= 0.4.8}
BuildRequires: %{python_module lxml >= 4.5.2}
BuildRequires: %{python_module paho-mqtt >= 1.5.1}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module poetry}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-ospd >= 2.0.0
Requires: python-defusedxml >= 0.6
Requires: python-gnupg >= 0.4.8
Requires: python-lxml >= 4.5.2
Requires: python-packaging
Requires: python-psutil
Requires: python-redis >= 3.0.1
Provides: ospd-openvas
Requires: python-paho-mqtt >= 1.5.1
Requires: python-psutil >= 5.5.1
Requires: python-redis >= 3.5.3
Provides: ospd-openvas = %{version}
Provides: python-ospd = %{version}
Obsoletes. python-ospd < %{version}
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module Deprecated}
BuildRequires: %{python_module ospd >= 2.0.0}
BuildRequires: %{python_module packaging}
BuildRequires: %{python_module psutil}
BuildRequires: %{python_module Deprecated >= 1.2.10}
BuildRequires: %{python_module packaging >= 20.4}
BuildRequires: %{python_module psutil >= 5.5.1}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module redis >= 3.0.1}
BuildRequires: %{python_module redis >= 3.5.3}
# /SECTION
%python_subpackages
@@ -53,10 +65,10 @@ An OSP server implementation to allow GVM to remotely control OpenVAS.
%setup -q -n ospd-openvas-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/ospd-openvas
%python_expand %fdupes %{buildroot}%{$python_sitelib}
@@ -73,6 +85,7 @@ An OSP server implementation to allow GVM to remotely control OpenVAS.
%license COPYING
%doc CHANGELOG.md README.md
%python_alternative %{_bindir}/ospd-openvas
%{python_sitelib}/ospd
%{python_sitelib}/ospd_openvas*
%changelog