Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-ssl/
Date: Tue, 06 Sep 2022 17:00:18
Message-Id: 1662483611.f3c03ccdff809ca0d17ab98a9ac30419dbf97ba0.xgqt@gentoo
1 commit: f3c03ccdff809ca0d17ab98a9ac30419dbf97ba0
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 6 16:57:23 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 6 17:00:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3c03ccd
7
8 dev-ml/ocaml-ssl: bump to 0.5.12
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 dev-ml/ocaml-ssl/Manifest | 1 +
13 dev-ml/ocaml-ssl/ocaml-ssl-0.5.12.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-ml/ocaml-ssl/Manifest b/dev-ml/ocaml-ssl/Manifest
17 index a06e08b2a767..3b06ae506dd4 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.10.tar.gz 33951 BLAKE2B a27cce7e19c3737657cbdba31d919d51d0db137aafddc6397ff018fe36346a8e99b0353c76f4a4bc4dcc7dcf63ec326e87b2ebc809b78de1511963357be280b0 SHA512 f2d0acc8dcdb0a36c8ad236f60c6e9d7f8f76ea25183017218953dbe3432a19de5b0be8214714add71b88b211ac78318f09429d4df7ecba1e19dc94d4414f0e1
22 +DIST ocaml-ssl-0.5.12.tar.gz 40242 BLAKE2B c5e0102f2b2a8448c4774139a3c49df198b81ed5b6bd14373bd15a22f8b4b30d29fd449139c12850bcfaa522415f4ff001f48fe218cd3d527598bafc78145d3f SHA512 d9365b2af911b24ffe0687d8d742cb82b67be39fd64ba04fcfab48a957cd2aefbb1b46ddccd944e1a73ee482866f4a0e95767b135fe43fe82d978493b7b3a827
23 DIST ocaml-ssl-0.5.9.tar.gz 32721 BLAKE2B c6b1ec659fddf384005f2cb045c0b0c059daaa93bd782904354e12e1ce63432c04c9bdc823dbfd0cd903ce872c91f0a750975cc69a56c9384ef6d09ed46c22cd SHA512 6826e5a6ab9f51013e8d097900f443d091e085e3d2d232a315a0e3a90ca334c9b9779d20dcae267f9ed961bc4a08fcb80372e669389c59a22d5c7706d37fcd5f
24
25 diff --git a/dev-ml/ocaml-ssl/ocaml-ssl-0.5.12.ebuild b/dev-ml/ocaml-ssl/ocaml-ssl-0.5.12.ebuild
26 new file mode 100644
27 index 000000000000..4c76a96825c3
28 --- /dev/null
29 +++ b/dev-ml/ocaml-ssl/ocaml-ssl-0.5.12.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DUNE_PKG_NAME=ssl
37 +
38 +inherit dune
39 +
40 +DESCRIPTION="OCaml bindings for OpenSSL"
41 +HOMEPAGE="https://github.com/savonet/ocaml-ssl"
42 +SRC_URI="https://github.com/savonet/ocaml-ssl/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="LGPL-2.1"
45 +SLOT="0/${PV}"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
47 +IUSE="+ocamlopt"
48 +
49 +BDEPEND="dev-ml/dune-configurator"
50 +DEPEND="dev-libs/openssl:0=
51 + >=dev-lang/ocaml-3.10:=[ocamlopt?]"
52 +RDEPEND="${DEPEND}"
53 +
54 +src_install() {
55 + dune_src_install
56 +
57 + dodoc CHANGES.md README.md
58 +}