Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/ioping/
Date: Fri, 26 Aug 2022 12:04:51
Message-Id: 1661515478.b367d1c264925a473857cba4733d85558341b13b.sam@gentoo
1 commit: b367d1c264925a473857cba4733d85558341b13b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 26 11:56:21 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 26 12:04:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b367d1c2
7
8 app-benchmarks/ioping: fix build w/ glibc 2.36
9
10 Closes: https://bugs.gentoo.org/864455
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-benchmarks/ioping/Manifest | 1 +
14 app-benchmarks/ioping/ioping-1.3.ebuild | 24 ++++++++++++++++++++++++
15 2 files changed, 25 insertions(+)
16
17 diff --git a/app-benchmarks/ioping/Manifest b/app-benchmarks/ioping/Manifest
18 index 9d246c51f907..3e64362c4df6 100644
19 --- a/app-benchmarks/ioping/Manifest
20 +++ b/app-benchmarks/ioping/Manifest
21 @@ -1,2 +1,3 @@
22 DIST ioping-1.1.tar.gz 29251 BLAKE2B 2f0ec642c3545b8e603f90187f48bf44e1ef665a99bc04af4d5e6441016c9509875e8e05c1cc8715fd080c8a498c7374cf5db562a3203d7075edbe85683ccdbb SHA512 67802a6ab552ad1fdb8894f4d814601c2f66154f4bfc50fa0001d881694864c1a70882b4ba2d0f50cbd484472dc649a22b312f802a3bacc3317671971bdc0201
23 DIST ioping-1.2.tar.gz 30819 BLAKE2B 5f46ee783d51e4bea88a6036fba97c053e507f53183344d17fbfa6dd304d6cb76737ccff23c46ccce1fff8107d94e4e192264a3bf22062a7ea96b2a4475fb311 SHA512 4029f1b50dc292734088dc741e594c56021610aad16a0b9f42875b5fe91fbdf8d566a41dab0384aa739350f74e62688efdaf88168ab0d838b9c848ddd1c5dd96
24 +DIST ioping-1.3.tar.gz 33507 BLAKE2B 91d5eb2337aa4d403f9b335a2212ae3eec5c8786f382abec5bce852f5fd79cb0e0f25d83856cb42b1598032d10630b49bf1905eaa04856b5438e9e1e494c0c7d SHA512 52ca9596d0d54a02e58e40b777d31b44a3f10fd45b76d25ab491f7e6d126dfb9c4205c9b427b69bdc2012282ec8c5846db964d420913f4d91fa5101baa99089d
25
26 diff --git a/app-benchmarks/ioping/ioping-1.3.ebuild b/app-benchmarks/ioping/ioping-1.3.ebuild
27 new file mode 100644
28 index 000000000000..b9411df0feee
29 --- /dev/null
30 +++ b/app-benchmarks/ioping/ioping-1.3.ebuild
31 @@ -0,0 +1,24 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit toolchain-funcs
38 +
39 +DESCRIPTION="Simple disk I/0 latency measuring tool"
40 +HOMEPAGE="https://github.com/koct9i/ioping"
41 +SRC_URI="https://github.com/koct9i/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="GPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
46 +
47 +src_configure() {
48 + tc-export CC
49 +}
50 +
51 +src_install() {
52 + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
53 +
54 + dodoc changelog README.md
55 +}