-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build] Update specfile for Fedora packaging
Updates the specfile for Fedora packaging following the package review for rig. Signed-off-by: Jake Hunsaker <[email protected]>
- Loading branch information
1 parent
05bc447
commit 4f5508c
Showing
2 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
Summary: Monitor a system for events and trigger specific actions | ||
Name: rig | ||
Version: 1.0 | ||
Release: 1 | ||
Source0: http://people.redhat.com/jhunsake/rig/%{name}-%{version}.tar.gz | ||
License: GPLv2 | ||
BuildArch: noarch | ||
Requires: python3 | ||
Requires: python3-psutil | ||
Requires: python3-systemd | ||
Name: rig | ||
Summary: Monitor a system for events and trigger specific actions | ||
Version: 1.0 | ||
Release: 1%{?dist} | ||
Url: https://github.com/TurboTurtle/rig | ||
Source0: %{url}/archive/%{name}-%{version}.tar.gz | ||
License: GPLv2 | ||
BuildArch: noarch | ||
|
||
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. | ||
when the trigger condition is met. Its primary aim is to assist in | ||
troubleshooting and data collection for randomly occurring events. | ||
|
||
%prep | ||
%setup -q | ||
|
@@ -29,16 +29,15 @@ mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1 | |
install -p -m644 man/en/rig.1 ${RPM_BUILD_ROOT}%{_mandir}/man1/ | ||
%py3_install | ||
|
||
%check | ||
%{__python3} setup.py test | ||
|
||
%files | ||
%{_bindir}/rig | ||
%{_mandir}/man1/* | ||
|
||
%{python3_sitelib}/* | ||
%{python3_sitelib}/rig-*.egg-info/ | ||
%{python3_sitelib}/rigging/ | ||
|
||
%license LICENSE | ||
%doc README.md | ||
|
||
%changelog | ||
* Tue Jul 28 2020 Jake Hunsaker <[email protected]> - 1.0-1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters