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