Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-ml/xapi-stdext/
Date: Wed, 29 Jun 2022 15:38:03
Message-Id: 1656430554.5541943e2e5256c890d8b9875aa4b40f576cbb47.flow@gentoo
1 commit: 5541943e2e5256c890d8b9875aa4b40f576cbb47
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Tue Jun 28 15:35:54 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 28 15:35:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5541943e
7
8 dev-ml/xapi-stdext: add 4.19.0
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-ml/xapi-stdext/Manifest | 1 +
13 dev-ml/xapi-stdext/xapi-stdext-4.19.0.ebuild | 44 ++++++++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/dev-ml/xapi-stdext/Manifest b/dev-ml/xapi-stdext/Manifest
17 index f4e06be83..5f079adde 100644
18 --- a/dev-ml/xapi-stdext/Manifest
19 +++ b/dev-ml/xapi-stdext/Manifest
20 @@ -1 +1,2 @@
21 DIST xapi-stdext-4.18.0.tar.gz 52297 BLAKE2B f0f4e0f2453b9d98a0fcbd90437cc173771164f18dca3dcc7a05afe1ddccb14a08f192184ab9bddbcfca14f8687cd935000c0ad26ea4adceece51df712cf5579 SHA512 11267f9adc7676724ef7e0a0e1eb670c7234216d45d9566eb09fafe09728c9da5d1ac065afa5aec73895c81d6e62f1c16cabc48c7c6473002e0d58fd7dbc97ee
22 +DIST xapi-stdext-4.19.0.gh.tar.gz 50348 BLAKE2B d8a9111e7470c0dfc4ab4489dca47ba4c6836fa5da168c2555065db558e5e601795350dabcceac0dbdb44f428d13c7897001517585a5a435fa0df179df57f7e9 SHA512 fa77b8603658af7b10604f5fbf08b573c2e179c58d7a309a5f3badd6b048ef01e5a0e29a0d0ff2e2df8f1e4b3e4214f4a7379c7c4fdc4c29a426273e823a4d67
23
24 diff --git a/dev-ml/xapi-stdext/xapi-stdext-4.19.0.ebuild b/dev-ml/xapi-stdext/xapi-stdext-4.19.0.ebuild
25 new file mode 100644
26 index 000000000..2d1d4d88b
27 --- /dev/null
28 +++ b/dev-ml/xapi-stdext/xapi-stdext-4.19.0.ebuild
29 @@ -0,0 +1,44 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit dune
36 +
37 +DESCRIPTION="Citrix's (deprecated) extensions to the ocaml standard library"
38 +HOMEPAGE="
39 + https://xapi-project.github.io/stdext/
40 + https://github.com/xapi-project/stdext
41 +"
42 +SRC_URI="https://github.com/xapi-project/stdext/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
43 +S="${WORKDIR}/stdext-${PV}"
44 +
45 +LICENSE="LGPL-2.1-with-linking-exception"
46 +SLOT="0/${PV}"
47 +KEYWORDS="~amd64"
48 +IUSE="ocamlopt test"
49 +
50 +RDEPEND="
51 + dev-ml/astring:=
52 + >=dev-ml/fd-send-recv-2.0.0:=
53 + dev-ml/logs:=
54 + dev-ml/ptime:=
55 + dev-ml/xapi-backtrace:=
56 +"
57 +DEPEND="
58 + ${RDEPEND}
59 + test? ( dev-ml/alcotest )
60 +"
61 +
62 +RESTRICT="!test? ( test )"
63 +
64 +src_install() {
65 + dune_src_install xapi-stdext-date
66 + dune_src_install xapi-stdext-encodings
67 + dune_src_install xapi-stdext-pervasives
68 + dune_src_install xapi-stdext-std
69 + dune_src_install xapi-stdext-threads
70 + dune_src_install xapi-stdext-unix
71 + dune_src_install xapi-stdext-zerocheck
72 + dune_src_install xapi-stdext
73 +}