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-ssl/
Date: Sat, 14 Oct 2017 12:10:26
Message-Id: 1507983007.c20e4f44938c92ade1d1d25499686789118fcb0a.aballier@gentoo
1 commit: c20e4f44938c92ade1d1d25499686789118fcb0a
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 14 12:10:07 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 14 12:10:07 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c20e4f44
7
8 dev-ml/ocaml-ssl: bump to 0.5.5
9
10 Package-Manager: Portage-2.3.11, Repoman-2.3.3
11
12 dev-ml/ocaml-ssl/Manifest | 1 +
13 dev-ml/ocaml-ssl/ocaml-ssl-0.5.5.ebuild | 34 +++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-ml/ocaml-ssl/Manifest b/dev-ml/ocaml-ssl/Manifest
17 index a1be7be9b23..1266b4434c6 100644
18 --- a/dev-ml/ocaml-ssl/Manifest
19 +++ b/dev-ml/ocaml-ssl/Manifest
20 @@ -1,2 +1,3 @@
21 DIST ocaml-ssl-0.5.3.tar.gz 125431 SHA256 9ef78eeb83ab7f0bb2244625d44543fbc8624c952731b3eb213a9c2a96213aa0 SHA512 c0dc38ab21c8adc104a42ec89b8a58de976205887a23a407f1ffee1181d526ddb8aa91877508f8a974c6df8583d6d8611558a995680e313fc78ad0cac184cf52 WHIRLPOOL 098454a79c2fcbe1438feae475a4ed01a645db137d4f130cd6c8f0aa3ac237719d984562deb0319091d01e84b98b5a67096b2964edf42e38acecedaa5f57aa53
22 DIST ocaml-ssl-0.5.4.tar.gz 125833 SHA256 10db195bf06178413bec17898f89eb858e1fb97225f03137790d3fd840bc4cce SHA512 4a221bd8f5c11871040f6f117d3152ec2fca28f0311dfcc2ac39d2ed55c66203e12ad3242368273d8f17f1ca87c1b5d929ab7fec8ec7a03a564c7c25ade3d289 WHIRLPOOL db76056ae19cc144e677f45c2d9ad83fbb958cc7dcbdc4078008434c68df2fe6fe60ddbdf2fd4442284d3593cdd2e1f5f6607ec9567144a989010bf1e4dd58e1
23 +DIST ocaml-ssl-0.5.5.tar.gz 125778 SHA256 2cc270d2a2f38c4e7972f3abf00f524ce86f668e40c7fcf4e0af99df3b8b3a82 SHA512 4e3a78426bc2a5cec0ade43b1b324366b4bf0d93be6e7bc73f1152499f2ab0642d3edcf4484a519ea6ec0b44bc76c0c984b9bba59121f93bc065b1c0355969c0 WHIRLPOOL 7713a2d5d13f9c9e5c3a70adeaccbcec57facce12234eaa7056b34283886ac4d2d96f52775e53a5d7ba00d6038ec16990b730094df3886ce8bacfb6ff03cc618
24
25 diff --git a/dev-ml/ocaml-ssl/ocaml-ssl-0.5.5.ebuild b/dev-ml/ocaml-ssl/ocaml-ssl-0.5.5.ebuild
26 new file mode 100644
27 index 00000000000..93d736e30ad
28 --- /dev/null
29 +++ b/dev-ml/ocaml-ssl/ocaml-ssl-0.5.5.ebuild
30 @@ -0,0 +1,34 @@
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 +IUSE="doc"
39 +
40 +DESCRIPTION="OCaml bindings for OpenSSL"
41 +SRC_URI="https://github.com/savonet/ocaml-ssl/releases/download/${PV}/${P}.tar.gz"
42 +HOMEPAGE="https://github.com/savonet/ocaml-ssl"
43 +
44 +DEPEND="dev-libs/openssl:0=
45 + >=dev-lang/ocaml-3.10:="
46 +RDEPEND="${DEPEND}"
47 +
48 +SLOT="0/${PV}"
49 +LICENSE="LGPL-2.1"
50 +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd"
51 +
52 +src_compile() {
53 + emake -j1
54 +}
55 +
56 +src_install() {
57 + findlib_src_preinst
58 + emake install
59 +
60 + if use doc; then
61 + dohtml -r doc/html/*
62 + fi
63 + dodoc CHANGES README.md
64 +}