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-bigstring/
Date: Tue, 09 May 2017 07:14:43
Message-Id: 1494314061.0155647a407669f341ce4007a56e627375419bca.aballier@gentoo
1 commit: 0155647a407669f341ce4007a56e627375419bca
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 9 06:47:08 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue May 9 07:14:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0155647a
7
8 dev-ml/ocaml-bigstring: Initial import, ebuild by me
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 dev-ml/ocaml-bigstring/Manifest | 1 +
13 dev-ml/ocaml-bigstring/metadata.xml | 11 ++++++++
14 .../ocaml-bigstring/ocaml-bigstring-0.1.1.ebuild | 31 ++++++++++++++++++++++
15 3 files changed, 43 insertions(+)
16
17 diff --git a/dev-ml/ocaml-bigstring/Manifest b/dev-ml/ocaml-bigstring/Manifest
18 new file mode 100644
19 index 00000000000..312dc11f276
20 --- /dev/null
21 +++ b/dev-ml/ocaml-bigstring/Manifest
22 @@ -0,0 +1 @@
23 +DIST ocaml-bigstring-0.1.1.tar.gz 7671 SHA256 d09dad10711d5bf4e48601e09702186f5c1d12c7772e44e3ab9394d3839f2b27 SHA512 96aee494b9407b556b6eb554b0da66e24622f77d88aae6d822da60a3fb21477da8e7ae120f95f4f3c742b085ca4838f10ca0c8b2bcc4d23e35fd7de6af8532b3 WHIRLPOOL 59d3c570b024f292122052e9bbc9a8306032250cd95ecc18f9fcf6ebdf89ebc7db0060825cae18ad2271f99d75c1713d176a8b9bd1a457193f77d976aad49333
24
25 diff --git a/dev-ml/ocaml-bigstring/metadata.xml b/dev-ml/ocaml-bigstring/metadata.xml
26 new file mode 100644
27 index 00000000000..2e4acd90535
28 --- /dev/null
29 +++ b/dev-ml/ocaml-bigstring/metadata.xml
30 @@ -0,0 +1,11 @@
31 +<?xml version='1.0' encoding='UTF-8'?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="project">
35 + <email>ml@g.o</email>
36 + <name>Gentoo ML Project</name>
37 + </maintainer>
38 + <upstream>
39 + <remote-id type="github">c-cube/ocaml-bigstring</remote-id>
40 + </upstream>
41 +</pkgmetadata>
42
43 diff --git a/dev-ml/ocaml-bigstring/ocaml-bigstring-0.1.1.ebuild b/dev-ml/ocaml-bigstring/ocaml-bigstring-0.1.1.ebuild
44 new file mode 100644
45 index 00000000000..84098f18ecb
46 --- /dev/null
47 +++ b/dev-ml/ocaml-bigstring/ocaml-bigstring-0.1.1.ebuild
48 @@ -0,0 +1,31 @@
49 +# Copyright 1999-2017 Gentoo Foundation
50 +# Distributed under the terms of the GNU General Public License v2
51 +
52 +EAPI=6
53 +
54 +inherit findlib
55 +
56 +DESCRIPTION="Overlay over bigarrays of chars"
57 +HOMEPAGE="https://github.com/c-cube/ocaml-bigstring/"
58 +SRC_URI="https://github.com/c-cube/ocaml-bigstring/archive/${PV}.tar.gz -> ${P}.tar.gz"
59 +
60 +LICENSE="BSD-2"
61 +SLOT="0/${PV}"
62 +KEYWORDS="~amd64"
63 +IUSE="test"
64 +
65 +# ocamlfind: Package `QTest2Lib' not found
66 +RESTRICT="test"
67 +
68 +RDEPEND="
69 + dev-lang/ocaml:=
70 +"
71 +DEPEND="${RDEPEND}
72 + dev-ml/ocamlbuild
73 + test? ( dev-ml/iTeML )
74 +"
75 +
76 +src_install() {
77 + findlib_src_preinst
78 + default
79 +}