Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/fpath/
Date: Wed, 28 Jul 2021 02:05:35
Message-Id: 1627437895.d2f8da8db6b4b87cfdf9b37c1071049af6eaed35.sam@gentoo
1 commit: d2f8da8db6b4b87cfdf9b37c1071049af6eaed35
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 28 02:04:55 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 28 02:04:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f8da8d
7
8 dev-ml/fpath: add 0.7.3
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-ml/fpath/Manifest | 1 +
13 dev-ml/fpath/fpath-0.7.3.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-ml/fpath/Manifest b/dev-ml/fpath/Manifest
17 index 0f8bf4b1258..c46046bf728 100644
18 --- a/dev-ml/fpath/Manifest
19 +++ b/dev-ml/fpath/Manifest
20 @@ -1 +1,2 @@
21 DIST fpath-0.7.2.tbz 24142 BLAKE2B 5aa22a33d0155c2a446c3622d6feef0748be3eaa72f07e7e2770fda1993794864072a5f50a052537b9724e39935064967c87f82d860a2da17fbc86279a1930ab SHA512 d8ab8d6f183a1742d74a3a3220cc1d62e7df38a6f3ca1c04fad18426a0897152255382305ad14d058b5b85ab55a27536c39a62deffac8d46984a730a2a18405d
22 +DIST fpath-0.7.3.tbz 24345 BLAKE2B 5d4e68acebdafb6378422b31385e78decff2dfce1bedd102c7e6baac519f9843e0828629f4a15e075f506865e1af6f9cc7ece761e74fe6608d3476338cc556cb SHA512 acf4b379aee3c25305ef71d1b97b154faa6de1e8248a8e8d046cf11090a3e94f2dc048b961bb51725ca7384e784455f2893fbd51f26bf80571a9cc7e9475b945
23
24 diff --git a/dev-ml/fpath/fpath-0.7.3.ebuild b/dev-ml/fpath/fpath-0.7.3.ebuild
25 new file mode 100644
26 index 00000000000..13e85c27b10
27 --- /dev/null
28 +++ b/dev-ml/fpath/fpath-0.7.3.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit opam
36 +
37 +DESCRIPTION="File system paths for OCaml"
38 +HOMEPAGE="https://erratique.ch/software/fpath https://github.com/dbuenzli/fpath"
39 +SRC_URI="https://erratique.ch/software/fpath/releases/${P}.tbz"
40 +
41 +LICENSE="ISC"
42 +SLOT="0/${PV}"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
44 +
45 +RDEPEND="dev-ml/result:=
46 + dev-ml/astring:=
47 +"
48 +DEPEND="${RDEPEND}"
49 +BDEPEND="dev-ml/topkg
50 + dev-ml/ocamlbuild
51 + dev-ml/findlib"
52 +
53 +src_compile() {
54 + ocaml pkg/pkg.ml build || die
55 +}