From owner-svn-ports-head@FreeBSD.ORG Fri Mar 1 23:16:25 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 91BB457D; Fri, 1 Mar 2013 23:16:25 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 65DA71C31; Fri, 1 Mar 2013 23:16:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r21NGP2T032428; Fri, 1 Mar 2013 23:16:25 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r21NGOpS032424; Fri, 1 Mar 2013 23:16:24 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201303012316.r21NGOpS032424@svn.freebsd.org> From: Pawel Pekala Date: Fri, 1 Mar 2013 23:16:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313173 - in head/benchmarks: . spp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Mar 2013 23:16:25 -0000 Author: pawel Date: Fri Mar 1 23:16:24 2013 New Revision: 313173 URL: http://svnweb.freebsd.org/changeset/ports/313173 Log: SPP provides frequently updated RTT estimates using IP traffic already present in the network. SPP estimates the RTT between two measurement points without requiring precise time synchronisation between each point. SPP accurately estimates the RTT experienced by any application's traffic without needing modifications to the application itself or the routers along the path. WWW: http://caia.swin.edu.au/tools/spp/ PR: ports/176249 Submitted by: Lars Eggert Added: head/benchmarks/spp/ head/benchmarks/spp/Makefile (contents, props changed) head/benchmarks/spp/distinfo (contents, props changed) head/benchmarks/spp/pkg-descr (contents, props changed) Modified: head/benchmarks/Makefile Modified: head/benchmarks/Makefile ============================================================================== --- head/benchmarks/Makefile Fri Mar 1 22:52:09 2013 (r313172) +++ head/benchmarks/Makefile Fri Mar 1 23:16:24 2013 (r313173) @@ -62,6 +62,7 @@ SUBDIR += siege SUBDIR += sipp SUBDIR += slowloris + SUBDIR += spp SUBDIR += stream SUBDIR += super-smack SUBDIR += sysbench Added: head/benchmarks/spp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/spp/Makefile Fri Mar 1 23:16:24 2013 (r313173) @@ -0,0 +1,18 @@ +# Created by: Lars Eggert +# $FreeBSD$ + +PORTNAME= spp +PORTVERSION= 0.3.2 +CATEGORIES= benchmarks +MASTER_SITES= http://caia.swin.edu.au/tools/spp/downloads/ + +MAINTAINER= lars@eggert.org +COMMENT= Calculates round trip time from pcap files or live capture + +PLIST_FILES= bin/spp + +post-patch: + @${REINPLACE_CMD} -E '/(-DDEBUG|-g)/s|^|#|g' \ + ${WRKSRC}/Makefile + +.include Added: head/benchmarks/spp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/spp/distinfo Fri Mar 1 23:16:24 2013 (r313173) @@ -0,0 +1,2 @@ +SHA256 (spp-0.3.2.tar.gz) = bcb83c05142c243f27a1132f43528d27fe4accb650207040d03770c215e5dd91 +SIZE (spp-0.3.2.tar.gz) = 38462 Added: head/benchmarks/spp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/spp/pkg-descr Fri Mar 1 23:16:24 2013 (r313173) @@ -0,0 +1,8 @@ +SPP provides frequently updated RTT estimates using IP traffic already +present in the network. SPP estimates the RTT between two measurement +points without requiring precise time synchronisation between each +point. SPP accurately estimates the RTT experienced by any application's +traffic without needing modifications to the application itself +or the routers along the path. + +WWW: http://caia.swin.edu.au/tools/spp/