1
0
forked from pool/forkstat
Files
forkstat/forkstat.spec
Dirk Stoecker 120999b270 Accepting request 1172975 from home:dirkmueller:Factory
- update to 0.03.02:
  * Makefile: remove snap from make dist rule
  * debian/rules: update hardening flags
  * Update copyright to 2024
  * Check for array bounds limit while parsing pid length string

  * add missing memory initialization to zero

OBS-URL: https://build.opensuse.org/request/show/1172975
OBS-URL: https://build.opensuse.org/package/show/server:monitoring/forkstat?expand=0&rev=39
2024-05-16 12:06:34 +00:00

64 lines
1.9 KiB
RPMSpec

#
# spec file for package forkstat
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2017-2020, Martin Hauke <mardnh@gmx.de>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: forkstat
Version: 0.03.02
Release: 0
Summary: Process fork/exec/exit monitoring tool
License: GPL-2.0-or-later
Group: System/Monitoring
URL: https://github.com/ColinIanKing/forkstat
Source: https://github.com/ColinIanKing/forkstat/archive/refs/tags/V%{version}.tar.gz#/%{name}-%{version}.tar.gz
%description
Forkstat monitors process fork(), exec() and exit() activity. It is useful for
monitoring system behaviour and to track down rogue processes that are spawning
off processes and potentially abusing the system.
%package bash-completion
Summary: Bash Completion for %{name}
Group: System/Benchmark
Requires: %{name} = %{version}
Requires: bash-completion
Supplements: (forkstat and bash-completion)
BuildArch: noarch
%description bash-completion
Bash completion script for %{name}.
%prep
%setup -q
%build
export CFLAGS="%{optflags}"
%make_build
%install
%make_install
%files
%license COPYING
%{_bindir}/forkstat
%{_mandir}/man8/forkstat.8%{?ext_man}
%files bash-completion
%{_datadir}/bash-completion/completions/%{name}
%changelog