Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/postgresql-ocaml/
Date: Sat, 19 Dec 2015 15:01:36
Message-Id: 1450537281.dcdfa0d2f754f211e4c038648cf06c75a83794d3.aballier@gentoo
1 commit: dcdfa0d2f754f211e4c038648cf06c75a83794d3
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 19 14:54:47 2015 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 19 15:01:21 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcdfa0d2
7
8 dev-ml/postgresql-ocaml: bump to 3.2.2
9
10 Package-Manager: portage-2.2.26
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ml/postgresql-ocaml/Manifest | 1 +
14 .../postgresql-ocaml/postgresql-ocaml-3.2.2.ebuild | 34 ++++++++++++++++++++++
15 2 files changed, 35 insertions(+)
16
17 diff --git a/dev-ml/postgresql-ocaml/Manifest b/dev-ml/postgresql-ocaml/Manifest
18 index a2bcec5..eedacf3 100644
19 --- a/dev-ml/postgresql-ocaml/Manifest
20 +++ b/dev-ml/postgresql-ocaml/Manifest
21 @@ -2,3 +2,4 @@ DIST postgresql-ocaml-2.0.5.tar.gz 79123 SHA256 e786c46edbd63aacd82e008098a2c801
22 DIST postgresql-ocaml-2.0.6.tar.gz 79697 SHA256 1f3ae24c323f3b1f5876d647168eeca2182994feb53dad9ef540fd54837887cb SHA512 0cde0deb38df5bdce467941ca4e9bd3a9648c430a9e406eadc6aecffbe7b5aae27fb5fe3464954de98cba8ecece77e91416cd28f94cb3d3d7d08993d2238f2dc WHIRLPOOL f5f3a100074fb0e1d1dbc6ae13b98be28db76cf7dce5f1731bee44f099dd00f40dd0e13015432f6e1e1f55d3b522986bacf1ea369f1d1a881be10266d2decd8c
23 DIST postgresql-ocaml-3.2.0.tar.gz 85619 SHA256 bdae08e08fffa0f863512ac54675db6fa2edd0bab63762cc9ffbedc656893426 SHA512 da35820cf1081641161e8e9c0ee5c0d1090fa61b1f0e13893feda83ae6a0167aac93e58db7448b3cf841bab345f3a4efa97b385ca7819019c6146fd17cd9f146 WHIRLPOOL fab8eee40cbf808faab9aca277a1a6306a1bb02d7fba9d2a45fdf8c586d6174367417b9760656a13622bc9fbff2d4b8218b7627a8c9f365db99eb9bd983cac34
24 DIST postgresql-ocaml-3.2.1.tar.gz 85604 SHA256 e4679e22f10d4c366ad03b926ab63e65618e4da8359e16711d8f2d9dff8a7593 SHA512 36c4c894259d8bfaccbb1e5dc517fdbb025fe6d9fd24fa5e1d2120faf75aec472218d62c8816ef0055b1c0de934ff74a7eb22d8724d9e9790c21eaa6c4a56ed6 WHIRLPOOL c1476316e1b9b77ef0d5e8c76384a1bfb367d83cb527fed56afbea51e924cebef51af7de2e7d72ca6b117726d71147e8b842f57bf1aa003a7f9e7f06a59fdfbf
25 +DIST postgresql-ocaml-3.2.2.tar.gz 85697 SHA256 51348110f06e7d17f68894fd91f91b3e1f935647355a94a79b8c16f923ce9e81 SHA512 c41c6feed76d8d49932399a080d2e2fa9227b742e0cab5efdf849315ae1b633369e035bee3fd1d94c6a61e533f23d3881e9de650d1b4ec01946660f39c245917 WHIRLPOOL c314346cf113c87ceec3ded469505952a7717f06bdc6099e5fab84d4b5911927b611036bf924c9fdadb35c545ad3fc8ab06d115fd24ad78e045580ba8e02a04f
26
27 diff --git a/dev-ml/postgresql-ocaml/postgresql-ocaml-3.2.2.ebuild b/dev-ml/postgresql-ocaml/postgresql-ocaml-3.2.2.ebuild
28 new file mode 100644
29 index 0000000..3f2ac2f
30 --- /dev/null
31 +++ b/dev-ml/postgresql-ocaml/postgresql-ocaml-3.2.2.ebuild
32 @@ -0,0 +1,34 @@
33 +# Copyright 1999-2015 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=5
38 +
39 +OASIS_BUILD_DOCS=1
40 +
41 +inherit oasis
42 +
43 +DESCRIPTION="A package for ocaml that provides access to PostgreSQL databases"
44 +SRC_URI="https://github.com/mmottl/postgresql-ocaml/releases/download/v${PV}/${P}.tar.gz"
45 +HOMEPAGE="http://mmottl.github.io/postgresql-ocaml/"
46 +IUSE="examples"
47 +
48 +RDEPEND="
49 + dev-db/postgresql:=[server]
50 +"
51 +DEPEND="${RDEPEND}
52 + >=dev-ml/findlib-1.5"
53 +
54 +SLOT="0/${PV}"
55 +LICENSE="LGPL-2"
56 +KEYWORDS="~amd64 ~ppc ~x86"
57 +
58 +DOCS=( "AUTHORS.txt" "CHANGES.txt" "README.md" )
59 +
60 +src_install() {
61 + oasis_src_install
62 + if use examples ; then
63 + insinto /usr/share/doc/${PF}
64 + doins -r examples
65 + fi
66 +}