From owner-svn-ports-all@freebsd.org Fri May 8 08:47:15 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A34062C7B74; Fri, 8 May 2020 08:47:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49JP8g28pkz4Qp2; Fri, 8 May 2020 08:47:15 +0000 (UTC) (envelope-from sunpoet@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 3E3E7278FD; Fri, 8 May 2020 08:47:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0488lF8A032624; Fri, 8 May 2020 08:47:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0488lEnv032620; Fri, 8 May 2020 08:47:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202005080847.0488lEnv032620@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 8 May 2020 08:47:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534340 - in head/devel: . py-pyperf X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-pyperf X-SVN-Commit-Revision: 534340 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.32 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: Fri, 08 May 2020 08:47:15 -0000 Author: sunpoet Date: Fri May 8 08:47:14 2020 New Revision: 534340 URL: https://svnweb.freebsd.org/changeset/ports/534340 Log: Add py-pyperf 2.0.0 The Python pyperf module is a toolkit to write, run and analyze benchmarks. Features: - Simple API to run reliable benchmarks - Automatically calibrate a benchmark for a time budget. - Spawn multiple worker processes. - Compute the mean and standard deviation. - Detect if a benchmark result seems unstable. - JSON format to store benchmark results. - Support multiple units: seconds, bytes and integer. WWW: https://github.com/vstinner/pyperf Added: head/devel/py-pyperf/ head/devel/py-pyperf/Makefile (contents, props changed) head/devel/py-pyperf/distinfo (contents, props changed) head/devel/py-pyperf/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri May 8 08:47:08 2020 (r534339) +++ head/devel/Makefile Fri May 8 08:47:14 2020 (r534340) @@ -4872,6 +4872,7 @@ SUBDIR += py-pyopencl SUBDIR += py-pyparsing SUBDIR += py-pyperclip + SUBDIR += py-pyperf SUBDIR += py-pyplusplus SUBDIR += py-pypugjs SUBDIR += py-pyqi Added: head/devel/py-pyperf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyperf/Makefile Fri May 8 08:47:14 2020 (r534340) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= pyperf +PORTVERSION= 2.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Run and analyze benchmarks + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= python:3.4+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/devel/py-pyperf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyperf/distinfo Fri May 8 08:47:14 2020 (r534340) @@ -0,0 +1,3 @@ +TIMESTAMP = 1588777611 +SHA256 (pyperf-2.0.0.tar.gz) = 2189fbc4af08d519f85468e70e32c902eab0f1341b2c41028b94b2832d3169a7 +SIZE (pyperf-2.0.0.tar.gz) = 173007 Added: head/devel/py-pyperf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyperf/pkg-descr Fri May 8 08:47:14 2020 (r534340) @@ -0,0 +1,12 @@ +The Python pyperf module is a toolkit to write, run and analyze benchmarks. + +Features: +- Simple API to run reliable benchmarks +- Automatically calibrate a benchmark for a time budget. +- Spawn multiple worker processes. +- Compute the mean and standard deviation. +- Detect if a benchmark result seems unstable. +- JSON format to store benchmark results. +- Support multiple units: seconds, bytes and integer. + +WWW: https://github.com/vstinner/pyperf