Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/ocamlfuse/
Date: Wed, 27 Apr 2022 00:08:48
Message-Id: 1651018117.a51f39476bd05eed422ee9968ce626fd146d74a6.Alessandro-Barbieri@gentoo
1 commit: a51f39476bd05eed422ee9968ce626fd146d74a6
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Wed Apr 27 00:06:12 2022 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Wed Apr 27 00:08:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a51f3947
7
8 dev-ml/ocamlfuse: new package, add 2.7.1_p7
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-ml/ocamlfuse/Manifest | 1 +
13 dev-ml/ocamlfuse/metadata.xml | 24 ++++++++++++++++++++++++
14 dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild | 29 +++++++++++++++++++++++++++++
15 3 files changed, 54 insertions(+)
16
17 diff --git a/dev-ml/ocamlfuse/Manifest b/dev-ml/ocamlfuse/Manifest
18 new file mode 100644
19 index 000000000..f94f2f666
20 --- /dev/null
21 +++ b/dev-ml/ocamlfuse/Manifest
22 @@ -0,0 +1 @@
23 +DIST ocamlfuse-2.7.1_p7.tar.gz 21469 BLAKE2B fa587d19124c2e2d320091bb42b098644d3112e39652dbf621c88f701effdab0ce15372b6f2461709eb3afe628e2888db3a7a0c9abeab8b8a136d09c69c84ac4 SHA512 342a6ce8a81ac05d47d4458ef6e9aa750e4e7643a89d28705664852f0549e1932643e8db5d93225ba496611654b3f11fef6aca1e6e40e8d4b30064fc9c65f7fd
24
25 diff --git a/dev-ml/ocamlfuse/metadata.xml b/dev-ml/ocamlfuse/metadata.xml
26 new file mode 100644
27 index 000000000..54ac06525
28 --- /dev/null
29 +++ b/dev-ml/ocamlfuse/metadata.xml
30 @@ -0,0 +1,24 @@
31 +<?xml version="1.0" encoding="UTF8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <description>co-maintainers welcome</description>
36 + <email>lssndrbarbieri@×××××.com</email>
37 + <name>Alessandro Barbieri</name>
38 + </maintainer>
39 + <longdescription lang="en">This is a binding to FUSE for the OCaml programming language, enabling
40 +you to write multithreaded filesystems in the OCaml language. It has
41 +been designed with simplicity as a goal, as you can see by looking at
42 +example/fusexmp.ml. Efficiency has also been a separate goal. The
43 +Bigarray library is used for read and writes, allowing the library to
44 +do zero-copy in OCaml land.</longdescription>
45 + <upstream>
46 + <bugs-to>https://github.com/astrada/ocamlfuse/issues</bugs-to>
47 + <remote-id type="github">astrada/ocamlfuse</remote-id>
48 + <remote-id type="sourceforge">ocamlfuse</remote-id>
49 + <maintainer>
50 + <name>Alessandro Strada</name>
51 + <email>alessandro.strada@×××××.com</email>
52 + </maintainer>
53 + </upstream>
54 +</pkgmetadata>
55
56 diff --git a/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild b/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
57 new file mode 100644
58 index 000000000..93ab86f8c
59 --- /dev/null
60 +++ b/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
61 @@ -0,0 +1,29 @@
62 +# Copyright 1999-2022 Gentoo Authors
63 +# Distributed under the terms of the GNU General Public License v2
64 +
65 +EAPI=8
66 +
67 +inherit dune
68 +
69 +MYPV="${PV/_p/_cvs}"
70 +
71 +DESCRIPTION="OCaml binding for fuse"
72 +HOMEPAGE="
73 + https://sourceforge.net/projects/ocamlfuse/
74 + https://github.com/astrada/ocamlfuse
75 + https://opam.ocaml.org/packages/ocamlfuse
76 +"
77 +SRC_URI="https://github.com/astrada/${PN}/archive/v${MYPV}.tar.gz -> ${PF}.tar.gz"
78 +S="${WORKDIR}/${PN}-${MYPV}"
79 +
80 +LICENSE="GPL-2"
81 +SLOT="0"
82 +KEYWORDS="~amd64"
83 +IUSE="ocamlopt"
84 +
85 +RDEPEND="
86 + dev-ml/camlidl:=
87 + sys-fs/fuse:0
88 +"
89 +DEPEND="${RDEPEND}"
90 +BDEPEND="dev-ml/dune-configurator"