Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/maxima: ChangeLog maxima-5.13.0.ebuild
Date: Sun, 23 Sep 2007 11:54:32
Message-Id: E1IZPug-0002WJ-BW@stork.gentoo.org
1 bicatali 07/09/23 11:46:14
2
3 Modified: ChangeLog maxima-5.13.0.ebuild
4 Log:
5 fixed logic for lisp priorities. Now dependencies pull only the compiling lisp when 2 use flags are selected.
6 (Portage version: 2.1.3.9)
7
8 Revision Changes Path
9 1.36 sci-mathematics/maxima/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/maxima/ChangeLog?rev=1.36&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/maxima/ChangeLog?rev=1.36&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/maxima/ChangeLog?r1=1.35&r2=1.36
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v
18 retrieving revision 1.35
19 retrieving revision 1.36
20 diff -u -r1.35 -r1.36
21 --- ChangeLog 22 Sep 2007 18:28:04 -0000 1.35
22 +++ ChangeLog 23 Sep 2007 11:46:13 -0000 1.36
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sci-mathematics/maxima
25 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.35 2007/09/22 18:28:04 nerdboy Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.36 2007/09/23 11:46:13 bicatali Exp $
28 +
29 + 23 Sep 2007; Sébastien Fabbro <bicatali@g.o> maxima-5.13.0.ebuild:
30 + fixed logic for lisp priorities. Now dependencies pull only the compiling
31 + lisp when 2 use flags are selected.
32
33 22 Sep 2007; Steve Arnold <nerdboy@g.o> maxima-5.13.0.ebuild:
34 updated desktop entry to match freedesktop spec (again)
35
36
37
38 1.7 sci-mathematics/maxima/maxima-5.13.0.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/maxima/maxima-5.13.0.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/maxima/maxima-5.13.0.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/maxima/maxima-5.13.0.ebuild?r1=1.6&r2=1.7
43
44 Index: maxima-5.13.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.13.0.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- maxima-5.13.0.ebuild 22 Sep 2007 18:28:04 -0000 1.6
51 +++ maxima-5.13.0.ebuild 23 Sep 2007 11:46:13 -0000 1.7
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2007 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.13.0.ebuild,v 1.6 2007/09/22 18:28:04 nerdboy Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/maxima-5.13.0.ebuild,v 1.7 2007/09/23 11:46:13 bicatali Exp $
57
58 inherit eutils elisp-common
59
60 @@ -19,10 +19,10 @@
61 tetex? ( virtual/tetex )
62 emacs? ( virtual/emacs
63 tetex? ( || ( app-emacs/auctex app-xemacs/auctex ) ) )
64 - clisp? ( dev-lisp/clisp )
65 - gcl? ( dev-lisp/gcl )
66 + clisp? ( !sbcl? ( dev-lisp/clisp ) )
67 + gcl? ( !sbcl? ( !clisp? ( !cmucl? ( dev-lisp/gcl ) ) ) )
68 sbcl? ( dev-lisp/sbcl app-misc/rlwrap )
69 - cmucl? ( >=dev-lisp/cmucl-19a app-misc/rlwrap )
70 + cmucl? ( !sbcl? ( !clisp? ( >=dev-lisp/cmucl-19a app-misc/rlwrap ) ) )
71 !clisp? ( !gcl? ( !cmucl? ( dev-lisp/sbcl app-misc/rlwrap ) ) )
72 tk? ( dev-lang/tk )"
73
74 @@ -79,13 +79,11 @@
75
76 # lisp priorities
77 MAXIMA_LISP="sbcl"
78 - if use clisp && use gcl && ! use sbcl; then
79 + if use clisp && ! use sbcl; then
80 MAXIMA_LISP=clisp
81 - elif use clisp && use cmucl && ! use sbcl; then
82 - MAXIMA_LISP=clisp
83 - elif use cmucl && use gcl && ! use sbcl; then
84 + elif use cmucl && ! use clisp && ! use sbcl; then
85 MAXIMA_LISP=cmucl
86 - elif use gcl && ! use sbcl; then
87 + elif use gcl && ! use cmucl && ! use clisp && ! use sbcl; then
88 MAXIMA_LISP=gcl
89 fi
90 einfo "Selected lisp: ${MAXIMA_LISP}"
91
92
93
94 --
95 gentoo-commits@g.o mailing list