From owner-svn-ports-all@freebsd.org Fri Jul 8 21:25:48 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31212B831AF; Fri, 8 Jul 2016 21:25:48 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0EA441DC9; Fri, 8 Jul 2016 21:25:47 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u68LPlHx073102; Fri, 8 Jul 2016 21:25:47 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u68LPk5J073096; Fri, 8 Jul 2016 21:25:46 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201607082125.u68LPk5J073096@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Fri, 8 Jul 2016 21:25:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418244 - in head/devel: . go-metrics X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jul 2016 21:25:48 -0000 Author: cs Date: Fri Jul 8 21:25:46 2016 New Revision: 418244 URL: https://svnweb.freebsd.org/changeset/ports/418244 Log: This library provides a metrics package which can be used to instrument code, expose application metrics, and profile runtime performance in a flexible manner. WWW: https://github.com/armon/go-metrics Added: head/devel/go-metrics/ head/devel/go-metrics/Makefile (contents, props changed) head/devel/go-metrics/distinfo (contents, props changed) head/devel/go-metrics/pkg-descr (contents, props changed) head/devel/go-metrics/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jul 8 21:12:44 2016 (r418243) +++ head/devel/Makefile Fri Jul 8 21:25:46 2016 (r418244) @@ -716,6 +716,7 @@ SUBDIR += go-go.uuid SUBDIR += go-hashicorp-logutils SUBDIR += go-json-rest + SUBDIR += go-metrics SUBDIR += go-pretty SUBDIR += go-raw SUBDIR += go-runewidth Added: head/devel/go-metrics/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-metrics/Makefile Fri Jul 8 21:25:46 2016 (r418244) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= go-metrics +PORTVERSION= 20160521 +CATEGORIES= devel + +MAINTAINER= cs@FreeBSD.org +COMMENT= Golang library for exporting performance and runtime metrics + +LICENSE= MIT + +USE_GITHUB= yes +GH_ACCOUNT= armon +GH_TAGNAME= fbf75676ee9c0a3a23eb0a4d9220a3612cfbd1ed +USES= go +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} + +.include Added: head/devel/go-metrics/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-metrics/distinfo Fri Jul 8 21:25:46 2016 (r418244) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468012940 +SHA256 (armon-go-metrics-20160521-fbf75676ee9c0a3a23eb0a4d9220a3612cfbd1ed_GH0.tar.gz) = 4caaa4252b3c173b3ff8179961f779fd98d73f28fe6c5f2dfc91fd4fe3a34dd9 +SIZE (armon-go-metrics-20160521-fbf75676ee9c0a3a23eb0a4d9220a3612cfbd1ed_GH0.tar.gz) = 13744 Added: head/devel/go-metrics/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-metrics/pkg-descr Fri Jul 8 21:25:46 2016 (r418244) @@ -0,0 +1,5 @@ +This library provides a metrics package which can be used to instrument code, +expose application metrics, and profile runtime performance in a flexible +manner. + +WWW: https://github.com/armon/go-metrics Added: head/devel/go-metrics/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/go-metrics/pkg-plist Fri Jul 8 21:25:46 2016 (r418244) @@ -0,0 +1,22 @@ +%%GO_LIBDIR%%/%%GO_PKGNAME%%.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE +%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md +%%GO_SRCDIR%%/%%GO_PKGNAME%%/const_unix.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/const_windows.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/datadog/dogstatsd.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/datadog/dogstatsd_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem_signal.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem_signal_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/metrics.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/metrics_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/prometheus/prometheus.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/sink.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/sink_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/start.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/start_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsd.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsd_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsite.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsite_test.go