From owner-svn-ports-head@freebsd.org Sat Oct 20 18:36:26 2018 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 2BB52FF08F8; Sat, 20 Oct 2018 18:36:26 +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.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 C6E3281715; Sat, 20 Oct 2018 18:36:25 +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 BBB0B21D9B; Sat, 20 Oct 2018 18:36:25 +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 w9KIaPPX045765; Sat, 20 Oct 2018 18:36:25 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9KIaOqE045761; Sat, 20 Oct 2018 18:36:24 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810201836.w9KIaOqE045761@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 20 Oct 2018 18:36:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482614 - in head/math: . gau2grid X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . gau2grid X-SVN-Commit-Revision: 482614 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Sat, 20 Oct 2018 18:36:26 -0000 Author: yuri Date: Sat Oct 20 18:36:24 2018 New Revision: 482614 URL: https://svnweb.freebsd.org/changeset/ports/482614 Log: New port: math/gau2grid: Fast computation of a gaussian and its derivative on a grid Added: head/math/gau2grid/ head/math/gau2grid/Makefile (contents, props changed) head/math/gau2grid/distinfo (contents, props changed) head/math/gau2grid/pkg-descr (contents, props changed) head/math/gau2grid/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Oct 20 18:30:11 2018 (r482613) +++ head/math/Makefile Sat Oct 20 18:36:24 2018 (r482614) @@ -216,6 +216,7 @@ SUBDIR += galculator SUBDIR += gambit SUBDIR += gap + SUBDIR += gau2grid SUBDIR += gdcalc SUBDIR += geg SUBDIR += geogebra Added: head/math/gau2grid/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/gau2grid/Makefile Sat Oct 20 18:36:24 2018 (r482614) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= gau2grid +DISTVERSIONPREFIX= v +DISTVERSION= 1.2.0 +CATEGORIES= math python + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Fast computation of a gaussian and its derivative on a grid + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +ONLY_FOR_ARCHS= amd64 +ONLY_FOR_ARCHS_REASON= BUG: ValueError: descr is not a valid dtype descriptor: ' Added: head/math/gau2grid/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/gau2grid/distinfo Sat Oct 20 18:36:24 2018 (r482614) @@ -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/gau2grid/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/gau2grid/pkg-descr Sat Oct 20 18:36:24 2018 (r482614) @@ -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 Added: head/math/gau2grid/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/gau2grid/pkg-plist Sat Oct 20 18:36:24 2018 (r482614) @@ -0,0 +1,7 @@ +include/gau2grid/gau2grid.h +include/gau2grid/gau2grid_pragma.h +lib/libgg.so +share/cmake/gau2grid/gau2gridConfig.cmake +share/cmake/gau2grid/gau2gridConfigVersion.cmake +share/cmake/gau2grid/gau2gridTargets-%%CMAKE_BUILD_TYPE%%.cmake +share/cmake/gau2grid/gau2gridTargets.cmake