Date: Fri, 24 May 2019 06:47:10 +0000 (UTC) From: Dave Cottlehuber <dch@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502423 - in head/math: . rubygem-mtrc Message-ID: <201905240647.x4O6lAAu063394@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dch Date: Fri May 24 06:47:10 2019 New Revision: 502423 URL: https://svnweb.freebsd.org/changeset/ports/502423 Log: math/rubygem-mtrc: new port - minimal metric aggregation library Mtrc (short for metric) is a small library to accumulate metrics and extract basic statistics, such as histograms and percentiles, from them. It takes samples, and provides tick counters, percentiles, and sorted datasets. This can be used for profiling repeated events such as application requests or message queue arrival rates. WWW: https://github.com/aphyr/mtrc Reviewed by: romain Approved by: jrm (mentor) Differential Revision: https://reviews.freebsd.org/D17710 Added: head/math/rubygem-mtrc/ head/math/rubygem-mtrc/Makefile (contents, props changed) head/math/rubygem-mtrc/distinfo (contents, props changed) head/math/rubygem-mtrc/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri May 24 06:46:58 2019 (r502422) +++ head/math/Makefile Fri May 24 06:47:10 2019 (r502423) @@ -805,6 +805,7 @@ SUBDIR += rubygem-expression_parser SUBDIR += rubygem-fftw3 SUBDIR += rubygem-mathn + SUBDIR += rubygem-mtrc SUBDIR += rubygem-narray SUBDIR += rubygem-narray_miss SUBDIR += rubygem-numru-misc Added: head/math/rubygem-mtrc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-mtrc/Makefile Fri May 24 06:47:10 2019 (r502423) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= mtrc +DISTVERSION= 0.0.4 +CATEGORIES= math rubygems benchmarks +MASTER_SITES= RG + +MAINTAINER= dch@FreeBSD.org +COMMENT= Minimal metric aggregation library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= gem + +NO_ARCH= yes +USE_RUBY= yes + +.include <bsd.port.mk> Added: head/math/rubygem-mtrc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-mtrc/distinfo Fri May 24 06:47:10 2019 (r502423) @@ -0,0 +1,3 @@ +TIMESTAMP = 1540511499 +SHA256 (rubygem/mtrc-0.0.4.gem) = 3f56fc87d3b597cf19e01005e78cc60ff2efbab651a3c17b680ad8cbc8be4276 +SIZE (rubygem/mtrc-0.0.4.gem) = 5632 Added: head/math/rubygem-mtrc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/rubygem-mtrc/pkg-descr Fri May 24 06:47:10 2019 (r502423) @@ -0,0 +1,7 @@ +Mtrc (short for metric) is a small library to accumulate metrics and +extract basic statistics, such as histograms and percentiles, from them. +It takes samples, and provides tick counters, percentiles, and sorted +datasets. This can be used for profiling repeated events such as +application requests or message queue arrival rates. + +WWW: https://github.com/aphyr/mtrc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905240647.x4O6lAAu063394>