This commit is contained in:
commit
9026f69898
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
cpuset-0.1.tar.gz
Normal file
3
cpuset-0.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:434ecd62f57f9a325201cf2a290769fe5b994dc204ebddf5e7d783642c1b6b97
|
||||||
|
size 21278
|
17
cpuset.changes
Normal file
17
cpuset.changes
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 24 20:12:50 CET 2008 - alext@suse.de
|
||||||
|
|
||||||
|
- Remove error in abuild for including generic doc directory in
|
||||||
|
list of files
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jan 24 02:09:59 CET 2008 - alext@suse.de
|
||||||
|
|
||||||
|
- Changed --record to --record-rpm to fix build.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 16 01:29:54 CET 2008 - alext@suse.de
|
||||||
|
|
||||||
|
- Initial submission to autobuild, pdb entry exists.
|
||||||
|
- Currently not functional, version set to 0.1.
|
||||||
|
|
65
cpuset.spec
Normal file
65
cpuset.spec
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
#
|
||||||
|
# spec file for package cpuset (Version 0.1)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
# This file and all modifications and additions to the pristine
|
||||||
|
# package are under the same license as the package itself.
|
||||||
|
#
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
Name: cpuset
|
||||||
|
Version: 0.1
|
||||||
|
Release: 3
|
||||||
|
Summary: Allows manipluation of cpusets on system and provides higher level functions.
|
||||||
|
Source: %{name}-%{version}.tar.gz
|
||||||
|
License: GPL v2 only
|
||||||
|
Group: System/Management
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
Url: http://www.opensuse.org
|
||||||
|
BuildRequires: python-devel
|
||||||
|
%py_requires
|
||||||
|
|
||||||
|
%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 system and provides higher
|
||||||
|
level functions such as implementation and control of a basic cpu
|
||||||
|
shielding setup. It is recommended that you run at least 2.6.22 for
|
||||||
|
best results.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Authors:
|
||||||
|
--------
|
||||||
|
Alex Tsariounov <alext@novell.com>
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup
|
||||||
|
|
||||||
|
%build
|
||||||
|
python setup.py build
|
||||||
|
|
||||||
|
%install
|
||||||
|
python setup.py install --root=$RPM_BUILD_ROOT --prefix=%{_prefix} --record-rpm=INSTALLED_FILES
|
||||||
|
# rm generic /usr/share/doc/packages dir that's already in the filesystem rpm
|
||||||
|
cat INSTALLED_FILES | awk '! /%dir[ \t]*\/usr\/share\/doc\/packages$/' > tmpfil.files
|
||||||
|
mv -f tmpfil.files INSTALLED_FILES
|
||||||
|
|
||||||
|
%clean
|
||||||
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%files -f INSTALLED_FILES
|
||||||
|
%defattr(-,root,root)
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Jan 24 2008 alext@suse.de
|
||||||
|
- Remove error in abuild for including generic doc directory in
|
||||||
|
list of files
|
||||||
|
* Thu Jan 24 2008 alext@suse.de
|
||||||
|
- Changed --record to --record-rpm to fix build.
|
||||||
|
* Wed Jan 16 2008 alext@suse.de
|
||||||
|
- Initial submission to autobuild, pdb entry exists.
|
||||||
|
- Currently not functional, version set to 0.1.
|
Loading…
Reference in New Issue
Block a user