* [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/ocamlfuse/
@ 2022-04-27 0:08 Alessandro Barbieri
0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2022-04-27 0:08 UTC (permalink / raw
To: gentoo-commits
commit: a51f39476bd05eed422ee9968ce626fd146d74a6
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Apr 27 00:06:12 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Wed Apr 27 00:08:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a51f3947
dev-ml/ocamlfuse: new package, add 2.7.1_p7
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-ml/ocamlfuse/Manifest | 1 +
dev-ml/ocamlfuse/metadata.xml | 24 ++++++++++++++++++++++++
dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild | 29 +++++++++++++++++++++++++++++
3 files changed, 54 insertions(+)
diff --git a/dev-ml/ocamlfuse/Manifest b/dev-ml/ocamlfuse/Manifest
new file mode 100644
index 000000000..f94f2f666
--- /dev/null
+++ b/dev-ml/ocamlfuse/Manifest
@@ -0,0 +1 @@
+DIST ocamlfuse-2.7.1_p7.tar.gz 21469 BLAKE2B fa587d19124c2e2d320091bb42b098644d3112e39652dbf621c88f701effdab0ce15372b6f2461709eb3afe628e2888db3a7a0c9abeab8b8a136d09c69c84ac4 SHA512 342a6ce8a81ac05d47d4458ef6e9aa750e4e7643a89d28705664852f0549e1932643e8db5d93225ba496611654b3f11fef6aca1e6e40e8d4b30064fc9c65f7fd
diff --git a/dev-ml/ocamlfuse/metadata.xml b/dev-ml/ocamlfuse/metadata.xml
new file mode 100644
index 000000000..54ac06525
--- /dev/null
+++ b/dev-ml/ocamlfuse/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <description>co-maintainers welcome</description>
+ <email>lssndrbarbieri@gmail.com</email>
+ <name>Alessandro Barbieri</name>
+ </maintainer>
+ <longdescription lang="en">This is a binding to FUSE for the OCaml programming language, enabling
+you to write multithreaded filesystems in the OCaml language. It has
+been designed with simplicity as a goal, as you can see by looking at
+example/fusexmp.ml. Efficiency has also been a separate goal. The
+Bigarray library is used for read and writes, allowing the library to
+do zero-copy in OCaml land.</longdescription>
+ <upstream>
+ <bugs-to>https://github.com/astrada/ocamlfuse/issues</bugs-to>
+ <remote-id type="github">astrada/ocamlfuse</remote-id>
+ <remote-id type="sourceforge">ocamlfuse</remote-id>
+ <maintainer>
+ <name>Alessandro Strada</name>
+ <email>alessandro.strada@gmail.com</email>
+ </maintainer>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild b/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
new file mode 100644
index 000000000..93ab86f8c
--- /dev/null
+++ b/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit dune
+
+MYPV="${PV/_p/_cvs}"
+
+DESCRIPTION="OCaml binding for fuse"
+HOMEPAGE="
+ https://sourceforge.net/projects/ocamlfuse/
+ https://github.com/astrada/ocamlfuse
+ https://opam.ocaml.org/packages/ocamlfuse
+"
+SRC_URI="https://github.com/astrada/${PN}/archive/v${MYPV}.tar.gz -> ${PF}.tar.gz"
+S="${WORKDIR}/${PN}-${MYPV}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="ocamlopt"
+
+RDEPEND="
+ dev-ml/camlidl:=
+ sys-fs/fuse:0
+"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-ml/dune-configurator"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/ocamlfuse/
@ 2022-05-03 20:21 Alessandro Barbieri
0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2022-05-03 20:21 UTC (permalink / raw
To: gentoo-commits
commit: fa75a27359e9e00aad2e732c4129d4002a71e073
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue May 3 18:32:32 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Tue May 3 20:21:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fa75a273
dev-ml/ocamlfuse: export CPP
Closes: https://bugs.gentoo.org/842321
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild b/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
index b99d461be..c66afc07a 100644
--- a/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
+++ b/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit dune
+inherit dune toolchain-funcs
MYPV="${PV/_p/_cvs}"
@@ -30,3 +30,8 @@ BDEPEND="
dev-ml/dune-configurator
dev-ml/opam
"
+
+src_compile() {
+ tc-export CPP
+ dune_src_compile
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/ocamlfuse/
@ 2022-05-03 20:21 Alessandro Barbieri
0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2022-05-03 20:21 UTC (permalink / raw
To: gentoo-commits
commit: ac7301ba91b119f4ec3b7b43c714bca2d0d07f8c
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Tue May 3 18:11:15 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Tue May 3 20:21:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ac7301ba
dev-ml/ocamlfuse: add opam build dep
Closes: https://bugs.gentoo.org/842339
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild b/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
index 93ab86f8c..b99d461be 100644
--- a/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
+++ b/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
@@ -26,4 +26,7 @@ RDEPEND="
sys-fs/fuse:0
"
DEPEND="${RDEPEND}"
-BDEPEND="dev-ml/dune-configurator"
+BDEPEND="
+ dev-ml/dune-configurator
+ dev-ml/opam
+"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/ocamlfuse/
@ 2022-05-28 12:53 Alessandro Barbieri
0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2022-05-28 12:53 UTC (permalink / raw
To: gentoo-commits
commit: 7f29fab3e6ddf774453bb34eb530a12f85a0ed8a
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat May 28 12:38:41 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat May 28 12:53:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7f29fab3
dev-ml/ocamlfuse: add subslot
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-ml/ocamlfuse/Manifest | 2 +-
.../{ocamlfuse-2.7.1_p7.ebuild => ocamlfuse-2.7.1_p7-r1.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ml/ocamlfuse/Manifest b/dev-ml/ocamlfuse/Manifest
index f94f2f666..3a0975208 100644
--- a/dev-ml/ocamlfuse/Manifest
+++ b/dev-ml/ocamlfuse/Manifest
@@ -1 +1 @@
-DIST ocamlfuse-2.7.1_p7.tar.gz 21469 BLAKE2B fa587d19124c2e2d320091bb42b098644d3112e39652dbf621c88f701effdab0ce15372b6f2461709eb3afe628e2888db3a7a0c9abeab8b8a136d09c69c84ac4 SHA512 342a6ce8a81ac05d47d4458ef6e9aa750e4e7643a89d28705664852f0549e1932643e8db5d93225ba496611654b3f11fef6aca1e6e40e8d4b30064fc9c65f7fd
+DIST ocamlfuse-2.7.1_p7-r1.tar.gz 21469 BLAKE2B fa587d19124c2e2d320091bb42b098644d3112e39652dbf621c88f701effdab0ce15372b6f2461709eb3afe628e2888db3a7a0c9abeab8b8a136d09c69c84ac4 SHA512 342a6ce8a81ac05d47d4458ef6e9aa750e4e7643a89d28705664852f0549e1932643e8db5d93225ba496611654b3f11fef6aca1e6e40e8d4b30064fc9c65f7fd
diff --git a/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild b/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7-r1.ebuild
similarity index 97%
rename from dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
rename to dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7-r1.ebuild
index c66afc07a..fdf08ccbc 100644
--- a/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7.ebuild
+++ b/dev-ml/ocamlfuse/ocamlfuse-2.7.1_p7-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/astrada/${PN}/archive/v${MYPV}.tar.gz -> ${PF}.tar.g
S="${WORKDIR}/${PN}-${MYPV}"
LICENSE="GPL-2"
-SLOT="0"
+SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="ocamlopt"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-05-28 12:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-27 0:08 [gentoo-commits] repo/proj/guru:dev commit in: dev-ml/ocamlfuse/ Alessandro Barbieri
-- strict thread matches above, loose matches on Subject: below --
2022-05-03 20:21 Alessandro Barbieri
2022-05-03 20:21 Alessandro Barbieri
2022-05-28 12:53 Alessandro Barbieri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox