Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/xvile: xvile-9.4d.ebuild
Date: Sat, 30 Oct 2010 10:06:49
Message-Id: 20101030100641.D1C1A2004B@flycatcher.gentoo.org
1 ssuominen 10/10/30 10:06:41
2
3 Modified: xvile-9.4d.ebuild
4 Log:
5 Fix quoting, useless die
6
7 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 app-editors/xvile/xvile-9.4d.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/xvile-9.4d.ebuild?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/xvile-9.4d.ebuild?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/xvile/xvile-9.4d.ebuild?r1=1.10&r2=1.11
15
16 Index: xvile-9.4d.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/xvile/xvile-9.4d.ebuild,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- xvile-9.4d.ebuild 22 Jul 2007 09:00:58 -0000 1.10
23 +++ xvile-9.4d.ebuild 30 Oct 2010 10:06:41 -0000 1.11
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2007 Gentoo Foundation
26 +# Copyright 1999-2010 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/xvile/xvile-9.4d.ebuild,v 1.10 2007/07/22 09:00:58 omp Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/xvile/xvile-9.4d.ebuild,v 1.11 2010/10/30 10:06:41 ssuominen Exp $
30
31 inherit eutils
32
33 @@ -32,11 +32,11 @@
34
35 src_unpack() {
36 unpack vile-9.4.tgz
37 - cd ${S} || die "cd failed"
38 + cd "${S}"
39
40 local p
41 - for p in ${DISTDIR}/vile-${PV%[a-z]}[a-${P##*[0-9]}].patch.gz; do
42 - epatch ${p} || die "epatch failed"
43 + for p in "${DISTDIR}"/vile-${PV%[a-z]}[a-${P##*[0-9]}].patch.gz; do
44 + epatch ${p}
45 done
46 }