FreeBSD Bugzilla – Attachment 186957 Details for
Bug 222830
[NEW PORT] benchmarks/vegeta: HTTP load testing tool and library
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
benchmarks/vegeta: HTTP load testing tool and library
vegeta.diff (text/plain), 8.39 KB, created by
VinÃcius Zavam
on 2017-10-06 15:05:09 UTC
(
hide
)
Description:
benchmarks/vegeta: HTTP load testing tool and library
Filename:
MIME Type:
Creator:
VinÃcius Zavam
Created:
2017-10-06 15:05:09 UTC
Size:
8.39 KB
patch
obsolete
>Index: benchmarks/Makefile >=================================================================== >--- benchmarks/Makefile (revision 451385) >+++ benchmarks/Makefile (working copy) >@@ -23,6 +23,7 @@ > SUBDIR += flowgrind > SUBDIR += forkbomb > SUBDIR += glmark2 >+ SUBDIR += go-quantile > SUBDIR += gtkperf > SUBDIR += hey > SUBDIR += himenobench >@@ -86,6 +87,7 @@ > SUBDIR += typometer > SUBDIR += ubench > SUBDIR += unixbench >+ SUBDIR += vegeta > SUBDIR += webbench > SUBDIR += wrk > >Index: benchmarks/go-quantile/Makefile >=================================================================== >--- benchmarks/go-quantile/Makefile (nonexistent) >+++ benchmarks/go-quantile/Makefile (working copy) >@@ -0,0 +1,21 @@ >+# $FreeBSD$ >+ >+PORTNAME= go-quantile >+PORTVERSION= 20150917 >+CATEGORIES= benchmarks net >+ >+MAINTAINER= egypcio@googlemail.com >+COMMENT= Space efficient streaming quantile estimator written in Go >+ >+LICENSE= BSD2CLAUSE >+LICENSE_FILE= ${WRKSRC}/LICENSE >+ >+USES= go >+USE_GITHUB= yes >+GH_ACCOUNT= streadway >+GH_PROJECT= quantile >+GH_TAGNAME= b0c5887 >+ >+GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} >+ >+.include <bsd.port.mk> > >Property changes on: benchmarks/go-quantile/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: benchmarks/go-quantile/distinfo >=================================================================== >--- benchmarks/go-quantile/distinfo (nonexistent) >+++ benchmarks/go-quantile/distinfo (working copy) >@@ -0,0 +1,3 @@ >+TIMESTAMP = 1501862453 >+SHA256 (streadway-quantile-20150917-b0c5887_GH0.tar.gz) = f9d29902009510bcd68638fbdd6942f04c1b3def7c1efee730601fed8fdbd0ae >+SIZE (streadway-quantile-20150917-b0c5887_GH0.tar.gz) = 4862 > >Property changes on: benchmarks/go-quantile/distinfo >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: benchmarks/go-quantile/pkg-descr >=================================================================== >--- benchmarks/go-quantile/pkg-descr (nonexistent) >+++ benchmarks/go-quantile/pkg-descr (working copy) >@@ -0,0 +1,3 @@ >+Go implementation of a space efficient streaming quantile estimator. >+ >+WWW: https://github.com/streadway/quantile > >Property changes on: benchmarks/go-quantile/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: benchmarks/go-quantile/pkg-plist >=================================================================== >--- benchmarks/go-quantile/pkg-plist (nonexistent) >+++ benchmarks/go-quantile/pkg-plist (working copy) >@@ -0,0 +1,6 @@ >+%%GO_LIBDIR%%/%%GO_PKGNAME%%.a >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/example_test.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/quantile.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/quantile_test.go > >Property changes on: benchmarks/go-quantile/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: benchmarks/vegeta/Makefile >=================================================================== >--- benchmarks/vegeta/Makefile (nonexistent) >+++ benchmarks/vegeta/Makefile (working copy) >@@ -0,0 +1,34 @@ >+# $FreeBSD$ >+ >+PORTNAME= vegeta >+PORTVERSION= 6.3.0 >+CATEGORIES= benchmarks www net >+ >+MAINTAINER= egypcio@googlemail.com >+COMMENT= HTTP load testing tool and library. (It's over 9000!) >+ >+LICENSE= MIT >+LICENSE_FILE= ${WRKSRC}/LICENSE >+ >+BUILD_DEPENDS= ${LOCALBASE}/${GO_SRCDIR}/github.com/streadway/quantile/quantile.go:benchmarks/go-quantile \ >+ ${LOCALBASE}/${GO_SRCDIR}/golang.org/x/net/http2/http2.go:net/go.net >+ >+USES= go >+ >+USE_GITHUB= yes >+GH_ACCOUNT= tsenart >+GH_TAGNAME= v${PORTVERSION} >+GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} >+ >+do-build: >+ @(cd ${GO_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GO_CMD} build -o ${PORTNAME}) >+ @(cd ${GO_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GO_CMD} install -v ${GO_PKGNAME}/lib) >+ >+do-install: >+ ${MKDIR} ${STAGEDIR}/${PREFIX}/${GO_LIBDIR}/${GO_PKGNAME}/lib \ >+ ${STAGEDIR}/${PREFIX}/${GO_SRCDIR}/${GO_PKGNAME} >+ ${INSTALL_DATA} ${GO_WRKDIR_PKG}/${GO_PKGNAME}/lib.a ${STAGEDIR}/${PREFIX}/${GO_LIBDIR}/${GO_PKGNAME} >+ ${INSTALL_PROGRAM} ${GO_WRKDIR_SRC}/${GO_PKGNAME}/${PORTNAME} ${STAGEDIR}/${LOCALBASE}/bin >+ (cd ${GO_WRKDIR_SRC}/${GO_PKGNAME} && ${COPYTREE_SHARE} \* ${STAGEDIR}/${PREFIX}/${GO_SRCDIR}/${GO_PKGNAME}) >+ >+.include <bsd.port.mk> > >Property changes on: benchmarks/vegeta/Makefile >___________________________________________________________________ >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:keywords >## -0,0 +1 ## >+FreeBSD=%H >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: benchmarks/vegeta/distinfo >=================================================================== >--- benchmarks/vegeta/distinfo (nonexistent) >+++ benchmarks/vegeta/distinfo (working copy) >@@ -0,0 +1,3 @@ >+TIMESTAMP = 1501862059 >+SHA256 (tsenart-vegeta-6.3.0-v6.3.0_GH0.tar.gz) = b9eaf9dc748fa58360395641ff50a33e53c805bf8a45ba3d787133d97b2269c6 >+SIZE (tsenart-vegeta-6.3.0-v6.3.0_GH0.tar.gz) = 110938 > >Property changes on: benchmarks/vegeta/distinfo >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: benchmarks/vegeta/pkg-descr >=================================================================== >--- benchmarks/vegeta/pkg-descr (nonexistent) >+++ benchmarks/vegeta/pkg-descr (working copy) >@@ -0,0 +1,3 @@ >+HTTP load testing tool and library. It's over 9000! >+ >+WWW: https://github.com/tsenart/vegeta > >Property changes on: benchmarks/vegeta/pkg-descr >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: benchmarks/vegeta/pkg-plist >=================================================================== >--- benchmarks/vegeta/pkg-plist (nonexistent) >+++ benchmarks/vegeta/pkg-plist (working copy) >@@ -0,0 +1,24 @@ >+bin/vegeta >+%%GO_LIBDIR%%/%%GO_PKGNAME%%/lib.a >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/CHANGELOG >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/CONTRIBUTING.md >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/attack.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/attack_test.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/dump.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/file.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/flags.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/attack.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/attack_test.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/bindata.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/histogram.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/histogram_test.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/metrics.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/metrics_test.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/reporters.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/reporters_test.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/results.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/results_test.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/targets.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/lib/targets_test.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/main.go >+%%GO_SRCDIR%%/%%GO_PKGNAME%%/report.go > >Property changes on: benchmarks/vegeta/pkg-plist >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 222830
:
186957
|
189902