From e456aa3f05b5c1fd4a51242eaff5c17f0953220e Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 29 Mar 2022 13:07:55 -0400 Subject: [PATCH] import rig-1.0-3.el8 --- .gitignore | 1 + .rig.metadata | 1 + SPECS/rig.spec | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 .gitignore create mode 100644 .rig.metadata create mode 100644 SPECS/rig.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..518ff51 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/rig-1.0.tar.gz diff --git a/.rig.metadata b/.rig.metadata new file mode 100644 index 0000000..c9e740d --- /dev/null +++ b/.rig.metadata @@ -0,0 +1 @@ +6ee921b7b86e0c39b48ed216f5fd534e0dc5c0cb SOURCES/rig-1.0.tar.gz diff --git a/SPECS/rig.spec b/SPECS/rig.spec new file mode 100644 index 0000000..09ff8a1 --- /dev/null +++ b/SPECS/rig.spec @@ -0,0 +1,51 @@ +Name: rig +Summary: Monitor a system for events and trigger specific actions +Version: 1.0 +Release: 3%{?dist} +Url: https://github.com/TurboTurtle/rig +Source0: %{url}/archive/%{name}-%{version}.tar.gz +License: GPLv2 +BuildArch: noarch + +Requires: python3dist(systemd-python) +Requires: python3dist(psutil) + +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3dist(systemd-python) +BuildRequires: python3dist(psutil) + +%description +Rig is a utility designed to watch or monitor specific system resources (e.g. +log files, journals, system activity, etc...) and then take specific action +when the trigger condition is met. Its primary aim is to assist in +troubleshooting and data collection for randomly occurring events. + +%prep +%setup -q + +%build +%py3_build + +%install +mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1 +install -p -m644 man/en/rig.1 ${RPM_BUILD_ROOT}%{_mandir}/man1/ +%py3_install + +%files +%{_bindir}/rig +%{_mandir}/man1/* + +%{python3_sitelib}/rig-*.egg-info/ +%{python3_sitelib}/rigging/ + +%license LICENSE +%doc README.md + +%changelog +* Mon Oct 04 2021 Jake Hunsaker - 1.0-3 +- Rebuilt for RHEL 8.6.0 +- RHBZ#1888705 + +* Tue Jul 28 2020 Jake Hunsaker - 1.0-1 +- Version 1.0 release