2008-01-28 04:29:21 +01:00
|
|
|
#
|
2011-06-20 11:45:00 +02:00
|
|
|
# spec file for package cpuset
|
2008-01-28 04:29:21 +01:00
|
|
|
#
|
2018-03-27 15:23:35 +02:00
|
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
2011-06-09 21:45:33 +02:00
|
|
|
# Copyright (c) 2008-2011 Novell, Inc. Waltham, MA, USA
|
2008-01-28 04:29:21 +01:00
|
|
|
#
|
2008-09-03 02:37:46 +02:00
|
|
|
# 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.
|
|
|
|
|
2008-01-28 04:29:21 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: cpuset
|
2018-03-27 15:23:35 +02:00
|
|
|
Version: 1.6pre1
|
2014-05-30 18:55:31 +02:00
|
|
|
Release: 0
|
2009-07-03 17:06:07 +02:00
|
|
|
Summary: Allows manipulation of cpusets on system and provides higher level functions
|
2014-05-30 18:55:31 +02:00
|
|
|
License: GPL-2.0
|
|
|
|
Group: System/Management
|
2016-01-13 19:39:54 +01:00
|
|
|
Url: https://github.com/lpechacek/cpuset
|
|
|
|
Source: https://github.com/lpechacek/cpuset/archive/v%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%if 0%{?sles_version} != 11
|
|
|
|
BuildArch: noarch
|
|
|
|
%endif
|
2018-03-27 15:23:35 +02:00
|
|
|
%if 0%{?suse_version} < 1500
|
|
|
|
%define __cset_python %{__python}
|
|
|
|
BuildRequires: python-devel
|
|
|
|
Requires: python-future
|
|
|
|
%{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
|
2009-02-16 01:14:23 +01:00
|
|
|
%if 0%{?suse_version} > 0
|
2008-01-28 04:29:21 +01:00
|
|
|
%py_requires
|
2009-02-16 01:14:23 +01:00
|
|
|
%endif
|
2018-03-27 15:23:35 +02:00
|
|
|
%else # suse_version >= 1500
|
|
|
|
%define __cset_python %{__python3}
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
Requires: python3-future
|
|
|
|
%endif
|
2015-12-29 10:11:35 +01:00
|
|
|
|
2008-01-28 04:29:21 +01:00
|
|
|
%description
|
2015-12-29 10:11:35 +01:00
|
|
|
|
2008-01-28 04:29:21 +01:00
|
|
|
Cpuset is a Python application to make using the cpusets facilities in
|
|
|
|
the Linux kernel easier. The actual included command is called cset
|
2009-07-03 17:06:07 +02:00
|
|
|
and it allows manipulation of cpusets on the system and provides higher
|
2009-02-16 01:14:23 +01:00
|
|
|
level functions such as implementation and control of a basic CPU
|
|
|
|
shielding setup.
|
2008-01-28 04:29:21 +01:00
|
|
|
|
|
|
|
%prep
|
2016-01-13 19:39:54 +01:00
|
|
|
%setup -q
|
2008-01-28 04:29:21 +01:00
|
|
|
|
|
|
|
%build
|
2009-02-16 01:14:23 +01:00
|
|
|
CFLAGS="%{optflags}" \
|
2018-03-27 15:23:35 +02:00
|
|
|
%{__cset_python} setup.py build
|
2008-09-03 02:37:46 +02:00
|
|
|
#make doc ->not yet, asciidoc is missing...
|
2008-01-28 04:29:21 +01:00
|
|
|
|
|
|
|
%install
|
2009-02-16 01:14:23 +01:00
|
|
|
# Install binaries, but do not install docs via setup.py
|
2018-03-27 15:23:35 +02:00
|
|
|
%{__cset_python} setup.py install --root=%{buildroot} --prefix=%{_prefix} --install-data=/eraseme
|
2016-01-13 19:39:54 +01:00
|
|
|
rm -rf %{buildroot}/eraseme
|
2015-12-29 10:11:35 +01:00
|
|
|
|
2009-02-16 01:14:23 +01:00
|
|
|
# Install documentation
|
2016-01-13 19:39:54 +01:00
|
|
|
mkdir -p %{buildroot}/%{_mandir}/man1
|
2017-03-27 13:23:21 +02:00
|
|
|
mkdir -p %{buildroot}/%{_defaultdocdir}/%{name}/html
|
2008-01-28 04:29:21 +01:00
|
|
|
|
2017-03-27 13:23:21 +02:00
|
|
|
install -m 0444 doc/*.1 %{buildroot}/%{_mandir}/man1
|
|
|
|
|
|
|
|
install -m 0444 NEWS README AUTHORS COPYING cset.init.d doc/*.txt %{buildroot}/%{_defaultdocdir}/%{name}
|
|
|
|
install -m 0444 doc/*.html %{buildroot}/%{_defaultdocdir}/%{name}/html/
|
2015-12-29 10:11:35 +01:00
|
|
|
|
2009-02-16 01:14:23 +01:00
|
|
|
%files
|
2008-01-28 04:29:21 +01:00
|
|
|
%defattr(-,root,root)
|
2017-03-27 13:23:21 +02:00
|
|
|
%doc %{_docdir}/%{name}
|
2009-02-16 01:14:23 +01:00
|
|
|
%{_bindir}/cset
|
2018-03-27 15:23:35 +02:00
|
|
|
%if 0%{?suse_version} < 1500
|
2009-02-16 01:14:23 +01:00
|
|
|
%{python_sitelib}/*
|
2018-03-27 15:23:35 +02:00
|
|
|
%else
|
|
|
|
%{python3_sitelib}/*
|
|
|
|
%endif
|
2009-02-16 01:14:23 +01:00
|
|
|
%{_mandir}/man1/*
|
2008-01-28 04:29:21 +01:00
|
|
|
|
|
|
|
%changelog
|