From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1P1j6v-00079I-SZ for garchives@archives.gentoo.org; Fri, 01 Oct 2010 17:09:30 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7C19E0974; Fri, 1 Oct 2010 17:09:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9CB79E0974 for ; Fri, 1 Oct 2010 17:09:25 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 313841B4063 for ; Fri, 1 Oct 2010 17:09:25 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2244) id 8D94820051; Fri, 1 Oct 2010 17:09:23 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, arfrever@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-admin/supervisor: supervisor-3.0_alpha9.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: supervisor-3.0_alpha9.ebuild X-VCS-Directories: app-admin/supervisor X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis Content-Type: text/plain; charset=utf8 Message-Id: <20101001170923.8D94820051@flycatcher.gentoo.org> Date: Fri, 1 Oct 2010 17:09:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: ab2b5446-55b5-4c53-bfeb-0f057bae50e2 X-Archives-Hash: 0fdffdd6f22bf9a792ff4cab3c1127e4 arfrever 10/10/01 17:09:23 Modified: supervisor-3.0_alpha9.ebuild Log: Add calls to die(). =20 (Portage version: 2.2_rc88_p61/cvs/Linux x86_64) Revision Changes Path 1.2 app-admin/supervisor/supervisor-3.0_alpha9.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervis= or/supervisor-3.0_alpha9.ebuild?rev=3D1.2&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervis= or/supervisor-3.0_alpha9.ebuild?rev=3D1.2&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supervis= or/supervisor-3.0_alpha9.ebuild?r1=3D1.1&r2=3D1.2 Index: supervisor-3.0_alpha9.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/app-admin/supervisor/supervisor-3.0_alp= ha9.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- supervisor-3.0_alpha9.ebuild 23 Sep 2010 20:18:45 -0000 1.1 +++ supervisor-3.0_alpha9.ebuild 1 Oct 2010 17:09:23 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/supervisor-3.0_a= lpha9.ebuild,v 1.1 2010/09/23 20:18:45 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/supervisor/supervisor-3.0_a= lpha9.ebuild,v 1.2 2010/10/01 17:09:23 arfrever Exp $ =20 EAPI=3D"3" PYTHON_DEPEND=3D"2:2.5" @@ -39,6 +39,6 @@ =20 src_install() { distutils_src_install - newinitd "${FILESDIR}/init.d" supervisord - newconfd "${FILESDIR}/conf.d" supervisord + newinitd "${FILESDIR}/init.d" supervisord || die "newinitd failed" + newconfd "${FILESDIR}/conf.d" supervisord || die "newconfd failed" }