Gentoo Archives: gentoo-commits

From: "Alexys Jacob (ultrabug)" <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-cluster/crmsh: ChangeLog crmsh-1.2.5-r2.ebuild crmsh-1.2.5-r1.ebuild
Date: Thu, 23 May 2013 09:58:38
Message-Id: 20130523095833.88BC82171D@flycatcher.gentoo.org
1 ultrabug 13/05/23 09:58:33
2
3 Modified: ChangeLog
4 Added: crmsh-1.2.5-r2.ebuild
5 Removed: crmsh-1.2.5-r1.ebuild
6 Log:
7 fix #466668 thx to jer
8
9 (Portage version: 2.1.12.1/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
10
11 Revision Changes Path
12 1.6 sys-cluster/crmsh/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/crmsh/ChangeLog?rev=1.6&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/crmsh/ChangeLog?rev=1.6&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/crmsh/ChangeLog?r1=1.5&r2=1.6
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/crmsh/ChangeLog,v
21 retrieving revision 1.5
22 retrieving revision 1.6
23 diff -u -r1.5 -r1.6
24 --- ChangeLog 17 May 2013 10:13:43 -0000 1.5
25 +++ ChangeLog 23 May 2013 09:58:33 -0000 1.6
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sys-cluster/crmsh
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/crmsh/ChangeLog,v 1.5 2013/05/17 10:13:43 ultrabug Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/crmsh/ChangeLog,v 1.6 2013/05/23 09:58:33 ultrabug Exp $
31 +
32 +*crmsh-1.2.5-r2 (23 May 2013)
33 +
34 + 23 May 2013; Ultrabug <ultrabug@g.o> -crmsh-1.2.5-r1.ebuild,
35 + +crmsh-1.2.5-r2.ebuild:
36 + fix #466668 thx to jer
37
38 *crmsh-1.2.5-r1 (17 May 2013)
39
40
41
42
43 1.1 sys-cluster/crmsh/crmsh-1.2.5-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/crmsh/crmsh-1.2.5-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/crmsh/crmsh-1.2.5-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: crmsh-1.2.5-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-cluster/crmsh/crmsh-1.2.5-r2.ebuild,v 1.1 2013/05/23 09:58:33 ultrabug Exp $
53
54 EAPI=5
55 PYTHON_COMPAT="python2_7"
56
57 inherit autotools-utils python-single-r1
58
59 MY_TREE="ef3f08547688"
60
61 DESCRIPTION="Pacemaker command line interface for management and configuration"
62 HOMEPAGE="https://savannah.nongnu.org/projects/crmsh/"
63 SRC_URI="http://hg.savannah.gnu.org/hgweb/crmsh/archive/${MY_TREE}.tar.bz2"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~hppa ~x86"
68 IUSE="python"
69
70 DEPEND="
71 >=sys-cluster/pacemaker-1.1.8
72 || ( dev-lang/python:2.7 dev-lang/python:2.6 )
73 "
74 RDEPEND="${DEPEND}"
75
76 S="${WORKDIR}/${PN}-${MY_TREE}"
77
78 src_prepare() {
79 sed -e 's@CRM_CACHE_DIR=${localstatedir}/cache/crm@CRM_CACHE_DIR=${localstatedir}/crmsh@g' \
80 -i configure.ac || die
81 sed -e 's:/usr/bin/python$:/usr/bin/python2.7:g' -i "${S}/crm" || die
82 eautoreconf
83 }
84
85 src_configure() {
86 configure_crmsh() {
87 PYTHON="/usr/bin/python2.7" econf
88 }
89 configure_crmsh
90 }
91
92 src_compile() {
93 default
94 }
95
96 src_install() {
97 default
98 }