From 9e0326568b3d5b1715319d74ea7fa4e535ec1093 Mon Sep 17 00:00:00 2001 From: Alfredo Tupone Date: Sat, 13 Jul 2024 09:42:12 +0200 Subject: [PATCH] dev-ml/ocaml-crunch: new package, add 3.3.1 Signed-off-by: Alfredo Tupone --- dev-ml/ocaml-crunch/Manifest | 1 + dev-ml/ocaml-crunch/metadata.xml | 11 +++++++++ dev-ml/ocaml-crunch/ocaml-crunch-3.3.1.ebuild | 24 +++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 dev-ml/ocaml-crunch/Manifest create mode 100644 dev-ml/ocaml-crunch/metadata.xml create mode 100644 dev-ml/ocaml-crunch/ocaml-crunch-3.3.1.ebuild diff --git a/dev-ml/ocaml-crunch/Manifest b/dev-ml/ocaml-crunch/Manifest new file mode 100644 index 0000000000000..ea3e1a164ca64 --- /dev/null +++ b/dev-ml/ocaml-crunch/Manifest @@ -0,0 +1 @@ +DIST ocaml-crunch-3.3.1.tar.gz 60602 BLAKE2B 8218c8ca3e0791c5e2857fae4f11b9f9bd1d6687f3b21812762de8fb11c523eceb2bb3470c637509466963bd3c7df5edc6075e79ed900449c03b7fce2b771991 SHA512 9e3fb95d9b592c6463a8c4743419bd100b06727404310089f308705b38a0d3eaa06f58eeaf8b9feef2ec506e4d7035481b3c39b38374d6c1f24903e93aec660b diff --git a/dev-ml/ocaml-crunch/metadata.xml b/dev-ml/ocaml-crunch/metadata.xml new file mode 100644 index 0000000000000..52be4be3f2fa1 --- /dev/null +++ b/dev-ml/ocaml-crunch/metadata.xml @@ -0,0 +1,11 @@ + + + + + ml@gentoo.org + ML + + + mirage/ocaml-crunch + + diff --git a/dev-ml/ocaml-crunch/ocaml-crunch-3.3.1.ebuild b/dev-ml/ocaml-crunch/ocaml-crunch-3.3.1.ebuild new file mode 100644 index 0000000000000..02a2c8bbce489 --- /dev/null +++ b/dev-ml/ocaml-crunch/ocaml-crunch-3.3.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +DUNE_PKG_NAME=crunch +inherit dune + +DESCRIPTION="Convert a filesystem into a static OCaml module" +HOMEPAGE="https://github.com/mirage/ocaml-crunch" +SRC_URI="https://github.com/mirage/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+ocamlopt" +RESTRICT="test" + +DEPEND=" + dev-ml/cmdliner:=[ocamlopt?] + dev-ml/ptime:=[ocamlopt?] +" +RDEPEND="${DEPEND}" +BDEPEND=">=dev-ml/dune-2.5"