diff options
author | miwi <miwi@FreeBSD.org> | 2009-08-27 00:04:48 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-08-27 00:04:48 +0800 |
commit | f831bd259388cb19856ca561ba011db092024c17 (patch) | |
tree | bc58ec84293fa7f231fc4d794438e5edc57045e9 /benchmarks/bonnie++ | |
parent | 908feb00f3733bc46f7b98aa38c116f638f4a4f2 (diff) | |
download | freebsd-ports-gnome-f831bd259388cb19856ca561ba011db092024c17.tar.gz freebsd-ports-gnome-f831bd259388cb19856ca561ba011db092024c17.tar.zst freebsd-ports-gnome-f831bd259388cb19856ca561ba011db092024c17.zip |
- Update to 138132
PR: 138132
Submitted by: Ganael Laplanche <ganael.laplanche@martymac.com> (maintainer)
Diffstat (limited to 'benchmarks/bonnie++')
-rw-r--r-- | benchmarks/bonnie++/Makefile | 3 | ||||
-rw-r--r-- | benchmarks/bonnie++/distinfo | 6 | ||||
-rw-r--r-- | benchmarks/bonnie++/files/patch-bonnie++.8 | 9 | ||||
-rw-r--r-- | benchmarks/bonnie++/files/patch-getc_putc.cpp | 15 | ||||
-rw-r--r-- | benchmarks/bonnie++/files/patch-port.h.in | 21 | ||||
-rw-r--r-- | benchmarks/bonnie++/files/patch-zcav.8 | 10 | ||||
-rw-r--r-- | benchmarks/bonnie++/files/patch-zcav.cpp | 34 | ||||
-rw-r--r-- | benchmarks/bonnie++/files/patch-zcav_io.cpp | 33 | ||||
-rw-r--r-- | benchmarks/bonnie++/pkg-plist | 1 |
9 files changed, 97 insertions, 35 deletions
diff --git a/benchmarks/bonnie++/Makefile b/benchmarks/bonnie++/Makefile index fbe18bed1e55..e9617a6c87ec 100644 --- a/benchmarks/bonnie++/Makefile +++ b/benchmarks/bonnie++/Makefile @@ -7,10 +7,9 @@ # PORTNAME= bonnie++ -PORTVERSION= 1.93.04 # a=01, b=02, c=03, ..., z=26, etc... +PORTVERSION= 1.96 CATEGORIES= benchmarks MASTER_SITES= http://www.coker.com.au/bonnie++/experimental/ -DISTNAME= ${PORTNAME}-1.93d EXTRACT_SUFX= .tgz MAINTAINER= ganael.laplanche@martymac.com diff --git a/benchmarks/bonnie++/distinfo b/benchmarks/bonnie++/distinfo index e6252b00cb68..8fe77e3d13a4 100644 --- a/benchmarks/bonnie++/distinfo +++ b/benchmarks/bonnie++/distinfo @@ -1,3 +1,3 @@ -MD5 (bonnie++-1.93d.tgz) = 7725dcd5230a412dc3619eacc1cf6609 -SHA256 (bonnie++-1.93d.tgz) = 68992f83eb72df15ab5db9d475ed30b371979f3c8b31d9ac8d21639f3aea96ca -SIZE (bonnie++-1.93d.tgz) = 123637 +MD5 (bonnie++-1.96.tgz) = 7b8594559f00887d2865de1838328b35 +SHA256 (bonnie++-1.96.tgz) = 9c9d87bf09ac5a42a915ceeb9d8bb8358c0ca4642d86b85ed48ca5f15ee3456c +SIZE (bonnie++-1.96.tgz) = 105183 diff --git a/benchmarks/bonnie++/files/patch-bonnie++.8 b/benchmarks/bonnie++/files/patch-bonnie++.8 deleted file mode 100644 index 5c5b40f5e3ae..000000000000 --- a/benchmarks/bonnie++/files/patch-bonnie++.8 +++ /dev/null @@ -1,9 +0,0 @@ ---- bonnie++.8.orig Sun Sep 9 16:25:02 2001 -+++ bonnie++.8 Sun Sep 9 16:25:43 2001 -@@ -194,4 +194,5 @@ - - .SH "SEE ALSO" - .BR bon_csv2html (1), --.BR bon_csv2txt (1) -+.BR bon_csv2txt (1) , -+.BR zcav (8) diff --git a/benchmarks/bonnie++/files/patch-getc_putc.cpp b/benchmarks/bonnie++/files/patch-getc_putc.cpp deleted file mode 100644 index bad9550b0938..000000000000 --- a/benchmarks/bonnie++/files/patch-getc_putc.cpp +++ /dev/null @@ -1,15 +0,0 @@ ---- getc_putc.cpp.orig Sun Dec 9 06:50:24 2001 -+++ getc_putc.cpp Wed Mar 5 14:32:58 2003 -@@ -17,6 +17,12 @@ - #include "duration.h" - #include "getc_putc.h" - -+#if defined(__alpha__) || defined(__sparc64__) || defined(__amd64__) || defined(__ia64__) -+/* Work around for: line 168, no matching function for call to `min(long unsigned int, unsigned int)' */ -+#include <sys/param.h> -+#define min MIN -+#endif -+ - static void usage() - { - fprintf(stderr, "usage:\n" diff --git a/benchmarks/bonnie++/files/patch-port.h.in b/benchmarks/bonnie++/files/patch-port.h.in new file mode 100644 index 000000000000..cce0fa045dc7 --- /dev/null +++ b/benchmarks/bonnie++/files/patch-port.h.in @@ -0,0 +1,21 @@ +--- port.h.in.orig 2009-08-21 18:45:50.068536643 +0000 ++++ port.h.in 2009-08-21 18:45:58.564755017 +0000 +@@ -3,18 +3,8 @@ + + #include "conf.h" + +-#ifndef HAVE_MIN_MAX +-#if defined(HAVE_ALGO_H) || defined(HAVE_ALGO) +-#ifdef HAVE_ALGO +-#include <algo> +-#else +-#include <algo.h> +-#endif +-#else + #define min(XX,YY) ((XX) < (YY) ? (XX) : (YY)) + #define max(XX,YY) ((XX) > (YY) ? (XX) : (YY)) +-#endif +-#endif + + @semun@ + @bool@ diff --git a/benchmarks/bonnie++/files/patch-zcav.8 b/benchmarks/bonnie++/files/patch-zcav.8 index 3dc4edbd7476..a7b9598d104c 100644 --- a/benchmarks/bonnie++/files/patch-zcav.8 +++ b/benchmarks/bonnie++/files/patch-zcav.8 @@ -1,8 +1,8 @@ ---- zcav.8.orig Sun Sep 9 16:26:11 2001 -+++ zcav.8 Sun Sep 9 16:26:33 2001 -@@ -72,6 +72,9 @@ - parameter, just a different way to specify it for compatibility with other - programs. +--- zcav.8.orig 2009-08-21 07:13:21.319089995 +0000 ++++ zcav.8 2009-08-21 07:14:03.189181585 +0000 +@@ -95,6 +95,9 @@ + .B \-w + write zero blocks to the disk instead of reading from the disk - will destroy data! +.SH "SEE ALSO" +.BR bonnie++ (8) diff --git a/benchmarks/bonnie++/files/patch-zcav.cpp b/benchmarks/bonnie++/files/patch-zcav.cpp new file mode 100644 index 000000000000..a0ebecfe2e23 --- /dev/null +++ b/benchmarks/bonnie++/files/patch-zcav.cpp @@ -0,0 +1,34 @@ +--- zcav.cpp.orig 2009-08-24 07:31:32.060913886 +0000 ++++ zcav.cpp 2009-08-24 07:33:16.257389975 +0000 +@@ -15,9 +15,7 @@ + , "Usage: zcav [-b block-size[:chunk-size]] [-c count]\n" + " [-r [start offset:]end offset] [-w]\n" + " [-u uid-to-use:gid-to-use] [-g gid-to-use]\n" +-#ifdef _LARGEFILE64_SOURCE + " [-s skip rate]\n" +-#endif + " [-l log-file] [-f] file-name\n" + " [-l log-file [-f] file-name]...\n" + "\n" +@@ -186,9 +184,7 @@ + const char *log = "-"; + const char *file = ""; + while(-1 != (c = getopt(argc, argv, "-c:b:f:l:r:w" +-#ifdef _LARGEFILE64_SOURCE + "s:" +-#endif + "u:g:")) ) + { + switch(char(c)) +@@ -225,11 +221,9 @@ + } + } + break; +-#ifdef _LARGEFILE64_SOURCE + case 's': + mz.setSkipRate(atoi(optarg)); + break; +-#endif + case 'g': + if(groupName) + usage(); diff --git a/benchmarks/bonnie++/files/patch-zcav_io.cpp b/benchmarks/bonnie++/files/patch-zcav_io.cpp new file mode 100644 index 000000000000..69dce29e122f --- /dev/null +++ b/benchmarks/bonnie++/files/patch-zcav_io.cpp @@ -0,0 +1,33 @@ +--- zcav_io.cpp.orig 2009-08-24 07:36:02.677798155 +0000 ++++ zcav_io.cpp 2009-08-24 07:36:40.688614055 +0000 +@@ -83,7 +83,6 @@ + for(int loops = 0; !exiting && loops < max_loops; loops++) + { + int i = 0; +-#ifdef _LARGEFILE64_SOURCE + if(start_offset) + { + OFF_TYPE real_offset = OFF_TYPE(start_offset) * OFF_TYPE(m_block_size) * OFF_TYPE(1<<20); +@@ -96,7 +95,6 @@ + i = start_offset; + } + else +-#endif + if(lseek(m_fd, 0, SEEK_SET)) + { + fprintf(stderr, "Can't lseek().\n"); +@@ -224,14 +222,12 @@ + // Read/write a block of data + double ZcavRead::access_data(int skip) + { +-#ifdef _LARGEFILE64_SOURCE + if(skip) + { + OFF_TYPE real_offset = OFF_TYPE(skip) * OFF_TYPE(m_block_size) * OFF_TYPE(1<<20); + if(file_lseek(m_fd, real_offset, SEEK_CUR) == OFF_TYPE(-1)) + return -1.0; + } +-#endif + + m_dur.start(); + for(int i = 0; i < m_block_size; i+= m_chunk_size) diff --git a/benchmarks/bonnie++/pkg-plist b/benchmarks/bonnie++/pkg-plist index 1ba3b8cc847f..ec516038e3f3 100644 --- a/benchmarks/bonnie++/pkg-plist +++ b/benchmarks/bonnie++/pkg-plist @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/bon_csv2html bin/bon_csv2txt bin/generate_randfile |