diff --git a/dev-ml/metrics/Manifest b/dev-ml/metrics/Manifest new file mode 100644 index 0000000000..1e0e9fa6ca --- /dev/null +++ b/dev-ml/metrics/Manifest @@ -0,0 +1 @@ +DIST metrics-0.2.0.tbz 18159 BLAKE2B d480c9c9bd6600748bbe747ef3a10909cfc3e0d65039eadc28c6bc065d6bc1739833bcd3093ae146630a38168cb27df0484f7d6942a53a51f220a43aeebc22f6 SHA512 3f1a6cfbcc674409a7382446084c11c3646e6b380e4972306334e7fa0e558d256dadfd39f7f3acd32afffe78757f66ecefc1b7960ae366afe09397ba0bbdaf68 diff --git a/dev-ml/metrics/metadata.xml b/dev-ml/metrics/metadata.xml new file mode 100644 index 0000000000..4e8d5310f2 --- /dev/null +++ b/dev-ml/metrics/metadata.xml @@ -0,0 +1,18 @@ + + + + + co-maintainers welcome + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + mirage/metrics + + + Influx reporter for the Metrics library + Lwt backend for the Metrics library + Resource usage (getrusage) sources for the Metrics library + Unix backend for the Metrics library + + diff --git a/dev-ml/metrics/metrics-0.2.0.ebuild b/dev-ml/metrics/metrics-0.2.0.ebuild new file mode 100644 index 0000000000..d4aeebbdab --- /dev/null +++ b/dev-ml/metrics/metrics-0.2.0.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit dune multiprocessing + +DESCRIPTION="Infrastructure to collect metrics from OCaml applications" +HOMEPAGE="https://github.com/mirage/metrics" +SRC_URI="https://github.com/mirage/metrics/releases/download/${PV}/${P}.tbz" + +LICENSE="ISC" +SLOT="0/${PV}" +KEYWORDS="~amd64" +IUSE="influx lwt ocamlopt rusage test unix" + +RDEPEND=" + dev-ml/fmt + influx? ( + dev-ml/duration + dev-ml/lwt + ) + lwt? ( + dev-ml/lwt + dev-ml/logs + ) + rusage? ( dev-ml/logs ) + unix? ( + dev-ml/uuidm + dev-ml/mtime + sci-visualization/gnuplot + ) +" +DEPEND=" + ${RDEPEND} + test? ( dev-ml/alcotest ) +" + +RESTRICT="!test? ( test )" +REQUIRED_USE="test? ( lwt unix )" + +src_compile() { + local pkgs="metrics" + for u in influx lwt unix rusage ; do + if use ${u} ; then + pkgs="${pkgs},metrics-${u}" + fi + done + dune build --only-packages "${pkgs}" -j $(makeopts_jobs) --profile release || die +} + +src_install() { + dune_src_install metrics + use influx && dune_src_install metrics-influx + use lwt && dune_src_install metrics-lwt + use rusage && dune_src_install metrics-rusage + use unix && dune_src_install metrics-unix +}