Date: Sun, 7 Oct 2018 04:26:11 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481414 - in head/math: . py-gau2grid Message-ID: <201810070426.w974QBmg013382@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sun Oct 7 04:26:11 2018 New Revision: 481414 URL: https://svnweb.freebsd.org/changeset/ports/481414 Log: New port: math/py-gau2grid: Fast computation of a gaussian and its derivative on a grid Added: head/math/py-gau2grid/ head/math/py-gau2grid/Makefile (contents, props changed) head/math/py-gau2grid/distinfo (contents, props changed) head/math/py-gau2grid/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Oct 7 04:23:58 2018 (r481413) +++ head/math/Makefile Sun Oct 7 04:26:11 2018 (r481414) @@ -687,6 +687,7 @@ SUBDIR += py-fiat SUBDIR += py-fpconst SUBDIR += py-gato + SUBDIR += py-gau2grid SUBDIR += py-gimmik SUBDIR += py-gmpy SUBDIR += py-gmpy2 Added: head/math/py-gau2grid/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-gau2grid/Makefile Sun Oct 7 04:26:11 2018 (r481414) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= gau2grid +DISTVERSIONPREFIX= v +DISTVERSION= 1.2.0 +CATEGORIES= math python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Fast computation of a gaussian and its derivative on a grid + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYNUMPY} \ + cmake:devel/cmake +RUN_DEPENDS= ${PYNUMPY} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= dgasmith +USE_PYTHON= distutils autoplist + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest + +.include <bsd.port.mk> Added: head/math/py-gau2grid/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-gau2grid/distinfo Sun Oct 7 04:26:11 2018 (r481414) @@ -0,0 +1,3 @@ +TIMESTAMP = 1538885352 +SHA256 (dgasmith-gau2grid-v1.2.0_GH0.tar.gz) = 5c0312256c794d17c806bafa4a755489d21d3985e44a4429e865b51e67666b9c +SIZE (dgasmith-gau2grid-v1.2.0_GH0.tar.gz) = 124928 Added: head/math/py-gau2grid/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-gau2grid/pkg-descr Sun Oct 7 04:26:11 2018 (r481414) @@ -0,0 +1,7 @@ +gau2grid is a python-generated C library for vectorized computation of grid to +gaussian collocation matrices + +The core of gau2grid is generating the collocation matrices between a real space +grid and a gaussian basis set expanded to a given angular momenta. + +WWW: https://github.com/dgasmith/gau2grid
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810070426.w974QBmg013382>