[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie/, app-benchmarks/bonnie/files/

2022-09-28 Thread Ionen Wolkens
commit: c4dbd767a4c65c6a1d1abd0c1f11151dd8e96e1c
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Sep 29 00:11:29 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Sep 29 04:17:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4dbd767

app-benchmarks/bonnie: fix build with clang16

Very trivial.

Closes: https://bugs.gentoo.org/870559
Signed-off-by: Ionen Wolkens  gentoo.org>

 app-benchmarks/bonnie/bonnie-2.0.6-r3.ebuild   | 1 +
 app-benchmarks/bonnie/files/bonnie-2.0.6-clang16.patch | 8 
 2 files changed, 9 insertions(+)

diff --git a/app-benchmarks/bonnie/bonnie-2.0.6-r3.ebuild 
b/app-benchmarks/bonnie/bonnie-2.0.6-r3.ebuild
index 6627f2b54a47..2ab46e265b61 100644
--- a/app-benchmarks/bonnie/bonnie-2.0.6-r3.ebuild
+++ b/app-benchmarks/bonnie/bonnie-2.0.6-r3.ebuild
@@ -17,6 +17,7 @@ KEYWORDS="~alpha amd64 ~ia64 ~mips ppc ppc64 sparc x86"
 PATCHES=(
"${FILESDIR}"/${P}-includes.patch
"${FILESDIR}"/${P}-man.patch
+   "${FILESDIR}"/${P}-clang16.patch
 )
 
 src_compile() {

diff --git a/app-benchmarks/bonnie/files/bonnie-2.0.6-clang16.patch 
b/app-benchmarks/bonnie/files/bonnie-2.0.6-clang16.patch
new file mode 100644
index ..d1a3a36fa4f2
--- /dev/null
+++ b/app-benchmarks/bonnie/files/bonnie-2.0.6-clang16.patch
@@ -0,0 +1,8 @@
+https://bugs.gentoo.org/870559
+--- a/Bonnie.c
 b/Bonnie.c
+@@ -93,3 +93,3 @@
+ 
+-main(
++int main(
+   intargc,



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie/files/, app-benchmarks/bonnie/

2022-09-28 Thread Ionen Wolkens
commit: 0ab1846b289cd3a7c35cb206a5ae80609bf8ede0
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Sep 28 23:53:18 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Sep 29 04:17:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ab1846b

app-benchmarks/bonnie: EAPI6->8, use https, tidy patches

Also drop the Makefile patch, no reason to even use the Makefile.

Signed-off-by: Ionen Wolkens  gentoo.org>

 ...{bonnie-2.0.6-r2.ebuild => bonnie-2.0.6-r3.ebuild} | 19 +--
 app-benchmarks/bonnie/files/Makefile.patch| 16 
 .../bonnie/files/bonnie-2.0.6-includes.patch  | 10 +++---
 app-benchmarks/bonnie/files/bonnie-2.0.6-man.patch|  8 
 app-benchmarks/bonnie/files/bonnie_man.patch  | 16 
 5 files changed, 20 insertions(+), 49 deletions(-)

diff --git a/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild 
b/app-benchmarks/bonnie/bonnie-2.0.6-r3.ebuild
similarity index 60%
rename from app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
rename to app-benchmarks/bonnie/bonnie-2.0.6-r3.ebuild
index 9c683b9e65ac..6627f2b54a47 100644
--- a/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
+++ b/app-benchmarks/bonnie/bonnie-2.0.6-r3.ebuild
@@ -1,29 +1,28 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 inherit toolchain-funcs
 
 DESCRIPTION="Performance Test of Filesystem I/O using standard C library calls"
-HOMEPAGE="http://www.textuality.com/bonnie/;
-SRC_URI="http://www.textuality.com/bonnie/bonnie.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://www.textuality.com/bonnie/;
+SRC_URI="https://www.textuality.com/bonnie/bonnie.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}"
 
 LICENSE="bonnie"
 SLOT="0"
 KEYWORDS="~alpha amd64 ~ia64 ~mips ppc ppc64 sparc x86"
-IUSE=""
-
-S=${WORKDIR}
 
 PATCHES=(
-   "${FILESDIR}"/bonnie_man.patch
-   "${FILESDIR}"/Makefile.patch
"${FILESDIR}"/${P}-includes.patch
+   "${FILESDIR}"/${P}-man.patch
 )
 
-src_configure() {
+src_compile() {
tc-export CC
+
+   emake -f /dev/null Bonnie
 }
 
 src_install() {

diff --git a/app-benchmarks/bonnie/files/Makefile.patch 
b/app-benchmarks/bonnie/files/Makefile.patch
deleted file mode 100644
index d803bd077ced..
--- a/app-benchmarks/bonnie/files/Makefile.patch
+++ /dev/null
@@ -1,16 +0,0 @@
 a/Makefile
-+++ b/Makefile
-@@ -1,11 +1,9 @@
--CFLAGS = -O $(SYSFLAGS)
--
- bsd:  
-   @echo 'Options are "make bsd" and "make SysV" - the default is "bsd".'
-   @echo 'If you get messages about missing functions, try "make SysV."'
--  make Bonnie 
-+  $(MAKE) Bonnie 
- 
- SysV: 
--  make Bonnie 'SYSFLAGS=-DSysV'
-+  $(MAKE) Bonnie 'SYSFLAGS=-DSysV'
- 
- Bonnie:   

diff --git a/app-benchmarks/bonnie/files/bonnie-2.0.6-includes.patch 
b/app-benchmarks/bonnie/files/bonnie-2.0.6-includes.patch
index cfefe953c6f1..8bec1e2ab04d 100644
--- a/app-benchmarks/bonnie/files/bonnie-2.0.6-includes.patch
+++ b/app-benchmarks/bonnie/files/bonnie-2.0.6-includes.patch
@@ -1,13 +1,9 @@
 a/Bonnie.c 1996-08-28 18:23:49.0 +0200
-+++ b/Bonnie.c 2010-10-12 20:15:26.0 +0200
-@@ -29,6 +29,10 @@
- #include 
- #include 
+--- a/Bonnie.c
 b/Bonnie.c
+@@ -31,2 +31,6 @@
  #include 
 +#include 
 +#include 
 +#include 
 +#include 
  #if defined(SysV)
- #include 
- #include 

diff --git a/app-benchmarks/bonnie/files/bonnie-2.0.6-man.patch 
b/app-benchmarks/bonnie/files/bonnie-2.0.6-man.patch
new file mode 100644
index ..d492ebd7c922
--- /dev/null
+++ b/app-benchmarks/bonnie/files/bonnie-2.0.6-man.patch
@@ -0,0 +1,8 @@
+--- a/bonnie.1
 b/bonnie.1
+@@ -63 +63 @@
+-.TH Bonnie 1 "2.0.6" Textuality
++.TH bonnie 1 "2.0.6" Textuality
+@@ -67 +67 @@
+-.B Bonnie
++.B bonnie

diff --git a/app-benchmarks/bonnie/files/bonnie_man.patch 
b/app-benchmarks/bonnie/files/bonnie_man.patch
deleted file mode 100644
index e4b2fe0a12e3..
--- a/app-benchmarks/bonnie/files/bonnie_man.patch
+++ /dev/null
@@ -1,16 +0,0 @@
 a/bonnie.1 2003-01-07 14:19:29.0 -0600
-+++ b/bonnie.1 2003-01-07 14:20:19.0 -0600
-@@ -60,11 +60,11 @@
- .fi
- .in
- ..
--.TH Bonnie 1 "2.0.6" Textuality
-+.TH bonnie 1 "2.0.6" Textuality
- .SH NAME
- Bonnie - File system benchmark
- .SH "SYNOPSIS"
--.B Bonnie
-+.B bonnie
- .RI "[-d\ scratch-dir]"
- .RI "[-html]"
- .RI "[-m\ machine-label]"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/files/

2021-09-20 Thread Conrad Kostecki
commit: 84e0dd31517568c5a25c323d02917a2dd317641c
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Sep 20 16:59:11 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Sep 20 20:09:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84e0dd31

app-benchmarks/bonnie++: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/22343
Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../bonnie++/files/bonnie++-1.96-compile-flags.patch| 17 -
 1 file changed, 17 deletions(-)

diff --git a/app-benchmarks/bonnie++/files/bonnie++-1.96-compile-flags.patch 
b/app-benchmarks/bonnie++/files/bonnie++-1.96-compile-flags.patch
deleted file mode 100644
index 05821f977ec..000
--- a/app-benchmarks/bonnie++/files/bonnie++-1.96-compile-flags.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/Makefile.in b/Makefile.in
-index 4f14819..1092891 100644
 a/Makefile.in
-+++ b/Makefile.in
-@@ -9,9 +9,9 @@ prefix=@prefix@
- eprefix=@exec_prefix@
- #MORE_WARNINGS=-Weffc++
- WFLAGS=-Wall -W -Wshadow -Wpointer-arith -Wwrite-strings -pedantic 
-ffor-scope -Wcast-align -Wsign-compare -Wpointer-arith -Wwrite-strings 
-Wformat-security -Wswitch-enum -Winit-self $(MORE_WARNINGS)
--CFLAGS=-O2 @debug@ -DNDEBUG $(WFLAGS) $(MORECFLAGS)
--CXX=@CXX@ $(CFLAGS)
--LINK=@CXX@
-+CXXFLAGS += @debug@ -DNDEBUG $(WFLAGS)
-+CXX=@CXX@ $(CXXFLAGS)
-+LINK=@CXX@ $(LDFLAGS)
- THREAD_LFLAGS=@thread_ldflags@
- 
- INSTALL=@INSTALL@



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2021-09-19 Thread Andreas K. Hüttel
commit: 684823ca6802c5ea4307d00fb064f71ec82012ac
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Sep 19 07:15:06 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Sep 19 12:36:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=684823ca

app-benchmarks/bonnie++: Remove old

Bug: https://bugs.gentoo.org/768402
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Huettel  gentoo.org>

 app-benchmarks/bonnie++/Manifest   |  3 --
 app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild | 38 --
 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 38 --
 app-benchmarks/bonnie++/bonnie++-1.98.ebuild   | 38 --
 4 files changed, 117 deletions(-)

diff --git a/app-benchmarks/bonnie++/Manifest b/app-benchmarks/bonnie++/Manifest
index 6fdb435854d..b272e3b9e85 100644
--- a/app-benchmarks/bonnie++/Manifest
+++ b/app-benchmarks/bonnie++/Manifest
@@ -1,4 +1 @@
-DIST bonnie++-1.97.2.tgz 102533 BLAKE2B 
019182c08b9ff7ba60e421f94039c09d27855f9e5b313f451721afdaedc9dc694b468bb30e78a04b655ec9a358ace3d68b13fc8f4d80ca3c48e0ff9387525b57
 SHA512 
e8303720be9a4ebcc454dbc8906a6843d63909c5101d66524a126ce0db3db7113d01edb7ed2f292bf9d08a6799579c4960f0ee4595019fbacda1601eba52a170
-DIST bonnie++-1.97.3.tgz 100166 BLAKE2B 
30feca43a2ec37b795168d37bb94124118222d7e0681dc85a34f8691e76b4306850e41dc6bbfb3f0ad34123ecd1c12396efea99e2ade12206aa6e78708e8
 SHA512 
44de20b5e46aeaf7f7214766b3c555b8799138f6fd92f87fe9b7dfa6f19815c629d6122c2ef4e4d98a5528dbfcd4c70b3b850eeba05739f6dd20251bf8d7c893
-DIST bonnie++-1.98.tgz 100339 BLAKE2B 
2a75cbeb881fd12727b5edf4e67789e64bd624b1885cdaf83fe3fc920fb2346e98faea2d9ce5da6fac8a84318a9cbda013afa2c9809892b23d3cf85c5a70982b
 SHA512 
3cf70be4a20c58c80e29a140ec6d3c3884f1b4101e0fb63da0ea831fe4a5eb4e275bda2ce4eaf7d9c2bfb65742e985249b491cda8bdad85984a62f2fc19756c0
 DIST bonnie++-2.00a.tgz 100502 BLAKE2B 
8bf9105dbbb1137485d8f24d4b911ca6787d09e3926181b460c18ceb52aea11ddff8f8edfefd1b2577fb1b59e658f4835cc865755faf739389f78fa855d13815
 SHA512 
1776f8406ccd0341f13bd952830f063e7df8fc2bd6d5c837de875dd5f817e29982b2a6358049221bffcae8faa7489560d2a1af46d79d8eb221d515d797236bdc

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
deleted file mode 100644
index 232563e5bd6..000
--- a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-DESCRIPTION="Hard drive bottleneck testing benchmark suite"
-HOMEPAGE="https://www.coker.com.au/bonnie++/;
-SRC_URI="https://www.coker.com.au/${PN}/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
-IUSE="debug"
-
-S="${WORKDIR}/${P}"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.96-compile-flags.patch" #426788
-   "${FILESDIR}"/${PN}-1.97-zcav-array-indexing-fix.patch #309319
-)
-
-DOCS=( README.txt README-2.00 debian/changelog credits.txt )
-HTML_DOCS=( readme.html )
-
-src_configure() {
-   econf \
-   $(usex debug "--enable-debug" "") \
-   --disable-stripping
-}
-
-src_install() {
-   dobin bonnie++ zcav bon_csv2html bon_csv2txt
-   sed -i -e \
-   
"s:/usr/share/doc/bonnie++:${EPREFIX}/usr/share/doc/${PF}/html:g" \
-   bonnie++.8 || die #431684
-   doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8
-   einstalldocs
-}

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
deleted file mode 100644
index ba2aa0078ae..000
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-DESCRIPTION="Hard drive bottleneck testing benchmark suite"
-HOMEPAGE="https://www.coker.com.au/bonnie++/;
-SRC_URI="https://www.coker.com.au/${PN}/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
-IUSE="debug"
-
-S="${WORKDIR}/${P}"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.96-compile-flags.patch" #426788
-   "${FILESDIR}"/${PN}-1.97-zcav-array-indexing-fix.patch #309319
-)
-
-DOCS=( README.txt README-2.00 debian/changelog credits.txt )
-HTML_DOCS=( readme.html )
-
-src_configure() {
-   econf \
-   $(usex debug "--enable-debug" "") \
-   --disable-stripping
-}
-
-src_install() {
-   dobin bonnie++ zcav bon_csv2html bon_csv2txt
-   sed -i -e \
-   
"s:/usr/share/doc/bonnie++:${EPREFIX}/usr/share/doc/${PF}/html:g" \
-   bonnie++.8 || die #431684
-   doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8
-   einstalldocs
-}

diff --git a/app-benchmarks/bonnie++/bonnie++-1.98.ebuild 

[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2021-09-01 Thread Sam James
commit: 351f2e0dbdf7e1c28d2a342faea42a169e2adb04
Author: Sam James  gentoo  org>
AuthorDate: Wed Sep  1 18:31:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Sep  1 18:31:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=351f2e0d

app-benchmarks/bonnie++: Stabilize 2.00a ppc, #808417

Signed-off-by: Sam James  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-2.00a.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild 
b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
index 3e70c257b11..d7c227704f4 100644
--- a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/${P}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
 IUSE="debug"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2021-09-01 Thread Sam James
commit: 65379af8a8b02b4ceebc76cb90e263c51ff49970
Author: Sam James  gentoo  org>
AuthorDate: Wed Sep  1 18:31:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Sep  1 18:31:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65379af8

app-benchmarks/bonnie++: Stabilize 2.00a ppc64, #808417

Signed-off-by: Sam James  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-2.00a.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild 
b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
index 49f095c5401..3e70c257b11 100644
--- a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/${P}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 sparc x86"
 IUSE="debug"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2021-08-30 Thread Agostino Sarubbo
commit: 8007c42c68c0a0bcb5e072549a6d2171fbb88567
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Aug 30 07:24:29 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Aug 30 07:24:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8007c42c

app-benchmarks/bonnie++: amd64 stable wrt bug #808417

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-2.00a.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild 
b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
index ae661ffba21..898963e02dd 100644
--- a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/${P}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86"
 IUSE="debug"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2021-08-29 Thread Sam James
commit: 8454a8d34e0694dbead90b671b797483f0c06013
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Aug 29 08:05:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 29 17:52:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8454a8d3

app-benchmarks/bonnie++: stable 2.00a for sparc, bug #808417

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-2.00a.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild 
b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
index ee1c63ff275..ae661ffba21 100644
--- a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/${P}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86"
 IUSE="debug"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2021-08-29 Thread Agostino Sarubbo
commit: 560e7d16c824a0e2252033516e06291db6bcf896
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Aug 29 10:01:47 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Aug 29 10:01:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=560e7d16

app-benchmarks/bonnie++: x86 stable wrt bug #808417

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-2.00a.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild 
b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
index f78476d70b6..ee1c63ff275 100644
--- a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/${P}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="debug"
 
 PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/, app-benchmarks/bonnie++/files/

2021-04-28 Thread Conrad Kostecki
commit: 3d1db1186049820984f67831069ff16be3d42e5b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Apr 27 20:49:42 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Apr 28 20:53:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d1db118

app-benchmarks/bonnie++: bump to version 2.00a

Closes: https://bugs.gentoo.org/768402
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Conrad Kostecki  gentoo.org>

 app-benchmarks/bonnie++/Manifest   |   1 +
 app-benchmarks/bonnie++/bonnie++-2.00a.ebuild  |  39 +
 .../bonnie++/files/bonnie++-2.00a-gcc11.patch  | 177 +
 .../bonnie++/files/bonnie++-2.00a-makefile.patch   |  47 ++
 4 files changed, 264 insertions(+)

diff --git a/app-benchmarks/bonnie++/Manifest b/app-benchmarks/bonnie++/Manifest
index 16e4fa97abd..6fdb435854d 100644
--- a/app-benchmarks/bonnie++/Manifest
+++ b/app-benchmarks/bonnie++/Manifest
@@ -1,3 +1,4 @@
 DIST bonnie++-1.97.2.tgz 102533 BLAKE2B 
019182c08b9ff7ba60e421f94039c09d27855f9e5b313f451721afdaedc9dc694b468bb30e78a04b655ec9a358ace3d68b13fc8f4d80ca3c48e0ff9387525b57
 SHA512 
e8303720be9a4ebcc454dbc8906a6843d63909c5101d66524a126ce0db3db7113d01edb7ed2f292bf9d08a6799579c4960f0ee4595019fbacda1601eba52a170
 DIST bonnie++-1.97.3.tgz 100166 BLAKE2B 
30feca43a2ec37b795168d37bb94124118222d7e0681dc85a34f8691e76b4306850e41dc6bbfb3f0ad34123ecd1c12396efea99e2ade12206aa6e78708e8
 SHA512 
44de20b5e46aeaf7f7214766b3c555b8799138f6fd92f87fe9b7dfa6f19815c629d6122c2ef4e4d98a5528dbfcd4c70b3b850eeba05739f6dd20251bf8d7c893
 DIST bonnie++-1.98.tgz 100339 BLAKE2B 
2a75cbeb881fd12727b5edf4e67789e64bd624b1885cdaf83fe3fc920fb2346e98faea2d9ce5da6fac8a84318a9cbda013afa2c9809892b23d3cf85c5a70982b
 SHA512 
3cf70be4a20c58c80e29a140ec6d3c3884f1b4101e0fb63da0ea831fe4a5eb4e275bda2ce4eaf7d9c2bfb65742e985249b491cda8bdad85984a62f2fc19756c0
+DIST bonnie++-2.00a.tgz 100502 BLAKE2B 
8bf9105dbbb1137485d8f24d4b911ca6787d09e3926181b460c18ceb52aea11ddff8f8edfefd1b2577fb1b59e658f4835cc865755faf739389f78fa855d13815
 SHA512 
1776f8406ccd0341f13bd952830f063e7df8fc2bd6d5c837de875dd5f817e29982b2a6358049221bffcae8faa7489560d2a1af46d79d8eb221d515d797236bdc

diff --git a/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild 
b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
new file mode 100644
index 000..f78476d70b6
--- /dev/null
+++ b/app-benchmarks/bonnie++/bonnie++-2.00a.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Hard drive bottleneck testing benchmark suite"
+HOMEPAGE="https://www.coker.com.au/bonnie++/;
+SRC_URI="https://www.coker.com.au/${PN}/${P}.tgz;
+S="${WORKDIR}/${P}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.97-zcav-array-indexing-fix.patch" #309319
+   "${FILESDIR}/${PN}-2.00a-gcc11.patch" #768402
+   "${FILESDIR}/${PN}-2.00a-makefile.patch" #426788
+)
+
+DOCS=( "credits.txt" "README.txt" "README-2.00" "debian/changelog" )
+HTML_DOCS=( "readme.html" )
+
+src_prepare() {
+   default
+
+   # Fix path in manpage #431684
+   sed -e "/readme.html/s/bonnie++/${PF}\/html/" -i bonnie++.8 || die
+}
+
+src_configure() {
+   local myeconfargs=(
+   --disable-stripping
+   $(usex debug "--enable-debug" "")
+   )
+
+   econf "${myeconfargs[@]}"
+}

diff --git a/app-benchmarks/bonnie++/files/bonnie++-2.00a-gcc11.patch 
b/app-benchmarks/bonnie++/files/bonnie++-2.00a-gcc11.patch
new file mode 100644
index 000..3bf224f34b5
--- /dev/null
+++ b/app-benchmarks/bonnie++/files/bonnie++-2.00a-gcc11.patch
@@ -0,0 +1,177 @@
+--- a/bon_csv2html.cpp
 b/bon_csv2html.cpp
+@@ -10,7 +10,7 @@
+ using namespace std;
+ typedef vector STR_VEC;
+ 
+-vector data;
++vector stddata;
+ typedef PCCHAR * PPCCHAR;
+ PPCCHAR * props;
+ 
+@@ -87,8 +87,8 @@
+ read_in(buf);
+   }
+ 
+-  props = new PPCCHAR[data.size()];
+-  for(i = 0; i < data.size(); i++)
++  props = new PPCCHAR[stddata.size()];
++  for(i = 0; i < stddata.size(); i++)
+   {
+ props[i] = new PCCHAR[MAX_ITEMS];
+ props[i][0] = NULL;
+@@ -109,7 +109,7 @@
+   }
+   calc_vals();
+   int mid_width = header();
+-  for(i = 0; i < data.size(); i++)
++  for(i = 0; i < stddata.size(); i++)
+   {
+ // First print the average speed line
+ printf("");
+@@ -171,23 +171,23 @@
+ 
+ void calc_vals()
+ {
+-  ITEM *arr = new ITEM[data.size()];
++  ITEM *arr = new ITEM[stddata.size()];
+   for(unsigned int column_ind = 0; column_ind < MAX_ITEMS; column_ind++)
+   {
+ switch(vals[column_ind])
+ {
+ case eNoCols:
+ {
+-  for(unsigned int row_ind = 0; row_ind < data.size(); row_ind++)
++  for(unsigned int row_ind = 0; row_ind < stddata.size(); row_ind++)
+   {
+ if(column_ind == COL_CONCURRENCY)
+ {
+-  

[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie/

2019-08-15 Thread Michał Górny
commit: 8fd326e24e7643a1153cb091d2b9d578039c57b9
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 15 09:12:29 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 15 09:12:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fd326e2

app-benchmarks/bonnie: Version the distfile

Signed-off-by: Michał Górny  gentoo.org>

 app-benchmarks/bonnie/Manifest   | 2 +-
 app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-benchmarks/bonnie/Manifest b/app-benchmarks/bonnie/Manifest
index d47936e8fb3..68abd5794ee 100644
--- a/app-benchmarks/bonnie/Manifest
+++ b/app-benchmarks/bonnie/Manifest
@@ -1 +1 @@
-DIST bonnie.tar.gz 7140 BLAKE2B 
dc0a216e1926de7630fbabdd80d2d1293fc9da404c3179f5515a9756942aec7c6870220e869d1d6c299dc39c2175b6c99b54778237a9af2778b7718aaf4280f3
 SHA512 
4cb431986870baf1d9e5f757970a4b489f89d4349f051cc2ae0aea035ce19a7962047920a3af1567e375b2c6f1e826309b044b8a8727400601203042a34ecb5f
+DIST bonnie-2.0.6.tar.gz 7140 BLAKE2B 
dc0a216e1926de7630fbabdd80d2d1293fc9da404c3179f5515a9756942aec7c6870220e869d1d6c299dc39c2175b6c99b54778237a9af2778b7718aaf4280f3
 SHA512 
4cb431986870baf1d9e5f757970a4b489f89d4349f051cc2ae0aea035ce19a7962047920a3af1567e375b2c6f1e826309b044b8a8727400601203042a34ecb5f

diff --git a/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild 
b/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
index e67da192399..e385ae0eb11 100644
--- a/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
+++ b/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,7 @@ inherit toolchain-funcs
 
 DESCRIPTION="Performance Test of Filesystem I/O using standard C library calls"
 HOMEPAGE="http://www.textuality.com/bonnie/;
-SRC_URI="http://www.textuality.com/bonnie/bonnie.tar.gz;
+SRC_URI="http://www.textuality.com/bonnie/bonnie.tar.gz -> ${P}.tar.gz"
 
 LICENSE="bonnie"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2019-05-21 Thread Göktürk Yüksek
commit: 0ace78eabdf129654af10a063ee3604778459457
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu May 16 17:21:37 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Tue May 21 16:14:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ace78ea

app-benchmarks/bonnie++: version bump to 1.98

Closes: https://bugs.gentoo.org/686110
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Göktürk Yüksek  gentoo.org>

 app-benchmarks/bonnie++/Manifest |  1 +
 app-benchmarks/bonnie++/bonnie++-1.98.ebuild | 38 
 2 files changed, 39 insertions(+)

diff --git a/app-benchmarks/bonnie++/Manifest b/app-benchmarks/bonnie++/Manifest
index 7f048ccdf77..16e4fa97abd 100644
--- a/app-benchmarks/bonnie++/Manifest
+++ b/app-benchmarks/bonnie++/Manifest
@@ -1,2 +1,3 @@
 DIST bonnie++-1.97.2.tgz 102533 BLAKE2B 
019182c08b9ff7ba60e421f94039c09d27855f9e5b313f451721afdaedc9dc694b468bb30e78a04b655ec9a358ace3d68b13fc8f4d80ca3c48e0ff9387525b57
 SHA512 
e8303720be9a4ebcc454dbc8906a6843d63909c5101d66524a126ce0db3db7113d01edb7ed2f292bf9d08a6799579c4960f0ee4595019fbacda1601eba52a170
 DIST bonnie++-1.97.3.tgz 100166 BLAKE2B 
30feca43a2ec37b795168d37bb94124118222d7e0681dc85a34f8691e76b4306850e41dc6bbfb3f0ad34123ecd1c12396efea99e2ade12206aa6e78708e8
 SHA512 
44de20b5e46aeaf7f7214766b3c555b8799138f6fd92f87fe9b7dfa6f19815c629d6122c2ef4e4d98a5528dbfcd4c70b3b850eeba05739f6dd20251bf8d7c893
+DIST bonnie++-1.98.tgz 100339 BLAKE2B 
2a75cbeb881fd12727b5edf4e67789e64bd624b1885cdaf83fe3fc920fb2346e98faea2d9ce5da6fac8a84318a9cbda013afa2c9809892b23d3cf85c5a70982b
 SHA512 
3cf70be4a20c58c80e29a140ec6d3c3884f1b4101e0fb63da0ea831fe4a5eb4e275bda2ce4eaf7d9c2bfb65742e985249b491cda8bdad85984a62f2fc19756c0

diff --git a/app-benchmarks/bonnie++/bonnie++-1.98.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.98.ebuild
new file mode 100644
index 000..3a228eca434
--- /dev/null
+++ b/app-benchmarks/bonnie++/bonnie++-1.98.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Hard drive bottleneck testing benchmark suite"
+HOMEPAGE="https://www.coker.com.au/bonnie++/;
+SRC_URI="https://www.coker.com.au/${PN}/${P}.tgz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug"
+
+S="${WORKDIR}/${P}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.96-compile-flags.patch" #426788
+   "${FILESDIR}"/${PN}-1.97-zcav-array-indexing-fix.patch #309319
+)
+
+DOCS=( README.txt README-2.00 debian/changelog credits.txt )
+HTML_DOCS=( readme.html )
+
+src_configure() {
+   econf \
+   $(usex debug "--enable-debug" "") \
+   --disable-stripping
+}
+
+src_install() {
+   dobin bonnie++ zcav bon_csv2html bon_csv2txt
+   sed -i -e \
+   
"s:/usr/share/doc/bonnie++:${EPREFIX}/usr/share/doc/${PF}/html:g" \
+   bonnie++.8 || die #431684
+   doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2019-05-18 Thread Michael Palimaka
commit: 43fa5c13acc143fcb4fc24dc874f66132ce5d9e9
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Thu May 16 17:13:20 2019 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun May 19 00:11:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43fa5c13

app-benchmarks/bonnie++: fix SRC_URI, use HTTPS

Closes: https://github.com/gentoo/gentoo/pull/12020
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Signed-off-by: Michael Palimaka  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild | 6 +++---
 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
index 129503e4953..2bc0b415597 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 
 DESCRIPTION="Hard drive bottleneck testing benchmark suite"
-HOMEPAGE="http://www.coker.com.au/bonnie++/;
-SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
+HOMEPAGE="https://www.coker.com.au/bonnie++/;
+SRC_URI="https://www.coker.com.au/${PN}/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
index 3ff574002e5..53c4fb597a2 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
 
 DESCRIPTION="Hard drive bottleneck testing benchmark suite"
-HOMEPAGE="http://www.coker.com.au/bonnie++/;
-SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
+HOMEPAGE="https://www.coker.com.au/bonnie++/;
+SRC_URI="https://www.coker.com.au/${PN}/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2018-04-03 Thread Matt Turner
commit: 90441bd40e419e21231d423bd027f436d2181d83
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Apr  3 21:02:07 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Apr  3 21:02:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90441bd4

app-benchmarks/bonnie++-1.97.3: hppa stable, bug 632366

 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
index 98a39040796..3ff574002e5 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie/

2017-12-28 Thread David Seifert
commit: 0814a533e8d489a8cee87d8f77fa38468f8d6efb
Author: David Seifert  gentoo  org>
AuthorDate: Thu Dec 28 12:48:12 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Dec 28 12:49:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0814a533

app-benchmarks/bonnie: Remove old

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-benchmarks/bonnie/bonnie-2.0.6-r1.ebuild | 34 
 app-benchmarks/bonnie/bonnie-2.0.6.ebuild| 34 
 2 files changed, 68 deletions(-)

diff --git a/app-benchmarks/bonnie/bonnie-2.0.6-r1.ebuild 
b/app-benchmarks/bonnie/bonnie-2.0.6-r1.ebuild
deleted file mode 100644
index b62e0aa42e4..000
--- a/app-benchmarks/bonnie/bonnie-2.0.6-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Performance Test of Filesystem I/O using standard C library calls"
-HOMEPAGE="http://www.textuality.com/bonnie/;
-SRC_URI="http://www.textuality.com/bonnie/bonnie.tar.gz;
-
-LICENSE="bonnie"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-S=${WORKDIR}
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/bonnie_man.patch \
-   "${FILESDIR}"/Makefile.patch \
-   "${FILESDIR}"/${P}-includes.patch
-}
-
-src_compile() {
-   emake CC=$(tc-getCC) SYSFLAGS="${CFLAGS}" || die
-}
-
-src_install() {
-   newbin Bonnie bonnie
-   doman bonnie.1
-   dodoc Instructions
-}

diff --git a/app-benchmarks/bonnie/bonnie-2.0.6.ebuild 
b/app-benchmarks/bonnie/bonnie-2.0.6.ebuild
deleted file mode 100644
index ddb11ff6ad1..000
--- a/app-benchmarks/bonnie/bonnie-2.0.6.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils
-
-DESCRIPTION="Performance Test of Filesystem I/O using standard C library calls"
-HOMEPAGE="http://www.textuality.com/bonnie/;
-SRC_URI="http://www.textuality.com/bonnie/bonnie.tar.gz;
-
-LICENSE="bonnie"
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ~mips ppc ppc64 sparc x86"
-IUSE=""
-DEPEND=""
-RDEPEND=""
-
-S=${WORKDIR}
-
-src_unpack() {
-   unpack ${A} || die
-   epatch "${FILESDIR}"/bonnie_man.patch
-   epatch "${FILESDIR}"/Makefile.patch
-}
-
-src_compile() {
-   make SYSFLAGS="${CFLAGS}" || die
-   mv Bonnie bonnie
-}
-
-src_install() {
-   doman bonnie.1
-   dodoc Instructions
-   dobin bonnie
-}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie/

2017-12-28 Thread David Seifert
commit: 2b4c2a24e3841853f86721110b070430cf38777a
Author: David Seifert  gentoo  org>
AuthorDate: Thu Dec 28 12:47:00 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Dec 28 12:49:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b4c2a24

app-benchmarks/bonnie: Mark stable

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild 
b/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
index 65ce1c40e0e..e67da192399 100644
--- a/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
+++ b/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.textuality.com/bonnie/bonnie.tar.gz;
 
 LICENSE="bonnie"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 ia64 ~mips ppc ppc64 sparc x86"
 IUSE=""
 
 S=${WORKDIR}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie/, app-benchmarks/bonnie/files/

2017-12-28 Thread David Seifert
commit: 2eb3a8d3ec499cd3c4152856b57c6c7ad1437295
Author: David Seifert  gentoo  org>
AuthorDate: Thu Dec 28 12:45:46 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Dec 28 12:49:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eb3a8d3

app-benchmarks/bonnie: [QA] Minor touchups

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild | 14 --
 app-benchmarks/bonnie/files/Makefile.patch   |  9 -
 2 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild 
b/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
index c9fdf5a2ddb..65ce1c40e0e 100644
--- a/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
+++ b/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit eutils toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="Performance Test of Filesystem I/O using standard C library calls"
 HOMEPAGE="http://www.textuality.com/bonnie/;
@@ -16,12 +16,14 @@ IUSE=""
 
 S=${WORKDIR}
 
-PATCHES=( "${FILESDIR}/bonnie_man.patch"
- "${FILESDIR}/Makefile.patch"
- "${FILESDIR}/${P}-includes.patch" )
+PATCHES=(
+   "${FILESDIR}"/bonnie_man.patch
+   "${FILESDIR}"/Makefile.patch
+   "${FILESDIR}"/${P}-includes.patch
+)
 
-src_compile() {
-   emake CC=$(tc-getCC) SYSFLAGS="${CFLAGS}"
+src_configure() {
+   tc-export CC
 }
 
 src_install() {

diff --git a/app-benchmarks/bonnie/files/Makefile.patch 
b/app-benchmarks/bonnie/files/Makefile.patch
index c4367087b8b..d803bd077ce 100644
--- a/app-benchmarks/bonnie/files/Makefile.patch
+++ b/app-benchmarks/bonnie/files/Makefile.patch
@@ -1,9 +1,8 @@
 a/Makefile 1996-08-29 03:45:37.0 +0200
-+++ b/Makefile 2011-08-25 16:07:10.757629898 +0200
-@@ -1,11 +1,11 @@
+--- a/Makefile
 b/Makefile
+@@ -1,11 +1,9 @@
 -CFLAGS = -O $(SYSFLAGS)
-+CFLAGS = $(SYSFLAGS)
- 
+-
  bsd:  
@echo 'Options are "make bsd" and "make SysV" - the default is "bsd".'
@echo 'If you get messages about missing functions, try "make SysV."'



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-11-25 Thread Markus Meier
commit: 1ddc7bc58e6ca8b3bd72b38348de54e72e836202
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Nov 25 11:52:38 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Nov 25 11:52:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ddc7bc5

app-benchmarks/bonnie++: arm stable, bug #632366

Package-Manager: Portage-2.3.13, Repoman-2.3.3
RepoMan-Options: --include-arches="arm"

 app-benchmarks/bonnie++/Manifest   | 2 +-
 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-benchmarks/bonnie++/Manifest b/app-benchmarks/bonnie++/Manifest
index 3c26ab91345..39cf870ed4f 100644
--- a/app-benchmarks/bonnie++/Manifest
+++ b/app-benchmarks/bonnie++/Manifest
@@ -1,2 +1,2 @@
 DIST bonnie++-1.97.2.tgz 102533 SHA256 
3f34a4c52ae9b2c3d493af8f794ba18cbf6732e9b76c3a4fa64549d95d914ce3 SHA512 
e8303720be9a4ebcc454dbc8906a6843d63909c5101d66524a126ce0db3db7113d01edb7ed2f292bf9d08a6799579c4960f0ee4595019fbacda1601eba52a170
 WHIRLPOOL 
1f66eef8a583ce9cb851a6c301019ba76d104bf3a6322d504cd7c8d1eb073c48235efcff6fec2b2f49207aa696db1071c55c94a3943a01917b2a7aa7349b0b73
-DIST bonnie++-1.97.3.tgz 100166 SHA256 
e27b386ae0dc054fa7b530aab6bdead7aea6337a864d1f982bc9ebacb320746e SHA512 
44de20b5e46aeaf7f7214766b3c555b8799138f6fd92f87fe9b7dfa6f19815c629d6122c2ef4e4d98a5528dbfcd4c70b3b850eeba05739f6dd20251bf8d7c893
 WHIRLPOOL 
d889c059b0bd5fb77948fd60aee3d1926f2967464a72e4c287cd14d2946e8dc73059d775bb4cfe1c0065ecbe159543dfdd519d880207974e50ec978a666721af
+DIST bonnie++-1.97.3.tgz 100166 BLAKE2B 
30feca43a2ec37b795168d37bb94124118222d7e0681dc85a34f8691e76b4306850e41dc6bbfb3f0ad34123ecd1c12396efea99e2ade12206aa6e78708e8
 SHA512 
44de20b5e46aeaf7f7214766b3c555b8799138f6fd92f87fe9b7dfa6f19815c629d6122c2ef4e4d98a5528dbfcd4c70b3b850eeba05739f6dd20251bf8d7c893

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
index 954fac012c0..98a39040796 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-10-29 Thread Sergei Trofimovich
commit: 98affa52a97bcb80ce68f4e8aabdb063043ca937
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Oct 29 09:33:41 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Oct 29 09:33:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98affa52

app-benchmarks/bonnie++: stable 1.97.3 for sparc, bug #632366 (thanks to Rolf 
Eike Beer)

Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="sparc"

 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
index cd4f4cc6c33..954fac012c0 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-10-05 Thread Göktürk Yüksek
commit: 3605d016ab8931f51299f12ec647b1f5c7f9b2dc
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Oct  5 19:15:22 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Oct  5 19:15:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3605d016

app-benchmarks/bonnie++: x86 stable

Tested on Intel(R) Pentium(R) M processor 1.60GHz

Bug: https://bugs.gentoo.org/632366
Package-Manager: Portage-2.3.8, Repoman-2.3.2

 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
index 5bfba710f9d..30084890cf1 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-10-05 Thread Göktürk Yüksek
commit: e543ed62b79380f01fd8fb561380c6dfe4531a94
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Oct  5 19:14:06 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Oct  5 19:14:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e543ed62

app-benchmarks/bonnie++: amd64 stable

Bug: https://bugs.gentoo.org/632366
Package-Manager: Portage-2.3.8, Repoman-2.3.2

 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
index e53e5581d7d..5bfba710f9d 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sparc ~x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-10-03 Thread Sergei Trofimovich
commit: 6c0191ecedf81b2f0b0a68a4a8b9709e68e37228
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Oct  3 08:20:09 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Oct  3 08:20:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c0191ec

app-benchmarks/bonnie++: stable 1.97.3 for ppc64, bug #632366

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
index fb5729d600b..e53e5581d7d 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sparc ~x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-10-02 Thread Sergei Trofimovich
commit: 0b2c8cf80af07ea8385db8eb6a665046cdf6d7a1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Oct  2 12:42:08 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Oct  2 13:24:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b2c8cf8

app-benchmarks/bonnie++: stable 1.97.3 for ppc, bug #632366

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
index cd02431e826..fb5729d600b 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ppc ~ppc64 ~sparc ~x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-10-02 Thread Sergei Trofimovich
commit: 953872dce9f90cc4c64d5813a1616ad7cf4f9b7f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Oct  2 12:41:02 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Oct  2 13:24:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=953872dc

app-benchmarks/bonnie++: stable 1.97.3 for ia64, bug #632366

Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ia64"

 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
index e046998d977..cd02431e826 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie/files/, app-benchmarks/bonnie/

2017-08-08 Thread Amy Liffey
commit: a441b9ac50933b6a4f736995092d53a8c268b707
Author: Amy Liffey  gentoo  org>
AuthorDate: Tue Aug  8 09:08:40 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Tue Aug  8 09:08:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a441b9ac

app-benchmarks/bonnie: EAPI 6 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild | 31 
 app-benchmarks/bonnie/files/bonnie_man.patch |  4 ++--
 2 files changed, 33 insertions(+), 2 deletions(-)

diff --git a/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild 
b/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
new file mode 100644
index 000..c9fdf5a2ddb
--- /dev/null
+++ b/app-benchmarks/bonnie/bonnie-2.0.6-r2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Performance Test of Filesystem I/O using standard C library calls"
+HOMEPAGE="http://www.textuality.com/bonnie/;
+SRC_URI="http://www.textuality.com/bonnie/bonnie.tar.gz;
+
+LICENSE="bonnie"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+S=${WORKDIR}
+
+PATCHES=( "${FILESDIR}/bonnie_man.patch"
+ "${FILESDIR}/Makefile.patch"
+ "${FILESDIR}/${P}-includes.patch" )
+
+src_compile() {
+   emake CC=$(tc-getCC) SYSFLAGS="${CFLAGS}"
+}
+
+src_install() {
+   newbin Bonnie bonnie
+   doman bonnie.1
+   dodoc Instructions
+}

diff --git a/app-benchmarks/bonnie/files/bonnie_man.patch 
b/app-benchmarks/bonnie/files/bonnie_man.patch
index 63dac33159a..e4b2fe0a12e 100644
--- a/app-benchmarks/bonnie/files/bonnie_man.patch
+++ b/app-benchmarks/bonnie/files/bonnie_man.patch
@@ -1,5 +1,5 @@
 bonnie.1.orig  2003-01-07 14:19:29.0 -0600
-+++ bonnie.1   2003-01-07 14:20:19.0 -0600
+--- a/bonnie.1 2003-01-07 14:19:29.0 -0600
 b/bonnie.1 2003-01-07 14:20:19.0 -0600
 @@ -60,11 +60,11 @@
  .fi
  .in



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-01-14 Thread Göktürk Yüksek
commit: f08352ac3a3548f8858363ccb9e20da7dffab2f9
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Sat Jan 14 18:19:24 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Sat Jan 14 18:23:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f08352ac

app-benchmarks/bonnie++: remove old 1.97-r1

Package-Manager: portage-2.3.0

 app-benchmarks/bonnie++/Manifest|  1 -
 app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/app-benchmarks/bonnie++/Manifest b/app-benchmarks/bonnie++/Manifest
index 1fe721d..3c26ab9 100644
--- a/app-benchmarks/bonnie++/Manifest
+++ b/app-benchmarks/bonnie++/Manifest
@@ -1,3 +1,2 @@
 DIST bonnie++-1.97.2.tgz 102533 SHA256 
3f34a4c52ae9b2c3d493af8f794ba18cbf6732e9b76c3a4fa64549d95d914ce3 SHA512 
e8303720be9a4ebcc454dbc8906a6843d63909c5101d66524a126ce0db3db7113d01edb7ed2f292bf9d08a6799579c4960f0ee4595019fbacda1601eba52a170
 WHIRLPOOL 
1f66eef8a583ce9cb851a6c301019ba76d104bf3a6322d504cd7c8d1eb073c48235efcff6fec2b2f49207aa696db1071c55c94a3943a01917b2a7aa7349b0b73
 DIST bonnie++-1.97.3.tgz 100166 SHA256 
e27b386ae0dc054fa7b530aab6bdead7aea6337a864d1f982bc9ebacb320746e SHA512 
44de20b5e46aeaf7f7214766b3c555b8799138f6fd92f87fe9b7dfa6f19815c629d6122c2ef4e4d98a5528dbfcd4c70b3b850eeba05739f6dd20251bf8d7c893
 WHIRLPOOL 
d889c059b0bd5fb77948fd60aee3d1926f2967464a72e4c287cd14d2946e8dc73059d775bb4cfe1c0065ecbe159543dfdd519d880207974e50ec978a666721af
-DIST bonnie++-1.97.tgz 102604 SHA256 
44f5a05937648a6526ba99354555d7d15f2dd392e55d3436f6746da6f6c35982 SHA512 
985fd4d0ef643fda5363e61609a5d73206ecfdd1c27470cc7babeaf9b7d87136c6bf40f62366d3f3ea58c50a307fa62aea59dc5efa69854fff9c43d1c940d3ab
 WHIRLPOOL 
23af9926691868a208fd69f7ec401fa0c2332835ccc63e4b0143497faabb02f21ddd56a41014b532287f4418e0ac92c712aff2bc0657ad2512961fa5aa3567b9

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
deleted file mode 100644
index 1c7f1af..
--- a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="6"
-
-DESCRIPTION="Hard drive bottleneck testing benchmark suite"
-HOMEPAGE="http://www.coker.com.au/bonnie++/;
-SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86"
-IUSE="debug"
-
-S="${WORKDIR}/${P}.1"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.96-compile-flags.patch" #426788
-   "${FILESDIR}"/${P}-zcav-array-indexing-fix.patch #309319
-)
-
-DOCS=( README.txt README-2.00 debian/changelog credits.txt )
-HTML_DOCS=( readme.html )
-
-src_configure() {
-   econf \
-   $(usex debug "--enable-debug" "") \
-   --disable-stripping
-}
-
-src_install() {
-   dobin bonnie++ zcav bon_csv2html bon_csv2txt
-   sed -i -e \
-   
"s:/usr/share/doc/bonnie++:${EPREFIX}/usr/share/doc/${PF}/html:g" \
-   bonnie++.8 || die #431684
-   doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-01-14 Thread Jeroen Roovers
commit: ac7a9c513cb3be4376161ab646f5f05c8c1d1e7f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Jan 14 11:44:40 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Jan 14 11:44:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac7a9c51

app-benchmarks/bonnie++: Stable for HPPA (bug #603704).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
index e03c898..5075e55 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-01-06 Thread Tobias Klausmann
commit: deba46e4863750d75102d5da446e307acdec7373
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri Jan  6 14:22:11 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri Jan  6 14:32:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deba46e4

app-benchmarks/bonnie++-1.97.2-r0: stable on alpha

Gentoo-Bug: 603704

 app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
index a238bba..e03c898 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2017-01-05 Thread Göktürk Yüksek
commit: c05c1cc24fb800b6488b4f7f79e8ebb473e72302
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Jan  5 22:08:09 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Jan  5 22:08:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c05c1cc2

app-benchmarks/bonnie++: bump to 1.97.3

Package-Manager: portage-2.3.0

 app-benchmarks/bonnie++/Manifest   |  1 +
 app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/app-benchmarks/bonnie++/Manifest b/app-benchmarks/bonnie++/Manifest
index 51a5788..1fe721d 100644
--- a/app-benchmarks/bonnie++/Manifest
+++ b/app-benchmarks/bonnie++/Manifest
@@ -1,2 +1,3 @@
 DIST bonnie++-1.97.2.tgz 102533 SHA256 
3f34a4c52ae9b2c3d493af8f794ba18cbf6732e9b76c3a4fa64549d95d914ce3 SHA512 
e8303720be9a4ebcc454dbc8906a6843d63909c5101d66524a126ce0db3db7113d01edb7ed2f292bf9d08a6799579c4960f0ee4595019fbacda1601eba52a170
 WHIRLPOOL 
1f66eef8a583ce9cb851a6c301019ba76d104bf3a6322d504cd7c8d1eb073c48235efcff6fec2b2f49207aa696db1071c55c94a3943a01917b2a7aa7349b0b73
+DIST bonnie++-1.97.3.tgz 100166 SHA256 
e27b386ae0dc054fa7b530aab6bdead7aea6337a864d1f982bc9ebacb320746e SHA512 
44de20b5e46aeaf7f7214766b3c555b8799138f6fd92f87fe9b7dfa6f19815c629d6122c2ef4e4d98a5528dbfcd4c70b3b850eeba05739f6dd20251bf8d7c893
 WHIRLPOOL 
d889c059b0bd5fb77948fd60aee3d1926f2967464a72e4c287cd14d2946e8dc73059d775bb4cfe1c0065ecbe159543dfdd519d880207974e50ec978a666721af
 DIST bonnie++-1.97.tgz 102604 SHA256 
44f5a05937648a6526ba99354555d7d15f2dd392e55d3436f6746da6f6c35982 SHA512 
985fd4d0ef643fda5363e61609a5d73206ecfdd1c27470cc7babeaf9b7d87136c6bf40f62366d3f3ea58c50a307fa62aea59dc5efa69854fff9c43d1c940d3ab
 WHIRLPOOL 
23af9926691868a208fd69f7ec401fa0c2332835ccc63e4b0143497faabb02f21ddd56a41014b532287f4418e0ac92c712aff2bc0657ad2512961fa5aa3567b9

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
new file mode 100644
index ..d9aaffd
--- /dev/null
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.3.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+DESCRIPTION="Hard drive bottleneck testing benchmark suite"
+HOMEPAGE="http://www.coker.com.au/bonnie++/;
+SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug"
+
+S="${WORKDIR}/${P}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.96-compile-flags.patch" #426788
+   "${FILESDIR}"/${PN}-1.97-zcav-array-indexing-fix.patch #309319
+)
+
+DOCS=( README.txt README-2.00 debian/changelog credits.txt )
+HTML_DOCS=( readme.html )
+
+src_configure() {
+   econf \
+   $(usex debug "--enable-debug" "") \
+   --disable-stripping
+}
+
+src_install() {
+   dobin bonnie++ zcav bon_csv2html bon_csv2txt
+   sed -i -e \
+   
"s:/usr/share/doc/bonnie++:${EPREFIX}/usr/share/doc/${PF}/html:g" \
+   bonnie++.8 || die #431684
+   doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-12-29 Thread Michael Palimaka
commit: c3264160949902ddd2192690e58bdad1a5202d6f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Dec 29 09:41:19 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Dec 29 09:41:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3264160

app-benchmarks/bonnie++: amd64 stable

Gentoo-bug: 603704

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
index 14691c2..dedfd9a 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-12-25 Thread Andrew Savchenko
commit: 23483cf83c1a7d2f1419673ffc91b186584b3921
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Dec 25 22:15:24 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Dec 25 22:15:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23483cf8

app-benchmarks/bonnie++: remove old

Package-Manager: portage-2.3.3
Signed-off-by: Andrew Savchenko  gentoo.org>

 app-benchmarks/bonnie++/Manifest |  1 -
 app-benchmarks/bonnie++/bonnie++-1.96.ebuild | 34 
 2 files changed, 35 deletions(-)

diff --git a/app-benchmarks/bonnie++/Manifest b/app-benchmarks/bonnie++/Manifest
index 7b10851..51a5788 100644
--- a/app-benchmarks/bonnie++/Manifest
+++ b/app-benchmarks/bonnie++/Manifest
@@ -1,3 +1,2 @@
-DIST bonnie++-1.96.tgz 105183 SHA256 
9c9d87bf09ac5a42a915ceeb9d8bb8358c0ca4642d86b85ed48ca5f15ee3456c SHA512 
d389545be68eb236382ac1cc361d171e28b6204c9ea2427a6d4743086fb16a3a1ee78acc35fd0706237d8d90dd8403872ed743583496b1e2512fa57242ff0bb8
 WHIRLPOOL 
57b04f3cac809bd66e32c895c857bfce969ae16a207eecef743b5c522b6d7496bf518d352a673011fba3e9073f541a274cbc9a4ae5ddd88b37cb386ea2b2e5d4
 DIST bonnie++-1.97.2.tgz 102533 SHA256 
3f34a4c52ae9b2c3d493af8f794ba18cbf6732e9b76c3a4fa64549d95d914ce3 SHA512 
e8303720be9a4ebcc454dbc8906a6843d63909c5101d66524a126ce0db3db7113d01edb7ed2f292bf9d08a6799579c4960f0ee4595019fbacda1601eba52a170
 WHIRLPOOL 
1f66eef8a583ce9cb851a6c301019ba76d104bf3a6322d504cd7c8d1eb073c48235efcff6fec2b2f49207aa696db1071c55c94a3943a01917b2a7aa7349b0b73
 DIST bonnie++-1.97.tgz 102604 SHA256 
44f5a05937648a6526ba99354555d7d15f2dd392e55d3436f6746da6f6c35982 SHA512 
985fd4d0ef643fda5363e61609a5d73206ecfdd1c27470cc7babeaf9b7d87136c6bf40f62366d3f3ea58c50a307fa62aea59dc5efa69854fff9c43d1c940d3ab
 WHIRLPOOL 
23af9926691868a208fd69f7ec401fa0c2332835ccc63e4b0143497faabb02f21ddd56a41014b532287f4418e0ac92c712aff2bc0657ad2512961fa5aa3567b9

diff --git a/app-benchmarks/bonnie++/bonnie++-1.96.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.96.ebuild
deleted file mode 100644
index b0e81de..
--- a/app-benchmarks/bonnie++/bonnie++-1.96.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils
-
-DESCRIPTION="Hard drive bottleneck testing benchmark suite"
-HOMEPAGE="http://www.coker.com.au/bonnie++/;
-SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86"
-IUSE="debug"
-
-DEPEND=""
-RDEPEND=""
-
-src_compile() {
-   econf \
-   $(use_with debug) \
-   --disable-stripping \
-   || die
-   emake || die "emake failed"
-   emake zcav || die "emake zcav failed" # see #9073
-}
-
-src_install() {
-   dosbin bonnie++ zcav || die
-   dobin bon_csv2html bon_csv2txt || die
-   doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8
-   dohtml readme.html
-   dodoc changelog.txt credits.txt
-}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-12-25 Thread Agostino Sarubbo
commit: 0b4ab26355c73c56659f8842dc81faca9bb9de58
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Dec 25 10:13:58 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Dec 25 10:13:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b4ab263

app-benchmarks/bonnie++: ia64 stable wrt bug #577830

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
index 9e6ba0e..1c7f1af 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}.1"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-12-25 Thread Agostino Sarubbo
commit: 2029f32490f966d62bb6154be5c635830ebf143b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Dec 25 10:08:31 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Dec 25 10:08:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2029f324

app-benchmarks/bonnie++: sparc stable wrt bug #577830

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
index ee59278..9e6ba0e 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 sparc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}.1"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-10-18 Thread Göktürk Yüksek
commit: b161b8526becac4105b8b060226c7118d4d5dc92
Author: Matthew Dawson  mjdsystems  ca>
AuthorDate: Mon Oct 17 04:58:25 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Tue Oct 18 15:57:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b161b852

app-benchmarks/bonnie++: Bump to 1.97.2

Fixes gcc 6 compile failures.

Package-Manager: portage-2.2.28

 app-benchmarks/bonnie++/Manifest   |  1 +
 app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/app-benchmarks/bonnie++/Manifest b/app-benchmarks/bonnie++/Manifest
index d04c043..7b10851 100644
--- a/app-benchmarks/bonnie++/Manifest
+++ b/app-benchmarks/bonnie++/Manifest
@@ -1,2 +1,3 @@
 DIST bonnie++-1.96.tgz 105183 SHA256 
9c9d87bf09ac5a42a915ceeb9d8bb8358c0ca4642d86b85ed48ca5f15ee3456c SHA512 
d389545be68eb236382ac1cc361d171e28b6204c9ea2427a6d4743086fb16a3a1ee78acc35fd0706237d8d90dd8403872ed743583496b1e2512fa57242ff0bb8
 WHIRLPOOL 
57b04f3cac809bd66e32c895c857bfce969ae16a207eecef743b5c522b6d7496bf518d352a673011fba3e9073f541a274cbc9a4ae5ddd88b37cb386ea2b2e5d4
+DIST bonnie++-1.97.2.tgz 102533 SHA256 
3f34a4c52ae9b2c3d493af8f794ba18cbf6732e9b76c3a4fa64549d95d914ce3 SHA512 
e8303720be9a4ebcc454dbc8906a6843d63909c5101d66524a126ce0db3db7113d01edb7ed2f292bf9d08a6799579c4960f0ee4595019fbacda1601eba52a170
 WHIRLPOOL 
1f66eef8a583ce9cb851a6c301019ba76d104bf3a6322d504cd7c8d1eb073c48235efcff6fec2b2f49207aa696db1071c55c94a3943a01917b2a7aa7349b0b73
 DIST bonnie++-1.97.tgz 102604 SHA256 
44f5a05937648a6526ba99354555d7d15f2dd392e55d3436f6746da6f6c35982 SHA512 
985fd4d0ef643fda5363e61609a5d73206ecfdd1c27470cc7babeaf9b7d87136c6bf40f62366d3f3ea58c50a307fa62aea59dc5efa69854fff9c43d1c940d3ab
 WHIRLPOOL 
23af9926691868a208fd69f7ec401fa0c2332835ccc63e4b0143497faabb02f21ddd56a41014b532287f4418e0ac92c712aff2bc0657ad2512961fa5aa3567b9

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
new file mode 100644
index ..14691c2
--- /dev/null
+++ b/app-benchmarks/bonnie++/bonnie++-1.97.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+DESCRIPTION="Hard drive bottleneck testing benchmark suite"
+HOMEPAGE="http://www.coker.com.au/bonnie++/;
+SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug"
+
+S="${WORKDIR}/${P}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.96-compile-flags.patch" #426788
+   "${FILESDIR}"/${PN}-1.97-zcav-array-indexing-fix.patch #309319
+)
+
+DOCS=( README.txt README-2.00 debian/changelog credits.txt )
+HTML_DOCS=( readme.html )
+
+src_configure() {
+   econf \
+   $(usex debug "--enable-debug" "") \
+   --disable-stripping
+}
+
+src_install() {
+   dobin bonnie++ zcav bon_csv2html bon_csv2txt
+   sed -i -e \
+   
"s:/usr/share/doc/bonnie++:${EPREFIX}/usr/share/doc/${PF}/html:g" \
+   bonnie++.8 || die #431684
+   doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-10-05 Thread Jeroen Roovers
commit: ac410b352dbfa98b5fac2d2a344a9adf8641c1e8
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Oct  6 05:38:10 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Oct  6 05:38:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac410b35

app-benchmarks/bonnie++: Stable for HPPA PPC64 (bug #577830).

Package-Manager: portage-2.3.1
RepoMan-Options: --ignore-arches

 app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
index b7d1a20..ee59278 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}.1"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-06-30 Thread Tobias Klausmann
commit: a32f45ada5a03d137dbe627cb74e496652c1faa0
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Thu Jun 30 14:34:21 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Thu Jun 30 14:34:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a32f45ad

app-benchmarks/bonnie++-1.97-r1: add alpha keyword

Gentoo-Bug: 577830

Package-Manager: portage-2.3.0

 app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
index 9e50f09..378f045 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}.1"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-05-22 Thread Göktürk Yüksek
commit: 027da5a64bb672a1d6623122edff22dc7dfb9be8
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu May 19 04:20:36 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Sun May 22 17:07:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=027da5a6

app-benchmarks/bonnie++: update maintainer email and remove proxy-maint

Package-Manager: portage-2.2.28

 app-benchmarks/bonnie++/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/app-benchmarks/bonnie++/metadata.xml 
b/app-benchmarks/bonnie++/metadata.xml
index 6eed44c..4d0566b 100644
--- a/app-benchmarks/bonnie++/metadata.xml
+++ b/app-benchmarks/bonnie++/metadata.xml
@@ -2,17 +2,13 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   gokt...@binghamton.edu
+   gokt...@gentoo.org
Göktürk Yüksek


birc...@gentoo.org
Andrew Savchenko

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

Bonnie++ is based on the Bonnie hard drive benchmark by Tim 
Bray. This
program is used by ReiserFS developers, but can be useful for 
anyone



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-04-23 Thread Patrice Clement
commit: 64cec023bc786c414548af1337056324be677cf1
Author: Göktürk Yüksek  binghamton  edu>
AuthorDate: Thu Apr 21 01:07:03 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Apr 23 07:43:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64cec023

app-benchmarks/bonnie++: simplify metadata by removing maintainer 

Package-Manager: portage-2.2.26
Closes: https://github.com/gentoo/gentoo/pull/1316

Signed-off-by: Patrice Clement  gentoo.org>

 app-benchmarks/bonnie++/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/app-benchmarks/bonnie++/metadata.xml 
b/app-benchmarks/bonnie++/metadata.xml
index 08e8982..6eed44c 100644
--- a/app-benchmarks/bonnie++/metadata.xml
+++ b/app-benchmarks/bonnie++/metadata.xml
@@ -4,17 +4,14 @@

gokt...@binghamton.edu
Göktürk Yüksek
-   please assign bugs to


birc...@gentoo.org
Andrew Savchenko
-   please CC on bugs


proxy-ma...@gentoo.org
Proxy Maintainers
-   please CC on bugs


Bonnie++ is based on the Bonnie hard drive benchmark by Tim 
Bray. This



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-03-20 Thread Agostino Sarubbo
commit: c602fdef6bfaa0af0fb234b9f72353ed2890a292
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Mar 20 15:43:32 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Mar 20 15:43:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c602fdef

app-benchmarks/bonnie++: amd64 stable wrt bug #577830

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
index bfb5436..c224b6e 100644
--- a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
+++ b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="debug"
 
 S="${WORKDIR}/${P}.1"



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-03-20 Thread Andrew Savchenko
commit: fafb6a0f33b8368bf5c4713f6d44f7f3dc65b8ff
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Mar 20 11:23:01 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Mar 20 11:23:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fafb6a0f

app-benchmarks/bonnie++: remove old version

Package-Manager: portage-2.2.28
Signed-off-by: Andrew Savchenko  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-1.97.ebuild | 46 
 1 file changed, 46 deletions(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97.ebuild
deleted file mode 100644
index 66c735b..000
--- a/app-benchmarks/bonnie++/bonnie++-1.97.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="Hard drive bottleneck testing benchmark suite"
-HOMEPAGE="http://www.coker.com.au/bonnie++/;
-SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="debug"
-
-DEPEND=""
-RDEPEND=""
-
-# hmm?
-S="${WORKDIR}/${P}.1"
-
-src_prepare() {
-   epatch "${FILESDIR}/${PN}-1.96-compile-flags.patch"
-}
-
-src_configure() {
-   econf \
-   $(use_with debug) \
-   --disable-stripping \
-   || die
-}
-
-src_compile() {
-   emake || die "emake failed"
-   emake zcav || die "emake zcav failed" # see #9073
-}
-
-src_install() {
-   dosbin bonnie++ zcav || die
-   dobin bon_csv2html bon_csv2txt || die
-   doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8
-   dohtml readme.html
-   dodoc changelog.txt credits.txt
-}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/files/, app-benchmarks/bonnie++/

2016-02-22 Thread Patrice Clement
commit: 8592f9336cde604750ae27431a2d172d3dfe6ab0
Author: Göktürk Yüksek  binghamton  edu>
AuthorDate: Sat Feb 13 03:51:15 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Feb 16 09:23:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8592f933

app-benchmarks/bonnie++: eapi bump, fix #309319, #431684, #515334

Also get rid if unnecessary DEPEND and RDEPEND since this package
has no external dependencies.

Remove src_compile phase that was added per #9073 14 years ago.
It's not reproducible anymore.

The 'changelog.txt' file is a symlink to 'debian/changelog'. Install
the actual changelog instead of the symlink.

Install everything under bin/ as opposed to sbin/ since this is
not a system application.

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=9073
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=309319
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=431684
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=515334

Package-Manager: portage-2.2.26

 app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild| 39 ++
 .../bonnie++-1.97-zcav-array-indexing-fix.patch| 35 +++
 2 files changed, 74 insertions(+)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
new file mode 100644
index 000..bfb5436
--- /dev/null
+++ b/app-benchmarks/bonnie++/bonnie++-1.97-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+DESCRIPTION="Hard drive bottleneck testing benchmark suite"
+HOMEPAGE="http://www.coker.com.au/bonnie++/;
+SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug"
+
+S="${WORKDIR}/${P}.1"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.96-compile-flags.patch" #426788
+   "${FILESDIR}"/${P}-zcav-array-indexing-fix.patch #309319
+)
+
+DOCS=( README.txt README-2.00 debian/changelog credits.txt )
+HTML_DOCS=( readme.html )
+
+src_configure() {
+   econf \
+   $(usex debug "--enable-debug" "") \
+   --disable-stripping
+}
+
+src_install() {
+   dobin bonnie++ zcav bon_csv2html bon_csv2txt
+   sed -i -e \
+   
"s:/usr/share/doc/bonnie++:${EPREFIX}/usr/share/doc/${PF}/html:g" \
+   bonnie++.8 || die #431684
+   doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8
+   einstalldocs
+}

diff --git 
a/app-benchmarks/bonnie++/files/bonnie++-1.97-zcav-array-indexing-fix.patch 
b/app-benchmarks/bonnie++/files/bonnie++-1.97-zcav-array-indexing-fix.patch
new file mode 100644
index 000..3d92689
--- /dev/null
+++ b/app-benchmarks/bonnie++/files/bonnie++-1.97-zcav-array-indexing-fix.patch
@@ -0,0 +1,35 @@
+From: Göktürk Yüksek 
+Subject: [PATCH] Fix array indexing in Zcav::Read when max_loop > 1 and 
start_offset > 0
+
+In method Zcav::Read, the variable 'i' holds the block index. It is
+also used as an index to arrays of measurement values (read times and
+block counts) when (max_loops > 0). However, the blocks array and
+measurements arrays will be out of sync if some initial blocks are to
+be skipped (by having start_offset > 0). Using the same index value
+for arrays of different sizes causes segfaults. Fix it by substracting
+the start_offset properly when accessing the measurements arrays.
+
+X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=309319
+
+--- a/zcav_io.cpp
 b/zcav_io.cpp
+@@ -108,7 +108,7 @@
+ double total_read_time = 0.0;
+ bool nextLoop = false;
+ for( ; !nextLoop && (!max_size || i < max_size)
+-  && (loops == 0 || (m_times[i] && m_times[i][0] != -1.0))
++  && (loops == 0 || (m_times[i - start_offset] && m_times[i - 
start_offset][0] != -1.0))
+   && (!max_size || i < max_size); i++)
+ {
+   double read_time = access_data(i ? skip_rate - 1 : 0);
+@@ -135,8 +135,8 @@
+   m_times.push_back(new double[max_loops]);
+   m_count.push_back(0);
+ }
+-m_times[i][loops] = read_time;
+-m_count[i]++;
++m_times[i - start_offset][loops] = read_time;
++m_count[i - start_offset]++;
+   }
+ } // end loop for reading blocks
+ 



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-02-02 Thread Patrick Lauer
commit: d92eb6b3ef5d8c3fe47da34b364e2b09a082b88d
Author: Patrick Lauer  gentoo  org>
AuthorDate: Tue Feb  2 16:03:13 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Tue Feb  2 16:03:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d92eb6b3

app-benchmarks/bonnie++: Fix metadata.xml

Package-Manager: portage-2.2.27

 app-benchmarks/bonnie++/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-benchmarks/bonnie++/metadata.xml 
b/app-benchmarks/bonnie++/metadata.xml
index e1a4252..08e8982 100644
--- a/app-benchmarks/bonnie++/metadata.xml
+++ b/app-benchmarks/bonnie++/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   gokt...@binghamton.edu>
+   gokt...@binghamton.edu
Göktürk Yüksek
please assign bugs to




[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/files/

2016-01-27 Thread Andrew Savchenko
commit: f8dc1e9071fefd7502be1797d0c8e1fdbd9c2bc1
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Wed Jan 27 11:13:08 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Wed Jan 27 11:14:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8dc1e90

app-benchmarks/bonnie++: drop unused patches

Package-Manager: portage-2.2.27
Signed-off-by: Andrew Savchenko  gentoo.org>

 .../bonnie++/files/bonnie++-1.93c-64bit.patch  | 15 ---
 .../files/bonnie++-1.93c-missing_include.patch | 46 --
 .../files/bonnie++-1.94-missing_include.patch  | 46 --
 .../bonnie++/files/bonnie++-1.95-homepage.patch| 12 --
 4 files changed, 119 deletions(-)

diff --git a/app-benchmarks/bonnie++/files/bonnie++-1.93c-64bit.patch 
b/app-benchmarks/bonnie++/files/bonnie++-1.93c-64bit.patch
deleted file mode 100644
index 2af76d8..000
--- a/app-benchmarks/bonnie++/files/bonnie++-1.93c-64bit.patch
+++ /dev/null
@@ -1,15 +0,0 @@
 getc_putc.cpp.old  2004-09-15 02:37:21.500489552 +0200
-+++ getc_putc.cpp  2004-09-15 02:40:58.623481840 +0200
-@@ -165,7 +165,11 @@
-   int size = 0, wrote;
-   while(size < file_size)
-   {
--wrote = write(FILE_FD, buf, min(sizeof(buf), (unsigned int)file_size - 
size));
-+//wrote = write(FILE_FD, buf, min(sizeof(buf), (unsigned int)file_size - 
size));
-+/*
-+ * gcc doesn't like above line. ? : should do the job as good as min()...
-+ */
-+wrote = write(FILE_FD, buf, (sizeof(buf) < (file_size - size) ? 
(sizeof(buf)):(file_size - size)));
- if(wrote < 0)
- {
-   fprintf(stderr, "Can't extend file - disk full?\n");

diff --git a/app-benchmarks/bonnie++/files/bonnie++-1.93c-missing_include.patch 
b/app-benchmarks/bonnie++/files/bonnie++-1.93c-missing_include.patch
deleted file mode 100644
index 2afe02b..000
--- a/app-benchmarks/bonnie++/files/bonnie++-1.93c-missing_include.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-diff -Naur bonnie++-1.93c.orig/bon_csv2html.cpp bonnie++-1.93c/bon_csv2html.cpp
 bonnie++-1.93c.orig/bon_csv2html.cpp   2008-05-02 14:12:19.0 
+0200
-+++ bonnie++-1.93c/bon_csv2html.cpp2008-05-02 14:13:57.0 +0200
-@@ -3,6 +3,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- // Maximum number of items expected on a csv line
- #define MAX_ITEMS 48
-diff -Naur bonnie++-1.93c.orig/getc_putc.cpp bonnie++-1.93c/getc_putc.cpp
 bonnie++-1.93c.orig/getc_putc.cpp  2008-05-02 14:12:19.0 +0200
-+++ bonnie++-1.93c/getc_putc.cpp   2008-05-02 14:19:15.0 +0200
-@@ -12,6 +12,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- 
- #include "duration.h"
-diff -Naur bonnie++-1.93c.orig/getc_putc_helper.cpp 
bonnie++-1.93c/getc_putc_helper.cpp
 bonnie++-1.93c.orig/getc_putc_helper.cpp   2008-05-02 14:12:19.0 
+0200
-+++ bonnie++-1.93c/getc_putc_helper.cpp2008-05-02 14:19:57.0 
+0200
-@@ -7,6 +7,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include "duration.h"
- #include 
- #include "getc_putc.h"
-diff -Naur bonnie++-1.93c.orig/zcav.cpp bonnie++-1.93c/zcav.cpp
 bonnie++-1.93c.orig/zcav.cpp   2008-05-02 14:12:19.0 +0200
-+++ bonnie++-1.93c/zcav.cpp2008-05-02 14:20:42.0 +0200
-@@ -9,6 +9,9 @@
- #include "getopt.h"
- #endif
- 
-+#include 
-+#include 
-+
- #define TOO_MANY_LOOPS 100
- 
- void usage()

diff --git a/app-benchmarks/bonnie++/files/bonnie++-1.94-missing_include.patch 
b/app-benchmarks/bonnie++/files/bonnie++-1.94-missing_include.patch
deleted file mode 100644
index 2afe02b..000
--- a/app-benchmarks/bonnie++/files/bonnie++-1.94-missing_include.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-diff -Naur bonnie++-1.93c.orig/bon_csv2html.cpp bonnie++-1.93c/bon_csv2html.cpp
 bonnie++-1.93c.orig/bon_csv2html.cpp   2008-05-02 14:12:19.0 
+0200
-+++ bonnie++-1.93c/bon_csv2html.cpp2008-05-02 14:13:57.0 +0200
-@@ -3,6 +3,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- // Maximum number of items expected on a csv line
- #define MAX_ITEMS 48
-diff -Naur bonnie++-1.93c.orig/getc_putc.cpp bonnie++-1.93c/getc_putc.cpp
 bonnie++-1.93c.orig/getc_putc.cpp  2008-05-02 14:12:19.0 +0200
-+++ bonnie++-1.93c/getc_putc.cpp   2008-05-02 14:19:15.0 +0200
-@@ -12,6 +12,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- 
- #include "duration.h"
-diff -Naur bonnie++-1.93c.orig/getc_putc_helper.cpp 
bonnie++-1.93c/getc_putc_helper.cpp
 bonnie++-1.93c.orig/getc_putc_helper.cpp   2008-05-02 14:12:19.0 
+0200
-+++ bonnie++-1.93c/getc_putc_helper.cpp2008-05-02 14:19:57.0 
+0200
-@@ -7,6 +7,7 @@
- #include 
- #include 
- #include 
-+#include 
- #include "duration.h"
- #include 
- #include "getc_putc.h"
-diff -Naur bonnie++-1.93c.orig/zcav.cpp bonnie++-1.93c/zcav.cpp
 bonnie++-1.93c.orig/zcav.cpp   2008-05-02 14:12:19.0 +0200
-+++ 

[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-01-27 Thread Andrew Savchenko
commit: 95f814c6a3a643ac94316373d2d52ff3325ce617
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Wed Jan 27 11:11:28 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Wed Jan 27 11:14:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95f814c6

app-benchmarks/bonnie++: drop old version

Package-Manager: portage-2.2.27
Signed-off-by: Andrew Savchenko  gentoo.org>

 app-benchmarks/bonnie++/bonnie++-1.96-r1.ebuild | 43 -
 1 file changed, 43 deletions(-)

diff --git a/app-benchmarks/bonnie++/bonnie++-1.96-r1.ebuild 
b/app-benchmarks/bonnie++/bonnie++-1.96-r1.ebuild
deleted file mode 100644
index b37e434..000
--- a/app-benchmarks/bonnie++/bonnie++-1.96-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="Hard drive bottleneck testing benchmark suite"
-HOMEPAGE="http://www.coker.com.au/bonnie++/;
-SRC_URI="http://www.coker.com.au/bonnie++/experimental/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="debug"
-
-DEPEND=""
-RDEPEND=""
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-compile-flags.patch
-}
-
-src_configure() {
-   econf \
-   $(use_with debug) \
-   --disable-stripping \
-   || die
-}
-
-src_compile() {
-   emake || die "emake failed"
-   emake zcav || die "emake zcav failed" # see #9073
-}
-
-src_install() {
-   dosbin bonnie++ zcav || die
-   dobin bon_csv2html bon_csv2txt || die
-   doman bon_csv2html.1 bon_csv2txt.1 bonnie++.8 zcav.8
-   dohtml readme.html
-   dodoc changelog.txt credits.txt
-}



[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/bonnie++/

2016-01-25 Thread Andrew Savchenko
commit: 2ea0888f1446ccc4c7bc4e0870cc24f39a58539f
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Mon Jan 25 10:26:04 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Mon Jan 25 10:29:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ea0888f

app-benchmarks/bonnie++: add new maintainers

Package-Manager: portage-2.2.27
Signed-off-by: Andrew Savchenko  gentoo.org>

 app-benchmarks/bonnie++/metadata.xml | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/app-benchmarks/bonnie++/metadata.xml 
b/app-benchmarks/bonnie++/metadata.xml
index 9567e8f..e1a4252 100644
--- a/app-benchmarks/bonnie++/metadata.xml
+++ b/app-benchmarks/bonnie++/metadata.xml
@@ -1,6 +1,21 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   gokt...@binghamton.edu>
+   Göktürk Yüksek
+   please assign bugs to
+   
+   
+   birc...@gentoo.org
+   Andrew Savchenko
+   please CC on bugs
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   please CC on bugs
+   

Bonnie++ is based on the Bonnie hard drive benchmark by Tim 
Bray. This
program is used by ReiserFS developers, but can be useful for 
anyone