[Python-modules-commits] r30119 - in packages/kombu/trunk/debian (5 files)
bam at users.alioth.debian.org
bam at users.alioth.debian.org
Mon Aug 11 02:03:46 UTC 2014
Date: Monday, August 11, 2014 @ 02:03:45
Author: bam
Revision: 30119
Python3 package.
Added:
packages/kombu/trunk/debian/python3-kombu.docs
Modified:
packages/kombu/trunk/debian/changelog
packages/kombu/trunk/debian/control
packages/kombu/trunk/debian/rules
Deleted:
packages/kombu/trunk/debian/python-kombu.install
Modified: packages/kombu/trunk/debian/changelog
===================================================================
--- packages/kombu/trunk/debian/changelog 2014-08-11 01:52:12 UTC (rev 30118)
+++ packages/kombu/trunk/debian/changelog 2014-08-11 02:03:45 UTC (rev 30119)
@@ -1,3 +1,10 @@
+kombu (3.0.21-2) UNRELEASED; urgency=low
+
+ * Python3 package. Closes: #754047.
+ * New upstream release. Closes: #757691.
+
+ -- Brian May <bam at debian.org> Mon, 11 Aug 2014 11:56:03 +1000
+
kombu (3.0.19-3) unstable; urgency=low
* Add python-librabbitmq (>= 1.5.2) to Recommends as a optional faster
Modified: packages/kombu/trunk/debian/control
===================================================================
--- packages/kombu/trunk/debian/control 2014-08-11 01:52:12 UTC (rev 30118)
+++ packages/kombu/trunk/debian/control 2014-08-11 02:03:45 UTC (rev 30119)
@@ -4,27 +4,21 @@
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: Michael Fladischer <FladischerMichael at fladi.at>,
Brian May <bam at debian.org>
-Build-Depends: debhelper (>= 8.1.0~),
- python-all,
- python-amqp,
- python-anyjson (>= 0.3.3),
- python-beanstalkc,
- python-boto,
- python-couchdb (>= 0.8),
- python-django,
- python-librabbitmq (>= 1.5.2),
- python-mock,
- python-msgpack,
- python-nose,
- python-pika,
- python-pymongo (>= 2.6.2),
- python-redis,
- python-setuptools,
- python-simplejson,
- python-sphinx (>= 1.0.7+dfsg),
- python-sqlalchemy,
- python-unittest2,
- python-yaml
+Build-Depends: debhelper (>= 8.1.0~), dh-python,
+ python-all, python-amqp, python-anyjson (>= 0.3.3),
+ python-django, python-yaml,
+ python-mock, python-msgpack, python-nose,
+ python-pymongo (>= 2.6.2), python-redis, python-setuptools,
+ python-simplejson, python-sphinx (>= 1.0.7+dfsg), python-sqlalchemy,
+ python-beanstalkc, python-boto, python-couchdb (>= 0.8),
+ python-pika, python-librabbitmq (>= 1.5.2), python-unittest2,
+ python3-all, python3-amqp, python3-anyjson (>= 0.3.3),
+ python3-django, python3-yaml,
+ python3-mock, python3-msgpack, python3-nose,
+ python3-pymongo (>= 2.6.2), python3-redis, python3-setuptools,
+ python3-simplejson, python3-sphinx (>= 1.0.7+dfsg), python3-sqlalchemy,
+# python3-beanstalkc, python3-boto, python3-couchdb (>= 0.8),
+# python3-pika, python-librabbitmq (>= 1.5.2)
Build-Conflicts: python-cjson
X-Python-Version: >= 2.6
XS-Testsuite: autopkgtest
@@ -64,6 +58,35 @@
* The ability to ensure that an operation is performed by gracefully handling
connection and channel errors.
+Package: python3-kombu
+Architecture: all
+Depends: python3-amqp,
+ python3-anyjson (>= 0.3.3),
+ ${misc:Depends},
+ ${python3:Depends}
+Recommends: python3-yaml
+Suggests: python3-beanstalkc,
+ python3-boto,
+ python3-couchdb (>= 0.8),
+ python3-django,
+ python-kombu-doc,
+ python3-pika,
+ python3-pymongo (>= 2.6.2),
+ python3-redis,
+ python3-sqlalchemy
+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 errors.
+
Package: python-kombu-doc
Section: doc
Architecture: all
Deleted: packages/kombu/trunk/debian/python-kombu.install
===================================================================
--- packages/kombu/trunk/debian/python-kombu.install 2014-08-11 01:52:12 UTC (rev 30118)
+++ packages/kombu/trunk/debian/python-kombu.install 2014-08-11 02:03:45 UTC (rev 30119)
@@ -1 +0,0 @@
-usr/
Added: packages/kombu/trunk/debian/python3-kombu.docs
===================================================================
--- packages/kombu/trunk/debian/python3-kombu.docs (rev 0)
+++ packages/kombu/trunk/debian/python3-kombu.docs 2014-08-11 02:03:45 UTC (rev 30119)
@@ -0,0 +1,2 @@
+README.rst
+FAQ
Modified: packages/kombu/trunk/debian/rules
===================================================================
--- packages/kombu/trunk/debian/rules 2014-08-11 01:52:12 UTC (rev 30118)
+++ packages/kombu/trunk/debian/rules 2014-08-11 02:03:45 UTC (rev 30119)
@@ -1,7 +1,9 @@
#!/usr/bin/make -f
+export PYBUILD_NAME=kombu
+
%:
- dh $@ --with python2,sphinxdoc
+ dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
override_dh_auto_build:
PYTHONPATH=. sphinx-build -b html -d docs/.build/.doctrees -N docs docs/.build/html
@@ -13,6 +15,10 @@
for python in $(shell pyversions -r); do \
$$python setup.py test ; \
done
+ set -e; \
+ for python in $(shell py3versions -r); do \
+ $$python setup.py test ; \
+ done
endif
override_dh_compress:
More information about the Python-modules-commits
mailing list