From owner-svn-ports-head@freebsd.org Mon Jan 21 20:19:59 2019 Return-Path: Delivered-To: svn-ports-head@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 59F1C14B67CD; Mon, 21 Jan 2019 20:19:59 +0000 (UTC) (envelope-from yuri@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 0221076D03; Mon, 21 Jan 2019 20:19:59 +0000 (UTC) (envelope-from yuri@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 C755B1E8DA; Mon, 21 Jan 2019 20:19:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0LKJwx5069011; Mon, 21 Jan 2019 20:19:58 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0LKJvEf069007; Mon, 21 Jan 2019 20:19:57 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201901212019.x0LKJvEf069007@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 21 Jan 2019 20:19:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490893 - in head/misc: . py-fast-histogram X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . py-fast-histogram X-SVN-Commit-Revision: 490893 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0221076D03 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Jan 2019 20:19:59 -0000 Author: yuri Date: Mon Jan 21 20:19:57 2019 New Revision: 490893 URL: https://svnweb.freebsd.org/changeset/ports/490893 Log: New port: misc/py-fast-histogram: Fast simple 1D and 2D histograms Added: head/misc/py-fast-histogram/ head/misc/py-fast-histogram/Makefile (contents, props changed) head/misc/py-fast-histogram/distinfo (contents, props changed) head/misc/py-fast-histogram/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Mon Jan 21 19:53:49 2019 (r490892) +++ head/misc/Makefile Mon Jan 21 20:19:57 2019 (r490893) @@ -367,6 +367,7 @@ SUBDIR += py-colorbrewer SUBDIR += py-crudini SUBDIR += py-emoji + SUBDIR += py-fast-histogram SUBDIR += py-fuzzy SUBDIR += py-glance SUBDIR += py-kartograph Added: head/misc/py-fast-histogram/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-fast-histogram/Makefile Mon Jan 21 20:19:57 2019 (r490893) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= fast-histogram +DISTVERSION= 0.7 +CATEGORIES= misc +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Fast simple 1D and 2D histograms + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYNUMPY} +RUN_DEPENDS= ${PYNUMPY} + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/misc/py-fast-histogram/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-fast-histogram/distinfo Mon Jan 21 20:19:57 2019 (r490893) @@ -0,0 +1,3 @@ +TIMESTAMP = 1548101267 +SHA256 (fast-histogram-0.7.tar.gz) = aabf0e0287ece8fb443dfd8c3bb36c784c07e3100906394d9baea91572067ca9 +SIZE (fast-histogram-0.7.tar.gz) = 13170 Added: head/misc/py-fast-histogram/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/py-fast-histogram/pkg-descr Mon Jan 21 20:19:57 2019 (r490893) @@ -0,0 +1,9 @@ +The fast-histogram mini-package aims to provide simple and fast histogram +functions for regular bins that don't compromise on performance. It doesn't do +anything complicated - it just implements a simple histogram algorithm in C and +keeps it simple. The aim is to have functions that are fast but also robust and +reliable. The result is a 1D histogram function here that is 7-15x faster than +numpy.histogram, and a 2D histogram function that is 20-25x faster than +numpy.histogram2d. + +WWW: https://github.com/astrofrog/fast-histogram