Gentoo Archives: gentoo-commits

From: Philip Miess <Phil_miess@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/user/superposition:master commit in: dev-ml/obus/
Date: Mon, 28 Jan 2019 19:37:05
Message-Id: 1548645433.e0ae9d0203ea6cc66f9ab528c9b4337bc2fd95a4.Phil_miess@gentoo
1 commit: e0ae9d0203ea6cc66f9ab528c9b4337bc2fd95a4
2 Author: Philip Miess <Philip_Miess <AT> yahoo <DOT> com>
3 AuthorDate: Mon Jan 28 03:17:13 2019 +0000
4 Commit: Philip Miess <Phil_miess <AT> yahoo <DOT> com>
5 CommitDate: Mon Jan 28 03:17:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=e0ae9d02
7
8 add obus
9
10 Signed-off-by: Philip Miess <Philip_Miess <AT> yahoo.com>
11
12 dev-ml/obus/Manifest | 2 ++
13 dev-ml/obus/obus-1.1.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-ml/obus/Manifest b/dev-ml/obus/Manifest
17 new file mode 100644
18 index 0000000..3a50415
19 --- /dev/null
20 +++ b/dev-ml/obus/Manifest
21 @@ -0,0 +1,2 @@
22 +DIST obus-1.1.tar.gz 402352 RMD160 83a85e65da4fd17fbfe8810f0f7037a6d3ba64dc SHA1 b04855d5b060831255d1f0e3a10281b2776db43c SHA256 af7b0b9f0d8d9084a8a092a1bc6bf6113c102474d45865d64bb37a761ab6ecaf
23 +EBUILD obus-1.1.ebuild 719 RMD160 472fe6fb65a61213eea6a2963ef576b78bb2c285 SHA1 bb068b02c91ff6bc3d52820682053029120a5457 SHA256 ccd74251b08e7e8c52166c9623f63530edde89c0f27a891637927cd5b9afcfd9
24
25 diff --git a/dev-ml/obus/obus-1.1.ebuild b/dev-ml/obus/obus-1.1.ebuild
26 new file mode 100644
27 index 0000000..92ef392
28 --- /dev/null
29 +++ b/dev-ml/obus/obus-1.1.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2010 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Header: $
34 +
35 +EAPI=3
36 +
37 +inherit findlib oasis
38 +
39 +DESCRIPTION="OBus is a pure ocaml implementation of DBus"
40 +HOMEPAGE="https://forge.ocamlcore.org/projects/obus/"
41 +SRC_URI="https://forge.ocamlcore.org/frs/download.php/539/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE="ocamlopt"
47 +
48 +RESTRICT="test"
49 +
50 +DEPEND="${DEPEND}
51 +>=dev-lang/ocaml-3.12[ocamlopt?]
52 +dev-ml/type-conv
53 +dev-ml/xmlm[ocamlopt?]
54 +>=dev-ml/lwt-2.2[ocamlopt?]"
55 +
56 +RDEPEND="${DEPEND}"
57 +
58 +src_configure() {
59 + oasis_src_configure
60 +}
61 +
62 +# Fix tests
63 +#src_test() {
64 +# dbus-launch emake -j1 test || die "make test failed"
65 +#}
66 +
67 +src_install() {
68 + findlib_src_install
69 +}