diff --git a/dev-ml/ocamlc-loc/Manifest b/dev-ml/ocamlc-loc/Manifest new file mode 100644 index 0000000000..f173e2e8cb --- /dev/null +++ b/dev-ml/ocamlc-loc/Manifest @@ -0,0 +1 @@ +DIST ocamlc-loc-3.13.1.tar.gz 2891852 BLAKE2B 88cee2428134ddcd6b929915b6bbeb2d17be8b8190f963919a74c63ffcf80f596fb1556f88c41ee602b2386e02fdf396596a6b2097d67c720bd00e16cdda3a57 SHA512 910d4ddd55a91ee65d8ea35b8915506db74c924eb3b67f7b0715da5599ee5088ea3edec81ce6735addd5b17234e445608e59fa353b83e991c14768d83c97a2b5 diff --git a/dev-ml/ocamlc-loc/metadata.xml b/dev-ml/ocamlc-loc/metadata.xml new file mode 100644 index 0000000000..2131acf3be --- /dev/null +++ b/dev-ml/ocamlc-loc/metadata.xml @@ -0,0 +1,12 @@ + + + + + tokusan441@gmail.com + Hiroki Tokunaga + + + https://github.com/ocaml/dune/issues + ocaml/dune + + diff --git a/dev-ml/ocamlc-loc/ocamlc-loc-3.13.1.ebuild b/dev-ml/ocamlc-loc/ocamlc-loc-3.13.1.ebuild new file mode 100644 index 0000000000..5495cd1de1 --- /dev/null +++ b/dev-ml/ocamlc-loc/ocamlc-loc-3.13.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune + +DESCRIPTION="Parse ocaml compiler output into structured form" +HOMEPAGE=" + https://opam.ocaml.org/packages/ocamlc-loc/ + https://github.com/ocaml/dune +" +SRC_URI="https://github.com/ocaml/dune/archive/${PV}.tar.gz -> ${P}.tar.gz" + +S="${WORKDIR}/dune-${PV}" + +LICENSE="MIT" + +SLOT="0/${PV}" + +KEYWORDS="~amd64" +IUSE="ocamlopt" + +RESTRICT="test" + +RDEPEND=" + ~dev-ml/dyn-${PV}:= +" + +DEPEND=" + ${RDEPEND} +" + +src_configure() { + : +} + +src_compile() { + dune-compile ocamlc-loc +} + +src_install() { + dune-install ocamlc-loc +}