dev-ml/ocaml-tsort: new package, add 2.2.0

Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
This commit is contained in:
Thomas Bracht Laumann Jespersen
2025-10-09 12:33:50 +00:00
parent 431c0a24be
commit cac3cc77d3
3 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST ocaml-tsort-2.2.0.gh.tar.gz 9716 BLAKE2B 1caac78a7299680303ac265ddb5d1b61446e4ef27ee695d6442a075c4ab7aa258c7e447ce0bc5233230e7e2f269b3b2eda70d8b2530b83791e64068ff0e3408a SHA512 162fbeff69a34f00439570f5fbe3112f2ef6d9cf423a9a3c6a7ad1707cc35b6cb19e0bfa1e70c35c12b8a7adfc70a5aca5a43bef63c7f63aca53b396277019b8

View File

@@ -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>

View File

@@ -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}"