[packit] 0.2.2 upstream release
Upstream tag: v0.2.2 Upstream commit: 30ff8e89 Signed-off-by: Packit <hello@packit.dev>
This commit is contained in:
parent
2b56a6cc8b
commit
8b5962747f
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
|||||||
|
1
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@
|
|||||||
/openscap-report-0.1.3.tar.gz
|
/openscap-report-0.1.3.tar.gz
|
||||||
/openscap-report-0.2.0.tar.gz
|
/openscap-report-0.2.0.tar.gz
|
||||||
/openscap-report-0.2.1.tar.gz
|
/openscap-report-0.2.1.tar.gz
|
||||||
|
/openscap-report-0.2.2.tar.gz
|
||||||
|
45
.packit.yaml
45
.packit.yaml
@ -6,6 +6,10 @@ specfile_path: openscap-report.spec
|
|||||||
# add or remove files that should be synced
|
# add or remove files that should be synced
|
||||||
files_to_sync:
|
files_to_sync:
|
||||||
- .packit.yaml
|
- .packit.yaml
|
||||||
|
- src: plans/
|
||||||
|
dest: plans/
|
||||||
|
- src: .fmf/
|
||||||
|
dest: .fmf/
|
||||||
|
|
||||||
# name in upstream package repository or registry (e.g. in PyPI)
|
# name in upstream package repository or registry (e.g. in PyPI)
|
||||||
upstream_package_name: openscap-report
|
upstream_package_name: openscap-report
|
||||||
@ -32,14 +36,39 @@ jobs:
|
|||||||
trigger: release
|
trigger: release
|
||||||
dist_git_branches:
|
dist_git_branches:
|
||||||
- fedora-rawhide
|
- fedora-rawhide
|
||||||
|
- epel-8
|
||||||
- job: copr_build
|
|
||||||
targets:
|
|
||||||
- fedora-all-x86_64
|
|
||||||
- epel-9-x86_64
|
|
||||||
trigger: pull_request
|
|
||||||
|
|
||||||
- job: tests
|
- job: tests
|
||||||
targets:
|
|
||||||
- fedora-all-x86_64
|
|
||||||
trigger: pull_request
|
trigger: pull_request
|
||||||
|
identifier: tests-all
|
||||||
|
targets:
|
||||||
|
- fedora-all
|
||||||
|
- epel-9
|
||||||
|
|
||||||
|
- job: copr_build
|
||||||
|
trigger: pull_request
|
||||||
|
identifier: build-all
|
||||||
|
targets:
|
||||||
|
- fedora-all
|
||||||
|
- epel-9
|
||||||
|
|
||||||
|
# Until Packit has implicit builds
|
||||||
|
# for tests we can't enable epel-8
|
||||||
|
# as it messes with test jobs.
|
||||||
|
# The skip_build: true doesn't really
|
||||||
|
# solve the proplem.
|
||||||
|
|
||||||
|
#- job: tests
|
||||||
|
# trigger: pull_request
|
||||||
|
# identifier: epel-tests
|
||||||
|
# skip_build: true
|
||||||
|
# targets:
|
||||||
|
# - epel-9
|
||||||
|
# - epel-8
|
||||||
|
|
||||||
|
#- job: copr_build
|
||||||
|
# trigger: pull_request
|
||||||
|
# specfile_path: spec/rhel8/openscap-report.spec
|
||||||
|
# identifier: epel8
|
||||||
|
# targets:
|
||||||
|
# - epel-8
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
This repository is maintained by packit.
|
This repository is maintained by packit.
|
||||||
https://packit.dev/
|
https://packit.dev/
|
||||||
The file was generated using packit 0.69.0.
|
The file was generated using packit 0.69.0.post27+g1374cc1.
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
%global pymodule_name openscap_report
|
%global pymodule_name openscap_report
|
||||||
|
|
||||||
Name: openscap-report
|
Name: openscap-report
|
||||||
Version: 0.2.1
|
Version: 0.2.2
|
||||||
Release: 1%{?dist}
|
Release: 0%{?dist}
|
||||||
Summary: A tool for generating human-readable reports from (SCAP) XCCDF and ARF results
|
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
|
# The entire source code is LGPL-2.1+ and GPL-2.0+ and MIT except schemas/ and assets/, which are Public Domain
|
||||||
@ -11,6 +11,7 @@ URL: https://github.com/OpenSCAP/%{name}
|
|||||||
Source0: https://github.com/OpenSCAP/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
Source0: https://github.com/OpenSCAP/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-sphinx
|
BuildRequires: python3-sphinx
|
||||||
BuildRequires: python3-sphinx_rtd_theme
|
BuildRequires: python3-sphinx_rtd_theme
|
||||||
@ -59,6 +60,26 @@ install -m 0644 -Dt %{buildroot}%{_mandir}/man1 _build_docs/oscap-report.1
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Mar 28 2023 Packit <hello@packit.dev> - 0.2.2-0
|
||||||
|
- 0.2.2 (Jan Rodak)
|
||||||
|
- Clean up CI jobs titles (Evgeny Kolesnikov)
|
||||||
|
- Fix RHEL8/EPEL8 build and test integration (Evgeny Kolesnikov)
|
||||||
|
- Show message for OVAL object (Jan Rodak)
|
||||||
|
- Parse message of collected OVAL object (Jan Rodak)
|
||||||
|
- Create OvalObjectMessage (Jan Rodak)
|
||||||
|
- Create a clickable rule title to show rule detail (Jan Rodak)
|
||||||
|
- Add a copy remediation to the clipboard (Jan Rodak)
|
||||||
|
- Uderline remediation summary (Jan Rodak)
|
||||||
|
- Replace word search with filter (Jan Rodak)
|
||||||
|
- Fix compatibility issue with python3.8 in the test suite (Jan Rodak)
|
||||||
|
- Execute test suite with python3.8 and the latest python (Jan Rodak)
|
||||||
|
- Create package dependency test for centos stream 8 (Jan Rodak)
|
||||||
|
- Create copr build for rhel8 (Jan Rodak)
|
||||||
|
- Fix TypeError: 'type' object is not subscriptable coused by downgrade (Jan Rodak)
|
||||||
|
- Downgrade the minimum version of python (Jan Rodak)
|
||||||
|
- Add spec file for rhel8 (Jan Rodak)
|
||||||
|
- Fix W3601 (Jan Rodak)
|
||||||
|
|
||||||
* Mon Mar 13 2023 Packit <hello@packit.dev> - 0.2.1-1
|
* Mon Mar 13 2023 Packit <hello@packit.dev> - 0.2.1-1
|
||||||
- 0.2.1 (Jan Rodak)
|
- 0.2.1 (Jan Rodak)
|
||||||
- Add rule weight attribute to report (Jan Rodak)
|
- Add rule weight attribute to report (Jan Rodak)
|
||||||
|
4
plans/main.fmf
Normal file
4
plans/main.fmf
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
execute:
|
||||||
|
how: tmt
|
||||||
|
discover:
|
||||||
|
how: fmf
|
3
plans/smoke.fmf
Normal file
3
plans/smoke.fmf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
summary: Basic simple tests
|
||||||
|
discover+:
|
||||||
|
filter: tier:0
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (openscap-report-0.2.1.tar.gz) = 06fcfb86eb65ce11341ca6eb844c0231d4a08177924f97f42d6a8960b7383bc0c5eda062b973472ebfd05d6b2fc148df5951c1870d7ec1a7ff88a14e4353e46d
|
SHA512 (openscap-report-0.2.2.tar.gz) = 312f3a604a19b2d5f46413e247ad98727a8a8e9f530bef6ece0ebdf943f535a2f97bb91fa60dd33420b5ff6c5317103bf453d014833c04e3fdf443740f047288
|
||||||
|
Loading…
Reference in New Issue
Block a user