Gentoo Archives: gentoo-commits

From: "Lance Albertson (ramereth)" <ramereth@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/ganeti-htools: ChangeLog ganeti-htools-0.2.5.ebuild
Date: Fri, 07 May 2010 21:16:12
Message-Id: 20100507211608.499342C3FC@corvid.gentoo.org
1 ramereth 10/05/07 21:16:08
2
3 Modified: ChangeLog
4 Added: ganeti-htools-0.2.5.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 app-emulation/ganeti-htools/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti-htools/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti-htools/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti-htools/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti-htools/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 11 Mar 2010 17:14:00 -0000 1.1
23 +++ ChangeLog 7 May 2010 21:16:08 -0000 1.2
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-emulation/ganeti-htools
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti-htools/ChangeLog,v 1.1 2010/03/11 17:14:00 ramereth Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti-htools/ChangeLog,v 1.2 2010/05/07 21:16:08 ramereth Exp $
29 +
30 +*ganeti-htools-0.2.5 (07 May 2010)
31 +
32 + 07 May 2010; Lance Albertson <ramereth@g.o>
33 + +ganeti-htools-0.2.5.ebuild:
34 + version bump
35
36 *ganeti-htools-0.2.4 (11 Mar 2010)
37
38
39
40
41 1.1 app-emulation/ganeti-htools/ganeti-htools-0.2.5.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti-htools/ganeti-htools-0.2.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti-htools/ganeti-htools-0.2.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ganeti-htools-0.2.5.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti-htools/ganeti-htools-0.2.5.ebuild,v 1.1 2010/05/07 21:16:08 ramereth Exp $
51
52 EAPI="2"
53
54 inherit multilib
55
56 DESCRIPTION="Cluster tools for fixing common allocation problems on Ganeti 2.0
57 clusters."
58 HOMEPAGE="http://code.google.com/p/ganeti/"
59 SRC_URI="http://ganeti.googlecode.com/files/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 DEPEND="dev-lang/ghc
67 dev-haskell/json
68 dev-haskell/curl
69 dev-haskell/network"
70 RDEPEND="${DEPEND}"
71
72 src_prepare() {
73 # htools does not currently compile cleanly with ghc-6.12+, so remove this
74 # for now
75 sed -i -e "s:-Werror ::" Makefile
76 }
77
78 src_compile() {
79 emake -j1 || die "emake failed"
80 }
81
82 src_install() {
83 dosbin hspace hscan hbal
84 exeinto /usr/$(get_libdir)/ganeti/iallocators
85 doexe hail
86 doman *.1
87 dodoc README NEWS AUTHORS
88 }