Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-dns/
Date: Fri, 27 Nov 2015 09:20:25
Message-Id: 1448546296.ceea92da4557f96584b31bb51d91a4055d1bff58.monsieurp@gentoo
1 commit: ceea92da4557f96584b31bb51d91a4055d1bff58
2 Author: Matthew Brewer <tomboy64 <AT> sina <DOT> cn>
3 AuthorDate: Thu Nov 26 00:32:51 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 26 13:58:16 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceea92da
7
8 dev-ml/ocaml-dns: version bump to 0.16.0
9
10 dev-ml/ocaml-dns/Manifest | 1 +
11 dev-ml/ocaml-dns/ocaml-dns-0.16.0.ebuild | 49 ++++++++++++++++++++++++++++++++
12 2 files changed, 50 insertions(+)
13
14 diff --git a/dev-ml/ocaml-dns/Manifest b/dev-ml/ocaml-dns/Manifest
15 index 01f2a439..022296f 100644
16 --- a/dev-ml/ocaml-dns/Manifest
17 +++ b/dev-ml/ocaml-dns/Manifest
18 @@ -1 +1,2 @@
19 DIST ocaml-dns-0.15.3.tar.gz 143042 SHA256 cc1361e51d1a7b6fa8d552dc06cad09288ba00e78a9ddcd5a0e49ab3d12a9619 SHA512 7176e93a263975d31a6757acf01ac5be10eb34b19a2c3a5d5e92b087a574e76db16861923162ad73833379dc5132868d0b91e1f2ed692e2bdff5667938a76db6 WHIRLPOOL 9b282ffdaf9fd834d449e33176fb9e5a231e6a7f2a1a12b0da4825a96f820b3f87a73c9e4751c19bbf80c9b8ab2f30c1730003b010bd6153b83bb9009334986d
20 +DIST ocaml-dns-0.16.0.tar.gz 146761 SHA256 b8b56f9979b650ae3f1a9a52385027c5a80e7f5bd25e6326d0fef480a5f0a56f SHA512 8d5f8c63074dae68d31dd1a592d3fa6b69e0963aa674110e501a575b4cb75c3a9a5ad6b1efffd118d69eff6dcf71f34b102264a127c9b336b2f04de5a90ee976 WHIRLPOOL f927983e894c65c1ed007897bd0dae2f2b45fdf215a12c50e15c4a554f6c9c9f69e5ea5defd60f71478ad527995957698b63cf48b24601f82098c55e97002e05
21
22 diff --git a/dev-ml/ocaml-dns/ocaml-dns-0.16.0.ebuild b/dev-ml/ocaml-dns/ocaml-dns-0.16.0.ebuild
23 new file mode 100644
24 index 0000000..bf1a781
25 --- /dev/null
26 +++ b/dev-ml/ocaml-dns/ocaml-dns-0.16.0.ebuild
27 @@ -0,0 +1,49 @@
28 +# Copyright 1999-2015 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=5
33 +OASIS_BUILD_DOCS=1
34 +OASIS_BUILD_TESTS=1
35 +
36 +inherit oasis
37 +
38 +DESCRIPTION="A pure OCaml implementation of the DNS protocol"
39 +HOMEPAGE="https://github.com/mirage/ocaml-dns https://mirage.io"
40 +SRC_URI="https://github.com/mirage/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="LGPL-2 LGPL-2.1-with-linking-exception ISC"
43 +SLOT="0/${PV}"
44 +KEYWORDS="~amd64"
45 +IUSE="async +lwt"
46 +
47 +RDEPEND="
48 + async? ( >=dev-ml/async-112.24.00:= )
49 + lwt? ( >=dev-ml/lwt-2.4.7:=
50 + dev-ml/ocaml-cstruct:=[lwt(-)] )
51 + >=dev-lang/ocaml-4:=
52 + dev-ml/cmdliner:=
53 + dev-ml/mirage-profile:=
54 + >=dev-ml/ocaml-base64-2.0.0:=
55 + >=dev-ml/ocaml-cstruct-1.0.1:=
56 + >=dev-ml/ocaml-ipaddr-2.6.0:=
57 + dev-ml/ocaml-re:=
58 + >=dev-ml/ocaml-uri-1.7.0:=
59 + !<dev-ml/mirage-types-1.2.0
60 + !dev-ml/odns
61 +"
62 +DEPEND="
63 + test? ( dev-ml/ounit
64 + dev-ml/ocaml-pcap )
65 + ${RDEPEND}
66 +"
67 +
68 +src_configure() {
69 + oasis_configure_opts="
70 + $(use_enable async)
71 + $(use_enable lwt)
72 + $(use_enable test nettests)
73 + " oasis_src_configure
74 +}
75 +
76 +DOCS=( CHANGES README.md TODO.md )