svn commit: r509511 - in head/benchmarks: . hipercontracer

Rodrigo Osorio rodrigo at FreeBSD.org
Wed Aug 21 16:29:27 UTC 2019


Author: rodrigo
Date: Wed Aug 21 16:29:26 2019
New Revision: 509511
URL: https://svnweb.freebsd.org/changeset/ports/509511

Log:
  Add new port benchmarks/hipercontracer : High-Performance Connectivity Tracer
  
  High-Performance Connectivity Tracer (HiPerConTracer) is a ping/traceroute service.
  It performs regular ping and traceroute runs among sites and can export the results
  into an SQL or Non-SQL database.
  
  PR:		239847
  Submitted by:	dreibh at iem.uni-due.de

Added:
  head/benchmarks/hipercontracer/
  head/benchmarks/hipercontracer/Makefile   (contents, props changed)
  head/benchmarks/hipercontracer/distinfo   (contents, props changed)
  head/benchmarks/hipercontracer/pkg-descr   (contents, props changed)
  head/benchmarks/hipercontracer/pkg-plist   (contents, props changed)
Modified:
  head/benchmarks/Makefile

Modified: head/benchmarks/Makefile
==============================================================================
--- head/benchmarks/Makefile	Wed Aug 21 15:51:15 2019	(r509510)
+++ head/benchmarks/Makefile	Wed Aug 21 16:29:26 2019	(r509511)
@@ -26,6 +26,7 @@
     SUBDIR += gtkperf
     SUBDIR += hey
     SUBDIR += himenobench
+    SUBDIR += hipercontracer
     SUBDIR += hpl
     SUBDIR += httperf
     SUBDIR += hyperfine

Added: head/benchmarks/hipercontracer/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/benchmarks/hipercontracer/Makefile	Wed Aug 21 16:29:26 2019	(r509511)
@@ -0,0 +1,29 @@
+# Created by: Thomas Dreibholz <dreibh at iem.uni-due.de>
+# $FreeBSD$
+
+PORTNAME=	hipercontracer
+PORTVERSION=	1.4.6
+CATEGORIES=	benchmarks
+MASTER_SITES=	https://www.uni-due.de/~be0001/hipercontracer/download/
+
+MAINTAINER=	dreibh at iem.uni-due.de
+COMMENT=	High-Performance Connectivity Tracer (HiPerConTracer)
+
+LICENSE=	GPLv3+
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+LIB_DEPENDS=	libboost_date_time.so:devel/boost-libs \
+		libboost_filesystem.so:devel/boost-libs \
+		libboost_iostreams.so:devel/boost-libs \
+		libboost_log.so:devel/boost-libs \
+		libboost_program_options.so:devel/boost-libs \
+		libboost_system.so:devel/boost-libs \
+		libboost_thread.so:devel/boost-libs
+
+USES=		tar:xz cmake shebangfix python
+USE_LDCONFIG=	yes
+
+CMAKE_ARGS+=	-DCMAKE_INSTALL_MANDIR=${PREFIX}/man
+SHEBANG_FILES=	src/addressinfogenerator src/get-default-ips src/tracedataimporter
+
+.include <bsd.port.mk>

Added: head/benchmarks/hipercontracer/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/benchmarks/hipercontracer/distinfo	Wed Aug 21 16:29:26 2019	(r509511)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1565771690
+SHA256 (hipercontracer-1.4.6.tar.xz) = 638d282a4a0d82221f05c28acf7132b64db7667b6a95f3291101605983921d33
+SIZE (hipercontracer-1.4.6.tar.xz) = 115160

Added: head/benchmarks/hipercontracer/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/benchmarks/hipercontracer/pkg-descr	Wed Aug 21 16:29:26 2019	(r509511)
@@ -0,0 +1,6 @@
+High-Performance Connectivity Tracer (HiPerConTracer) is
+a ping/traceroute service. It performs regular ping and
+traceroute runs among sites and can export the results
+into an SQL database.
+
+WWW: https://www.uni-due.de/~be0001/hipercontracer/

Added: head/benchmarks/hipercontracer/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/benchmarks/hipercontracer/pkg-plist	Wed Aug 21 16:29:26 2019	(r509511)
@@ -0,0 +1,22 @@
+bin/addressinfogenerator
+bin/get-default-ips
+bin/hipercontracer
+bin/hpcttrigger
+bin/tracedataimporter
+include/hipercontracer/destinationinfo.h
+include/hipercontracer/logger.h
+include/hipercontracer/ping.h
+include/hipercontracer/resultentry.h
+include/hipercontracer/resultswriter.h
+include/hipercontracer/service.h
+include/hipercontracer/tools.h
+include/hipercontracer/traceroute.h
+lib/libhipercontracer.a
+lib/libhipercontracer.so
+lib/libhipercontracer.so.1
+lib/libhipercontracer.so.1.4.6
+man/man1/addressinfogenerator.1.gz
+man/man1/get-default-ips.1.gz
+man/man1/hipercontracer.1.gz
+man/man1/hpcttrigger.1.gz
+man/man1/tracedataimporter.1.gz


More information about the svn-ports-all mailing list