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/ocaml-mysql: ocaml-mysql-1.2.0.ebuild ChangeLog
Date: Fri, 31 Jul 2015 08:38:34
Message-Id: 20150731083825.CF73710F@oystercatcher.gentoo.org
1 aballier 15/07/31 08:38:25
2
3 Modified: ChangeLog
4 Added: ocaml-mysql-1.2.0.ebuild
5 Log:
6 version bump, fixing bug #556340
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.17 dev-ml/ocaml-mysql/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 31 May 2015 00:13:05 -0000 1.16
24 +++ ChangeLog 31 Jul 2015 08:38:25 -0000 1.17
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ml/ocaml-mysql
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v 1.16 2015/05/31 00:13:05 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ChangeLog,v 1.17 2015/07/31 08:38:25 aballier Exp $
30 +
31 +*ocaml-mysql-1.2.0 (31 Jul 2015)
32 +
33 + 31 Jul 2015; Alexis Ballier <aballier@g.o> +ocaml-mysql-1.2.0.ebuild:
34 + version bump, fixing bug #556340
35
36 31 May 2015; Manuel RĂ¼ger <mrueg@g.o>
37 -files/ocaml-mysql-1.0.3-head.patch, -files/ocaml-mysql-1.0.3-shtool-r1.patch,
38
39
40
41 1.1 dev-ml/ocaml-mysql/ocaml-mysql-1.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ocaml-mysql-1.2.0.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-mysql/ocaml-mysql-1.2.0.ebuild,v 1.1 2015/07/31 08:38:25 aballier Exp $
51
52 EAPI=5
53
54 inherit findlib eutils
55
56 IUSE="+ocamlopt"
57
58 DESCRIPTION="A package for ocaml that provides access to mysql databases"
59 SRC_URI="https://forge.ocamlcore.org/frs/download.php/1500/${P}.tar.gz"
60 HOMEPAGE="http://ocaml-mysql.forge.ocamlcore.org/"
61
62 DEPEND=">=dev-lang/ocaml-3.10.2:=[ocamlopt?]
63 sys-libs/zlib
64 >=virtual/mysql-4.0"
65
66 RDEPEND="$DEPEND"
67
68 SLOT="0/${PV}"
69 LICENSE="LGPL-2"
70 KEYWORDS="~amd64 ~ppc ~x86"
71
72 src_compile()
73 {
74 emake all
75 if use ocamlopt; then
76 emake opt
77 fi
78 }
79
80 src_install()
81 {
82 findlib_src_preinst
83 emake install
84
85 dodoc CHANGES README VERSION || die
86 }