Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/ocaml: ChangeLog ocaml-3.10.0.ebuild ocaml-3.10.1_rc2.ebuild
Date: Thu, 03 Jan 2008 18:04:34
Message-Id: E1JAUQb-0006Ji-7o@stork.gentoo.org
1 aballier 08/01/03 18:04:25
2
3 Modified: ChangeLog ocaml-3.10.0.ebuild
4 ocaml-3.10.1_rc2.ebuild
5 Log:
6 Allow to disable ocamlopt via an useflag
7 (Portage version: 2.1.4_rc14)
8
9 Revision Changes Path
10 1.133 dev-lang/ocaml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.133&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ChangeLog?rev=1.133&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ChangeLog?r1=1.132&r2=1.133
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v
19 retrieving revision 1.132
20 retrieving revision 1.133
21 diff -u -r1.132 -r1.133
22 --- ChangeLog 2 Jan 2008 18:35:23 -0000 1.132
23 +++ ChangeLog 3 Jan 2008 18:04:24 -0000 1.133
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-lang/ocaml
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.132 2008/01/02 18:35:23 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ChangeLog,v 1.133 2008/01/03 18:04:24 aballier Exp $
29 +
30 + 03 Jan 2008; Alexis Ballier <aballier@g.o> ocaml-3.10.0.ebuild,
31 + ocaml-3.10.1_rc2.ebuild:
32 + Allow to disable ocamlopt via an useflag
33
34 02 Jan 2008; Alexis Ballier <aballier@g.o> ocaml-3.08.4.ebuild,
35 ocaml-3.09.2.ebuild, ocaml-3.09.3.ebuild:
36
37
38
39 1.11 dev-lang/ocaml/ocaml-3.10.0.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.0.ebuild?rev=1.11&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.0.ebuild?rev=1.11&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.0.ebuild?r1=1.10&r2=1.11
44
45 Index: ocaml-3.10.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.0.ebuild,v
48 retrieving revision 1.10
49 retrieving revision 1.11
50 diff -u -r1.10 -r1.11
51 --- ocaml-3.10.0.ebuild 20 Dec 2007 20:24:12 -0000 1.10
52 +++ ocaml-3.10.0.ebuild 3 Jan 2008 18:04:24 -0000 1.11
53 @@ -1,9 +1,11 @@
54 -# Copyright 1999-2007 Gentoo Foundation
55 +# Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.0.ebuild,v 1.10 2007/12/20 20:24:12 aballier Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.0.ebuild,v 1.11 2008/01/03 18:04:24 aballier Exp $
59
60 inherit flag-o-matic eutils multilib versionator toolchain-funcs
61
62 +EAPI="1"
63 +
64 DESCRIPTION="fast modern type-inferring functional programming language descended from the ML (Meta Language) family"
65 HOMEPAGE="http://www.ocaml.org/"
66 SRC_URI="http://caml.inria.fr/distrib/ocaml-$( get_version_component_range 1-2)/${P}.tar.gz"
67 @@ -11,7 +13,7 @@
68 LICENSE="QPL-1.0 LGPL-2"
69 SLOT="0"
70 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
71 -IUSE="emacs gdbm latex ncurses tk X xemacs"
72 +IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
73
74 DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
75 ncurses? ( sys-libs/ncurses )
76 @@ -79,8 +81,8 @@
77
78 make world || die "make world failed!"
79
80 - # Native code generation is unsupported on some archs
81 - if ! use ppc64 ; then
82 + # Native code generation can be disabled now
83 + if use ocamlopt ; then
84 make opt || die "make opt failed!"
85 make opt.opt || die "make opt.opt failed!"
86 fi
87
88
89
90 1.2 dev-lang/ocaml/ocaml-3.10.1_rc2.ebuild
91
92 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.1_rc2.ebuild?rev=1.2&view=markup
93 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.1_rc2.ebuild?rev=1.2&content-type=text/plain
94 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/ocaml/ocaml-3.10.1_rc2.ebuild?r1=1.1&r2=1.2
95
96 Index: ocaml-3.10.1_rc2.ebuild
97 ===================================================================
98 RCS file: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.1_rc2.ebuild,v
99 retrieving revision 1.1
100 retrieving revision 1.2
101 diff -u -r1.1 -r1.2
102 --- ocaml-3.10.1_rc2.ebuild 2 Jan 2008 17:27:01 -0000 1.1
103 +++ ocaml-3.10.1_rc2.ebuild 3 Jan 2008 18:04:24 -0000 1.2
104 @@ -1,9 +1,11 @@
105 # Copyright 1999-2008 Gentoo Foundation
106 # Distributed under the terms of the GNU General Public License v2
107 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.1_rc2.ebuild,v 1.1 2008/01/02 17:27:01 aballier Exp $
108 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ocaml/ocaml-3.10.1_rc2.ebuild,v 1.2 2008/01/03 18:04:24 aballier Exp $
109
110 inherit flag-o-matic eutils multilib versionator toolchain-funcs
111
112 +EAPI="1"
113 +
114 MY_P="${P/_rc/+rc}"
115 DESCRIPTION="fast modern type-inferring functional programming language descended from the ML (Meta Language) family"
116 HOMEPAGE="http://www.ocaml.org/"
117 @@ -12,7 +14,7 @@
118 LICENSE="QPL-1.0 LGPL-2"
119 SLOT="0"
120 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
121 -IUSE="emacs gdbm latex ncurses tk X xemacs"
122 +IUSE="emacs gdbm latex ncurses +ocamlopt tk X xemacs"
123
124 DEPEND="tk? ( >=dev-lang/tk-3.3.3 )
125 ncurses? ( sys-libs/ncurses )
126 @@ -81,8 +83,8 @@
127
128 make world || die "make world failed!"
129
130 - # Native code generation is unsupported on some archs
131 - if ! use ppc64 ; then
132 + # Native code generation can be disabled now
133 + if use ocamlopt ; then
134 make opt || die "make opt failed!"
135 make opt.opt || die "make opt.opt failed!"
136 fi
137
138
139
140 --
141 gentoo-commits@g.o mailing list