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/sexplib: ChangeLog sexplib-4.2.17.ebuild
Date: Sun, 03 Jan 2010 15:09:14
Message-Id: E1NRS4u-0005YA-UK@stork.gentoo.org
1 aballier 10/01/03 15:09:12
2
3 Modified: ChangeLog
4 Added: sexplib-4.2.17.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-ml/sexplib/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/sexplib/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/sexplib/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/sexplib/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 13 Oct 2009 07:05:11 -0000 1.3
23 +++ ChangeLog 3 Jan 2010 15:09:12 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ml/sexplib
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v 1.3 2009/10/13 07:05:11 aballier Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/ChangeLog,v 1.4 2010/01/03 15:09:12 aballier Exp $
30 +
31 +*sexplib-4.2.17 (03 Jan 2010)
32 +
33 + 03 Jan 2010; Alexis Ballier <aballier@g.o> +sexplib-4.2.17.ebuild:
34 + version bump
35
36 *sexplib-4.2.16 (13 Oct 2009)
37
38
39
40
41 1.1 dev-ml/sexplib/sexplib-4.2.17.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/sexplib/sexplib-4.2.17.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/sexplib/sexplib-4.2.17.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sexplib-4.2.17.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ml/sexplib/sexplib-4.2.17.ebuild,v 1.1 2010/01/03 15:09:12 aballier Exp $
51
52 EAPI="2"
53
54 inherit findlib
55
56 DESCRIPTION="Library for automated conversion of OCaml-values to and from S-expressions"
57 HOMEPAGE="http://www.ocaml.info/home/ocaml_sources.html"
58 SRC_URI="http://ocaml.info/ocaml_sources/${PN}310-${PV}.tar.gz"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64"
63 IUSE=""
64 S=${WORKDIR}/${PN}310-${PV}/lib
65
66 DEPEND=">=dev-lang/ocaml-3.10[ocamlopt]
67 dev-ml/type-conv"
68 RDEPEND="${DEPEND}"
69
70 src_compile() {
71 emake -j1 || die
72 }
73
74 src_test() {
75 cd "${S}/../lib_test"
76 emake -j1 || die
77 ./conv_test || die
78 ./sexp_test < test.sexp || die
79 }
80
81 src_install() {
82 findlib_src_preinst
83 emake install || die "make install failed"
84 dodoc ../README.txt ../Changelog
85 }