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/bolt: ChangeLog bolt-1.3.ebuild
Date: Wed, 22 Aug 2012 14:20:03
Message-Id: 20120822141954.02F0D20353@flycatcher.gentoo.org
1 aballier 12/08/22 14:19:53
2
3 Modified: ChangeLog
4 Added: bolt-1.3.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-ml/bolt/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/bolt/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/bolt/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/bolt/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ml/bolt/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 20 Aug 2011 11:14:23 -0000 1.1
24 +++ ChangeLog 22 Aug 2012 14:19:53 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ml/bolt
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/bolt/ChangeLog,v 1.1 2011/08/20 11:14:23 aballier Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/bolt/ChangeLog,v 1.2 2012/08/22 14:19:53 aballier Exp $
31 +
32 +*bolt-1.3 (22 Aug 2012)
33 +
34 + 22 Aug 2012; Alexis Ballier <aballier@g.o> +bolt-1.3.ebuild:
35 + version bump
36
37 *bolt-1.2 (20 Aug 2011)
38
39
40
41
42 1.1 dev-ml/bolt/bolt-1.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/bolt/bolt-1.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/bolt/bolt-1.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: bolt-1.3.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ml/bolt/bolt-1.3.ebuild,v 1.1 2012/08/22 14:19:53 aballier Exp $
52
53 EAPI=4
54
55 inherit findlib
56
57 DESCRIPTION="Logging tool for the Objective Caml language"
58 HOMEPAGE="http://bolt.x9c.fr/"
59 SRC_URI="http://bolt.x9c.fr/distrib/${P}.tar.gz"
60
61 LICENSE="LGPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE="doc"
65
66 DEPEND=">=dev-lang/ocaml-3.11[ocamlopt]"
67 RDEPEND="${DEPEND}"
68
69 src_configure() {
70 sh configure
71 }
72
73 src_compile() {
74 emake all
75 use doc && emake doc
76 }
77
78 src_test() {
79 emake tests
80 }
81
82 src_install() {
83 findlib_src_install
84 dodoc README CHANGES FEATURES
85 use doc && dohtml ocamldoc/*
86 }