[Python-modules-commits] r18410 - in packages/pydap/trunk (10 files)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Thu Sep 1 19:34:13 UTC 2011


    Date: Thursday, September 1, 2011 @ 19:34:12
  Author: morph
Revision: 18410

[svn-inject] Applying Debian modifications (2.2.6.7-1) to trunk

Added:
  packages/pydap/trunk/debian/
  packages/pydap/trunk/debian/changelog
  packages/pydap/trunk/debian/compat
  packages/pydap/trunk/debian/control
  packages/pydap/trunk/debian/copyright
  packages/pydap/trunk/debian/docs
  packages/pydap/trunk/debian/rules
  packages/pydap/trunk/debian/source/
  packages/pydap/trunk/debian/source/format
  packages/pydap/trunk/debian/watch


Property changes on: packages/pydap/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/pydap/trunk/debian/changelog
===================================================================
--- packages/pydap/trunk/debian/changelog	                        (rev 0)
+++ packages/pydap/trunk/debian/changelog	2011-09-01 19:34:12 UTC (rev 18410)
@@ -0,0 +1,5 @@
+pydap (2.2.6.7-1) unstable; urgency=low
+
+  * Initial release (Closes: #640037)
+
+ -- Sandro Tosi <morph at debian.org>  Thu, 01 Sep 2011 18:58:14 +0200

Added: packages/pydap/trunk/debian/compat
===================================================================
--- packages/pydap/trunk/debian/compat	                        (rev 0)
+++ packages/pydap/trunk/debian/compat	2011-09-01 19:34:12 UTC (rev 18410)
@@ -0,0 +1 @@
+8

Added: packages/pydap/trunk/debian/control
===================================================================
--- packages/pydap/trunk/debian/control	                        (rev 0)
+++ packages/pydap/trunk/debian/control	2011-09-01 19:34:12 UTC (rev 18410)
@@ -0,0 +1,33 @@
+Source: pydap
+Section: python
+Priority: optional
+Maintainer: Sandro Tosi <morph at debian.org>
+Build-Depends: debhelper (>= 8.0.0), python, python-setuptools
+Standards-Version: 3.9.2
+Homepage: http://pydap.org/2.x/
+
+Package: python-dap
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-httplib2
+Recommends: python-paste, python-pastedeploy, python-pastescript, python-cheetah
+Description: DAP (Data Access Protocol) client and server
+ This is a Python implementation of the Data Access Protocol, a scientific
+ protocol for data access developed by the OPeNDAP team
+ (http://opendap.org). This implementation is developed from scratch, following
+ the latest specification of the protocol (DAP 2.0 Draft Community Standard
+ 2005/04/27) and based on experience with OPeNDAP servers on the wild.
+ .        
+ Using this module one can access hundreds of scientific datasets from Python
+ programs, accessing data in an efficient, transparent and pythonic way. Arrays
+ are manipulated like normal multi-dimensional arrays (like numpy.array, e.g.),
+ with the fundamental difference that data is downloaded on-the-fly when a
+ variable is sliced.  Sequential data can be filtered on the server side before
+ being downloaded, saving bandwith and time.
+ .       
+ The module also implements a DAP server, allowing datasets from a multitude of
+ formats (netCDF, Matlab, CSV, GrADS/GRIB files, SQL RDBMS) to be served on the
+ internet. The server specifies a plugin API for supporting new data formats in
+ an easy way. The DAP server is implemented as a WSGI application (see PEP 333),
+ running on a variery of servers, and can be combined with WSGI middleware to
+ support authentication, gzip compression and much more.
+

Added: packages/pydap/trunk/debian/copyright
===================================================================
--- packages/pydap/trunk/debian/copyright	                        (rev 0)
+++ packages/pydap/trunk/debian/copyright	2011-09-01 19:34:12 UTC (rev 18410)
@@ -0,0 +1,54 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: pydap
+Source: http://pydap.org/2.x/
+
+Files: *
+Copyright: Copyright (c) 2003-2007 Roberto De Almeida <rob at pydap.org>
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject
+ to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
+ ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
+ CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Files: debian/*
+Copyright: 2011 Sandro Tosi <morph at debian.org>
+License: Same upstream license (MIT)
+
+Files: dap/util/socks.py
+Copyright: 2006 Dan-Haim. All rights reserved.
+License: BSD
+ Redistribution and use in source and binary forms, with or without modification,
+ are permitted provided that the following conditions are met:
+ 1. Redistributions of source code must retain the above copyright notice, this
+    list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+    this list of conditions and the following disclaimer in the documentation
+    and/or other materials provided with the distribution.
+ 3. Neither the name of Dan Haim nor the names of his contributors may be used
+    to endorse or promote products derived from this software without specific
+    prior written permission.
+ .  
+ THIS SOFTWARE IS PROVIDED BY DAN HAIM "AS IS" AND ANY EXPRESS OR IMPLIED
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+ EVENT SHALL DAN HAIM OR HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA
+ OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMANGE.
+

Added: packages/pydap/trunk/debian/docs
===================================================================
--- packages/pydap/trunk/debian/docs	                        (rev 0)
+++ packages/pydap/trunk/debian/docs	2011-09-01 19:34:12 UTC (rev 18410)
@@ -0,0 +1,2 @@
+README
+TODO

Added: packages/pydap/trunk/debian/rules
===================================================================
--- packages/pydap/trunk/debian/rules	                        (rev 0)
+++ packages/pydap/trunk/debian/rules	2011-09-01 19:34:12 UTC (rev 18410)
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+%:
+	dh $@ --with python2
+
+override_dh_auto_clean:
+	dh_auto_clean
+	rm -rf dap.egg-info


Property changes on: packages/pydap/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/pydap/trunk/debian/source/format
===================================================================
--- packages/pydap/trunk/debian/source/format	                        (rev 0)
+++ packages/pydap/trunk/debian/source/format	2011-09-01 19:34:12 UTC (rev 18410)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/pydap/trunk/debian/watch
===================================================================
--- packages/pydap/trunk/debian/watch	                        (rev 0)
+++ packages/pydap/trunk/debian/watch	2011-09-01 19:34:12 UTC (rev 18410)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/d/dap/dap-(.*)\.tar.gz




More information about the Python-modules-commits mailing list