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/vile: vile-9.4d.ebuild vile-9.3h.ebuild
Date: Sat, 30 Oct 2010 10:03:02
Message-Id: 20101030100256.C7B9D2004B@flycatcher.gentoo.org
1 ssuominen 10/10/30 10:02:56
2
3 Modified: vile-9.4d.ebuild vile-9.3h.ebuild
4 Log:
5 Fix quoting, drop useless die from epatch
6
7 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 app-editors/vile/vile-9.4d.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.4d.ebuild?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.4d.ebuild?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.4d.ebuild?r1=1.12&r2=1.13
15
16 Index: vile-9.4d.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.4d.ebuild,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- vile-9.4d.ebuild 10 Oct 2007 07:26:10 -0000 1.12
23 +++ vile-9.4d.ebuild 30 Oct 2010 10:02:56 -0000 1.13
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/vile/vile-9.4d.ebuild,v 1.12 2007/10/10 07:26:10 opfer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.4d.ebuild,v 1.13 2010/10/30 10:02:56 ssuominen Exp $
30
31 inherit eutils
32
33 @@ -25,11 +25,11 @@
34
35 src_unpack() {
36 unpack vile-9.4.tgz
37 - cd ${S}
38 + cd "${S}"
39
40 local p
41 - for p in ${DISTDIR}/${P%[a-z]}[a-${P##*[0-9]}].patch.gz; do
42 - epatch ${p} || die "epatch failed"
43 + for p in "${DISTDIR}"/${P%[a-z]}[a-${P##*[0-9]}].patch.gz; do
44 + epatch ${p}
45 done
46 }
47
48 @@ -42,6 +42,6 @@
49 }
50
51 src_install() {
52 - make DESTDIR=${D} install || die "install failed"
53 + make DESTDIR="${D}" install || die "install failed"
54 dodoc CHANGES* INSTALL README* doc/*
55 }
56
57
58
59 1.14 app-editors/vile/vile-9.3h.ebuild
60
61 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.3h.ebuild?rev=1.14&view=markup
62 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.3h.ebuild?rev=1.14&content-type=text/plain
63 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/vile-9.3h.ebuild?r1=1.13&r2=1.14
64
65 Index: vile-9.3h.ebuild
66 ===================================================================
67 RCS file: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.3h.ebuild,v
68 retrieving revision 1.13
69 retrieving revision 1.14
70 diff -u -r1.13 -r1.14
71 --- vile-9.3h.ebuild 10 Oct 2007 07:26:10 -0000 1.13
72 +++ vile-9.3h.ebuild 30 Oct 2010 10:02:56 -0000 1.14
73 @@ -1,6 +1,6 @@
74 -# Copyright 1999-2007 Gentoo Foundation
75 +# Copyright 1999-2010 Gentoo Foundation
76 # Distributed under the terms of the GNU General Public License v2
77 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.3h.ebuild,v 1.13 2007/10/10 07:26:10 opfer Exp $
78 +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.3h.ebuild,v 1.14 2010/10/30 10:02:56 ssuominen Exp $
79
80 S=${WORKDIR}/vile-9.3
81 DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone"
82 @@ -28,11 +28,11 @@
83 src_unpack() {
84 unpack vile-9.3.tgz
85
86 - cd ${S}
87 + cd "${S}"
88 local i
89 for i in a b c d e f g h
90 do
91 - gunzip -c ${DISTDIR}/vile-9.3$i.patch.gz | patch -p1
92 + gunzip -c "${DISTDIR}"/vile-9.3$i.patch.gz | patch -p1
93 done
94 }
95
96 @@ -49,6 +49,6 @@
97 }
98
99 src_install () {
100 - make DESTDIR=${D} install || die
101 + make DESTDIR="${D}" install || die
102 dodoc CHANGES* MANIFEST INSTALL README* doc/*
103 }