From owner-svn-ports-all@freebsd.org Sun May 13 16:43:39 2018 Return-Path: Delivered-To: svn-ports-all@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 C51ABFBF3C3; Sun, 13 May 2018 16:43:38 +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 7768C6E951; Sun, 13 May 2018 16:43:38 +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 3F260100B7; Sun, 13 May 2018 16:43:38 +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 w4DGhc6x091815; Sun, 13 May 2018 16:43:38 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4DGhbQU091812; Sun, 13 May 2018 16:43:37 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201805131643.w4DGhbQU091812@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 13 May 2018 16:43:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469805 - in head/math: . py-GridDataFormats X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-GridDataFormats X-SVN-Commit-Revision: 469805 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.25 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: Sun, 13 May 2018 16:43:39 -0000 Author: yuri Date: Sun May 13 16:43:37 2018 New Revision: 469805 URL: https://svnweb.freebsd.org/changeset/ports/469805 Log: New port: math/py-GridDataFormats: Handle data on a grid: NumPy n-dimensional arrays Added: head/math/py-GridDataFormats/ head/math/py-GridDataFormats/Makefile (contents, props changed) head/math/py-GridDataFormats/distinfo (contents, props changed) head/math/py-GridDataFormats/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun May 13 16:12:03 2018 (r469804) +++ head/math/Makefile Sun May 13 16:43:37 2018 (r469805) @@ -643,6 +643,7 @@ SUBDIR += pure-mpfr SUBDIR += pure-rational SUBDIR += py-Diofant + SUBDIR += py-GridDataFormats SUBDIR += py-PySCIPOpt SUBDIR += py-PyWavelets SUBDIR += py-Pyomo Added: head/math/py-GridDataFormats/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-GridDataFormats/Makefile Sun May 13 16:43:37 2018 (r469805) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= GridDataFormats +DISTVERSION= 0.4.0 +CATEGORIES= math python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Handle data on a grid: NumPy n-dimensional arrays + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} + +USES= python +USE_GITHUB= yes +GH_ACCOUNT= MDAnalysis +USE_PYTHON= distutils autoplist concurrent +NO_ARCH= yes + +.include Added: head/math/py-GridDataFormats/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-GridDataFormats/distinfo Sun May 13 16:43:37 2018 (r469805) @@ -0,0 +1,3 @@ +TIMESTAMP = 1526229297 +SHA256 (MDAnalysis-GridDataFormats-0.4.0_GH0.tar.gz) = 54a6ca9e517f6fe6550c642715993f3f35d18536c1f2139fc0090d8c51964f78 +SIZE (MDAnalysis-GridDataFormats-0.4.0_GH0.tar.gz) = 291102 Added: head/math/py-GridDataFormats/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-GridDataFormats/pkg-descr Sun May 13 16:43:37 2018 (r469805) @@ -0,0 +1,5 @@ +The GridDataFormats package provides classes to unify reading and writing +n-dimensional datasets. One can read grid data from files, make them available +as a Grid object, and write out the data again. + +WWW: https://github.com/MDAnalysis/GridDataFormats