Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-scheme/bigloo: bigloo-3.1a.ebuild bigloo-3.0c.ebuild bigloo-3.0b.ebuild ChangeLog bigloo-3.0a_p2.ebuild bigloo-3.0c_p4.ebuild bigloo-2.9a.ebuild bigloo-3.0b_p2.ebuild bigloo-2.7a_p2.ebuild
Date: Thu, 28 Aug 2008 17:49:31
Message-Id: E1KYlcc-0004tl-JW@stork.gentoo.org
1 ulm 08/08/28 17:49:26
2
3 Modified: bigloo-3.1a.ebuild bigloo-3.0c.ebuild
4 bigloo-3.0b.ebuild ChangeLog bigloo-3.0a_p2.ebuild
5 bigloo-3.0c_p4.ebuild bigloo-2.9a.ebuild
6 bigloo-3.0b_p2.ebuild bigloo-2.7a_p2.ebuild
7 Log:
8 Use elisp-compile instead of elisp-comp. Install Emacs byte-code files. Fixes bug 235881.
9 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 i686)
10
11 Revision Changes Path
12 1.2 dev-scheme/bigloo/bigloo-3.1a.ebuild
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.1a.ebuild?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.1a.ebuild?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.1a.ebuild?r1=1.1&r2=1.2
17
18 Index: bigloo-3.1a.ebuild
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.1a.ebuild,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- bigloo-3.1a.ebuild 3 Jun 2008 10:12:53 -0000 1.1
25 +++ bigloo-3.1a.ebuild 28 Aug 2008 17:49:25 -0000 1.2
26 @@ -1,6 +1,6 @@
27 # Copyright 1999-2008 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.1a.ebuild,v 1.1 2008/06/03 10:12:53 hkbst Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.1a.ebuild,v 1.2 2008/08/28 17:49:25 ulm Exp $
31
32 inherit elisp-common multilib
33
34 @@ -27,7 +27,9 @@
35 # fullbee"
36
37 src_compile() {
38 - use emacs && elisp-comp etc/*.el
39 + if use emacs; then
40 + elisp-compile etc/*.el || die "elisp-compile failed"
41 + fi
42
43 # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
44 # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
45 @@ -58,7 +60,7 @@
46 emake -j1 DESTDIR="${D}" install || die "install failed"
47
48 if use emacs; then
49 - elisp-install ${PN} etc/*.el
50 + elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
51 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
52 fi
53
54
55
56
57 1.2 dev-scheme/bigloo/bigloo-3.0c.ebuild
58
59 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c.ebuild?rev=1.2&view=markup
60 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c.ebuild?rev=1.2&content-type=text/plain
61 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c.ebuild?r1=1.1&r2=1.2
62
63 Index: bigloo-3.0c.ebuild
64 ===================================================================
65 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c.ebuild,v
66 retrieving revision 1.1
67 retrieving revision 1.2
68 diff -u -r1.1 -r1.2
69 --- bigloo-3.0c.ebuild 3 Dec 2007 16:40:25 -0000 1.1
70 +++ bigloo-3.0c.ebuild 28 Aug 2008 17:49:25 -0000 1.2
71 @@ -1,6 +1,6 @@
72 -# Copyright 1999-2007 Gentoo Foundation
73 +# Copyright 1999-2008 Gentoo Foundation
74 # Distributed under the terms of the GNU General Public License v2
75 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c.ebuild,v 1.1 2007/12/03 16:40:25 hkbst Exp $
76 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c.ebuild,v 1.2 2008/08/28 17:49:25 ulm Exp $
77
78 inherit elisp-common multilib
79
80 @@ -25,7 +25,9 @@
81 # fullbee"
82
83 src_compile() {
84 - use emacs && elisp-comp etc/*.el
85 + if use emacs; then
86 + elisp-compile etc/*.el || die "elisp-compile failed"
87 + fi
88
89 # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
90 # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
91 @@ -56,7 +58,7 @@
92 emake -j1 DESTDIR="${D}" install || die "install failed"
93
94 if use emacs; then
95 - elisp-install ${PN} etc/*.el
96 + elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
97 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
98 fi
99
100
101
102
103 1.3 dev-scheme/bigloo/bigloo-3.0b.ebuild
104
105 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b.ebuild?rev=1.3&view=markup
106 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b.ebuild?rev=1.3&content-type=text/plain
107 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b.ebuild?r1=1.2&r2=1.3
108
109 Index: bigloo-3.0b.ebuild
110 ===================================================================
111 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b.ebuild,v
112 retrieving revision 1.2
113 retrieving revision 1.3
114 diff -u -r1.2 -r1.3
115 --- bigloo-3.0b.ebuild 11 Sep 2007 15:32:44 -0000 1.2
116 +++ bigloo-3.0b.ebuild 28 Aug 2008 17:49:25 -0000 1.3
117 @@ -1,6 +1,6 @@
118 -# Copyright 1999-2007 Gentoo Foundation
119 +# Copyright 1999-2008 Gentoo Foundation
120 # Distributed under the terms of the GNU General Public License v2
121 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b.ebuild,v 1.2 2007/09/11 15:32:44 hkbst Exp $
122 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b.ebuild,v 1.3 2008/08/28 17:49:25 ulm Exp $
123
124 inherit elisp-common multilib
125
126 @@ -25,7 +25,9 @@
127 # fullbee"
128
129 src_compile() {
130 - use emacs && elisp-comp etc/*.el
131 + if use emacs; then
132 + elisp-compile etc/*.el || die "elisp-compile failed"
133 + fi
134
135 # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
136 # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
137 @@ -67,7 +69,7 @@
138 emake -j1 DESTDIR=${D} install || die "install failed"
139
140 if use emacs; then
141 - elisp-install ${PN} etc/*.el
142 + elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
143 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
144 fi
145
146
147
148
149 1.27 dev-scheme/bigloo/ChangeLog
150
151 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/ChangeLog?rev=1.27&view=markup
152 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/ChangeLog?rev=1.27&content-type=text/plain
153 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/ChangeLog?r1=1.26&r2=1.27
154
155 Index: ChangeLog
156 ===================================================================
157 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/ChangeLog,v
158 retrieving revision 1.26
159 retrieving revision 1.27
160 diff -u -r1.26 -r1.27
161 --- ChangeLog 3 Jun 2008 10:12:53 -0000 1.26
162 +++ ChangeLog 28 Aug 2008 17:49:25 -0000 1.27
163 @@ -1,6 +1,13 @@
164 # ChangeLog for dev-scheme/bigloo
165 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
166 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/ChangeLog,v 1.26 2008/06/03 10:12:53 hkbst Exp $
167 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/ChangeLog,v 1.27 2008/08/28 17:49:25 ulm Exp $
168 +
169 + 28 Aug 2008; Ulrich Mueller <ulm@g.o> bigloo-2.7a_p2.ebuild,
170 + bigloo-2.9a.ebuild, bigloo-3.0a_p2.ebuild, bigloo-3.0b.ebuild,
171 + bigloo-3.0b_p2.ebuild, bigloo-3.0c.ebuild, bigloo-3.0c_p4.ebuild,
172 + bigloo-3.1a.ebuild:
173 + Use elisp-compile instead of elisp-comp. Install Emacs byte-code files.
174 + Fixes bug 235881.
175
176 *bigloo-3.1a (03 Jun 2008)
177
178
179
180
181 1.3 dev-scheme/bigloo/bigloo-3.0a_p2.ebuild
182
183 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0a_p2.ebuild?rev=1.3&view=markup
184 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0a_p2.ebuild?rev=1.3&content-type=text/plain
185 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0a_p2.ebuild?r1=1.2&r2=1.3
186
187 Index: bigloo-3.0a_p2.ebuild
188 ===================================================================
189 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0a_p2.ebuild,v
190 retrieving revision 1.2
191 retrieving revision 1.3
192 diff -u -r1.2 -r1.3
193 --- bigloo-3.0a_p2.ebuild 20 Jun 2007 15:03:52 -0000 1.2
194 +++ bigloo-3.0a_p2.ebuild 28 Aug 2008 17:49:25 -0000 1.3
195 @@ -1,6 +1,6 @@
196 -# Copyright 1999-2007 Gentoo Foundation
197 +# Copyright 1999-2008 Gentoo Foundation
198 # Distributed under the terms of the GNU General Public License v2
199 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0a_p2.ebuild,v 1.2 2007/06/20 15:03:52 hkbst Exp $
200 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0a_p2.ebuild,v 1.3 2008/08/28 17:49:25 ulm Exp $
201
202 inherit elisp-common multilib
203
204 @@ -24,7 +24,9 @@
205 # fullbee"
206
207 src_compile() {
208 - use emacs && elisp-comp etc/*.el
209 + if use emacs; then
210 + elisp-compile etc/*.el || die "elisp-compile failed"
211 + fi
212
213 # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
214 # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
215 @@ -62,7 +64,7 @@
216 emake DESTDIR=${D} install || die "install failed"
217
218 if use emacs; then
219 - elisp-install ${PN} etc/*.el
220 + elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
221 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
222 fi
223
224
225
226
227 1.4 dev-scheme/bigloo/bigloo-3.0c_p4.ebuild
228
229 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c_p4.ebuild?rev=1.4&view=markup
230 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c_p4.ebuild?rev=1.4&content-type=text/plain
231 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c_p4.ebuild?r1=1.3&r2=1.4
232
233 Index: bigloo-3.0c_p4.ebuild
234 ===================================================================
235 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c_p4.ebuild,v
236 retrieving revision 1.3
237 retrieving revision 1.4
238 diff -u -r1.3 -r1.4
239 --- bigloo-3.0c_p4.ebuild 28 Apr 2008 18:05:41 -0000 1.3
240 +++ bigloo-3.0c_p4.ebuild 28 Aug 2008 17:49:25 -0000 1.4
241 @@ -1,6 +1,6 @@
242 # Copyright 1999-2008 Gentoo Foundation
243 # Distributed under the terms of the GNU General Public License v2
244 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c_p4.ebuild,v 1.3 2008/04/28 18:05:41 nixnut Exp $
245 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0c_p4.ebuild,v 1.4 2008/08/28 17:49:25 ulm Exp $
246
247 inherit elisp-common multilib
248
249 @@ -27,7 +27,9 @@
250 # fullbee"
251
252 src_compile() {
253 - use emacs && elisp-comp etc/*.el
254 + if use emacs; then
255 + elisp-compile etc/*.el || die "elisp-compile failed"
256 + fi
257
258 # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
259 # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
260 @@ -58,7 +60,7 @@
261 emake -j1 DESTDIR="${D}" install || die "install failed"
262
263 if use emacs; then
264 - elisp-install ${PN} etc/*.el
265 + elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
266 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
267 fi
268
269
270
271
272 1.7 dev-scheme/bigloo/bigloo-2.9a.ebuild
273
274 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-2.9a.ebuild?rev=1.7&view=markup
275 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-2.9a.ebuild?rev=1.7&content-type=text/plain
276 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-2.9a.ebuild?r1=1.6&r2=1.7
277
278 Index: bigloo-2.9a.ebuild
279 ===================================================================
280 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-2.9a.ebuild,v
281 retrieving revision 1.6
282 retrieving revision 1.7
283 diff -u -r1.6 -r1.7
284 --- bigloo-2.9a.ebuild 27 Jun 2007 06:53:18 -0000 1.6
285 +++ bigloo-2.9a.ebuild 28 Aug 2008 17:49:25 -0000 1.7
286 @@ -1,6 +1,6 @@
287 -# Copyright 1999-2007 Gentoo Foundation
288 +# Copyright 1999-2008 Gentoo Foundation
289 # Distributed under the terms of the GNU General Public License v2
290 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-2.9a.ebuild,v 1.6 2007/06/27 06:53:18 opfer Exp $
291 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-2.9a.ebuild,v 1.7 2008/08/28 17:49:25 ulm Exp $
292
293 inherit elisp-common multilib
294
295 @@ -24,7 +24,9 @@
296 # fullbee"
297
298 src_compile() {
299 - use emacs && elisp-comp etc/*.el
300 + if use emacs; then
301 + elisp-compile etc/*.el || die "elisp-compile failed"
302 + fi
303
304 # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
305 # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
306 @@ -62,7 +64,7 @@
307 emake DESTDIR=${D} install || die "install failed"
308
309 if use emacs; then
310 - elisp-install ${PN} etc/*.el
311 + elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
312 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
313 fi
314
315
316
317
318 1.3 dev-scheme/bigloo/bigloo-3.0b_p2.ebuild
319
320 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b_p2.ebuild?rev=1.3&view=markup
321 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b_p2.ebuild?rev=1.3&content-type=text/plain
322 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b_p2.ebuild?r1=1.2&r2=1.3
323
324 Index: bigloo-3.0b_p2.ebuild
325 ===================================================================
326 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b_p2.ebuild,v
327 retrieving revision 1.2
328 retrieving revision 1.3
329 diff -u -r1.2 -r1.3
330 --- bigloo-3.0b_p2.ebuild 26 Sep 2007 14:55:49 -0000 1.2
331 +++ bigloo-3.0b_p2.ebuild 28 Aug 2008 17:49:25 -0000 1.3
332 @@ -1,6 +1,6 @@
333 -# Copyright 1999-2007 Gentoo Foundation
334 +# Copyright 1999-2008 Gentoo Foundation
335 # Distributed under the terms of the GNU General Public License v2
336 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b_p2.ebuild,v 1.2 2007/09/26 14:55:49 hkbst Exp $
337 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-3.0b_p2.ebuild,v 1.3 2008/08/28 17:49:25 ulm Exp $
338
339 inherit elisp-common multilib
340
341 @@ -25,7 +25,9 @@
342 # fullbee"
343
344 src_compile() {
345 - use emacs && elisp-comp etc/*.el
346 + if use emacs; then
347 + elisp-compile etc/*.el || die "elisp-compile failed"
348 + fi
349
350 # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors
351 # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..."
352 @@ -56,7 +58,7 @@
353 emake -j1 DESTDIR="${D}" install || die "install failed"
354
355 if use emacs; then
356 - elisp-install ${PN} etc/*.el
357 + elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed"
358 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
359 fi
360
361
362
363
364 1.6 dev-scheme/bigloo/bigloo-2.7a_p2.ebuild
365
366 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-2.7a_p2.ebuild?rev=1.6&view=markup
367 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-2.7a_p2.ebuild?rev=1.6&content-type=text/plain
368 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-scheme/bigloo/bigloo-2.7a_p2.ebuild?r1=1.5&r2=1.6
369
370 Index: bigloo-2.7a_p2.ebuild
371 ===================================================================
372 RCS file: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-2.7a_p2.ebuild,v
373 retrieving revision 1.5
374 retrieving revision 1.6
375 diff -u -r1.5 -r1.6
376 --- bigloo-2.7a_p2.ebuild 22 Jun 2007 10:59:55 -0000 1.5
377 +++ bigloo-2.7a_p2.ebuild 28 Aug 2008 17:49:25 -0000 1.6
378 @@ -1,6 +1,6 @@
379 -# Copyright 1999-2007 Gentoo Foundation
380 +# Copyright 1999-2008 Gentoo Foundation
381 # Distributed under the terms of the GNU General Public License v2
382 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-2.7a_p2.ebuild,v 1.5 2007/06/22 10:59:55 hkbst Exp $
383 +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-2.7a_p2.ebuild,v 1.6 2008/08/28 17:49:25 ulm Exp $
384
385 inherit elisp-common
386
387 @@ -51,7 +51,7 @@
388 make || die
389
390 if use emacs; then
391 - pushd etc; elisp-comp *.el; popd
392 + elisp-compile etc/*.el || die "elisp-compile failed"
393 fi
394 }