Date: Wed, 30 Oct 2013 15:51:04 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332132 - in head/science: . py-pydap py-pydap/files Message-ID: <201310301551.r9UFp4m4039045@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Wed Oct 30 15:51:04 2013 New Revision: 332132 URL: http://svnweb.freebsd.org/changeset/ports/332132 Log: science/py-pydap: Implementation of the Opendap/DODS protocol Pydap is an implementation of the Opendap/DODS protocol, written from scratch. You can use Pydap to access scientific data on the internet without having to download it; instead, you work with special array and iterable objects that download data on-the-fly as necessary, saving bandwidth and time. The module also comes with a robust-but-lightweight Opendap server, implemented as a WSGI application. WWW: https://pypi.python.org/pypi/Pydap PR: ports/181687 Submitted by: Johannes Meixner <xmj chaot.net> Added: head/science/py-pydap/ head/science/py-pydap/Makefile (contents, props changed) head/science/py-pydap/distinfo (contents, props changed) head/science/py-pydap/files/ head/science/py-pydap/files/patch-pavement.py (contents, props changed) head/science/py-pydap/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Wed Oct 30 15:40:20 2013 (r332131) +++ head/science/Makefile Wed Oct 30 15:51:04 2013 (r332132) @@ -157,6 +157,7 @@ SUBDIR += py-obspy SUBDIR += py-paida SUBDIR += py-pupynere + SUBDIR += py-pydap SUBDIR += py-pydicom SUBDIR += py-scikit-learn SUBDIR += py-scimath Added: head/science/py-pydap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-pydap/Makefile Wed Oct 30 15:51:04 2013 (r332132) @@ -0,0 +1,24 @@ +# Created by: Johannes Meixner <xmj@chaot.net> +# $FreeBSD$ + +PORTNAME= pydap +PORTVERSION= 3.1 +CATEGORIES= science python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Pydap-${PORTVERSION} + +MAINTAINER= xmj@chaot.net +COMMENT= Implementation of the Opendap/DODS protocol + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}distribute>=0:${PORTSDIR}/devel/py-distribute \ + paver:${PORTSDIR}/devel/py-paver + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +PYDISTUTILS_PKGNAME= Pydap + +.include <bsd.port.mk> Added: head/science/py-pydap/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-pydap/distinfo Wed Oct 30 15:51:04 2013 (r332132) @@ -0,0 +1,2 @@ +SHA256 (Pydap-3.1.tar.gz) = 0e37ebb7755134689d34c7221a140b0b7fb8a76b213e3975e85fec3fe0c2d5f1 +SIZE (Pydap-3.1.tar.gz) = 3098212 Added: head/science/py-pydap/files/patch-pavement.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-pydap/files/patch-pavement.py Wed Oct 30 15:51:04 2013 (r332132) @@ -0,0 +1,11 @@ +--- ./pavement.py.orig 2013-08-30 15:00:07.469952201 +0300 ++++ ./pavement.py 2013-08-30 15:00:24.309518177 +0300 +@@ -9,7 +9,7 @@ + try: + from pydap.lib import __version__ + except ImportError: +- __version__ = ('unknown',) ++ __version__ = ('3.1',) + + options = environment.options + setup(**setup_meta) Added: head/science/py-pydap/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-pydap/pkg-descr Wed Oct 30 15:51:04 2013 (r332132) @@ -0,0 +1,8 @@ +Pydap is an implementation of the Opendap/DODS protocol, written from scratch. +You can use Pydap to access scientific data on the internet without having to +download it; instead, you work with special array and iterable objects that +download data on-the-fly as necessary, saving bandwidth and time. The module +also comes with a robust-but-lightweight Opendap server, implemented as a WSGI +application. + +WWW: https://pypi.python.org/pypi/Pydap
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310301551.r9UFp4m4039045>