Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/iozone/
Date: Sat, 26 May 2018 12:51:09
Message-Id: 1527339050.3e31b929ed8db924ab1cf9eaaf416c5d55339b71.soap@gentoo
1 commit: 3e31b929ed8db924ab1cf9eaaf416c5d55339b71
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 26 09:00:41 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat May 26 12:50:50 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e31b929
7
8 app-benchmarks/iozone: Remove old
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11 Closes: https://github.com/gentoo/gentoo/pull/8596
12
13 app-benchmarks/iozone/Manifest | 3 --
14 app-benchmarks/iozone/iozone-3.397.ebuild | 73 ------------------------------
15 app-benchmarks/iozone/iozone-3.408.ebuild | 73 ------------------------------
16 app-benchmarks/iozone/iozone-3.430.ebuild | 74 -------------------------------
17 4 files changed, 223 deletions(-)
18
19 diff --git a/app-benchmarks/iozone/Manifest b/app-benchmarks/iozone/Manifest
20 index 0aa3f3722d3..a9b5c023d55 100644
21 --- a/app-benchmarks/iozone/Manifest
22 +++ b/app-benchmarks/iozone/Manifest
23 @@ -1,4 +1 @@
24 -DIST iozone3_397.tar 1679360 BLAKE2B 174d4ef11fb986f4b8bbf95774f6bf22659fb9e5a38fcd0626be8bd89303e775a9d8bc632575896885a9974239205bd3b3541da71b48bf30f80234ab577eb4eb SHA512 e154b56735c922173e7cf23344fa0a478982d202b3b831fd605481f69a77295281be121aa57a0164dc12edf5975f231339f6516da5c40906586d48ebacec7c23
25 -DIST iozone3_408.tar 1822720 BLAKE2B 700f531addb42525b5a3e8caaabfb8e03f7d7d1fa840a840462e88bd127b508e73f4bb1362bdef1e9f1b2044b42f54ab3811e674789f1fb8d7047b15565e8ee6 SHA512 ebc808468c741fff8d7909abd7eb41303c2a68c21ed7754e12bb6f859a88a9f9d040e0cdde42cb320958fbd453ba6014ba46fb7cfb200155f55a6fa7803f5d44
26 -DIST iozone3_430.tar 1832960 BLAKE2B 2d8cb85d444a9505550bf4a6951a83531427ba8e4493ffdd13c9435ce07452fbbd529602a7b13b120d276fd95c76609f4d47a58ff490120272b7fcb3650711e4 SHA512 f513c1a34bcdfadca0d01a942d55c7494e5646cf17384140df42643259456d41e40a54453ab3b9a1f1ebdeb456a9b4b1f836f979927cac57391b9a20ecdbcb55
27 DIST iozone3_471.tar 1853440 BLAKE2B 280c821a439ad1bacbd749278385481678d644a59c14395482c8a088b0578285f389f376fb32ce3c3abde598f50d693fb0c7c9a3d6597765547a71c76d21ea1c SHA512 c61b2b8b5af3dccdb99b26aef8a0a4f2f5f467fc3985ac72ed4bb4fb36e4b7684ca6dbaa5bbc05ae0a4e73852e048e9fd2495eda9313f5abc4e631499d683aec
28
29 diff --git a/app-benchmarks/iozone/iozone-3.397.ebuild b/app-benchmarks/iozone/iozone-3.397.ebuild
30 deleted file mode 100644
31 index 2422edcf74b..00000000000
32 --- a/app-benchmarks/iozone/iozone-3.397.ebuild
33 +++ /dev/null
34 @@ -1,73 +0,0 @@
35 -# Copyright 1999-2018 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=0
39 -
40 -# TODO
41 -# -> linux-arm (32bit) <-
42 -# -> linux-AMD64 (64bit) <-
43 -# -> linux-ia64 (64bit) <-
44 -# -> linux-powerpc (32bit) <-
45 -# -> linux-powerpc64 (64bit) <-
46 -# -> linux-S390 (32bit) <-
47 -# -> linux-S390X (64bit) <-
48 -#
49 -# -> freebsd (32bit) <-
50 -# -> macosx (32bit) <-
51 -# -> netbsd (32bit) <-
52 -# -> openbsd (32bit) <-
53 -# -> openbsd-threads (32bit) <-
54 -#
55 -# ~ia64 ~s390 alpha(?) x86-fbsd
56 -
57 -inherit eutils toolchain-funcs
58 -
59 -DESCRIPTION="Filesystem benchmarking program"
60 -HOMEPAGE="http://www.iozone.org/"
61 -SRC_URI="http://www.iozone.org/src/current/${PN}${PV/./_}.tar"
62 -
63 -LICENSE="freedist"
64 -SLOT="0"
65 -KEYWORDS="amd64 arm ia64 ppc ppc64 sparc x86"
66 -IUSE=""
67 -
68 -S=${WORKDIR}/${PN}${PV/./_}
69 -
70 -src_compile() {
71 - cd src/current
72 -
73 - # Options FIX
74 - sed -i -e "s:CC =.*:CC =$(tc-getCC):g" \
75 - -e "s:-O3:${CFLAGS}:g" makefile
76 -
77 - case ${ARCH} in
78 - x86|alpha) PLATFORM="linux";;
79 - arm) PLATFORM="linux-arm";;
80 - ppc) PLATFORM="linux-powerpc";;
81 - ppc64) PLATFORM="linux-powerpc64";;
82 - amd64) PLATFORM="linux-AMD64";;
83 - ia64) PLATFORM="linux-ia64";;
84 - s390) PLATFORM="linux-S390";;
85 - x86-fbsd) PLATFORM="freebsd";;
86 - *) PLATFORM="linux-${ARCH}";;
87 - esac
88 -
89 - emake ${PLATFORM} || die "Compile failed"
90 -}
91 -
92 -src_install() {
93 - dosbin src/current/iozone
94 - dodoc docs/I*
95 - dodoc docs/Run_rules.doc
96 - dodoc src/current/Changes.txt
97 - doman docs/iozone.1
98 -
99 - insinto /usr/share/doc/${PF}
100 - cd src/current
101 - doins Generate_Graphs Gnuplot.txt gengnuplot.sh gnu3d.dem
102 -}
103 -
104 -src_test() {
105 - cd "${T}"
106 - "${S}"/src/current/iozone testfile || die "self test failed"
107 -}
108
109 diff --git a/app-benchmarks/iozone/iozone-3.408.ebuild b/app-benchmarks/iozone/iozone-3.408.ebuild
110 deleted file mode 100644
111 index 8be6b9f2482..00000000000
112 --- a/app-benchmarks/iozone/iozone-3.408.ebuild
113 +++ /dev/null
114 @@ -1,73 +0,0 @@
115 -# Copyright 1999-2018 Gentoo Foundation
116 -# Distributed under the terms of the GNU General Public License v2
117 -
118 -EAPI=0
119 -
120 -# TODO
121 -# -> linux-arm (32bit) <-
122 -# -> linux-AMD64 (64bit) <-
123 -# -> linux-ia64 (64bit) <-
124 -# -> linux-powerpc (32bit) <-
125 -# -> linux-powerpc64 (64bit) <-
126 -# -> linux-S390 (32bit) <-
127 -# -> linux-S390X (64bit) <-
128 -#
129 -# -> freebsd (32bit) <-
130 -# -> macosx (32bit) <-
131 -# -> netbsd (32bit) <-
132 -# -> openbsd (32bit) <-
133 -# -> openbsd-threads (32bit) <-
134 -#
135 -# ~ia64 ~s390 alpha(?) x86-fbsd
136 -
137 -inherit eutils toolchain-funcs
138 -
139 -DESCRIPTION="Filesystem benchmarking program"
140 -HOMEPAGE="http://www.iozone.org/"
141 -SRC_URI="http://www.iozone.org/src/current/${PN}${PV/./_}.tar"
142 -
143 -LICENSE="freedist"
144 -SLOT="0"
145 -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
146 -IUSE=""
147 -
148 -S=${WORKDIR}/${PN}${PV/./_}
149 -
150 -src_compile() {
151 - cd src/current
152 -
153 - # Options FIX
154 - sed -i -e "s:CC =.*:CC =$(tc-getCC):g" \
155 - -e "s:-O3:${CFLAGS}:g" makefile
156 -
157 - case ${ARCH} in
158 - x86|alpha) PLATFORM="linux";;
159 - arm) PLATFORM="linux-arm";;
160 - ppc) PLATFORM="linux-powerpc";;
161 - ppc64) PLATFORM="linux-powerpc64";;
162 - amd64) PLATFORM="linux-AMD64";;
163 - ia64) PLATFORM="linux-ia64";;
164 - s390) PLATFORM="linux-S390";;
165 - x86-fbsd) PLATFORM="freebsd";;
166 - *) PLATFORM="linux-${ARCH}";;
167 - esac
168 -
169 - emake ${PLATFORM} || die "Compile failed"
170 -}
171 -
172 -src_install() {
173 - dosbin src/current/iozone
174 - dodoc docs/I*
175 - dodoc docs/Run_rules.doc
176 - dodoc src/current/Changes.txt
177 - doman docs/iozone.1
178 -
179 - insinto /usr/share/doc/${PF}
180 - cd src/current
181 - doins Generate_Graphs Gnuplot.txt gengnuplot.sh gnu3d.dem
182 -}
183 -
184 -src_test() {
185 - cd "${T}"
186 - "${S}"/src/current/iozone testfile || die "self test failed"
187 -}
188
189 diff --git a/app-benchmarks/iozone/iozone-3.430.ebuild b/app-benchmarks/iozone/iozone-3.430.ebuild
190 deleted file mode 100644
191 index ee0c9bd7881..00000000000
192 --- a/app-benchmarks/iozone/iozone-3.430.ebuild
193 +++ /dev/null
194 @@ -1,74 +0,0 @@
195 -# Copyright 1999-2018 Gentoo Foundation
196 -# Distributed under the terms of the GNU General Public License v2
197 -
198 -EAPI=0
199 -
200 -# TODO
201 -# -> linux-arm (32bit) <-
202 -# -> linux-AMD64 (64bit) <-
203 -# -> linux-ia64 (64bit) <-
204 -# -> linux-powerpc (32bit) <-
205 -# -> linux-powerpc64 (64bit) <-
206 -# -> linux-S390 (32bit) <-
207 -# -> linux-S390X (64bit) <-
208 -#
209 -# -> freebsd (32bit) <-
210 -# -> macosx (32bit) <-
211 -# -> netbsd (32bit) <-
212 -# -> openbsd (32bit) <-
213 -# -> openbsd-threads (32bit) <-
214 -#
215 -# ~ia64 ~s390 alpha(?) x86-fbsd
216 -
217 -inherit eutils toolchain-funcs
218 -
219 -DESCRIPTION="Filesystem benchmarking program"
220 -HOMEPAGE="http://www.iozone.org/"
221 -SRC_URI="http://www.iozone.org/src/current/${PN}${PV/./_}.tar"
222 -
223 -LICENSE="freedist"
224 -SLOT="0"
225 -KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
226 -IUSE=""
227 -
228 -S=${WORKDIR}/${PN}${PV/./_}
229 -
230 -src_compile() {
231 - cd src/current
232 -
233 - # Options FIX
234 - sed -i -e "s:CC =.*:CC =$(tc-getCC):g" \
235 - -e "s:-O3:${CFLAGS}:g" makefile
236 -
237 - case ${ARCH} in
238 - x86|alpha) PLATFORM="linux";;
239 - arm) PLATFORM="linux-arm";;
240 - ppc) PLATFORM="linux-powerpc";;
241 - ppc64) PLATFORM="linux-powerpc64";;
242 - amd64) PLATFORM="linux-AMD64";;
243 - ia64) PLATFORM="linux-ia64";;
244 - s390) PLATFORM="linux-S390";;
245 - x86-fbsd) PLATFORM="freebsd";;
246 - *) PLATFORM="linux-${ARCH}";;
247 - esac
248 -
249 - emake ${PLATFORM} || die "Compile failed"
250 -}
251 -
252 -src_install() {
253 - dosbin src/current/iozone
254 - dosbin src/current/fileop
255 - dodoc docs/I*
256 - dodoc docs/Run_rules.doc
257 - dodoc src/current/Changes.txt
258 - doman docs/iozone.1
259 -
260 - insinto /usr/share/doc/${PF}
261 - cd src/current
262 - doins Generate_Graphs Gnuplot.txt gengnuplot.sh gnu3d.dem
263 -}
264 -
265 -src_test() {
266 - cd "${T}"
267 - "${S}"/src/current/iozone testfile || die "self test failed"
268 -}