Bug 176249 - [NEW PORT] benchmarks/spp: Calculates round trip time from pcap files or live capture
Summary: [NEW PORT] benchmarks/spp: Calculates round trip time from pcap files or live...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-18 17:00 UTC by lars
Modified: 2013-03-01 23:20 UTC (History)
0 users

See Also:


Attachments
.shar (1.75 KB, text/plain)
2013-02-18 17:00 UTC, lars
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description lars 2013-02-18 17:00:00 UTC
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/

Generated with FreeBSD Port Tools 0.99_6 (mode: new)
Comment 1 dfilter service freebsd_committer freebsd_triage 2013-03-01 23:16:38 UTC
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 <lars@eggert.org>

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 <lars@eggert.org>
+# $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 <bsd.port.mk>

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/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 2 Pawel Pekala freebsd_committer freebsd_triage 2013-03-01 23:17:18 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!