dev-lang/elpi: bump to 2.0.7

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2025-04-20 18:14:09 +02:00
parent d2be87f4ef
commit 611dd5b428
2 changed files with 48 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST elpi-1.19.6.tar.gz 2645680 BLAKE2B 6dfeeff7d5a5a00a4f663acf2c696a30035ea997d775542b9fd49b08b417877217f7eb4ca6dd1a89b1b959b5c4be982cd9488b7ee0774d3de6749148de04f037 SHA512 3371b50d8bcce0d9bc49fcb5f4a27f6317644b748495f2d58a8e7bacf0ff4dd1e506a4f6c0cfefb04e6ff82ad71fd73e4c55185246225c708ab368190457b05c
DIST elpi-2.0.7.tar.gz 2642553 BLAKE2B 958036c8fbd29d1a6e2fff71dd749b45c4fb21ce1bb390397da46357130b0189fe0f6f8e1fbbe8f80ae3d1da7489e6fe0a2459d7b3a46162908ea933e743829a SHA512 0f4352899a123dc67ab8529e471faa8f52407460d78a02de7d2cfb8798b816789918f2b64682771b5233d7895655b73623e2b078486b35d43243157f9cf8d628

View File

@@ -0,0 +1,47 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit dune
DESCRIPTION="Embeddable Lambda Prolog Interpreter in OCaml"
HOMEPAGE="https://github.com/LPCIC/elpi/"
if [[ ${PV} == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/LPCIC/${PN}.git"
else
SRC_URI="https://github.com/LPCIC/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="LGPL-2.1+"
SLOT="0/${PV}"
IUSE="+ocamlopt test"
RESTRICT="!test? ( test )"
RDEPEND="
<dev-ml/atd-2.16.0:=
>=dev-lang/ocaml-4.08.0:=
>=dev-ml/menhir-20211230:=
dev-ml/ppx_deriving:=
dev-ml/ppxlib:=
dev-ml/re:=
dev-ml/stdlib-shims:=
"
DEPEND="${RDEPEND}"
BDEPEND="
test? (
dev-ml/ANSITerminal
dev-ml/cmdliner
)
"
DOCS=( AUTHORS.md CHANGES.md ELPI.md INCOMPATIBILITIES.md README.md )
src_install() {
dune_src_install
einstalldocs
}