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-lisp/emacs-cl: ChangeLog emacs-cl-0_pre20060526.ebuild
Date: Sat, 02 Jan 2010 11:27:26
Message-Id: E1NR28X-00056B-H2@stork.gentoo.org
1 ulm 10/01/02 11:27:13
2
3 Modified: ChangeLog emacs-cl-0_pre20060526.ebuild
4 Log:
5 Fix src_test, bug 299215.
6 (Portage version: 2.2_rc61/cvs/Linux i686)
7
8 Revision Changes Path
9 1.2 dev-lisp/emacs-cl/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/emacs-cl/ChangeLog?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/emacs-cl/ChangeLog?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/emacs-cl/ChangeLog?r1=1.1&r2=1.2
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lisp/emacs-cl/ChangeLog,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- ChangeLog 30 Jan 2008 21:02:43 -0000 1.1
22 +++ ChangeLog 2 Jan 2010 11:27:13 -0000 1.2
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-lisp/emacs-cl
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/emacs-cl/ChangeLog,v 1.1 2008/01/30 21:02:43 ulm Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/emacs-cl/ChangeLog,v 1.2 2010/01/02 11:27:13 ulm Exp $
29 +
30 + 02 Jan 2010; Ulrich Mueller <ulm@g.o>
31 + emacs-cl-0_pre20060526.ebuild:
32 + Fix src_test, bug 299215.
33
34 *emacs-cl-0_pre20060526 (30 Jan 2008)
35
36
37
38
39 1.2 dev-lisp/emacs-cl/emacs-cl-0_pre20060526.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/emacs-cl/emacs-cl-0_pre20060526.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/emacs-cl/emacs-cl-0_pre20060526.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lisp/emacs-cl/emacs-cl-0_pre20060526.ebuild?r1=1.1&r2=1.2
44
45 Index: emacs-cl-0_pre20060526.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-lisp/emacs-cl/emacs-cl-0_pre20060526.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- emacs-cl-0_pre20060526.ebuild 30 Jan 2008 21:02:43 -0000 1.1
52 +++ emacs-cl-0_pre20060526.ebuild 2 Jan 2010 11:27:13 -0000 1.2
53 @@ -1,6 +1,6 @@
54 -# Copyright 1999-2008 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/emacs-cl/emacs-cl-0_pre20060526.ebuild,v 1.1 2008/01/30 21:02:43 ulm Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/emacs-cl/emacs-cl-0_pre20060526.ebuild,v 1.2 2010/01/02 11:27:13 ulm Exp $
59
60 #ECVS_SERVER="cvs.nocrew.org:/usr/local/cvsroot"
61 #ECVS_MODULE="emacs-cl"
62 @@ -18,17 +18,20 @@
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
64 IUSE=""
65
66 -SITEFILE=50${PN}-gentoo.el
67 -DOCS="BUGS HACKING HOWTO README"
68 -
69 S="${WORKDIR}/${PN}"
70 +SITEFILE="50${PN}-gentoo.el"
71 +DOCS="BUGS HACKING HOWTO README"
72
73 src_compile() {
74 emake EMACS="${EMACS}" || die "emake failed"
75 }
76
77 src_test() {
78 + # "make check" clears all *.elc files, so move them to a safe location
79 + mkdir safe || dir "mkdir failed"
80 + mv *.elc safe || die "mv failed"
81 emake -j1 check EMACSEN="${EMACS}" || die "emake check failed"
82 + mv safe/*.elc . || die "mv failed"
83 }
84
85 src_install() {