Date: Fri, 5 Jul 2019 12:24:49 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505896 - in head/devel: . libcircllhist Message-ID: <201907051224.x65COnTs056239@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Fri Jul 5 12:24:49 2019 New Revision: 505896 URL: https://svnweb.freebsd.org/changeset/ports/505896 Log: Add a port of C implementation of Circonus log-linear histogram. WWW: https://github.com/circonus-labs/libcircllhist Added: head/devel/libcircllhist/ head/devel/libcircllhist/Makefile (contents, props changed) head/devel/libcircllhist/distinfo (contents, props changed) head/devel/libcircllhist/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 5 11:30:33 2019 (r505895) +++ head/devel/Makefile Fri Jul 5 12:24:49 2019 (r505896) @@ -1142,6 +1142,7 @@ SUBDIR += libchipcard SUBDIR += libcidr SUBDIR += libcii + SUBDIR += libcircllhist SUBDIR += libcjson SUBDIR += libclc SUBDIR += libcli Added: head/devel/libcircllhist/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcircllhist/Makefile Fri Jul 5 12:24:49 2019 (r505896) @@ -0,0 +1,28 @@ +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= libcircllhist +PORTVERSION= g20190612 +CATEGORIES= devel + +MAINTAINER= danfe@FreeBSD.org +COMMENT= C implementation of Circonus log-linear histograms + +LICENSE= BSD3CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= circonus-labs +GH_TAGNAME= 5b43fe1 + +USES= autoreconf gmake +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +PLIST_FILES= include/circllhist.h lib/libcircllhist.a \ + lib/libcircllhist.so lib/libcircllhist.so.0.0.1 \ + share/lua/5.1/ffi_libcircllhist.lua + +post-patch: + @${REINPLACE_CMD} -e 's,-O5 ,,' ${WRKSRC}/configure.ac + +.include <bsd.port.mk> Added: head/devel/libcircllhist/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcircllhist/distinfo Fri Jul 5 12:24:49 2019 (r505896) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560360747 +SHA256 (circonus-labs-libcircllhist-g20190612-5b43fe1_GH0.tar.gz) = 2bf7f54a8e68f0ee310f8c1e427739eef1d097bde83b7de6d96fb5f5b263cf3c +SIZE (circonus-labs-libcircllhist-g20190612-5b43fe1_GH0.tar.gz) = 85522 Added: head/devel/libcircllhist/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcircllhist/pkg-descr Fri Jul 5 12:24:49 2019 (r505896) @@ -0,0 +1,4 @@ +This package includes C implementation of Circonus log-linear histogram +(header and library) and Lua v5.1 bindings to it. + +WWW: https://github.com/circonus-labs/libcircllhist
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907051224.x65COnTs056239>