commit: ebff9ea77ae610fec978df398479e8bd9a5d684f Author: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz> AuthorDate: Thu Oct 9 13:53:59 2025 +0000 Commit: Thomas Bracht Laumann Jespersen <t <AT> laumann <DOT> xyz> CommitDate: Fri Oct 10 14:02:02 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ebff9ea7
dev-ml/spelll: new package, add 0.4 Signed-off-by: Thomas Bracht Laumann Jespersen <t <AT> laumann.xyz> dev-ml/spelll/Manifest | 1 + dev-ml/spelll/metadata.xml | 11 +++++++++++ dev-ml/spelll/spelll-0.4.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/dev-ml/spelll/Manifest b/dev-ml/spelll/Manifest new file mode 100644 index 0000000000..12f29e62c3 --- /dev/null +++ b/dev-ml/spelll/Manifest @@ -0,0 +1 @@ +DIST spelll-0.4.gh.tar.gz 10393 BLAKE2B 71eca0b7944c065d998e0f9c9546e340169d2c01b83c2f51485885a64979ba1bf4c8d208ea0efabc5496a09849b243367fc51359674af333033822e25db95eeb SHA512 6a7f0e6434b952819a90c05a7f6b28e12d1cd98bbb626d1e0f098bfdf95e8d910962261f332b48b7e277b72514ca224ecea964dcdd481b91924b35b1a099e786 diff --git a/dev-ml/spelll/metadata.xml b/dev-ml/spelll/metadata.xml new file mode 100644 index 0000000000..3303966fd2 --- /dev/null +++ b/dev-ml/spelll/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>[email protected]</email> + <name>Thomas Bracht Laumann Jespersen</name> + </maintainer> + <upstream> + <remote-id type="github">c-cube/spelll</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-ml/spelll/spelll-0.4.ebuild b/dev-ml/spelll/spelll-0.4.ebuild new file mode 100644 index 0000000000..7ba98d5b48 --- /dev/null +++ b/dev-ml/spelll/spelll-0.4.ebuild @@ -0,0 +1,24 @@ +# Copyright 2023-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="Fuzzy string searching, using Levenshtein automaton" +HOMEPAGE="https://github.com/c-cube/spelll" +SRC_URI="https://github.com/c-cube/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+ocamlopt" + +DOCS=( README.md ) + +RDEPEND=" + dev-ml/seq:=[ocamlopt?] + dev-ml/stdlib-shims:=[ocamlopt?] + >=dev-lang/ocaml-4.03.0:=[ocamlopt?] +" +DEPEND="${RDEPEND}"
