Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/supervisor: supervisor-3.0_alpha9.ebuild
Date: Fri, 01 Oct 2010 17:09:30
Message-Id: 20101001170923.8D94820051@flycatcher.gentoo.org
1 arfrever 10/10/01 17:09:23
2
3 Modified: supervisor-3.0_alpha9.ebuild
4 Log:
5 Add calls to die().
6
7 (Portage version: 2.2_rc88_p61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 app-admin/supervisor/supervisor-3.0_alpha9.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/supervisor-3.0_alpha9.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/supervisor-3.0_alpha9.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervisor/supervisor-3.0_alpha9.ebuild?r1=1.1&r2=1.2
15
16 Index: supervisor-3.0_alpha9.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-admin/supervisor/supervisor-3.0_alpha9.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- supervisor-3.0_alpha9.ebuild 23 Sep 2010 20:18:45 -0000 1.1
23 +++ supervisor-3.0_alpha9.ebuild 1 Oct 2010 17:09:23 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2010 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/supervisor-3.0_alpha9.ebuild,v 1.1 2010/09/23 20:18:45 arfrever Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/supervisor-3.0_alpha9.ebuild,v 1.2 2010/10/01 17:09:23 arfrever Exp $
29
30 EAPI="3"
31 PYTHON_DEPEND="2:2.5"
32 @@ -39,6 +39,6 @@
33
34 src_install() {
35 distutils_src_install
36 - newinitd "${FILESDIR}/init.d" supervisord
37 - newconfd "${FILESDIR}/conf.d" supervisord
38 + newinitd "${FILESDIR}/init.d" supervisord || die "newinitd failed"
39 + newconfd "${FILESDIR}/conf.d" supervisord || die "newconfd failed"
40 }