debian/0000755000000000000000000000000012263053370007167 5ustar debian/copyright0000644000000000000000000000243412253573215011131 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: amqp Upstream-Contact: Ask Solem Source: https://pypi.python.org/pypi/amqp Files: * Copyright: 2007-2008, Barry Pederson 2012-2013, Ask Solem License: LGPL-2.1+ Files: debian/* Copyright: 2013, Michael Fladischer 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'. debian/changelog0000644000000000000000000000222712263053242011042 0ustar python-amqp (1.3.3-1ubuntu1) trusty; urgency=medium * Merge with Debian; remaining changes: - Drop sphinx.issuetracker as it is not needed to build and not in main. -- Matthias Klose Tue, 07 Jan 2014 20:32:33 +0100 python-amqp (1.3.3-1) unstable; urgency=low * New upstream release. -- Michael Fladischer Wed, 11 Dec 2013 09:11:20 +0100 python-amqp (1.0.13-1ubuntu1) trusty; urgency=low * Drop sphinx.issuetracker as it is not needed to build and not in main: - debian/control: Drop Build-Depends-Indep on python-sphinx.issuetracker. - debian/patches/01_drop_issuetracker.patch: Drop import of issuetracker. -- Andres Rodriguez Wed, 06 Nov 2013 08:38:39 +0800 python-amqp (1.0.13-1) unstable; urgency=low * New upstream release. * Enable basic message tests. * Clean funtests/settings.pyc after each build. -- Michael Fladischer Wed, 25 Sep 2013 11:24:32 +0200 python-amqp (1.0.12-1) unstable; urgency=low * Initial release (Closes: #712786). -- Michael Fladischer Thu, 27 Jun 2013 15:12:51 +0200 debian/python-amqp-doc.doc-base0000644000000000000000000000053212253573215013612 0ustar 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 debian/clean0000644000000000000000000000007312253573215010200 0ustar amqp/*.pyc amqp.egg-info/SOURCES.txt funtests/settings.pyc debian/compat0000644000000000000000000000000212253573215010371 0ustar 8 debian/patches/0000755000000000000000000000000012263053300010607 5ustar debian/patches/series0000644000000000000000000000003312263053300012020 0ustar 01_drop_issuetracker.patch debian/patches/01_drop_issuetracker.patch0000644000000000000000000000104012263053300015653 0ustar Index: python-amqp-1.0.13/docs/conf.py =================================================================== --- python-amqp-1.0.13.orig/docs/conf.py 2012-12-19 00:41:48.000000000 +0800 +++ python-amqp-1.0.13/docs/conf.py 2013-11-06 08:37:53.893099907 +0800 @@ -18,8 +18,7 @@ extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage', 'sphinx.ext.pngmath', - 'sphinx.ext.intersphinx', - 'sphinxcontrib.issuetracker'] + 'sphinx.ext.intersphinx',] html_show_sphinx = False debian/python-amqp-doc.docs0000644000000000000000000000002112253573215013056 0ustar docs/.build/html debian/control0000644000000000000000000001021012263053300010555 0ustar Source: python-amqp Section: python Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Python Modules Team Uploaders: Michael Fladischer 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~) 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. debian/rules0000755000000000000000000000264112253573215010256 0ustar #!/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 .PHONY: override_dh_auto_test override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) set -e; \ for python in $(PYVERS); do \ PYTHONPATH=. $$python funtests/test_basic_message.py; \ done endif debian/source/0000755000000000000000000000000012253573572010501 5ustar debian/source/format0000644000000000000000000000001412253573215011701 0ustar 3.0 (quilt) debian/python-amqp-doc.links0000644000000000000000000000011612253573215013253 0ustar usr/share/doc/python-amqp-doc/html/_sources usr/share/doc/python-amqp-doc/rst debian/watch0000644000000000000000000000012112253573215010216 0ustar version=3 https://pypi.python.org/packages/source/a/amqp/amqp-([\d\.]+)\.tar\.gz