[Python-modules-commits] r15435 - in packages/kombu/trunk (16 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Wed Feb 2 14:02:40 UTC 2011


    Date: Wednesday, February 2, 2011 @ 14:02:27
  Author: fladi-guest
Revision: 15435

Initial packaging.

Added:
  packages/kombu/trunk/debian/
  packages/kombu/trunk/debian/changelog
  packages/kombu/trunk/debian/compat
  packages/kombu/trunk/debian/control
  packages/kombu/trunk/debian/copyright
  packages/kombu/trunk/debian/patches/
  packages/kombu/trunk/debian/patches/remove_nose-cover3.patch
  packages/kombu/trunk/debian/patches/series
  packages/kombu/trunk/debian/python-kombu-doc.doc-base
  packages/kombu/trunk/debian/python-kombu-doc.docs
  packages/kombu/trunk/debian/python-kombu.docs
  packages/kombu/trunk/debian/python-kombu.install
  packages/kombu/trunk/debian/rules
  packages/kombu/trunk/debian/source/
  packages/kombu/trunk/debian/source/format
  packages/kombu/trunk/debian/watch


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

Added: packages/kombu/trunk/debian/changelog
===================================================================
--- packages/kombu/trunk/debian/changelog	                        (rev 0)
+++ packages/kombu/trunk/debian/changelog	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1,5 @@
+kombu (1.0.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #611809)
+
+ -- Fladischer Michael <FladischerMichael at fladi.at>  Wed, 02 Feb 2011 14:50:54 +0100

Added: packages/kombu/trunk/debian/compat
===================================================================
--- packages/kombu/trunk/debian/compat	                        (rev 0)
+++ packages/kombu/trunk/debian/compat	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1 @@
+7

Added: packages/kombu/trunk/debian/control
===================================================================
--- packages/kombu/trunk/debian/control	                        (rev 0)
+++ packages/kombu/trunk/debian/control	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1,64 @@
+Source: kombu
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Fladischer Michael <FladischerMichael at fladi.at>
+Build-Depends: debhelper (>= 7.0.50~), 
+               python-all (>=2.6), 
+               python-amqplib (>= 0.6),
+               python-anyjson,
+               python-nose,
+               python-pymongo,
+               python-setuptools,
+               python-simplejson,
+               python-sphinx,
+               python-support,
+               python-unittest2
+XS-Python-Version: >= 2.6
+Standards-Version: 3.9.1
+Homepage: http://github.com/ask/kombu/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/kombu/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/kombu/trunk/
+
+Package: python-kombu
+Architecture: all
+Depends: ${misc:Depends}, 
+         ${python:Depends},
+         python-amqplib (>= 0.6),
+         python-anyjson
+Provides: ${python:Provides}
+Suggests: python-pymongo
+Description: AMQP Messaging Framework for Python
+ The aim of Kombu is to make messaging in Python as easy as possible by
+ providing an idiomatic high-level interface for the AMQP protocol. It is meant
+ to replace the carrot library by providing a compatibility layer.
+ .
+ Features:
+  * Allows application authors to support several message server solutions by
+    using pluggable transports.
+  * Supports automatic encoding, serialization and compression of message
+    payloads.
+  * The ability to ensure that an operation is performed by gracefully handling
+    connection and channel errrors.
+
+Package: python-kombu-doc
+Section: doc
+Architecture: all
+Depends: ${python:Depends}, 
+         ${misc:Depends}, 
+         libjs-jquery,
+         python-kombu
+Description: AMQP Messaging Framework for Python (Documentation)
+ The aim of Kombu is to make messaging in Python as easy as possible by
+ providing an idiomatic high-level interface for the AMQP protocol. It is meant
+ to replace the carrot library by providing a compatibility layer.
+ .
+ Features:
+  * Allows application authors to support several message server solutions by
+    using pluggable transports.
+  * Supports automatic encoding, serialization and compression of message
+    payloads.
+  * The ability to ensure that an operation is performed by gracefully handling
+    connection and channel errrors.
+ .
+ This package contains the documentation.

Added: packages/kombu/trunk/debian/copyright
===================================================================
--- packages/kombu/trunk/debian/copyright	                        (rev 0)
+++ packages/kombu/trunk/debian/copyright	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1,106 @@
+Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=166
+Upstream-Name: kombu
+Upstream-Contact: Ask Solem <askh at opera.com>
+Source: http://pypi.python.org/pypi/kombu/
+
+Files: *
+Copyright: 2009-2011, Ask Solem and contributors.
+License: BSD
+
+Files: kombu/utils/functional.py
+Copyright: 2001-2007, Python Software
+License: PSF-2
+
+Files: docs/_theme/celery/static/celery.css_t
+Copyright: 2010, Armin Ronacher
+License: BSD
+
+Files: kombu/transport/beanstalk.py
+Copyright: 2010-2011, David Ziegler.
+License: BSD
+
+Files: kombu/transport/mongodb.py
+Copyright: 2010-2011, Flavio Percoco Premoli
+License: BSD
+
+Files: kombu/transport/pycouchdb.py
+Copyright: 2010-2011, David Clymer
+License: BSD
+
+Files: debian/*
+Copyright: 2010, Fladischer Michael
+License: BSD
+
+License: BSD
+ 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.
+ .
+ Neither the name of Ask Solem nor the names of its contributors may be used
+ to endorse or promote products derived from this software without specific
+ prior written permission.
+ .
+ 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.
+
+License: PSF-2
+ 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 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.
+

Added: packages/kombu/trunk/debian/patches/remove_nose-cover3.patch
===================================================================
--- packages/kombu/trunk/debian/patches/remove_nose-cover3.patch	                        (rev 0)
+++ packages/kombu/trunk/debian/patches/remove_nose-cover3.patch	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1,43 @@
+Description: nose-cover3 is not mandoatory for running the unittests.
+Author: Fladischer Michael <FladischerMichael at fladi.at>
+Last-Update: 2011-02-02
+Forwarded: not-needed
+
+Index: kombu/setup.cfg
+===================================================================
+--- kombu.orig/setup.cfg	2011-02-02 09:22:46.293925980 +0100
++++ kombu/setup.cfg	2011-02-02 09:23:00.526698107 +0100
+@@ -13,20 +13,9 @@
+ tag_svn_revision = 0
+ 
+ [nosetests]
+-cover3-branch = 1
+-cover3-package = kombu
+ verbosity = 1
+-cover3-exclude = kombu
+-	kombu.utils.compat
+-	kombu.utils.functional
+-	kombu.utils.finalize
+-	kombu.transport.pypika
+-	kombu.transport.pycouchdb
+-	kombu.transport.mongodb
+-	kombu.transport.beanstalk
+ detailed-errors = 1
+ where = kombu/tests
+-cover3-html = 1
+ 
+ [upload_sphinx]
+ upload-dir = docs/.build/html
+Index: kombu/setup.py
+===================================================================
+--- kombu.orig/setup.py	2011-02-02 09:22:29.953039799 +0100
++++ kombu/setup.py	2011-02-02 09:22:42.953744862 +0100
+@@ -5,7 +5,7 @@
+ import codecs
+ 
+ extra = {}
+-tests_require = ["nose", "nose-cover3"]
++tests_require = ["nose"]
+ if sys.version_info >= (3, 0):
+     extra.update(use_2to3=True)
+ elif sys.version_info <= (2, 6):

Added: packages/kombu/trunk/debian/patches/series
===================================================================
--- packages/kombu/trunk/debian/patches/series	                        (rev 0)
+++ packages/kombu/trunk/debian/patches/series	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1 @@
+remove_nose-cover3.patch

Added: packages/kombu/trunk/debian/python-kombu-doc.doc-base
===================================================================
--- packages/kombu/trunk/debian/python-kombu-doc.doc-base	                        (rev 0)
+++ packages/kombu/trunk/debian/python-kombu-doc.doc-base	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1,10 @@
+Document: python-kombu-doc
+Title: Python Kombu Documentation
+Author: Ask Solem
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-kombu-doc/html/index.html
+Files: /usr/share/doc/python-kombu-doc/html/*.html
+       /usr/share/doc/python-kombu-doc/html/reference/*.html
+       /usr/share/doc/python-kombu-doc/html/userguide/*.html

Added: packages/kombu/trunk/debian/python-kombu-doc.docs
===================================================================
--- packages/kombu/trunk/debian/python-kombu-doc.docs	                        (rev 0)
+++ packages/kombu/trunk/debian/python-kombu-doc.docs	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1 @@
+.build/html

Added: packages/kombu/trunk/debian/python-kombu.docs
===================================================================
--- packages/kombu/trunk/debian/python-kombu.docs	                        (rev 0)
+++ packages/kombu/trunk/debian/python-kombu.docs	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1,3 @@
+README
+TODO
+FAQ

Added: packages/kombu/trunk/debian/python-kombu.install
===================================================================
--- packages/kombu/trunk/debian/python-kombu.install	                        (rev 0)
+++ packages/kombu/trunk/debian/python-kombu.install	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1 @@
+usr/

Added: packages/kombu/trunk/debian/rules
===================================================================
--- packages/kombu/trunk/debian/rules	                        (rev 0)
+++ packages/kombu/trunk/debian/rules	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1,26 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
+
+.PHONY: override_dh_installdocs
+override_dh_installdocs:
+	PYTHONPATH=.:$$PYTHONPATH sphinx-build -b html -d .build/.doctrees -N docs .build/html
+	dh_installdocs
+	rm -rf .build
+	rm debian/python-kombu-doc/usr/share/doc/python-kombu-doc/html/_static/jquery.js
+	ln -s ../../../../javascript/jquery/jquery.js debian/python-kombu-doc/usr/share/doc/python-kombu-doc/html/_static/jquery.js
+
+.PHONY: override_dh_auto_test
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+	set -e; \
+	for python in $(shell pyversions -r); do \
+	  $$python setup.py test ; \
+	done
+endif
+
+.PHONY: override_dh_compress
+override_dh_compress:
+	dh_compress -X .js -X .html
+


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

Added: packages/kombu/trunk/debian/source/format
===================================================================
--- packages/kombu/trunk/debian/source/format	                        (rev 0)
+++ packages/kombu/trunk/debian/source/format	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/kombu/trunk/debian/watch
===================================================================
--- packages/kombu/trunk/debian/watch	                        (rev 0)
+++ packages/kombu/trunk/debian/watch	2011-02-02 14:02:27 UTC (rev 15435)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/k/kombu/kombu-([\d\.]+)\.tar\.gz




More information about the Python-modules-commits mailing list