Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/emacs-cvs: emacs-cvs-23.0.0_p20070920-r1.ebuild ChangeLog emacs-cvs-22.1.50-r2.ebuild emacs-cvs-22.1.50_p20070829-r2.ebuild emacs-cvs-23.0.60-r1.ebuild emacs-cvs-23.0.50-r1.ebuild
Date: Sun, 02 Dec 2007 20:01:41
Message-Id: E1Iyv0P-0007mc-U3@stork.gentoo.org
1 ulm 07/12/02 20:01:33
2
3 Modified: emacs-cvs-23.0.0_p20070920-r1.ebuild ChangeLog
4 emacs-cvs-22.1.50-r2.ebuild
5 emacs-cvs-22.1.50_p20070829-r2.ebuild
6 emacs-cvs-23.0.60-r1.ebuild
7 emacs-cvs-23.0.50-r1.ebuild
8 Log:
9 Declare some variables as local, add some quotes.
10 (Portage version: 2.1.4_rc4)
11
12 Revision Changes Path
13 1.3 app-editors/emacs-cvs/emacs-cvs-23.0.0_p20070920-r1.ebuild
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.0_p20070920-r1.ebuild?rev=1.3&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.0_p20070920-r1.ebuild?rev=1.3&content-type=text/plain
17 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.0_p20070920-r1.ebuild?r1=1.2&r2=1.3
18
19 Index: emacs-cvs-23.0.0_p20070920-r1.ebuild
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.0_p20070920-r1.ebuild,v
22 retrieving revision 1.2
23 retrieving revision 1.3
24 diff -u -r1.2 -r1.3
25 --- emacs-cvs-23.0.0_p20070920-r1.ebuild 1 Dec 2007 01:13:51 -0000 1.2
26 +++ emacs-cvs-23.0.0_p20070920-r1.ebuild 2 Dec 2007 20:01:33 -0000 1.3
27 @@ -1,6 +1,6 @@
28 # Copyright 1999-2007 Gentoo Foundation
29 # Distributed under the terms of the GNU General Public License v2
30 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.0_p20070920-r1.ebuild,v 1.2 2007/12/01 01:13:51 ulm Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.0_p20070920-r1.ebuild,v 1.3 2007/12/02 20:01:33 ulm Exp $
32
33 WANT_AUTOCONF="2.5"
34 WANT_AUTOMAKE="latest"
35 @@ -150,6 +150,8 @@
36 }
37
38 src_install () {
39 + local i m
40 +
41 emake install DESTDIR="${D}" || die "make install failed"
42
43 rm "${D}"/usr/bin/emacs-${FULL_VERSION}-${EMACS_SUFFIX} \
44 @@ -160,13 +162,13 @@
45 # move info documentation to the correct place
46 einfo "Fixing info documentation ..."
47 for i in "${D}"/usr/share/info/${EMACS_SUFFIX}/*; do
48 - mv ${i} ${i}.info || die "mv info failed"
49 + mv "${i}" "${i}.info" || die "mv info failed"
50 done
51
52 # move man pages to the correct place
53 einfo "Fixing manpages ..."
54 for m in "${D}"/usr/share/man/man1/* ; do
55 - mv ${m} ${m%.1}-${EMACS_SUFFIX}.1 || die "mv man failed"
56 + mv "${m}" "${m%.1}-${EMACS_SUFFIX}.1" || die "mv man failed"
57 done
58
59 # avoid collision between slots, see bug #169033 e.g.
60 @@ -203,7 +205,7 @@
61 rm -f "${ROOT}"${infodir}/dir{,.*}
62 for f in "${ROOT}"${infodir}/*.info*; do
63 [[ ${f##*/} == *[0-9].info* ]] \
64 - || install-info --info-dir="${ROOT}"${infodir} ${f} &>/dev/null
65 + || install-info --info-dir="${ROOT}"${infodir} "${f}" &>/dev/null
66 done
67 echo
68 }
69 @@ -214,7 +216,7 @@
70
71 local f
72 for f in "${ROOT}"/var/lib/games/emacs/{snake,tetris}-scores; do
73 - test -e ${f} || touch ${f}
74 + test -e "${f}" || touch "${f}"
75 done
76
77 elisp-site-regen
78
79
80
81 1.177 app-editors/emacs-cvs/ChangeLog
82
83 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/ChangeLog?rev=1.177&view=markup
84 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/ChangeLog?rev=1.177&content-type=text/plain
85 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/ChangeLog?r1=1.176&r2=1.177
86
87 Index: ChangeLog
88 ===================================================================
89 RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v
90 retrieving revision 1.176
91 retrieving revision 1.177
92 diff -u -r1.176 -r1.177
93 --- ChangeLog 2 Dec 2007 18:22:04 -0000 1.176
94 +++ ChangeLog 2 Dec 2007 20:01:33 -0000 1.177
95 @@ -1,6 +1,12 @@
96 # ChangeLog for app-editors/emacs-cvs
97 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
98 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v 1.176 2007/12/02 18:22:04 opfer Exp $
99 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v 1.177 2007/12/02 20:01:33 ulm Exp $
100 +
101 + 02 Dec 2007; Ulrich Mueller <ulm@g.o> emacs-cvs-22.1.50-r2.ebuild,
102 + emacs-cvs-22.1.50_p20070829-r2.ebuild,
103 + emacs-cvs-23.0.0_p20070920-r1.ebuild, emacs-cvs-23.0.50-r1.ebuild,
104 + emacs-cvs-23.0.60-r1.ebuild:
105 + Declare some variables as local, add some quotes.
106
107 02 Dec 2007; Christian Faulhammer <opfer@g.o>
108 emacs-cvs-23.0.50-r1.ebuild:
109
110
111
112 1.3 app-editors/emacs-cvs/emacs-cvs-22.1.50-r2.ebuild
113
114 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50-r2.ebuild?rev=1.3&view=markup
115 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50-r2.ebuild?rev=1.3&content-type=text/plain
116 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50-r2.ebuild?r1=1.2&r2=1.3
117
118 Index: emacs-cvs-22.1.50-r2.ebuild
119 ===================================================================
120 RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50-r2.ebuild,v
121 retrieving revision 1.2
122 retrieving revision 1.3
123 diff -u -r1.2 -r1.3
124 --- emacs-cvs-22.1.50-r2.ebuild 1 Dec 2007 01:13:51 -0000 1.2
125 +++ emacs-cvs-22.1.50-r2.ebuild 2 Dec 2007 20:01:33 -0000 1.3
126 @@ -1,6 +1,6 @@
127 # Copyright 1999-2007 Gentoo Foundation
128 # Distributed under the terms of the GNU General Public License v2
129 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50-r2.ebuild,v 1.2 2007/12/01 01:13:51 ulm Exp $
130 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50-r2.ebuild,v 1.3 2007/12/02 20:01:33 ulm Exp $
131
132 ECVS_AUTH="pserver"
133 ECVS_SERVER="cvs.savannah.gnu.org:/sources/emacs"
134 @@ -158,6 +158,8 @@
135 }
136
137 src_install () {
138 + local i m
139 +
140 emake install DESTDIR="${D}" || die "make install failed"
141
142 rm "${D}"/usr/bin/emacs-${FULL_VERSION}-${EMACS_SUFFIX} \
143 @@ -168,13 +170,13 @@
144 # move info documentation to the correct place
145 einfo "Fixing info documentation ..."
146 for i in "${D}"/usr/share/info/${EMACS_SUFFIX}/*; do
147 - mv ${i} ${i}.info || die "mv info failed"
148 + mv "${i}" "${i}.info" || die "mv info failed"
149 done
150
151 # move man pages to the correct place
152 einfo "Fixing manpages ..."
153 for m in "${D}"/usr/share/man/man1/* ; do
154 - mv ${m} ${m%.1}-${EMACS_SUFFIX}.1 || die "mv man failed"
155 + mv "${m}" "${m%.1}-${EMACS_SUFFIX}.1" || die "mv man failed"
156 done
157
158 # avoid collision between slots, see bug #169033 e.g.
159 @@ -211,7 +213,7 @@
160 rm -f "${ROOT}"${infodir}/dir{,.*}
161 for f in "${ROOT}"${infodir}/*.info*; do
162 [[ ${f##*/} == *[0-9].info* ]] \
163 - || install-info --info-dir="${ROOT}"${infodir} ${f} &>/dev/null
164 + || install-info --info-dir="${ROOT}"${infodir} "${f}" &>/dev/null
165 done
166 echo
167 }
168 @@ -222,7 +224,7 @@
169
170 local f
171 for f in "${ROOT}"/var/lib/games/emacs/{snake,tetris}-scores; do
172 - test -e ${f} || touch ${f}
173 + test -e "${f}" || touch "${f}"
174 done
175
176 elisp-site-regen
177
178
179
180 1.3 app-editors/emacs-cvs/emacs-cvs-22.1.50_p20070829-r2.ebuild
181
182 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50_p20070829-r2.ebuild?rev=1.3&view=markup
183 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50_p20070829-r2.ebuild?rev=1.3&content-type=text/plain
184 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50_p20070829-r2.ebuild?r1=1.2&r2=1.3
185
186 Index: emacs-cvs-22.1.50_p20070829-r2.ebuild
187 ===================================================================
188 RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50_p20070829-r2.ebuild,v
189 retrieving revision 1.2
190 retrieving revision 1.3
191 diff -u -r1.2 -r1.3
192 --- emacs-cvs-22.1.50_p20070829-r2.ebuild 1 Dec 2007 01:13:51 -0000 1.2
193 +++ emacs-cvs-22.1.50_p20070829-r2.ebuild 2 Dec 2007 20:01:33 -0000 1.3
194 @@ -1,6 +1,6 @@
195 # Copyright 1999-2007 Gentoo Foundation
196 # Distributed under the terms of the GNU General Public License v2
197 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50_p20070829-r2.ebuild,v 1.2 2007/12/01 01:13:51 ulm Exp $
198 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.1.50_p20070829-r2.ebuild,v 1.3 2007/12/02 20:01:33 ulm Exp $
199
200 WANT_AUTOCONF="2.5"
201 WANT_AUTOMAKE="latest"
202 @@ -145,6 +145,8 @@
203 }
204
205 src_install () {
206 + local i m
207 +
208 emake install DESTDIR="${D}" || die "make install failed"
209
210 rm "${D}"/usr/bin/emacs-${FULL_VERSION}-${EMACS_SUFFIX} \
211 @@ -155,13 +157,13 @@
212 # move info documentation to the correct place
213 einfo "Fixing info documentation ..."
214 for i in "${D}"/usr/share/info/${EMACS_SUFFIX}/*; do
215 - mv ${i} ${i}.info || die "mv info failed"
216 + mv "${i}" "${i}.info" || die "mv info failed"
217 done
218
219 # move man pages to the correct place
220 einfo "Fixing manpages ..."
221 for m in "${D}"/usr/share/man/man1/* ; do
222 - mv ${m} ${m%.1}-${EMACS_SUFFIX}.1 || die "mv man failed"
223 + mv "${m}" "${m%.1}-${EMACS_SUFFIX}.1" || die "mv man failed"
224 done
225
226 # avoid collision between slots, see bug #169033 e.g.
227 @@ -198,7 +200,7 @@
228 rm -f "${ROOT}"${infodir}/dir{,.*}
229 for f in "${ROOT}"${infodir}/*.info*; do
230 [[ ${f##*/} == *[0-9].info* ]] \
231 - || install-info --info-dir="${ROOT}"${infodir} ${f} &>/dev/null
232 + || install-info --info-dir="${ROOT}"${infodir} "${f}" &>/dev/null
233 done
234 echo
235 }
236 @@ -209,7 +211,7 @@
237
238 local f
239 for f in "${ROOT}"/var/lib/games/emacs/{snake,tetris}-scores; do
240 - test -e ${f} || touch ${f}
241 + test -e "${f}" || touch "${f}"
242 done
243
244 elisp-site-regen
245
246
247
248 1.3 app-editors/emacs-cvs/emacs-cvs-23.0.60-r1.ebuild
249
250 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r1.ebuild?rev=1.3&view=markup
251 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r1.ebuild?rev=1.3&content-type=text/plain
252 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r1.ebuild?r1=1.2&r2=1.3
253
254 Index: emacs-cvs-23.0.60-r1.ebuild
255 ===================================================================
256 RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r1.ebuild,v
257 retrieving revision 1.2
258 retrieving revision 1.3
259 diff -u -r1.2 -r1.3
260 --- emacs-cvs-23.0.60-r1.ebuild 1 Dec 2007 01:13:51 -0000 1.2
261 +++ emacs-cvs-23.0.60-r1.ebuild 2 Dec 2007 20:01:33 -0000 1.3
262 @@ -1,6 +1,6 @@
263 # Copyright 1999-2007 Gentoo Foundation
264 # Distributed under the terms of the GNU General Public License v2
265 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r1.ebuild,v 1.2 2007/12/01 01:13:51 ulm Exp $
266 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r1.ebuild,v 1.3 2007/12/02 20:01:33 ulm Exp $
267
268 ECVS_AUTH="pserver"
269 ECVS_SERVER="cvs.savannah.gnu.org:/sources/emacs"
270 @@ -163,6 +163,8 @@
271 }
272
273 src_install () {
274 + local i m
275 +
276 emake install DESTDIR="${D}" || die "make install failed"
277
278 rm "${D}"/usr/bin/emacs-${FULL_VERSION}-${EMACS_SUFFIX} \
279 @@ -173,13 +175,13 @@
280 # move info documentation to the correct place
281 einfo "Fixing info documentation ..."
282 for i in "${D}"/usr/share/info/${EMACS_SUFFIX}/*; do
283 - mv ${i} ${i}.info || die "mv info failed"
284 + mv "${i}" "${i}.info" || die "mv info failed"
285 done
286
287 # move man pages to the correct place
288 einfo "Fixing manpages ..."
289 for m in "${D}"/usr/share/man/man1/* ; do
290 - mv ${m} ${m%.1}-${EMACS_SUFFIX}.1 || die "mv man failed"
291 + mv "${m}" "${m%.1}-${EMACS_SUFFIX}.1" || die "mv man failed"
292 done
293
294 # avoid collision between slots, see bug #169033 e.g.
295 @@ -216,7 +218,7 @@
296 rm -f "${ROOT}"${infodir}/dir{,.*}
297 for f in "${ROOT}"${infodir}/*.info*; do
298 [[ ${f##*/} == *[0-9].info* ]] \
299 - || install-info --info-dir="${ROOT}"${infodir} ${f} &>/dev/null
300 + || install-info --info-dir="${ROOT}"${infodir} "${f}" &>/dev/null
301 done
302 echo
303 }
304 @@ -227,7 +229,7 @@
305
306 local f
307 for f in "${ROOT}"/var/lib/games/emacs/{snake,tetris}-scores; do
308 - test -e ${f} || touch ${f}
309 + test -e "${f}" || touch "${f}"
310 done
311
312 elisp-site-regen
313
314
315
316 1.4 app-editors/emacs-cvs/emacs-cvs-23.0.50-r1.ebuild
317
318 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.50-r1.ebuild?rev=1.4&view=markup
319 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.50-r1.ebuild?rev=1.4&content-type=text/plain
320 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.50-r1.ebuild?r1=1.3&r2=1.4
321
322 Index: emacs-cvs-23.0.50-r1.ebuild
323 ===================================================================
324 RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.50-r1.ebuild,v
325 retrieving revision 1.3
326 retrieving revision 1.4
327 diff -u -r1.3 -r1.4
328 --- emacs-cvs-23.0.50-r1.ebuild 2 Dec 2007 18:22:04 -0000 1.3
329 +++ emacs-cvs-23.0.50-r1.ebuild 2 Dec 2007 20:01:33 -0000 1.4
330 @@ -1,6 +1,6 @@
331 # Copyright 1999-2007 Gentoo Foundation
332 # Distributed under the terms of the GNU General Public License v2
333 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.50-r1.ebuild,v 1.3 2007/12/02 18:22:04 opfer Exp $
334 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.50-r1.ebuild,v 1.4 2007/12/02 20:01:33 ulm Exp $
335
336 ECVS_AUTH="pserver"
337 ECVS_SERVER="cvs.savannah.gnu.org:/sources/emacs"
338 @@ -161,6 +161,8 @@
339 }
340
341 src_install () {
342 + local i m
343 +
344 emake install DESTDIR="${D}" || die "make install failed"
345
346 rm "${D}"/usr/bin/emacs-${FULL_VERSION}-${EMACS_SUFFIX} \
347 @@ -171,13 +173,13 @@
348 # move info documentation to the correct place
349 einfo "Fixing info documentation ..."
350 for i in "${D}"/usr/share/info/${EMACS_SUFFIX}/*; do
351 - mv ${i} ${i}.info || die "mv info failed"
352 + mv "${i}" "${i}.info" || die "mv info failed"
353 done
354
355 # move man pages to the correct place
356 einfo "Fixing manpages ..."
357 for m in "${D}"/usr/share/man/man1/* ; do
358 - mv ${m} ${m%.1}-${EMACS_SUFFIX}.1 || die "mv man failed"
359 + mv "${m}" "${m%.1}-${EMACS_SUFFIX}.1" || die "mv man failed"
360 done
361
362 # avoid collision between slots, see bug #169033 e.g.
363 @@ -214,7 +216,7 @@
364 rm -f "${ROOT}"${infodir}/dir{,.*}
365 for f in "${ROOT}"${infodir}/*.info*; do
366 [[ ${f##*/} == *[0-9].info* ]] \
367 - || install-info --info-dir="${ROOT}"${infodir} ${f} &>/dev/null
368 + || install-info --info-dir="${ROOT}"${infodir} "${f}" &>/dev/null
369 done
370 echo
371 }
372 @@ -225,7 +227,7 @@
373
374 local f
375 for f in "${ROOT}"/var/lib/games/emacs/{snake,tetris}-scores; do
376 - test -e ${f} || touch ${f}
377 + test -e "${f}" || touch "${f}"
378 done
379
380 elisp-site-regen
381
382
383
384 --
385 gentoo-commits@g.o mailing list