svn commit: r493891 - head/benchmarks/spp
Lawrence Stewart
lstewart at FreeBSD.org
Mon Feb 25 19:32:25 UTC 2019
Author: lstewart (src committer)
Date: Mon Feb 25 19:32:23 2019
New Revision: 493891
URL: https://svnweb.freebsd.org/changeset/ports/493891
Log:
Assume maintainership of benchmarks/spp and update to v0.4 which addresses:
- Added pointer to http://caia.swin.edu.au/reports/130730A/CAIA-TR-130730A.pdf
- Fixed threading bug that causes segfault with newer pthread lib on Linux
- Directory bin is now created during make (if it doesn't exists)
- Added support for DLT_PPP frames in pcap files
- Create fake "ip_len" if missing (observed in some TSO'ed frames)
- Noted that IP.ID is no longer useful for disambiguating packets (RFC 6864)
- Added "-# 8192" to hash across first 12 bytes of TCP payload
- Added "-# 16384" to hash across all TCP Option bytes
- Added -O option to print 'fake' (uncorrected) OWD in each direction
- Various documentation tweaks (README and man page source)
- Change default hash function for packet id generation to crc64 and added
- Added -H option to select hash function (crc32 and crc64)
- Added autotuning of delta_t_max based on actual observed clock offset
(disabled with -T option)
Reviewed by: tobik@
Approved by: tobik@
Differential Revision: https://reviews.freebsd.org/D18336
Modified:
head/benchmarks/spp/Makefile
head/benchmarks/spp/distinfo
head/benchmarks/spp/pkg-descr
Modified: head/benchmarks/spp/Makefile
==============================================================================
--- head/benchmarks/spp/Makefile Mon Feb 25 19:28:55 2019 (r493890)
+++ head/benchmarks/spp/Makefile Mon Feb 25 19:32:23 2019 (r493891)
@@ -2,15 +2,21 @@
# $FreeBSD$
PORTNAME= spp
-PORTVERSION= 0.3.6
+PORTVERSION= 0.4
CATEGORIES= benchmarks
-MASTER_SITES= http://caia.swin.edu.au/tools/spp/downloads/
+MASTER_SITES= https://bitbucket.org/caia-swin/spp/get/
+DISTNAME= v${PORTVERSION}
+DIST_SUBDIR= caia-swin-${PORTNAME}
-MAINTAINER= ports at FreeBSD.org
+MAINTAINER= lstewart at FreeBSD.org
COMMENT= Calculates round trip time from pcap files or live capture
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING.txt
+
+USES= tar:bzip2
+BB_TAGNAME= 8b9f676fed0e
+WRKSRC= ${WRKDIR}/caia-swin-${PORTNAME}-${BB_TAGNAME}
PLIST_FILES= bin/spp man/man1/spp.1.gz
Modified: head/benchmarks/spp/distinfo
==============================================================================
--- head/benchmarks/spp/distinfo Mon Feb 25 19:28:55 2019 (r493890)
+++ head/benchmarks/spp/distinfo Mon Feb 25 19:32:23 2019 (r493891)
@@ -1,2 +1,3 @@
-SHA256 (spp-0.3.6.tar.gz) = 659a04e5a6f65a3bc29d9cfa518dbb4db5a25d509b1067b32bc10c4cd055ab14
-SIZE (spp-0.3.6.tar.gz) = 42782
+TIMESTAMP = 1543220631
+SHA256 (caia-swin-spp/v0.4.tar.bz2) = f3f2d1cf3cd0c3d9e7e3da3ceb3bf4b2e7419436665f6274697535bcb561610e
+SIZE (caia-swin-spp/v0.4.tar.bz2) = 47572
Modified: head/benchmarks/spp/pkg-descr
==============================================================================
--- head/benchmarks/spp/pkg-descr Mon Feb 25 19:28:55 2019 (r493890)
+++ head/benchmarks/spp/pkg-descr Mon Feb 25 19:32:23 2019 (r493891)
@@ -5,4 +5,4 @@ point. SPP accurately estimates the RTT experienced by
traffic without needing modifications to the application itself
or the routers along the path.
-WWW: http://caia.swin.edu.au/tools/spp/
+WWW: https://bitbucket.org/caia-swin/spp
More information about the svn-ports-all
mailing list