Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyao: pyao-0.82-r2.ebuild
Date: Fri, 25 Jun 2010 14:41:06
Message-Id: 20100625144100.CCB252CF62@corvid.gentoo.org
1 ssuominen 10/06/25 14:41:00
2
3 Modified: pyao-0.82-r2.ebuild
4 Log:
5 revert bad quoting and pointless die msgs
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.3 dev-python/pyao/pyao-0.82-r2.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyao/pyao-0.82-r2.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyao/pyao-0.82-r2.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyao/pyao-0.82-r2.ebuild?r1=1.2&r2=1.3
14
15 Index: pyao-0.82-r2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyao/pyao-0.82-r2.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- pyao-0.82-r2.ebuild 25 Jun 2010 14:30:18 -0000 1.2
22 +++ pyao-0.82-r2.ebuild 25 Jun 2010 14:41:00 -0000 1.3
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyao/pyao-0.82-r2.ebuild,v 1.2 2010/06/25 14:30:18 arfrever Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyao/pyao-0.82-r2.ebuild,v 1.3 2010/06/25 14:41:00 ssuominen Exp $
28
29 EAPI="3"
30 PYTHON_DEPEND="2"
31 @@ -22,16 +22,16 @@
32 RDEPEND="${DEPEND}"
33
34 src_prepare() {
35 - epatch "${FILESDIR}/${P}-new_api.patch"
36 + epatch "${FILESDIR}"/${P}-new_api.patch
37 distutils_src_prepare
38 }
39
40 src_configure() {
41 - "$(PYTHON -f)" ./config_unix.py || die "config_unix.py failed"
42 + "$(PYTHON -f)" ./config_unix.py || die
43 }
44
45 src_install() {
46 distutils_src_install
47 insinto /usr/share/doc/${PF}/examples
48 - doins test.py || die "doins failed"
49 + doins test.py || die
50 }