OBS User unknown 2008-08-05 23:54:12 +00:00 committed by Git OBS Bridge
parent 2dc199902f
commit 0d3f6f5597
4 changed files with 88 additions and 25 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:10355876833e791450e26a7e4d22282fae5fca921ebb6dd67bd264c9664ee2b5
size 57819

3
numactl-2.0.2.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:79d7799ee99a0f6cb5ffdb21fc2d2581babe090c05a0cd69dc558358a31f048f
size 57931

View File

@ -1,3 +1,33 @@
-------------------------------------------------------------------
Tue Aug 05 15:50:11 CEST 2008 - bwalle@suse.de
- update to 2.0.2
o Various numademo improvements:
* Fix random benchmark to use all specified memory
* Rename to random2 to signify it's different
* Optimize random benchmark by inlining random number generator
fast path.
* Clear caches between runs for more stable results
* Add new random pointer chaser benchmark
* Compile benchmarks with gcc vectorization if available
* run numademo in regression test
o Add numa_exit_on_warn
o Fix no cpuset fallback in libnuma.c
o Install symlinks for the manpages of all new functions
o Make internal libnuma functions static
o Add copy_bitmask_to_bitmask() to numa.h
o Some cleanups
o Fix line reading in proc
o Add versions.ldscript to libnuma.so dependencies
o Remove the non-"numa_" functions from numacompat1.h and numa.h
o Add ia64 clearcache() to numademo
o Add -t to numademo for regression testing
o Remove "numa_all_cpus" from numa.h
o Changed VERSION1_COMPATIBILITY to NUMA_VERSION1_COMPATIBILITY
o Defined LIBNUMA_API_VERSION 2 in numa.h
o Fix numaif.h and numaint.h (migrate_pages)
o Fixes to numademo (min/max, and array index)
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 25 10:39:24 CEST 2008 - bwalle@suse.de Wed Jun 25 10:39:24 CEST 2008 - bwalle@suse.de

View File

@ -1,10 +1,17 @@
# #
# spec file for package numactl (Version 2.0.1+2.0.2_rc1) # spec file for package numactl (Version 2.0.2)
# #
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # 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.
# #
# 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/ # Please submit bugfixes or comments via http://bugs.opensuse.org/
# #
@ -13,13 +20,12 @@
Url: http://oss.sgi.com/projects/libnuma/ Url: http://oss.sgi.com/projects/libnuma/
Name: numactl Name: numactl
License: GPL v2 or later License: GPL v2 only; GPL v2 or later
Summary: NUMA Policy Control Summary: NUMA Policy Control
Version: 2.0.1+2.0.2_rc1 Version: 2.0.2
Release: 1 Release: 1
%define tarversion 2.0.2-rc1
AutoReqProv: on AutoReqProv: on
Source: numactl-%{tarversion}.tar.bz2 Source: numactl-%{version}.tar.bz2
Group: System/Management Group: System/Management
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExclusiveArch: ia64 x86_64 ppc64 ppc ExclusiveArch: ia64 x86_64 ppc64 ppc
@ -39,7 +45,7 @@ Authors:
%package -n libnuma1 %package -n libnuma1
License: GPL v2 or later License: GPL v2 or later
Summary: NUMA Policy Control Summary: NUMA Policy Control
Group: System/Management Group: Development/Languages/C and C++
AutoReqProv: on AutoReqProv: on
%description -n libnuma1 %description -n libnuma1
@ -56,7 +62,7 @@ Authors:
%package -n libnuma-devel %package -n libnuma-devel
License: GPL v2 or later License: GPL v2 or later
Summary: NUMA Policy Control Summary: NUMA Policy Control
Group: System/Management Group: Development/Languages/C and C++
AutoReqProv: on AutoReqProv: on
Requires: libnuma1 = %{version} Requires: libnuma1 = %{version}
@ -72,7 +78,7 @@ Authors:
Cliff Wickman (cpw@sgi.com) Cliff Wickman (cpw@sgi.com)
%prep %prep
%setup -n %{name}-%{tarversion} %setup
%build %build
make CFLAGS="${RPM_OPT_FLAGS}" make CFLAGS="${RPM_OPT_FLAGS}"
@ -112,6 +118,33 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/lib*so %{_libdir}/lib*so
%changelog %changelog
* Tue Aug 05 2008 bwalle@suse.de
- update to 2.0.2
o Various numademo improvements:
* Fix random benchmark to use all specified memory
* Rename to random2 to signify it's different
* Optimize random benchmark by inlining random number generator
fast path.
* Clear caches between runs for more stable results
* Add new random pointer chaser benchmark
* Compile benchmarks with gcc vectorization if available
* run numademo in regression test
o Add numa_exit_on_warn
o Fix no cpuset fallback in libnuma.c
o Install symlinks for the manpages of all new functions
o Make internal libnuma functions static
o Add copy_bitmask_to_bitmask() to numa.h
o Some cleanups
o Fix line reading in proc
o Add versions.ldscript to libnuma.so dependencies
o Remove the non-"numa_" functions from numacompat1.h and numa.h
o Add ia64 clearcache() to numademo
o Add -t to numademo for regression testing
o Remove "numa_all_cpus" from numa.h
o Changed VERSION1_COMPATIBILITY to NUMA_VERSION1_COMPATIBILITY
o Defined LIBNUMA_API_VERSION 2 in numa.h
o Fix numaif.h and numaint.h (migrate_pages)
o Fixes to numademo (min/max, and array index)
* Wed Jun 25 2008 bwalle@suse.de * Wed Jun 25 2008 bwalle@suse.de
- change RPM version to '2.0.1+2.0.2_rc1' for a clean update path - change RPM version to '2.0.1+2.0.2_rc1' for a clean update path
- don't package the static library - don't package the static library