From cac3cc77d3a49ee32b41d6ad5a910047dfc24c81 Mon Sep 17 00:00:00 2001 From: Thomas Bracht Laumann Jespersen Date: Thu, 9 Oct 2025 12:33:50 +0000 Subject: [PATCH] dev-ml/ocaml-tsort: new package, add 2.2.0 Signed-off-by: Thomas Bracht Laumann Jespersen --- dev-ml/ocaml-tsort/Manifest | 1 + dev-ml/ocaml-tsort/metadata.xml | 11 ++++++++++ dev-ml/ocaml-tsort/ocaml-tsort-2.2.0.ebuild | 24 +++++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 dev-ml/ocaml-tsort/Manifest create mode 100644 dev-ml/ocaml-tsort/metadata.xml create mode 100644 dev-ml/ocaml-tsort/ocaml-tsort-2.2.0.ebuild diff --git a/dev-ml/ocaml-tsort/Manifest b/dev-ml/ocaml-tsort/Manifest new file mode 100644 index 0000000000..d1fff12e75 --- /dev/null +++ b/dev-ml/ocaml-tsort/Manifest @@ -0,0 +1 @@ +DIST ocaml-tsort-2.2.0.gh.tar.gz 9716 BLAKE2B 1caac78a7299680303ac265ddb5d1b61446e4ef27ee695d6442a075c4ab7aa258c7e447ce0bc5233230e7e2f269b3b2eda70d8b2530b83791e64068ff0e3408a SHA512 162fbeff69a34f00439570f5fbe3112f2ef6d9cf423a9a3c6a7ad1707cc35b6cb19e0bfa1e70c35c12b8a7adfc70a5aca5a43bef63c7f63aca53b396277019b8 diff --git a/dev-ml/ocaml-tsort/metadata.xml b/dev-ml/ocaml-tsort/metadata.xml new file mode 100644 index 0000000000..6360eb8c3e --- /dev/null +++ b/dev-ml/ocaml-tsort/metadata.xml @@ -0,0 +1,11 @@ + + + + + t@laumann.xyz + Thomas Bracht Laumann Jespersen + + + dmbaturin/ocaml-tsort + + diff --git a/dev-ml/ocaml-tsort/ocaml-tsort-2.2.0.ebuild b/dev-ml/ocaml-tsort/ocaml-tsort-2.2.0.ebuild new file mode 100644 index 0000000000..3688795eda --- /dev/null +++ b/dev-ml/ocaml-tsort/ocaml-tsort-2.2.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DUNE_PKG_NAME=tsort +inherit dune + +DESCRIPTION="Easy to use and user-friendly topological sort" +HOMEPAGE="https://github.com/dmbaturin/ocaml-tsort" +SRC_URI="https://github.com/dmbaturin/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+ocamlopt" + +DOCS=( README.md CHANGES.md ) + +RDEPEND=" + >=dev-ml/dune-1.9 + >=dev-lang/ocaml-4.3:=[ocamlopt?] +" +DEPEND="${RDEPEND}"