From owner-svn-ports-all@freebsd.org Thu Jun 15 20:52:54 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 726A0BEEA1E; Thu, 15 Jun 2017 20:52:54 +0000 (UTC) (envelope-from brd@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 4DC9E83F9E; Thu, 15 Jun 2017 20:52:54 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5FKqrC7066428; Thu, 15 Jun 2017 20:52:53 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5FKqrsw066424; Thu, 15 Jun 2017 20:52:53 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201706152052.v5FKqrsw066424@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Thu, 15 Jun 2017 20:52:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443638 - in head/benchmarks: . hey 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: Thu, 15 Jun 2017 20:52:54 -0000 Author: brd Date: Thu Jun 15 20:52:52 2017 New Revision: 443638 URL: https://svnweb.freebsd.org/changeset/ports/443638 Log: Add 'hey' an HTTP benchmarking tool Reviewed by: swills (mentor) Added: head/benchmarks/hey/ head/benchmarks/hey/Makefile (contents, props changed) head/benchmarks/hey/distinfo (contents, props changed) head/benchmarks/hey/pkg-descr (contents, props changed) Modified: head/benchmarks/Makefile Modified: head/benchmarks/Makefile ============================================================================== --- head/benchmarks/Makefile Thu Jun 15 20:42:51 2017 (r443637) +++ head/benchmarks/Makefile Thu Jun 15 20:52:52 2017 (r443638) @@ -24,6 +24,7 @@ SUBDIR += forkbomb SUBDIR += glmark2 SUBDIR += gtkperf + SUBDIR += hey SUBDIR += himenobench SUBDIR += hpl SUBDIR += hs-criterion Added: head/benchmarks/hey/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/hey/Makefile Thu Jun 15 20:52:52 2017 (r443638) @@ -0,0 +1,33 @@ +# Created by: Brad Davis +# $FreeBSD$ + +PORTNAME= hey +PORTVERSION= 0.1.0 +DISTVERSIONPREFIX= v +CATEGORIES= benchmarks + +MAINTAINER= brd@FreeBSD.org +COMMENT= Tiny program that sends some load to a web application + +BUILD_DEPENDS= go>=1.7:lang/go + +USE_GITHUB= yes +GH_ACCOUNT= rakyll + +GH_TUPLE= golang:net:41bba8d:net/src/golang.org/x/net + +PLIST_FILES= bin/hey + +do-build: + ( cd ${WRKSRC}; \ + ${MKDIR} src/github.com/rakyll/hey; \ + cd src/github.com/rakyll/hey; \ + ${LN} -s ../../../../requester . ) + ( cd ${WRKSRC}; \ + ${SETENV} ${BUILD_ENV} GOPATH=${WRKSRC} CC=clang \ + go build ${BUILD_FLAGS} ) + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}-${PORTVERSION} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/benchmarks/hey/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/hey/distinfo Thu Jun 15 20:52:52 2017 (r443638) @@ -0,0 +1,5 @@ +TIMESTAMP = 1497559091 +SHA256 (rakyll-hey-v0.1.0_GH0.tar.gz) = a8127634e21897c587c6c375f88121e907ce4af8bf71374db44c5d752ae4a296 +SIZE (rakyll-hey-v0.1.0_GH0.tar.gz) = 11853 +SHA256 (golang-net-41bba8d_GH0.tar.gz) = 003c999bb8c3d73cc3dae0ca48e8afcb77cf58cb6e2b25b4486ff602deacb8eb +SIZE (golang-net-41bba8d_GH0.tar.gz) = 770083 Added: head/benchmarks/hey/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/hey/pkg-descr Thu Jun 15 20:52:52 2017 (r443638) @@ -0,0 +1,3 @@ +hey is tool to to test HTTP/HTTP2 performance. + +WWW: https://github.com/rakyll/hey