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-ml/camlzip: ChangeLog camlzip-1.03-r1.ebuild
Date: Sun, 21 Jun 2009 12:35:24
Message-Id: E1MIMGX-0003jX-M6@stork.gentoo.org
1 aballier 09/06/21 12:35:21
2
3 Modified: ChangeLog camlzip-1.03-r1.ebuild
4 Log:
5 define eapi before inherit and assign rdepend explicitly
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.15 dev-ml/camlzip/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/ChangeLog?rev=1.15&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/ChangeLog?rev=1.15&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/ChangeLog?r1=1.14&r2=1.15
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlzip/ChangeLog,v
18 retrieving revision 1.14
19 retrieving revision 1.15
20 diff -u -r1.14 -r1.15
21 --- ChangeLog 25 Sep 2008 12:36:29 -0000 1.14
22 +++ ChangeLog 21 Jun 2009 12:35:21 -0000 1.15
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-ml/camlzip
25 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/ChangeLog,v 1.14 2008/09/25 12:36:29 aballier Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/ChangeLog,v 1.15 2009/06/21 12:35:21 aballier Exp $
29 +
30 + 21 Jun 2009; Alexis Ballier <aballier@g.o> camlzip-1.03-r1.ebuild:
31 + define eapi before inherit and assign rdepend explicitly
32
33 25 Sep 2008; Alexis Ballier <aballier@g.o> camlzip-1.03-r1.ebuild:
34 keyword ~x86-fbsd
35
36
37
38 1.6 dev-ml/camlzip/camlzip-1.03-r1.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/camlzip-1.03-r1.ebuild?rev=1.6&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/camlzip-1.03-r1.ebuild?rev=1.6&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/camlzip-1.03-r1.ebuild?r1=1.5&r2=1.6
43
44 Index: camlzip-1.03-r1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlzip/camlzip-1.03-r1.ebuild,v
47 retrieving revision 1.5
48 retrieving revision 1.6
49 diff -u -r1.5 -r1.6
50 --- camlzip-1.03-r1.ebuild 25 Sep 2008 12:36:29 -0000 1.5
51 +++ camlzip-1.03-r1.ebuild 21 Jun 2009 12:35:21 -0000 1.6
52 @@ -1,11 +1,11 @@
53 -# Copyright 1999-2008 Gentoo Foundation
54 +# Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/camlzip-1.03-r1.ebuild,v 1.5 2008/09/25 12:36:29 aballier Exp $
57 -
58 -inherit findlib eutils
59 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/camlzip-1.03-r1.ebuild,v 1.6 2009/06/21 12:35:21 aballier Exp $
60
61 EAPI="1"
62
63 +inherit findlib eutils
64 +
65 IUSE="+ocamlopt"
66
67 DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
68 @@ -16,8 +16,9 @@
69 LICENSE="LGPL-2.1"
70 KEYWORDS="~amd64 ppc x86 ~x86-fbsd"
71
72 -DEPEND=">=dev-lang/ocaml-3.04 \
73 +RDEPEND=">=dev-lang/ocaml-3.04
74 >=sys-libs/zlib-1.1.3"
75 +DEPEND="${RDEPEND}"
76
77 pkg_setup() {
78 if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then