[Python-modules-commits] r28159 - in packages/python-dugong/trunk (20 files)

nikratio-guest at users.alioth.debian.org nikratio-guest at users.alioth.debian.org
Wed Mar 12 04:40:55 UTC 2014


    Date: Wednesday, March 12, 2014 @ 04:40:55
  Author: nikratio-guest
Revision: 28159

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

Added:
  packages/python-dugong/trunk/debian/
  packages/python-dugong/trunk/debian/changelog
  packages/python-dugong/trunk/debian/compat
  packages/python-dugong/trunk/debian/control
  packages/python-dugong/trunk/debian/copyright
  packages/python-dugong/trunk/debian/patches/
  packages/python-dugong/trunk/debian/patches/series
  packages/python-dugong/trunk/debian/patches/use-local-intersphinx.patch
  packages/python-dugong/trunk/debian/python-dugong-doc.doc-base
  packages/python-dugong/trunk/debian/python-dugong-doc.docs
  packages/python-dugong/trunk/debian/python.inv
  packages/python-dugong/trunk/debian/rules
  packages/python-dugong/trunk/debian/source/
  packages/python-dugong/trunk/debian/source/format
  packages/python-dugong/trunk/debian/source/include-binaries
  packages/python-dugong/trunk/debian/source/options
  packages/python-dugong/trunk/debian/tests/
  packages/python-dugong/trunk/debian/tests/control
  packages/python-dugong/trunk/debian/tests/upstream-standard
  packages/python-dugong/trunk/debian/watch


Property changes on: packages/python-dugong/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-dugong/trunk/debian/changelog
===================================================================
--- packages/python-dugong/trunk/debian/changelog	                        (rev 0)
+++ packages/python-dugong/trunk/debian/changelog	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,5 @@
+python-dugong (2.1-1) unstable; urgency=medium
+
+  * First official debian release. Closes: 741387
+
+ -- Nikolaus Rath <Nikolaus at rath.org>  Tue, 11 Mar 2014 20:39:13 -0700

Added: packages/python-dugong/trunk/debian/compat
===================================================================
--- packages/python-dugong/trunk/debian/compat	                        (rev 0)
+++ packages/python-dugong/trunk/debian/compat	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1 @@
+9

Added: packages/python-dugong/trunk/debian/control
===================================================================
--- packages/python-dugong/trunk/debian/control	                        (rev 0)
+++ packages/python-dugong/trunk/debian/control	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,58 @@
+Source: python-dugong
+Section: python
+X-Python3-Version: >= 3.3
+Priority: optional
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Maintainer: Nikolaus Rath <Nikolaus at rath.org>
+Build-Depends: debhelper (>= 9),
+               python3-all,
+               python3-sphinx (>= 1.0.7+dfsg),
+               dh-python,
+               python3-setuptools
+Standards-Version: 3.9.5
+Homepage: https://bitbucket.org/nikratio/python-dugong
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-dugong/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-dugong/trunk/
+
+Package: python3-dugong
+Architecture: any
+Depends: ${misc:Depends},
+         ${python3:Depends},
+         ${shlibs:Depends}
+Provides: ${python3:Provides}
+Suggests: python-dugong-doc
+Description: HTTP 1.1 client module for Python
+ The Python Dugong module provides an API for communicating with HTTP 1.1
+ servers. It is an alternative to the standard library’s http.client (formerly
+ httplib) module. In contrast to http.client, Dugong:
+ .
+  • allows you to send multiple requests right after each other without having
+    to read the responses first.
+  • supports waiting for 100-continue before sending the request body.
+  • raises an exception instead of silently delivering partial data if the
+    connection is closed before all data has been received.
+  • raises one specific exception (ConnectionClosed) if the connection has been
+    closed (while http.client connection may raise any of BrokenPipeError,
+    BadStatusLine, ConnectionAbortedError, ConnectionResetError, IncompleteRead
+    or simply return '' on read)
+  • supports non-blocking, asynchronous operation and is compatible with the
+    asyncio module.
+  • is not compatible with old HTTP 0.9 or 1.0 servers.
+ .
+ All request and response headers are represented as str, but must be encodable
+ in latin1. Request and response body must be bytes-like objects or binary
+ streams.
+
+Package: python-dugong-doc
+Architecture: all
+Section: doc
+Recommends: python3-dugong
+Depends: ${sphinxdoc:Depends},
+         ${shlibs:Depends},
+         ${misc:Depends}
+Description: HTTP 1.1 client module for Python (documentation)
+ The Python Dugong module provides an API for communicating with HTTP 1.1
+ servers. It is an alternative to the standard library’s http.client (formerly
+ httplib) module.
+ .
+ This package provides the documentation.

Added: packages/python-dugong/trunk/debian/copyright
===================================================================
--- packages/python-dugong/trunk/debian/copyright	                        (rev 0)
+++ packages/python-dugong/trunk/debian/copyright	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,86 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-dugong
+Upstream-Contact: Nikolaus Rath <Nikolaus at rath.org>
+Source: https://bitbucket.org/nikratio/python-dugong/src
+
+Files: *
+Copyright: Copyright 2013-2014 Nikolaus Rath <Nikolaus at rath.org>
+License: PSF
+ 1. This LICENSE AGREEMENT is between the Python Software Foundation
+ ("PSF"), and the Individual or Organization ("Licensee") accessing and
+ otherwise using this software ("Python") in source or binary form and
+ its associated documentation.
+ .
+ 2. Subject to the terms and conditions of this License Agreement, PSF hereby
+ grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
+ analyze, test, perform and/or display publicly, prepare derivative works,
+ distribute, and otherwise use Python alone or in any derivative version,
+ provided, however, that PSF's License Agreement and PSF's notice of copyright,
+ i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
+ 2011, 2012, 2013, 2014 Python Software Foundation; All Rights Reserved" are retained
+ in Python alone or in any derivative version prepared by Licensee.
+ .
+ 3. In the event Licensee prepares a derivative work that is based on
+ or incorporates Python or any part thereof, and wants to make
+ the derivative work available to others as provided herein, then
+ Licensee hereby agrees to include in any such work a brief summary of
+ the changes made to Python.
+ .
+ 4. PSF is making Python available to Licensee on an "AS IS"
+ basis.  PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+ IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+ DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+ FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
+ INFRINGE ANY THIRD PARTY RIGHTS.
+ .
+ 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+ FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+ A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
+ OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+ .
+ 6. This License Agreement will automatically terminate upon a material
+ breach of its terms and conditions.
+ .
+ 7. Nothing in this License Agreement shall be deemed to create any
+ relationship of agency, partnership, or joint venture between PSF and
+ Licensee.  This License Agreement does not grant permission to use PSF
+ trademarks or trade name in a trademark sense to endorse or promote
+ products or services of Licensee, or any third party.
+ .
+ 8. By copying, installing or otherwise using Python, Licensee
+ agrees to be bound by the terms and conditions of this License
+ Agreement.
+
+Files: dugong/__init__.py
+Comment: This applies to the CaseInsensitiveDict class implementation.
+Copyright: Copyright 2013 Kenneth Reitz
+License: Apache License, Version 2.0
+ On Debian systems the full text of the Apache 2.0 license can be
+ found in the `/usr/share/common-licenses/Apache-2.0' file.
+ 
+Files: doc/html/_static/*
+Copyright: Copyright (c) 2007-2011 by the Sphinx team
+ (see Sphinx's AUTHORS file). All rights reserved.
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ * Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+ .
+ * 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.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "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 THE COPYRIGHT
+ OWNER OR 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, WHETHER IN CONTRACT, STRICT 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 DAMAGE.

Added: packages/python-dugong/trunk/debian/patches/series
===================================================================
--- packages/python-dugong/trunk/debian/patches/series	                        (rev 0)
+++ packages/python-dugong/trunk/debian/patches/series	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1 @@
+use-local-intersphinx.patch

Added: packages/python-dugong/trunk/debian/patches/use-local-intersphinx.patch
===================================================================
--- packages/python-dugong/trunk/debian/patches/use-local-intersphinx.patch	                        (rev 0)
+++ packages/python-dugong/trunk/debian/patches/use-local-intersphinx.patch	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,12 @@
+--- a/rst/conf.py
++++ b/rst/conf.py
+@@ -8,7 +8,8 @@
+ sys.path.append(os.path.abspath('..'))
+ 
+ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx' ]
+-intersphinx_mapping = {'python': ('http://docs.python.org/3.4/', None) }
++intersphinx_mapping = {'python': ('http://docs.python.org/3.4/',
++                                  '../debian/python.inv')}
+ templates_path = ['_templates']
+ source_suffix = '.rst'
+ source_encoding = 'utf-8'

Added: packages/python-dugong/trunk/debian/python-dugong-doc.doc-base
===================================================================
--- packages/python-dugong/trunk/debian/python-dugong-doc.doc-base	                        (rev 0)
+++ packages/python-dugong/trunk/debian/python-dugong-doc.doc-base	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,8 @@
+Document: python-dugong
+Title: Python-Dugong API Documentation
+Author: Nikolaus Rath <Nikolaus at rath.org>
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-dugong-doc/html/index.html
+Files: /usr/share/doc/python-dugong-doc/html/*.html

Added: packages/python-dugong/trunk/debian/python-dugong-doc.docs
===================================================================
--- packages/python-dugong/trunk/debian/python-dugong-doc.docs	                        (rev 0)
+++ packages/python-dugong/trunk/debian/python-dugong-doc.docs	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,2 @@
+doc/html/
+examples/

Added: packages/python-dugong/trunk/debian/python.inv
===================================================================
(Binary files differ)


Property changes on: packages/python-dugong/trunk/debian/python.inv
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: packages/python-dugong/trunk/debian/rules
===================================================================
--- packages/python-dugong/trunk/debian/rules	                        (rev 0)
+++ packages/python-dugong/trunk/debian/rules	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,23 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+#export DH_VERBOSE=1
+export PYBUILD_NAME=dugong
+
+%:
+	dh $@ --with python3,sphinxdoc --buildsystem=pybuild
+
+override_dh_auto_build:
+	dh_auto_build
+	python3 setup.py build_sphinx
+
+override_dh_auto_clean:
+	dh_auto_clean
+	rm -rf doc/html doc/doctrees
+
+## enable network, tests.test_in_wsgiref.test_request_reading needs it 
+#	http_proxy='' dh_auto_test
+
+update_intersphinx:
+	wget http://docs.python.org/3.4/objects.inv -O debian/python.inv
+


Property changes on: packages/python-dugong/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-dugong/trunk/debian/source/format
===================================================================
--- packages/python-dugong/trunk/debian/source/format	                        (rev 0)
+++ packages/python-dugong/trunk/debian/source/format	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-dugong/trunk/debian/source/include-binaries
===================================================================
--- packages/python-dugong/trunk/debian/source/include-binaries	                        (rev 0)
+++ packages/python-dugong/trunk/debian/source/include-binaries	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1 @@
+debian/python.inv

Added: packages/python-dugong/trunk/debian/source/options
===================================================================
--- packages/python-dugong/trunk/debian/source/options	                        (rev 0)
+++ packages/python-dugong/trunk/debian/source/options	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,4 @@
+compression = "xz"
+compression-level = 6
+extend-diff-ignore = "\.pyc$"
+tar-ignore = "*.pyc"

Added: packages/python-dugong/trunk/debian/tests/control
===================================================================
--- packages/python-dugong/trunk/debian/tests/control	                        (rev 0)
+++ packages/python-dugong/trunk/debian/tests/control	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,2 @@
+Tests: upstream-standard
+Depends: python3-pytest, python3-dugong

Added: packages/python-dugong/trunk/debian/tests/upstream-standard
===================================================================
--- packages/python-dugong/trunk/debian/tests/upstream-standard	                        (rev 0)
+++ packages/python-dugong/trunk/debian/tests/upstream-standard	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+exec py.test-3 --installed test/


Property changes on: packages/python-dugong/trunk/debian/tests/upstream-standard
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-dugong/trunk/debian/watch
===================================================================
--- packages/python-dugong/trunk/debian/watch	                        (rev 0)
+++ packages/python-dugong/trunk/debian/watch	2014-03-12 04:40:55 UTC (rev 28159)
@@ -0,0 +1,6 @@
+# watch control file for uscan
+version=3
+opts=downloadurlmangle=s/^http:\/\/code.google.com\/\//http:\/\// \
+  http://code.google.com/p/python-llfuse/downloads/list \
+  (?:.+)/files/llfuse-(.+).tar.bz2 \
+  debian




More information about the Python-modules-commits mailing list