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/uuidm/
Date: Tue, 29 Nov 2016 17:24:08
Message-Id: 1480440238.7198c6438db77130e4e37ea85d1c6b526efbc4a2.aballier@gentoo
1 commit: 7198c6438db77130e4e37ea85d1c6b526efbc4a2
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 15:55:54 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 17:23:58 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7198c643
7
8 dev-ml/uuidm: bump to 0.9.6
9
10 Package-Manager: portage-2.3.2
11
12 dev-ml/uuidm/Manifest | 1 +
13 dev-ml/uuidm/uuidm-0.9.6.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-ml/uuidm/Manifest b/dev-ml/uuidm/Manifest
17 index 83f55c1..a331f04 100644
18 --- a/dev-ml/uuidm/Manifest
19 +++ b/dev-ml/uuidm/Manifest
20 @@ -1 +1,2 @@
21 DIST uuidm-0.9.5.tbz 44450 SHA256 b5d99f7a53d184fd1e8405f8f57a1c4407530bd5f6a4f75edaf0ae1482ee6f0d SHA512 2e3ec14dd1ca07c3f057171d7b09d98067c69700f6dd4edbeeafcb1802ee1aa374c76ce65cd26141aae9f70aebadb31abd15ef8d7560534b8c206e65acb27fe8 WHIRLPOOL 7b679775961aca73f60bae791f72a33c92bdd38f668e79cccd6de19a7240ae163950f2641fb8333276d0975c21e8a3cc6218c155b5483cb4487d2958588ea708
22 +DIST uuidm-0.9.6.tbz 9707 SHA256 8ccab2ad5b2ca734224d93711396f9bfc2d0ca9fbba494f805d3840e7a73e443 SHA512 13b900e98c27f201636b6f074416dc85ed6725b5bcdf911532c4ff31ca980c0a8e31583db9e336d2533559e4f9c3c1badf2a4548dffd21c009671a8dfc80a7f7 WHIRLPOOL e6abce97947da183c82bb5abbe97b8a6cf8624e3c06d61aeb9fa97e4df43294372e2b94e0a3efda37438ba365c9529482bd35672ae88864dc0e308c30ab222aa
23
24 diff --git a/dev-ml/uuidm/uuidm-0.9.6.ebuild b/dev-ml/uuidm/uuidm-0.9.6.ebuild
25 new file mode 100644
26 index 00000000..764b1e8
27 --- /dev/null
28 +++ b/dev-ml/uuidm/uuidm-0.9.6.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +inherit findlib
37 +
38 +DESCRIPTION="OCaml module implementing 128 bits universally unique identifiers"
39 +HOMEPAGE="http://erratique.ch/software/uuidm"
40 +SRC_URI="http://erratique.ch/software/uuidm/releases/${P}.tbz"
41 +
42 +LICENSE="ISC"
43 +SLOT="0/${PV}"
44 +KEYWORDS="~amd64"
45 +IUSE=""
46 +
47 +RDEPEND="dev-lang/ocaml:=
48 + dev-ml/cmdliner:="
49 +DEPEND="${RDEPEND}
50 + dev-ml/opam"
51 +
52 +src_compile() {
53 + ocaml pkg/pkg.ml build || die
54 +}
55 +
56 +src_install() {
57 + opam-installer -i \
58 + --prefix="${ED}/usr" \
59 + --libdir="${D}/$(ocamlc -where)" \
60 + --docdir="${ED}/usr/share/doc/${PF}" \
61 + ${PN}.install || die
62 + dodoc CHANGES.md README.md
63 +}