forked from OpenSCAP/oval-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoval-graph.spec
95 lines (68 loc) · 2.51 KB
/
oval-graph.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
%global name oval-graph
%global module oval_graph
Summary: Tool for visualization of SCAP rule evaluation results
Name: %{name}
Version: 1.2.7
Release: 1%{?dist}
# The entire source code is ASL 2.0 except schemas/ which is Public Domain
License: ASL 2.0 and Public Domain
Url: https://pypi.org/project/%{name}/
Source0: https://files.pythonhosted.org/packages/source/o/%{name}/%{module}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel, python3-setuptools
Requires: python3-lxml
%description
Oval_graph is a tool that displays the results of evaluating SCAP rules.
In the form of a tree according to the OVAL standard. Using the
`arf-to-graph` command, you can simply view the result of rule.
Use `arf-to-json` to generate a rule result in json. Using the
`json-to-graph` command, you can view the results of rules from json file.
%{?python_enable_dependency_generator}
%prep
%autosetup -n %{module}-%{version}
%build
%py3_build
%install
%py3_install
%files
%license LICENSE
%doc README.md
%{python3_sitelib}/%{module}/
%{python3_sitelib}/%{module}-*.egg-info/
%{_bindir}/arf-to-graph
%{_bindir}/arf-to-json
%{_bindir}/json-to-graph
%changelog
* Wed May 26 2021 Jan Rodak <[email protected]> - 1.2.7-1
- release 1.2.7
* Wed May 26 2021 Jan Rodak <[email protected]> - 1.2.6-1
- release 1.2.6
* Tue Feb 23 2021 Jan Rodak <[email protected]> - 1.2.5-1
- release 1.2.5
* Thu Dec 10 2020 Jan Rodak <[email protected]> - 1.2.4-1
- release 1.2.4
* Mon Nov 09 2020 Jan Rodak <[email protected]> - 1.2.3-1
- release 1.2.3
* Mon Oct 12 2020 Jan Rodak <[email protected]> - 1.2.2-1
- release 1.2.2
* Mon Sep 21 2020 Jan Rodak <[email protected]> - 1.2.1-1
- release 1.2.1
* Thu Sep 03 2020 Jan Rodak <[email protected]> - 1.2.0-1
- release 1.2.0
* Fri Apr 17 2020 Jan Rodak <[email protected]> - 1.1.1-1
- release 1.1.1
* Fri Apr 17 2020 Jan Rodak <[email protected]> - 1.1.0-2
- Fixes the required dependency
* Wed Apr 15 2020 Jan Rodak <[email protected]> - 1.1.0-1
- release 1.1.0
* Mon Mar 09 2020 Jan Rodak <[email protected]> - 1.0.1-1
- release 1.0.1
* Mon Mar 09 2020 Jan Rodak <[email protected]> - 1.0.0-1
- release 1.0.0
* Wed Jan 22 2020 Jan Rodak <[email protected]> - 0.1.2-1
- Improved performance
- New commands
* Wed Nov 13 2019 Jan Rodak <[email protected]> - 0.0.2-1
- Changed CR+LF to LF line endings.
* Wed Oct 23 2019 Jan Rodak <[email protected]> - 0.0.1-1
- Initial version of the package.