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-conduit/
Date: Sat, 06 May 2017 16:17:54
Message-Id: 1494087440.2e744a16407bede99f41c618baeaaae288e0ba29.aballier@gentoo
1 commit: 2e744a16407bede99f41c618baeaaae288e0ba29
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 5 10:05:59 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sat May 6 16:17:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e744a16
7
8 dev-ml/ocaml-conduit: Bump to 0.15.3
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 dev-ml/ocaml-conduit/Manifest | 1 +
13 dev-ml/ocaml-conduit/ocaml-conduit-0.15.3.ebuild | 45 ++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/dev-ml/ocaml-conduit/Manifest b/dev-ml/ocaml-conduit/Manifest
17 index a704e9956d1..2fa87853e3c 100644
18 --- a/dev-ml/ocaml-conduit/Manifest
19 +++ b/dev-ml/ocaml-conduit/Manifest
20 @@ -1,2 +1,3 @@
21 DIST ocaml-conduit-0.14.5.tar.gz 38471 SHA256 00aba333c05866bb712f7890c6f9fd457b85cf592d28adc6636413032683f86f SHA512 c2de6518588e3555cd40dfc6c1ce6d809dc570ddb6a07fb8ccce1797469e9c28ea1a633d4a1b360bf15cdb95e6231ecb0be8bd44e4654baa5268f09519096b52 WHIRLPOOL 5e052d7b9d34d76662496739a6934bf64c1930ca64b2160aa8cbefe0237bd0bb3438a187c3dd05d841b7b475325afcb32bb6fb20e0b61b885c16f4b0b3259aea
22 DIST ocaml-conduit-0.15.0.tar.gz 38617 SHA256 fa8c812c1e87cc59e7f6f8fd6d716014aadeda9853e5c6feacd5ecdd1fec5815 SHA512 112a09df2edc7bb0f174f19ad7d826aaf8116cce86e66182a27b4edadcffeee632d7e5cad489e9e797147b94ec81b1f1d122e9e30e384c0c84847875f9bed096 WHIRLPOOL 80bc7aa47df74c4a17c60e26bc9fd34a2167682cc63821918b33e03429f35710882a244aed61578d1e8ac7a34f67d3ba65e40754e066109b433a50868e73c243
23 +DIST ocaml-conduit-0.15.3.tar.gz 38921 SHA256 6760c9fed6b1c5360d74b4cd6fafbd78e1736c08d3024ed9ecb79b29ad3456db SHA512 0666ed22a93351dc8381de3eaafcf019336f9d62e6b7ed7c0bcd7e202ecfb54ede8ed999023a0ed712da6406cee872965b22c77982ed65897b2e0abfadd0a07c WHIRLPOOL e754553c08fe31be337b8f1aaf504a5319af66aea9f897b411a6ca4d8efd4a5c1ac9488cbe7ca091f7c87ce4171e3725f701a9f8359d04dfd6c6cca350a1a611
24
25 diff --git a/dev-ml/ocaml-conduit/ocaml-conduit-0.15.3.ebuild b/dev-ml/ocaml-conduit/ocaml-conduit-0.15.3.ebuild
26 new file mode 100644
27 index 00000000000..b6dd676dd49
28 --- /dev/null
29 +++ b/dev-ml/ocaml-conduit/ocaml-conduit-0.15.3.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=5
35 +
36 +inherit findlib eutils
37 +
38 +DESCRIPTION="Dereference URIs into communication channels for Async or Lwt"
39 +HOMEPAGE="https://github.com/mirage/ocaml-conduit"
40 +SRC_URI="https://github.com/mirage/ocaml-conduit/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="ISC"
43 +SLOT="0/${PV}"
44 +KEYWORDS="~amd64"
45 +IUSE=""
46 +
47 +DEPEND="
48 + dev-lang/ocaml:=
49 + dev-ml/sexplib:=
50 + dev-ml/stringext:=
51 + dev-ml/ocaml-uri:=
52 + dev-ml/logs:=
53 + dev-ml/ocaml-cstruct:=
54 + dev-ml/ocaml-ipaddr:=
55 +
56 + >=dev-ml/lwt-3:=
57 + dev-ml/async:=
58 + dev-ml/ocaml-dns:=
59 + dev-ml/ocaml-ssl:=
60 +"
61 +RDEPEND="${DEPEND}"
62 +DEPEND="${DEPEND}
63 + dev-ml/findlib
64 + dev-ml/ocamlbuild
65 + dev-ml/ppx_driver
66 + dev-ml/ppx_optcomp
67 + dev-ml/ppx_sexp_conv
68 +"
69 +
70 +DOCS=( TODO.md README.md CHANGES )
71 +
72 +src_install() {
73 + findlib_src_preinst
74 + default
75 +}