Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-benchmarks/ioping: ioping-0.8.ebuild ChangeLog
Date: Tue, 06 May 2014 07:36:04
Message-Id: 20140506073600.CCA5E2004C@flycatcher.gentoo.org
1 patrick 14/05/06 07:36:00
2
3 Modified: ChangeLog
4 Added: ioping-0.8.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.4 app-benchmarks/ioping/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/ioping/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/ioping/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/ioping/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-benchmarks/ioping/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 16 Jul 2013 13:39:50 -0000 1.3
24 +++ ChangeLog 6 May 2014 07:36:00 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-benchmarks/ioping
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ioping/ChangeLog,v 1.3 2013/07/16 13:39:50 jlec Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ioping/ChangeLog,v 1.4 2014/05/06 07:36:00 patrick Exp $
31 +
32 +*ioping-0.8 (06 May 2014)
33 +
34 + 06 May 2014; Patrick Lauer <patrick@g.o> +ioping-0.8.ebuild:
35 + Bump
36
37 *ioping-0.7 (16 Jul 2013)
38
39 @@ -19,4 +24,3 @@
40 13 Jan 2012; Justin Lecher <jlec@g.o> +ioping-0.6.ebuild,
41 +files/ioping-0.6-makefile.patch, +metadata.xml:
42 New inclusion, #398735; thanks Vladimir Berezhnoy for the initial ebuild
43 -
44
45
46
47 1.1 app-benchmarks/ioping/ioping-0.8.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/ioping/ioping-0.8.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-benchmarks/ioping/ioping-0.8.ebuild?rev=1.1&content-type=text/plain
51
52 Index: ioping-0.8.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/app-benchmarks/ioping/ioping-0.8.ebuild,v 1.1 2014/05/06 07:36:00 patrick Exp $
57
58 EAPI=5
59
60 inherit eutils
61
62 DESCRIPTION="Simple disk I/0 latency measuring tool"
63 HOMEPAGE="http://code.google.com/p/ioping/"
64 SRC_URI="http://ioping.googlecode.com/files/${P}.tar.gz"
65
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
68 LICENSE="GPL-3"
69 IUSE=""
70
71 src_prepare() {
72 sed \
73 -e 's: -g : :g' \
74 -e 's: $(LDFLAGS) : :g' \
75 -e 's: -o : $(LDFLAGS) -o :g' \
76 -e 's:-s -m:-m:g' \
77 -i Makefile || die
78 }
79
80 src_compile() {
81 emake \
82 CC="$(tc-getCC)" \
83 PREFIX="${EPREFIX}/usr"
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
88 }