From owner-svn-ports-all@freebsd.org Wed Feb 22 17:17:51 2017 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 90D97CE9329; Wed, 22 Feb 2017 17:17:51 +0000 (UTC) (envelope-from sunpoet@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 690BF18DB; Wed, 22 Feb 2017 17:17:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1MHHoXi076064; Wed, 22 Feb 2017 17:17:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1MHHo7L076059; Wed, 22 Feb 2017 17:17:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201702221717.v1MHHo7L076059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 22 Feb 2017 17:17:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434622 - in head/benchmarks: . gobench 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.23 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: Wed, 22 Feb 2017 17:17:51 -0000 Author: sunpoet Date: Wed Feb 22 17:17:49 2017 New Revision: 434622 URL: https://svnweb.freebsd.org/changeset/ports/434622 Log: Add gobench 1.1 goBench is a HTTP(S) benchmarking tool designed for high throughput to replace existing benchmarking/load tools which have concurrency issues. We are working so hard to optimize our servers - why shouldn't we do also it for our clients testers?! WWW: https://github.com/tabrarg/gobench - While I'm here: - Add LICENSE_FILE - Change BUILD_DEPENDS to RUN_DEPENDS - Remove GH_PROJECT - Respect LOCALBASE PR: 217213 Submitted by: Guy Tabrar Added: head/benchmarks/gobench/ head/benchmarks/gobench/Makefile (contents, props changed) head/benchmarks/gobench/distinfo (contents, props changed) head/benchmarks/gobench/pkg-descr (contents, props changed) head/benchmarks/gobench/pkg-plist (contents, props changed) Modified: head/benchmarks/Makefile Modified: head/benchmarks/Makefile ============================================================================== --- head/benchmarks/Makefile Wed Feb 22 17:15:18 2017 (r434621) +++ head/benchmarks/Makefile Wed Feb 22 17:17:49 2017 (r434622) @@ -21,6 +21,7 @@ SUBDIR += flowgrind SUBDIR += forkbomb SUBDIR += glmark2 + SUBDIR += gobench SUBDIR += gtkperf SUBDIR += himenobench SUBDIR += hpl Added: head/benchmarks/gobench/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/gobench/Makefile Wed Feb 22 17:17:49 2017 (r434622) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= gobench +PORTVERSION= 1.1 +CATEGORIES= benchmarks net + +MAINTAINER= guy.tabrar@me.com +COMMENT= HTTP benchmarking tool written in Go + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= go:lang/go \ + go-fasthttp>=0:www/go-fasthttp + +USE_GITHUB= yes +GH_ACCOUNT= tabrarg + +NO_ARCH= yes +NO_BUILD= yes + +post-patch: + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/gobench + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/gobench ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/gobench.go ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/gobench.1 ${STAGEDIR}${PREFIX}/man/man1 + +.include Added: head/benchmarks/gobench/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/gobench/distinfo Wed Feb 22 17:17:49 2017 (r434622) @@ -0,0 +1,3 @@ +TIMESTAMP = 1487485531 +SHA256 (tabrarg-gobench-1.1_GH0.tar.gz) = 0c5aa018947ad61f3e67c9bd6ddac4a15d19043cc485f7a5e997191d59aed641 +SIZE (tabrarg-gobench-1.1_GH0.tar.gz) = 6963 Added: head/benchmarks/gobench/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/gobench/pkg-descr Wed Feb 22 17:17:49 2017 (r434622) @@ -0,0 +1,6 @@ +goBench is a HTTP(S) benchmarking tool designed for high throughput +to replace existing benchmarking/load tools which have concurrency +issues. We are working so hard to optimize our servers - why shouldn't +we do also it for our clients testers?! + +WWW: https://github.com/tabrarg/gobench Added: head/benchmarks/gobench/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/gobench/pkg-plist Wed Feb 22 17:17:49 2017 (r434622) @@ -0,0 +1,3 @@ +bin/gobench +bin/gobench.go +man/man1/gobench.1.gz