From owner-svn-ports-all@freebsd.org Sat Jan 27 14:31:01 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 CEF4AEC48A9; Sat, 27 Jan 2018 14:31:00 +0000 (UTC) (envelope-from dbaio@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 8374A6B198; Sat, 27 Jan 2018 14:31:00 +0000 (UTC) (envelope-from dbaio@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 648AB3D3F; Sat, 27 Jan 2018 14:31:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0REV00s024033; Sat, 27 Jan 2018 14:31:00 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0REUxbt024025; Sat, 27 Jan 2018 14:30:59 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201801271430.w0REUxbt024025@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 27 Jan 2018 14:30:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460126 - in head/benchmarks: . py-throughpy X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/benchmarks: . py-throughpy X-SVN-Commit-Revision: 460126 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.25 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: Sat, 27 Jan 2018 14:31:01 -0000 Author: dbaio Date: Sat Jan 27 14:30:59 2018 New Revision: 460126 URL: https://svnweb.freebsd.org/changeset/ports/460126 Log: Add benchmarks/py-throughpy: Python script to test throughput with iperf3 Execute throughput tests with iperf3 and get some formatted responses. The output shows just the min, max and average values. WWW: https://github.com/kanazux/throughpy PR: 225478 Submitted by: Silvio Ap Silva Added: head/benchmarks/py-throughpy/ head/benchmarks/py-throughpy/Makefile (contents, props changed) head/benchmarks/py-throughpy/distinfo (contents, props changed) head/benchmarks/py-throughpy/pkg-descr (contents, props changed) Modified: head/benchmarks/Makefile Modified: head/benchmarks/Makefile ============================================================================== --- head/benchmarks/Makefile Sat Jan 27 13:45:53 2018 (r460125) +++ head/benchmarks/Makefile Sat Jan 27 14:30:59 2018 (r460126) @@ -62,6 +62,7 @@ SUBDIR += postal SUBDIR += postmark SUBDIR += py-naarad + SUBDIR += py-throughpy SUBDIR += py-zopkio SUBDIR += pybench SUBDIR += raidtest Added: head/benchmarks/py-throughpy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/py-throughpy/Makefile Sat Jan 27 14:30:59 2018 (r460126) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= throughpy +PORTVERSION= 0.1 +CATEGORIES= benchmarks python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= contato@kanazuchi.com +COMMENT= Python script to test throughput with iperf3 + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= iperf3>=0:benchmarks/iperf3 + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/benchmarks/py-throughpy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/py-throughpy/distinfo Sat Jan 27 14:30:59 2018 (r460126) @@ -0,0 +1,3 @@ +TIMESTAMP = 1517016273 +SHA256 (throughpy-0.1.tar.gz) = 80643e53542c657238113449f43851febbb514fe4438c1f6776309b145d7451c +SIZE (throughpy-0.1.tar.gz) = 2127 Added: head/benchmarks/py-throughpy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/py-throughpy/pkg-descr Sat Jan 27 14:30:59 2018 (r460126) @@ -0,0 +1,4 @@ +Execute throughput tests with iperf3 and get some formatted responses. +The output shows just the min, max and average values. + +WWW: https://github.com/kanazux/throughpy