forked from pool/cpuset
257e6d4957
- Use source url OBS-URL: https://build.opensuse.org/package/show/hardware/cpuset?expand=0&rev=28
74 lines
2.4 KiB
RPMSpec
74 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package cpuset
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
# Copyright (c) 2008-2011 Novell, Inc. Waltham, MA, USA
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
Name: cpuset
|
|
Version: 1.5.7
|
|
Release: 0
|
|
Summary: Allows manipulation of cpusets on system and provides higher level functions
|
|
License: GPL-2.0
|
|
Group: System/Management
|
|
Url: https://github.com/lpechacek/cpuset
|
|
Source: https://github.com/lpechacek/cpuset/archive/v%{version}.tar.gz
|
|
BuildRequires: python-devel
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%if 0%{?sles_version} != 11
|
|
BuildArch: noarch
|
|
%endif
|
|
%if 0%{?suse_version} > 0
|
|
%py_requires
|
|
%endif
|
|
|
|
%description
|
|
|
|
Cpuset is a Python application to make using the cpusets facilities in
|
|
the Linux kernel easier. The actual included command is called cset
|
|
and it allows manipulation of cpusets on the system and provides higher
|
|
level functions such as implementation and control of a basic CPU
|
|
shielding setup.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
CFLAGS="%{optflags}" \
|
|
python setup.py build
|
|
#make doc ->not yet, asciidoc is missing...
|
|
|
|
%install
|
|
# Install binaries, but do not install docs via setup.py
|
|
python setup.py install --root=%{buildroot} --prefix=%{_prefix} --install-data=/eraseme
|
|
rm -rf %{buildroot}/eraseme
|
|
|
|
# Install documentation
|
|
mkdir -p %{buildroot}/%{_mandir}/man1
|
|
mkdir -p %{buildroot}/%{_defaultdocdir}/cpuset/html
|
|
|
|
cp doc/*.1 %{buildroot}/%{_mandir}/man1
|
|
cp doc/*.html %{buildroot}/%{_defaultdocdir}/cpuset/html/
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc NEWS README AUTHORS COPYING cset.init.d doc/*.txt
|
|
%{_bindir}/cset
|
|
%{python_sitelib}/*
|
|
%{_mandir}/man1/*
|
|
|
|
%changelog
|