2024-04-18 15:00:38 +00:00
|
|
|
%global pymodule_name openscap_report
|
|
|
|
|
|
|
|
Name: openscap-report
|
|
|
|
Version: 0.2.9
|
2024-05-16 15:59:50 +00:00
|
|
|
Release: 2%{?dist}
|
2024-04-18 15:00:38 +00:00
|
|
|
Summary: A tool for generating human-readable reports from (SCAP) XCCDF and ARF results
|
|
|
|
|
|
|
|
# The entire source code is LGPL-2.1+ and GPL-2.0+ and MIT except schemas/ and assets/, which are Public Domain
|
|
|
|
License: LGPLv2+ and GPLv2+ and MIT and Public Domain
|
|
|
|
URL: https://github.com/OpenSCAP/%{name}
|
|
|
|
Source0: https://github.com/OpenSCAP/%{name}/releases/download/v%{version}/%{pymodule_name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-rpm-macros
|
|
|
|
BuildRequires: python3-sphinx
|
|
|
|
BuildRequires: python3-sphinx_rtd_theme
|
|
|
|
|
|
|
|
Provides: bundled(patternfly) = 4
|
|
|
|
|
|
|
|
Requires: python3-lxml
|
|
|
|
Requires: python3-jinja2
|
|
|
|
Recommends: redhat-display-fonts
|
|
|
|
Recommends: redhat-text-fonts
|
|
|
|
|
|
|
|
%{?python_enable_dependency_generator}
|
|
|
|
|
|
|
|
%global _description %{expand:
|
|
|
|
This package provides a command-line tool for generating
|
|
|
|
human-readable reports from SCAP XCCDF and ARF results.}
|
|
|
|
|
|
|
|
%description %_description
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%autosetup -p1 -n %{pymodule_name}-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%py3_build
|
|
|
|
sphinx-build -b man docs _build_docs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%py3_install
|
|
|
|
install -m 0644 -Dt %{buildroot}%{_mandir}/man1 _build_docs/oscap-report.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files -n %{name}
|
|
|
|
%{_mandir}/man1/oscap-report.*
|
|
|
|
%{_bindir}/oscap-report
|
|
|
|
%{python3_sitelib}/%{pymodule_name}/
|
|
|
|
%{python3_sitelib}/%{pymodule_name}-%{version}*
|
|
|
|
%exclude %{python3_sitelib}/tests/
|
|
|
|
%license LICENSE
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2024-05-16 15:59:50 +00:00
|
|
|
* Thu May 16 2024 Jan Černý <jcerny@redhat.com> - 0.2.9-2
|
|
|
|
- Add gating.yaml
|
|
|
|
|
2024-04-18 15:00:38 +00:00
|
|
|
* Tue Apr 23 2024 Jan Černý <jcerny@redhat.com> - 0.2.9-1
|
|
|
|
- Initial build for RHEL 8
|