Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Feb 2018 03:01:42 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r461968 - in head/net: . goreplay
Message-ID:  <201802160301.w1G31gos079302@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Fri Feb 16 03:01:42 2018
New Revision: 461968
URL: https://svnweb.freebsd.org/changeset/ports/461968

Log:
  net/goreplay: create port
  
  GoReplay is an open-source tool for capturing and replaying live HTTP traffic
  into a test environment in order to continuously test your system with real
  data. It can be used to increase confidence in code deployments, configuration
  changes and infrastructure changes.
  
  WWW: https://goreplay.org/

Added:
  head/net/goreplay/
  head/net/goreplay/Makefile   (contents, props changed)
  head/net/goreplay/distinfo   (contents, props changed)
  head/net/goreplay/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile   (contents, props changed)

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Fri Feb 16 02:58:36 2018	(r461967)
+++ head/net/Makefile	Fri Feb 16 03:01:42 2018	(r461968)
@@ -196,6 +196,7 @@
     SUBDIR += google-startup-scripts
     SUBDIR += googlecl
     SUBDIR += gopher
+    SUBDIR += goreplay
     SUBDIR += gotthard
     SUBDIR += gq
     SUBDIR += grdesktop

Added: head/net/goreplay/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/goreplay/Makefile	Fri Feb 16 03:01:42 2018	(r461968)
@@ -0,0 +1,34 @@
+# $FreeBSD$
+
+PORTNAME=	goreplay
+PORTVERSION=	0.16.1
+DISTVERSIONPREFIX=	v
+CATEGORIES=	net
+
+MAINTAINER=	swills@FreeBSD.org
+COMMENT=	Tool for capturing and replaying live HTTP traffic
+
+LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+BUILD_DEPENDS=	${LOCALBASE}/bin/go:lang/go
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	buger
+GH_TUPLE=	google:gopacket:b09bf40:gopacket/vendor/github.com/google/gopacket \
+		Shopify:sarama:0fb560e:sarama/vendor/github.com/Shopify/sarama \
+		mattbaird:elastigo:34c4c4d:elastigo/vendor/github.com/mattbaird/elastigo \
+		bitly:go-hostpool:d0e59c2:hostpool/vendor/github.com/bitly/go-hostpool \
+		araddon:gou:50a94aa:gou/vendor/github.com/araddon/gou
+GH_SUBDIR=	src/github.com/buger/goreplay
+
+PLIST_FILES=	bin/${PORTNAME}
+
+do-build:
+	@cd ${WRKSRC}/${GH_SUBDIR} ; ${SETENV} GOPATH=${WRKSRC} go build
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/goreplay \
+		${STAGEDIR}${PREFIX}/bin/
+
+.include <bsd.port.mk>

Added: head/net/goreplay/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/goreplay/distinfo	Fri Feb 16 03:01:42 2018	(r461968)
@@ -0,0 +1,13 @@
+TIMESTAMP = 1518020132
+SHA256 (buger-goreplay-v0.16.1_GH0.tar.gz) = 99c9fec2bd84bbec9c7a550c7b5afbdbda7e596f40b544ff7fd6f24066385234
+SIZE (buger-goreplay-v0.16.1_GH0.tar.gz) = 880631
+SHA256 (google-gopacket-b09bf40_GH0.tar.gz) = 0d8e50fd37700adf2608ea7ac5317e629d4763b14546a8ecbbcdd8affde31da5
+SIZE (google-gopacket-b09bf40_GH0.tar.gz) = 639525
+SHA256 (Shopify-sarama-0fb560e_GH0.tar.gz) = f3ef96805a7c9e85313c658de1ccd1889ddec9c11a3b64c1bc4db91c6b00d744
+SIZE (Shopify-sarama-0fb560e_GH0.tar.gz) = 123942
+SHA256 (mattbaird-elastigo-34c4c4d_GH0.tar.gz) = 0616589706db3924b978685fb67bac82dea2882d00d262391a97788107ead329
+SIZE (mattbaird-elastigo-34c4c4d_GH0.tar.gz) = 76583
+SHA256 (bitly-go-hostpool-d0e59c2_GH0.tar.gz) = 1439213bab2a32731d948f37f126bdfd9d21fce32417b0b00deceb6000044c9f
+SIZE (bitly-go-hostpool-d0e59c2_GH0.tar.gz) = 6784
+SHA256 (araddon-gou-50a94aa_GH0.tar.gz) = 028a10bbaaf93e340c4c3b3d4415c81fab8756d20d0bf9067bf03a0b0c76594a
+SIZE (araddon-gou-50a94aa_GH0.tar.gz) = 16191

Added: head/net/goreplay/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/goreplay/pkg-descr	Fri Feb 16 03:01:42 2018	(r461968)
@@ -0,0 +1,6 @@
+GoReplay is an open-source tool for capturing and replaying live HTTP traffic
+into a test environment in order to continuously test your system with real
+data. It can be used to increase confidence in code deployments, configuration
+changes and infrastructure changes.
+
+WWW: https://goreplay.org/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802160301.w1G31gos079302>