forked from pool/pagein
- Update to 0.01.08 * Fix potential array overflow on array prot, make it 1 byte larger - Fixed URL and SourceURL (previous were orphaned) OBS-URL: https://build.opensuse.org/request/show/971228 OBS-URL: https://build.opensuse.org/package/show/benchmark/pagein?expand=0&rev=12
64 lines
1.8 KiB
RPMSpec
64 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package pagein
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
# Copyright (c) 2018, 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: pagein
|
|
Version: 0.01.08
|
|
Release: 0
|
|
Summary: A tool to force swapped out pages back into memory
|
|
License: GPL-2.0-only
|
|
Group: System/Monitoring
|
|
URL: https://github.com/ColinIanKing/pagein
|
|
Source: %{url}/archive/refs/tags/V%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
|
|
%description
|
|
Pagein is a tool that forces pages that are in swap to be paged in back
|
|
to memory. The main usecase for pagein is to exercise the VM and swap
|
|
subsystems for testing purposes.
|
|
|
|
%package bash-completion
|
|
Summary: Bash Completion for %{name}
|
|
Group: System/Benchmark
|
|
Requires: %{name} = %{version}
|
|
Requires: bash-completion
|
|
Supplements: (pagein 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}/pagein
|
|
%{_mandir}/man1/pagein.1%{?ext_man}
|
|
|
|
%files bash-completion
|
|
%{_datadir}/bash-completion/completions/%{name}
|
|
|
|
%changelog
|