From owner-svn-ports-all@freebsd.org Mon Oct 22 15:34:57 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5B1F110087F3; Mon, 22 Oct 2018 15:34:57 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1152B7FF88; Mon, 22 Oct 2018 15:34:57 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E7A471E380; Mon, 22 Oct 2018 15:34:56 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9MFYuJL043821; Mon, 22 Oct 2018 15:34:56 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9MFYuXc043817; Mon, 22 Oct 2018 15:34:56 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201810221534.w9MFYuXc043817@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Mon, 22 Oct 2018 15:34:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482747 - in head/net: . flent X-SVN-Group: ports-head X-SVN-Commit-Author: zi X-SVN-Commit-Paths: in head/net: . flent X-SVN-Commit-Revision: 482747 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Oct 2018 15:34:57 -0000 Author: zi Date: Mon Oct 22 15:34:55 2018 New Revision: 482747 URL: https://svnweb.freebsd.org/changeset/ports/482747 Log: New port: net/flent: Flent is a Python wrapper to run multiple simultaneous netperf/iperf/ping instances and aggregate the results. It was previously known as 'netperf-wrapper'. WWW: https://flent.org Added: head/net/flent/ head/net/flent/Makefile (contents, props changed) head/net/flent/distinfo (contents, props changed) head/net/flent/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Oct 22 14:04:03 2018 (r482746) +++ head/net/Makefile Mon Oct 22 15:34:55 2018 (r482747) @@ -147,6 +147,7 @@ SUBDIR += fiche SUBDIR += file2pcap SUBDIR += findmtu + SUBDIR += flent SUBDIR += flower SUBDIR += flowgrep SUBDIR += fonulator Added: head/net/flent/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/flent/Makefile Mon Oct 22 15:34:55 2018 (r482747) @@ -0,0 +1,33 @@ +# Created by: Ryan Steinmetz +# $FreeBSD$ + +PORTNAME= flent +PORTVERSION= 1.2.2 +DISTVERSIONPREFIX= v +CATEGORIES= net +MASTER_SITES= GH \ + ZI + +MAINTAINER= zi@FreeBSD.org +COMMENT= FLExible Network Tester + +LICENSE= GPLv3 + +RUN_DEPENDS= fping>0:net/fping \ + iperf>0:benchmarks/iperf \ + netperf>0:benchmarks/netperf + +USES= desktop-file-utils python:2.7 shared-mime-info +USE_PYTHON= distutils autoplist + +USE_GITHUB= yes +GH_ACCOUNT= tohojo +NO_ARCH= yes + +OPTIONS_DEFINE= MATPLOT +MATPLOT_DESC= Plot results using matplotlib (requires X) +MATPLOT_RUN_DEPENDS= py-matplotlib>0:math/py-matplotlib + +.include + +.include Added: head/net/flent/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/flent/distinfo Mon Oct 22 15:34:55 2018 (r482747) @@ -0,0 +1,3 @@ +TIMESTAMP = 1540220792 +SHA256 (tohojo-flent-v1.2.2_GH0.tar.gz) = 554bb1b5329cd39113cbb34445765ca6868dbf033aa64832d957d4a09d56adc7 +SIZE (tohojo-flent-v1.2.2_GH0.tar.gz) = 2877455 Added: head/net/flent/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/flent/pkg-descr Mon Oct 22 15:34:55 2018 (r482747) @@ -0,0 +1,5 @@ +Flent is a Python wrapper to run multiple simultaneous netperf/iperf/ping +instances and aggregate the results. It was previously known as +'netperf-wrapper'. + +WWW: https://flent.org