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: Sun, 06 Aug 2017 07:40:12
Message-Id: 1502001917.cbdba283b0836dfa79dab44817fa96ee3911315b.aballier@gentoo
1 commit: cbdba283b0836dfa79dab44817fa96ee3911315b
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 4 18:55:04 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 6 06:45:17 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbdba283
7
8 dev-ml/postgresql-ocaml: bump to 4.1.0
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 dev-ml/postgresql-ocaml/Manifest | 1 +
13 .../postgresql-ocaml/postgresql-ocaml-4.1.0.ebuild | 34 ++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-ml/postgresql-ocaml/Manifest b/dev-ml/postgresql-ocaml/Manifest
17 index 5065cb2baf4..8f482329e73 100644
18 --- a/dev-ml/postgresql-ocaml/Manifest
19 +++ b/dev-ml/postgresql-ocaml/Manifest
20 @@ -1 +1,2 @@
21 +DIST postgresql-4.1.0.tbz 36689 SHA256 8e663f70a85e6aff78323a4a6d606141adb6c10bad812a8ac9a693975a64ca5e SHA512 5749e426634f00fc8aab86e4c23f863ebdebc9bb77c121dea1c516c8bd5524096051975514daa47abe1556355bc4a1994d6634aae09736a508a9b6552b134d42 WHIRLPOOL 6a1ac952cc2448eee9324a5655196b6a149d2c3ef8058def24bfaa983793e77e116e2f2b416c8853acc25dfb9bc9966a7681291aa1bcd076a83539dcd972630e
22 DIST postgresql-ocaml-4.0.1.tar.gz 85871 SHA256 07d8fdb5c161b30809876375c43ebf29e5b99a475ee6b019b6fee3a80c18a4cb SHA512 baecd1b3b98f790131972dbd2eba563b43dec6e13e37ab904ee38b2b1168b03533272532887a42a2536806951c9e543306c6eccfb441de517ee860383ea5df36 WHIRLPOOL 71562d46b8688b4319f6fae06aeaea866e397cf6ce9f533b096d8d9f0850b2746fdffca6f4f234cc23cfb433d8124f559f89971d32554a756e88234c5a311e6d
23
24 diff --git a/dev-ml/postgresql-ocaml/postgresql-ocaml-4.1.0.ebuild b/dev-ml/postgresql-ocaml/postgresql-ocaml-4.1.0.ebuild
25 new file mode 100644
26 index 00000000000..0a85bb94913
27 --- /dev/null
28 +++ b/dev-ml/postgresql-ocaml/postgresql-ocaml-4.1.0.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +
35 +inherit opam
36 +
37 +MY_P="postgresql-${PV}"
38 +
39 +DESCRIPTION="A package for ocaml that provides access to PostgreSQL databases"
40 +SRC_URI="https://github.com/mmottl/postgresql-ocaml/releases/download/${PV}/${MY_P}.tbz"
41 +HOMEPAGE="http://mmottl.github.io/postgresql-ocaml/"
42 +IUSE=""
43 +
44 +RDEPEND="
45 + dev-db/postgresql:=[server]
46 +"
47 +DEPEND="${RDEPEND}
48 + dev-ml/jbuilder
49 + >=dev-ml/findlib-1.5"
50 +
51 +SLOT="0/${PV}"
52 +LICENSE="LGPL-2"
53 +KEYWORDS="~amd64 ~ppc ~x86"
54 +
55 +S="${WORKDIR}/${MY_P}"
56 +
57 +src_compile() {
58 + jbuilder build @install || die
59 +}
60 +
61 +src_install() {
62 + opam_src_install "postgresql"
63 +}