Bug 181687 - [NEW PORT] science/py27-pydap: Pydap is an implementation of the Opendap/DODS protocol
Summary: [NEW PORT] science/py27-pydap: Pydap is an implementation of the Opendap/DODS...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: William Grzybowski
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-30 17:00 UTC by Johannes Meixner
Modified: 2013-10-30 16:00 UTC (History)
0 users

See Also:


Attachments
.shar (18.32 KB, text/plain)
2013-08-30 17:00 UTC, Johannes Meixner
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Johannes Meixner 2013-08-30 17:00:00 UTC
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

portlint: duplicate PKG_FILES with pkg-plist (intentional, needed)
porttest: ok
testport: ok
redports: https://redports.org/buildarchive/20130830144444-56342/

Generated with FreeBSD Port Tools 0.99_8 (mode: new)
Comment 1 Ruslan Makhmatkhanov freebsd_committer freebsd_triage 2013-08-30 20:55:22 UTC
Responsible Changed
From-To: freebsd-ports-bugs->rm

I will take it.
Comment 2 William Grzybowski freebsd_committer freebsd_triage 2013-10-30 15:45:36 UTC
Responsible Changed
From-To: rm->wg

I'll take it.
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-10-30 15:51:12 UTC
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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 4 William Grzybowski freebsd_committer freebsd_triage 2013-10-30 15:57:36 UTC
State Changed
From-To: open->closed

New port added. Thanks!