commit: cac3cc77d3a49ee32b41d6ad5a910047dfc24c81 Author: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz> AuthorDate: Thu Oct 9 12:33:50 2025 +0000 Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me> CommitDate: Fri Oct 10 14:02:02 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cac3cc77
dev-ml/ocaml-tsort: new package, add 2.2.0 Signed-off-by: Thomas Bracht Laumann Jespersen <t <AT> laumann.xyz> 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(+) 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 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>t...@laumann.xyz</email> + <name>Thomas Bracht Laumann Jespersen</name> + </maintainer> + <upstream> + <remote-id type="github">dmbaturin/ocaml-tsort</remote-id> + </upstream> +</pkgmetadata> 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}"