[Python-modules-commits] r24875 - in packages/python-amqp/trunk (13 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Wed Jun 19 14:11:47 UTC 2013


    Date: Wednesday, June 19, 2013 @ 14:11:45
  Author: fladi-guest
Revision: 24875

Initial packaging (Closes: #712786).

Added:
  packages/python-amqp/trunk/debian/
  packages/python-amqp/trunk/debian/changelog
  packages/python-amqp/trunk/debian/clean
  packages/python-amqp/trunk/debian/compat
  packages/python-amqp/trunk/debian/control
  packages/python-amqp/trunk/debian/copyright
  packages/python-amqp/trunk/debian/python-amqp-doc.doc-base
  packages/python-amqp/trunk/debian/python-amqp-doc.docs
  packages/python-amqp/trunk/debian/python-amqp-doc.links
  packages/python-amqp/trunk/debian/rules
  packages/python-amqp/trunk/debian/source/
  packages/python-amqp/trunk/debian/source/format
  packages/python-amqp/trunk/debian/watch


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

Added: packages/python-amqp/trunk/debian/changelog
===================================================================
--- packages/python-amqp/trunk/debian/changelog	                        (rev 0)
+++ packages/python-amqp/trunk/debian/changelog	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1,5 @@
+python-amqp (1.0.11-1) unstable; urgency=low
+
+  * Initial release (Closes: #712786).
+
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Thu, 06 Jun 2013 12:04:42 +0200

Added: packages/python-amqp/trunk/debian/clean
===================================================================
--- packages/python-amqp/trunk/debian/clean	                        (rev 0)
+++ packages/python-amqp/trunk/debian/clean	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1,2 @@
+amqp/*.pyc
+amqp.egg-info/SOURCES.txt

Added: packages/python-amqp/trunk/debian/compat
===================================================================
--- packages/python-amqp/trunk/debian/compat	                        (rev 0)
+++ packages/python-amqp/trunk/debian/compat	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1 @@
+8

Added: packages/python-amqp/trunk/debian/control
===================================================================
--- packages/python-amqp/trunk/debian/control	                        (rev 0)
+++ packages/python-amqp/trunk/debian/control	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1,104 @@
+Source: python-amqp
+Section: python
+Priority: extra
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <FladischerMichael at fladi.at>
+Build-Depends: debhelper (>= 8.1.0~),
+               python-all (>= 2.6.6-3~),
+               python-setuptools,
+               python3-all (>= 3.1.2-12~),
+               python3-setuptools
+Build-Depends-Indep: libjs-jquery,
+                     python-sphinx (>= 1.0.7+dfsg-1~),
+                     python-sphinxcontrib.issuetracker
+Standards-Version: 3.9.4
+X-Python-Version: >= 2.5
+X-Python3-Version: >= 3.0
+Homepage: https://github.com/celery/py-amqp
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-amqp/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-amqp/trunk/
+
+Package: python-amqp
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Suggests: python-amqp-doc
+Description: Low-level AMQP client
+ This is a fork of amqplib which was originally written by Barry Pederson. It
+ is maintained by the Celery project, and used by kombu as a pure Python
+ alternative when librabbitmq is not available.
+ .
+ This library should be API compatible with librabbitmq. Differences from
+ amqplib are:
+  * Supports draining events from multiple channels (Connection.drain_events).
+  * Support for timeouts.
+  * Channels are restored after channel error, instead of having to close the
+    connection.
+  * Support for heartbeats.
+  * Supports RabbitMQ extensions:
+    - Consumer Cancel Notifications.
+    - Publisher confirms.
+    - Exchange-to-exchange bindings: exchange_bind / exchange_unbind.
+  * Support for basic_return.
+  * Uses AMQP 0-9-1 instead of 0-8.
+  * Exposes the underlying socket as Connection.sock.
+  * Adds Channel.no_ack_consumers to keep track of consumer tags that set the
+    no_ack flag.
+  * Slightly better at error recovery.
+
+Package: python3-amqp
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Suggests: python-amqp-doc
+Description: Low-level AMQP client (Python3 version)
+ This is a fork of amqplib which was originally written by Barry Pederson. It
+ is maintained by the Celery project, and used by kombu as a pure Python
+ alternative when librabbitmq is not available.
+ .
+ This library should be API compatible with librabbitmq. Differences from
+ amqplib are:
+  * Supports draining events from multiple channels (Connection.drain_events).
+  * Support for timeouts.
+  * Channels are restored after channel error, instead of having to close the
+    connection.
+  * Support for heartbeats.
+  * Supports RabbitMQ extensions:
+    - Consumer Cancel Notifications.
+    - Publisher confirms.
+    - Exchange-to-exchange bindings: exchange_bind / exchange_unbind.
+  * Support for basic_return.
+  * Uses AMQP 0-9-1 instead of 0-8.
+  * Exposes the underlying socket as Connection.sock.
+  * Adds Channel.no_ack_consumers to keep track of consumer tags that set the
+    no_ack flag.
+  * Slightly better at error recovery.
+ .
+ This package contains the Python 3 version of the library.
+
+Package: python-amqp-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${sphinxdoc:Depends}
+Description: Low-level AMQP client (Documentation)
+ This is a fork of amqplib which was originally written by Barry Pederson. It
+ is maintained by the Celery project, and used by kombu as a pure Python
+ alternative when librabbitmq is not available.
+ .
+ This library should be API compatible with librabbitmq. Differences from
+ amqplib are:
+  * Supports draining events from multiple channels (Connection.drain_events).
+  * Support for timeouts.
+  * Channels are restored after channel error, instead of having to close the
+    connection.
+  * Support for heartbeats.
+  * Supports RabbitMQ extensions:
+    - Consumer Cancel Notifications.
+    - Publisher confirms.
+    - Exchange-to-exchange bindings: exchange_bind / exchange_unbind.
+  * Support for basic_return.
+  * Uses AMQP 0-9-1 instead of 0-8.
+  * Exposes the underlying socket as Connection.sock.
+  * Adds Channel.no_ack_consumers to keep track of consumer tags that set the
+    no_ack flag.
+  * Slightly better at error recovery.
+ .
+ This package contains the documentation.

Added: packages/python-amqp/trunk/debian/copyright
===================================================================
--- packages/python-amqp/trunk/debian/copyright	                        (rev 0)
+++ packages/python-amqp/trunk/debian/copyright	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1,31 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: amqp
+Upstream-Contact: Ask Solem <pyamqp at celeryproject.org>
+Source: https://pypi.python.org/pypi/amqp
+
+Files: *
+Copyright: 2007-2008, Barry Pederson <bp at barryp.org>
+           2012-2013, Ask Solem <pyamqp at celeryproject.org>
+License: LGPL-2.1+
+
+Files: debian/*
+Copyright: 2013, Michael Fladischer <FladischerMichael at fladi.at>
+License: LGPL-2.1+
+
+License: LGPL-2.1+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+ .
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ Lesser General Public License for more details.
+ .
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+ .
+ On Debian systems, the complete text of version 2 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-2'.

Added: packages/python-amqp/trunk/debian/python-amqp-doc.doc-base
===================================================================
--- packages/python-amqp/trunk/debian/python-amqp-doc.doc-base	                        (rev 0)
+++ packages/python-amqp/trunk/debian/python-amqp-doc.doc-base	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1,10 @@
+Document: python-amqp
+Title: Python AMQP Documentation
+Author: Ask Solem
+Abstract: This documentation gives an introduction to Python AMQP.
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-amqp-doc/html/index.html
+Files: /usr/share/doc/python-amqp-doc/html/*.html
+       /usr/share/doc/python-amqp-doc/html/reference/*.html

Added: packages/python-amqp/trunk/debian/python-amqp-doc.docs
===================================================================
--- packages/python-amqp/trunk/debian/python-amqp-doc.docs	                        (rev 0)
+++ packages/python-amqp/trunk/debian/python-amqp-doc.docs	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1 @@
+docs/.build/html

Added: packages/python-amqp/trunk/debian/python-amqp-doc.links
===================================================================
--- packages/python-amqp/trunk/debian/python-amqp-doc.links	                        (rev 0)
+++ packages/python-amqp/trunk/debian/python-amqp-doc.links	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1 @@
+usr/share/doc/python-amqp-doc/html/_sources usr/share/doc/python-amqp-doc/rst

Added: packages/python-amqp/trunk/debian/rules
===================================================================
--- packages/python-amqp/trunk/debian/rules	                        (rev 0)
+++ packages/python-amqp/trunk/debian/rules	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1,51 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYVERS :=  $(shell pyversions -r)
+PY3VERS := $(shell py3versions -r)
+
+%:
+	dh $@ --with python2,python3,sphinxdoc
+	
+.PHONY: override_dh_auto_build
+override_dh_auto_build:
+	set -e; \
+	for py in $(PYVERS) $(PY3VERS); do \
+		$$py -B setup.py build; \
+	done
+	PYTHONPATH=. sphinx-build -b html -N docs/ docs/.build/html
+
+.PHONY: override_dh_auto_clean
+override_dh_auto_clean:
+	set -e; \
+	for py in $(PYVERS) $(PY3VERS); do \
+		$$py -B setup.py clean; \
+		rm -rf build; \
+	done
+
+.PHONY: override_dh_clean
+override_dh_clean:
+	rm -rf amqp/__pycache__
+	rm -rf docs/.build
+	dh_clean
+
+.PHONY: override_dh_auto_install
+override_dh_auto_install:
+	set -e; \
+	for py in $(PYVERS); do \
+		$$py -B setup.py install --skip-build --root debian/python-amqp \
+		                      --install-layout deb; \
+	done
+	set -e; \
+	for py in $(PY3VERS); do \
+		$$py -B setup.py install --skip-build --root debian/python3-amqp \
+		                      --install-layout deb; \
+	done
+	rm debian/python*-amqp/usr/lib/python*/*-packages/amqp*.egg-info/SOURCES.txt
+
+.PHONY: override_dh_installchangelogs
+override_dh_installchangelogs:
+	dh_installchangelogs docs/changelog.rst
+


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

Added: packages/python-amqp/trunk/debian/source/format
===================================================================
--- packages/python-amqp/trunk/debian/source/format	                        (rev 0)
+++ packages/python-amqp/trunk/debian/source/format	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-amqp/trunk/debian/watch
===================================================================
--- packages/python-amqp/trunk/debian/watch	                        (rev 0)
+++ packages/python-amqp/trunk/debian/watch	2013-06-19 14:11:45 UTC (rev 24875)
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/a/amqp/amqp-([\d\.]+)\.tar\.gz




More information about the Python-modules-commits mailing list