Date: Fri, 8 May 2020 08:47:14 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534340 - in head/devel: . py-pyperf Message-ID: <202005080847.0488lEnv032620@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <sunpoet@FreeBSD.org> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005080847.0488lEnv032620>