Date: Wed, 27 Mar 2019 08:36:31 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r496937 - in head/devel: . py-cftime Message-ID: <201903270836.x2R8aVaj030148@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Wed Mar 27 08:36:30 2019 New Revision: 496937 URL: https://svnweb.freebsd.org/changeset/ports/496937 Log: Python library for decoding time units and variable values in a netCDF file conforming to the Climate and Forecasting (CF) netCDF conventions. WWW: https://github.com/Unidata/cftime Added: head/devel/py-cftime/ head/devel/py-cftime/Makefile (contents, props changed) head/devel/py-cftime/distinfo (contents, props changed) head/devel/py-cftime/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Mar 27 07:50:51 2019 (r496936) +++ head/devel/Makefile Wed Mar 27 08:36:30 2019 (r496937) @@ -4454,6 +4454,7 @@ SUBDIR += py-certsrv SUBDIR += py-cffi SUBDIR += py-cfgparse + SUBDIR += py-cftime SUBDIR += py-chainmap SUBDIR += py-characteristic SUBDIR += py-check-manifest Added: head/devel/py-cftime/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cftime/Makefile Wed Mar 27 08:36:30 2019 (r496937) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= cftime +PORTVERSION= 1.0.3.4 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Time-handling functionality from netcdf4-python + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${PYNUMPY} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils cython + +do-test: + @cd ${WRKSRC} && py.test + +.include <bsd.port.mk> Added: head/devel/py-cftime/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cftime/distinfo Wed Mar 27 08:36:30 2019 (r496937) @@ -0,0 +1,3 @@ +TIMESTAMP = 1553672327 +SHA256 (cftime-1.0.3.4.tar.gz) = dd74d0d470baf1c50e31335215793a5e78436903e34b4f151fa9ccbf3a6cc20c +SIZE (cftime-1.0.3.4.tar.gz) = 46422 Added: head/devel/py-cftime/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cftime/pkg-descr Wed Mar 27 08:36:30 2019 (r496937) @@ -0,0 +1,4 @@ +Python library for decoding time units and variable values in a netCDF +file conforming to the Climate and Forecasting (CF) netCDF conventions. + +WWW: https://github.com/Unidata/cftime
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903270836.x2R8aVaj030148>