Gentoo Archives: gentoo-commits

From: "Michael Hanselmann (hansmi)" <hansmi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/ganeti: ChangeLog metadata.xml ganeti-1.2.1.ebuild ganeti-1.2_beta3.ebuild
Date: Thu, 31 Jan 2008 21:01:08
Message-Id: E1JKgWv-0005m9-4e@stork.gentoo.org
1 hansmi 08/01/31 21:01:05
2
3 Modified: ChangeLog metadata.xml
4 Added: ganeti-1.2.1.ebuild
5 Removed: ganeti-1.2_beta3.ebuild
6 Log:
7 Version bump according to bug 207583 and set KillerFox as maintainer.
8 (Portage version: 2.1.3.19)
9
10 Revision Changes Path
11 1.6 app-emulation/ganeti/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 19 Dec 2007 22:06:01 -0000 1.5
24 +++ ChangeLog 31 Jan 2008 21:01:04 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-emulation/ganeti
27 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.5 2007/12/19 22:06:01 hansmi Exp $
29 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ChangeLog,v 1.6 2008/01/31 21:01:04 hansmi Exp $
31 +
32 +*ganeti-1.2.1 (31 Jan 2008)
33 +
34 + 31 Jan 2008; Michael Hanselmann <hansmi@g.o> metadata.xml,
35 + -ganeti-1.2_beta3.ebuild, +ganeti-1.2.1.ebuild:
36 + Version bump according to bug 207583 and set KillerFox as maintainer.
37
38 *ganeti-1.2.0 (19 Dec 2007)
39
40
41
42
43 1.2 app-emulation/ganeti/metadata.xml
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti/metadata.xml?rev=1.2&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti/metadata.xml?rev=1.2&content-type=text/plain
47 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti/metadata.xml?r1=1.1&r2=1.2
48
49 Index: metadata.xml
50 ===================================================================
51 RCS file: /var/cvsroot/gentoo-x86/app-emulation/ganeti/metadata.xml,v
52 retrieving revision 1.1
53 retrieving revision 1.2
54 diff -u -r1.1 -r1.2
55 --- metadata.xml 23 Nov 2007 02:03:39 -0000 1.1
56 +++ metadata.xml 31 Jan 2008 21:01:04 -0000 1.2
57 @@ -3,6 +3,6 @@
58 <pkgmetadata>
59 <herd>no-herd</herd>
60 <maintainer>
61 - <email>hansmi@g.o</email>
62 + <email>killerfox@g.o</email>
63 </maintainer>
64 </pkgmetadata>
65
66
67
68 1.1 app-emulation/ganeti/ganeti-1.2.1.ebuild
69
70 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti/ganeti-1.2.1.ebuild?rev=1.1&view=markup
71 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/ganeti/ganeti-1.2.1.ebuild?rev=1.1&content-type=text/plain
72
73 Index: ganeti-1.2.1.ebuild
74 ===================================================================
75 # Copyright 1999-2008 Gentoo Foundation
76 # Distributed under the terms of the GNU General Public License v2
77 # $Header: /var/cvsroot/gentoo-x86/app-emulation/ganeti/ganeti-1.2.1.ebuild,v 1.1 2008/01/31 21:01:04 hansmi Exp $
78
79 NEED_PYTHON=2.4
80
81 inherit python autotools eutils
82
83 MY_P=${P/_beta/b}
84 S="${WORKDIR}/${MY_P}"
85
86 DESCRIPTION="Ganeti is a virtual server management software tool built upon Xen"
87 HOMEPAGE="http://code.google.com/p/ganeti/"
88 SRC_URI="http://ganeti.googlecode.com/files/${MY_P}.tar.gz"
89
90 LICENSE="GPL-2"
91 SLOT="0"
92 KEYWORDS="~x86"
93 IUSE=""
94
95 DEPEND=""
96 RDEPEND="
97 >=app-emulation/xen-3.0
98 dev-libs/openssl
99 dev-python/pyopenssl
100 dev-python/pyparsing
101 dev-python/simplejson
102 dev-python/twisted
103 net-analyzer/arping
104 net-misc/bridge-utils
105 net-misc/openssh
106 sys-apps/iproute2
107 sys-cluster/drbd
108 sys-fs/lvm2
109 sys-fs/mdadm
110 "
111
112 src_unpack() {
113 unpack "${A}"
114 cd "${S}"
115
116 eautoreconf
117 }
118
119 src_compile() {
120 econf --localstatedir=/var --with-ssh-initscript=/etc/init.d/sshd || die
121 emake || die
122 }
123
124 src_install() {
125 make DESTDIR="${D}" install || die
126
127 newinitd "${FILESDIR}/ganeti.initd" ganeti
128
129 keepdir /var/{lib,log,run}/ganeti/
130 keepdir /srv/ganeti/{os,export}/
131 }
132
133
134
135 --
136 gentoo-commits@l.g.o mailing list