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/postgresql-ocaml: ChangeLog postgresql-ocaml-3.0.0.ebuild
Date: Mon, 02 Feb 2015 09:39:40
Message-Id: 20150202093935.B4FDB10E2A@oystercatcher.gentoo.org
1 aballier 15/02/02 09:39:35
2
3 Modified: ChangeLog
4 Added: postgresql-ocaml-3.0.0.ebuild
5 Log:
6 version bump
7
8 Signed-off-by: aballier@g.o
9 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.44 dev-ml/postgresql-ocaml/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog?rev=1.44&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog?rev=1.44&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog?r1=1.43&r2=1.44
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog,v
21 retrieving revision 1.43
22 retrieving revision 1.44
23 diff -u -r1.43 -r1.44
24 --- ChangeLog 28 Dec 2014 15:38:09 -0000 1.43
25 +++ ChangeLog 2 Feb 2015 09:39:35 -0000 1.44
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-ml/postgresql-ocaml
28 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog,v 1.43 2014/12/28 15:38:09 titanofold Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/ChangeLog,v 1.44 2015/02/02 09:39:35 aballier Exp $
32 +
33 +*postgresql-ocaml-3.0.0 (02 Feb 2015)
34 +
35 + 02 Feb 2015; Alexis Ballier <aballier@g.o>
36 + +postgresql-ocaml-3.0.0.ebuild:
37 + version bump
38
39 28 Dec 2014; Aaron W. Swenson <titanofold@g.o>
40 postgresql-ocaml-2.0.4.ebuild, postgresql-ocaml-2.0.5.ebuild,
41
42
43
44 1.1 dev-ml/postgresql-ocaml/postgresql-ocaml-3.0.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/postgresql-ocaml-3.0.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/postgresql-ocaml/postgresql-ocaml-3.0.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: postgresql-ocaml-3.0.0.ebuild
50 ===================================================================
51 # Copyright 1999-2015 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-ml/postgresql-ocaml/postgresql-ocaml-3.0.0.ebuild,v 1.1 2015/02/02 09:39:35 aballier Exp $
54
55 EAPI=5
56
57 OASIS_BUILD_DOCS=1
58
59 inherit oasis
60
61 DESCRIPTION="A package for ocaml that provides access to PostgreSQL databases"
62 SRC_URI="https://github.com/mmottl/postgresql-ocaml/releases/download/v${PV}/${P}.tar.gz"
63 HOMEPAGE="http://mmottl.github.io/postgresql-ocaml/"
64 IUSE="examples"
65
66 RDEPEND="
67 dev-db/postgresql[server]
68 "
69 DEPEND="${RDEPEND}
70 >=dev-ml/findlib-1.5"
71
72 SLOT="0/${PV}"
73 LICENSE="LGPL-2"
74 KEYWORDS="~amd64 ~ppc ~x86"
75
76 DOCS=( "AUTHORS.txt" "CHANGES.txt" "README.md" )
77
78 src_install() {
79 oasis_src_install
80 if use examples ; then
81 insinto /usr/share/doc/${PF}
82 doins -r examples
83 fi
84 }