Date: Sun, 13 May 2018 16:43:37 +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: r469805 - in head/math: . py-GridDataFormats Message-ID: <201805131643.w4DGhbQU091812@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805131643.w4DGhbQU091812>