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/ocaml-uri/
Date: Sat, 03 Jun 2017 15:13:47
Message-Id: 1496502806.f9f72e276f3c3ca835a93ca5d9467684383ca96c.aballier@gentoo
1 commit: f9f72e276f3c3ca835a93ca5d9467684383ca96c
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 2 10:54:02 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 3 15:13:26 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9f72e27
7
8 dev-ml/ocaml-uri: bump to 1.9.4
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-ml/ocaml-uri/Manifest | 1 +
13 dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild | 38 +++++++++++++++++++++++++++++++++
14 2 files changed, 39 insertions(+)
15
16 diff --git a/dev-ml/ocaml-uri/Manifest b/dev-ml/ocaml-uri/Manifest
17 index de2a7c2c678..5dc6bb6039a 100644
18 --- a/dev-ml/ocaml-uri/Manifest
19 +++ b/dev-ml/ocaml-uri/Manifest
20 @@ -1 +1,2 @@
21 DIST ocaml-uri-1.9.2.tar.gz 256642 SHA256 8c3250d3b6bf872e02b888ba4b1d71fc2672a6a235b99e83113ddf749eca7f09 SHA512 c71cb8cdda7823139475c9f4d915fb41ccf621f1f2460eba15c537ff8655520ea6daf248e22e8e9f6dfb1a4a204753ee77f458549b35c0b5b6e26e31b07b0ea7 WHIRLPOOL 9ed0308b7fcfb9dded2519e3d02e3fff1c358cd28972af3ff617e36ad963f220125bd31ebacfa615de19745c69a91d0fc6acadee37e0f7f7a6709c949d301f4f
22 +DIST ocaml-uri-1.9.4.tar.gz 213917 SHA256 cdcecd5bc9fb74fc9ba76da63acd33bc5a7a7e5f066c5729d36cc1488d3f348f SHA512 c2314c55d1d89bb7824e6bd2aad57fa2bdc4889d5e6c0b4ce75f4ca33660d510d7ab125ff0f340f4688930f3ddac13193d34762f912cc70c4ce30aa206f32ddc WHIRLPOOL ff9cadecc800d37a651e17e0d4765c9796df046c96f74139866dd1386c9eb16241caa82e3aa440ae415bf2cc3b16a3f3a8577396c4709ba93f0923151b746c06
23
24 diff --git a/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
25 new file mode 100644
26 index 00000000000..d7a33a6f362
27 --- /dev/null
28 +++ b/dev-ml/ocaml-uri/ocaml-uri-1.9.4.ebuild
29 @@ -0,0 +1,38 @@
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 findlib
36 +
37 +DESCRIPTION="RFC3986 URI parsing library for OCaml"
38 +HOMEPAGE="https://github.com/mirage/ocaml-uri https://mirage.io"
39 +SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="ISC"
42 +SLOT="0/${PV}"
43 +KEYWORDS="~amd64"
44 +IUSE="test"
45 +
46 +RDEPEND="
47 + dev-ml/ocaml-re:=
48 + dev-ml/sexplib:=
49 + dev-ml/ppx_sexp_conv:=
50 + dev-ml/stringext:=
51 + dev-ml/type-conv:=
52 + dev-lang/ocaml:=
53 +"
54 +DEPEND="${RDEPEND}
55 + test? ( >=dev-ml/ounit-1.0.2 )
56 + dev-ml/jbuilder
57 + dev-ml/opam
58 +"
59 +
60 +
61 +src_install() {
62 + opam-installer -i \
63 + --prefix="${ED}/usr" \
64 + --libdir="${D}/$(ocamlc -where)" \
65 + --docdir="${ED}/usr/share/doc/${PF}" \
66 + uri.install || die
67 +}