You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

97 lines
3.5 KiB

##
## bonnie.spec -- OpenPKG RPM Package Specification
## Copyright (c) 2000-2022 OpenPKG Project <http://openpkg.org/>
##
## Permission to use, copy, modify, and distribute this software for
## any purpose with or without fee is hereby granted, provided that
## the above copyright notice and this permission notice appear in all
## copies.
##
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
## SUCH DAMAGE.
##
# package information
Name: bonnie
Summary: The Bonnie Disk I/O Benchmark
URL: http://www.textuality.com/bonnie/
Vendor: Tim Bray
Packager: OpenPKG Project
Distribution: OpenPKG Community
Class: PLUS
Group: Benchmark
License: Open Source
Version: 2.0.6
Release: 20080101
# list of sources
Source0: http://download.openpkg.org/components/versioned/bonnie/bonnie-%{version}.tar.gz
Patch0: bonnie.patch
# build information
BuildPreReq: OpenPKG, openpkg >= 20160101
PreReq: OpenPKG, openpkg >= 20160101
%description
Bonnie tests the speed of file I/O using standard C library calls.
It does reads and writes of blocks, testing for the limit of
sustained data rate (usually limited by the drive or controller) and
updates on a file (better simulating normal operating conditions and
quite dependent on drive and OS optimisations).
The per-character read and write tests are generally limited by
CPU speed only on current-generation hardware. It takes some 35
SPECint92 to read or write a file at a rate of 1MB/s using getc()
and putc().
The seek tests are dependent on the buffer cache size, since the
fraction of disk blocks that fits into the buffer cache will be
found without any disk operation and will contribute zero seek time
readings. I.e. if the buffer cache is 16MB and the Bonnie test file
is 32MB in size, then the seek time will come out as half its real
value. The seek time includes rotational delay, and will thus always
come out higher than specified for a drive.
%track
prog bonnie = {
version = %{version}
url = http://download.openpkg.org/components/versioned/bonnie/
regex = bonnie-(__VER__)\.tar\.gz
}
%prep
%setup -q -c
%patch -p0
%build
CC="%{l_cc}"
CFLAGS="%{l_cflags -O}"
case "%{l_platform -t}" in
*-sunos* ) CFLAGS="$CFLAGS -DSysV" ;;
esac
$CC $CFLAGS -o bonnie Bonnie.c
%install
%{l_shtool} mkdir -f -p -m 755 \
$RPM_BUILD_ROOT%{l_prefix}/bin \
$RPM_BUILD_ROOT%{l_prefix}/man/man1
%{l_shtool} install -c -s -m 755 \
bonnie $RPM_BUILD_ROOT%{l_prefix}/bin/
%{l_shtool} install -c -m 644 \
bonnie.1 $RPM_BUILD_ROOT%{l_prefix}/man/man1/
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std}
%files -f files
%clean