[Python-modules-commits] r26725 - in packages/kombu/trunk/debian (5 files)
fladi-guest at users.alioth.debian.org
fladi-guest at users.alioth.debian.org
Wed Dec 11 10:23:35 UTC 2013
Date: Wednesday, December 11, 2013 @ 10:23:34
Author: fladi-guest
Revision: 26725
New upstream release.
Modified:
packages/kombu/trunk/debian/changelog
packages/kombu/trunk/debian/clean
packages/kombu/trunk/debian/control
packages/kombu/trunk/debian/patches/remove_nose-cover3.patch
packages/kombu/trunk/debian/python-kombu.docs
Modified: packages/kombu/trunk/debian/changelog
===================================================================
--- packages/kombu/trunk/debian/changelog 2013-12-10 23:27:02 UTC (rev 26724)
+++ packages/kombu/trunk/debian/changelog 2013-12-11 10:23:34 UTC (rev 26725)
@@ -1,3 +1,19 @@
+kombu (3.0.7-1) unstable; urgency=low
+
+ * New upstream release.
+ * No longer supports python 2.5, reflect in X-Python-Version.
+ * Bump Standards version to 3.9.5.
+ * Bump Depends and Build-Depends on python-amqp to >= 1.3.3.
+ * Bump upper version limit for Build-Depends on python-amqp to (<<
+ 2.0).
+ * Refresh patch.
+ * README was renamed to README.rst.
+ * Add kombu.egg-info/requires.txt do debian/clean.
+ * Make Build-Depends on python-all and python-pika unversioned as no
+ prior versions are available in Wheezy.
+
+ -- Michael Fladischer <FladischerMichael at fladi.at> Wed, 11 Dec 2013 11:22:10 +0100
+
kombu (2.5.15-1) unstable; urgency=low
* New upstream release.
Modified: packages/kombu/trunk/debian/clean
===================================================================
--- packages/kombu/trunk/debian/clean 2013-12-10 23:27:02 UTC (rev 26724)
+++ packages/kombu/trunk/debian/clean 2013-12-11 10:23:34 UTC (rev 26725)
@@ -1 +1,2 @@
kombu.egg-info/SOURCES.txt
+kombu.egg-info/requires.txt
Modified: packages/kombu/trunk/debian/control
===================================================================
--- packages/kombu/trunk/debian/control 2013-12-10 23:27:02 UTC (rev 26724)
+++ packages/kombu/trunk/debian/control 2013-12-11 10:23:34 UTC (rev 26725)
@@ -4,9 +4,9 @@
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-amqp (<< 1.1.0),
- python-amqp (>= 1.0.13),
+ python-all,
+ python-amqp (<< 2.0),
+ python-amqp (>= 1.3.3),
python-anyjson (>= 0.3.3),
python-beanstalkc,
python-boto,
@@ -15,7 +15,7 @@
python-librabbitmq,
python-mock,
python-nose,
- python-pika (>= 0.9.5),
+ python-pika,
python-pymongo,
python-setuptools,
python-simplejson,
@@ -24,15 +24,15 @@
python-unittest2,
python-yaml
Build-Conflicts: python-cjson
-X-Python-Version: >= 2.5
-Standards-Version: 3.9.4
+X-Python-Version: >= 2.6
+Standards-Version: 3.9.5
Homepage: http://github.com/ask/kombu/
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/kombu/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/kombu/trunk/
Package: python-kombu
Architecture: all
-Depends: python-librabbitmq | python-amqp (>= 1.0.13),
+Depends: python-librabbitmq | python-amqp (>= 1.3.3),
python-anyjson (>= 0.3.3),
${misc:Depends},
${python:Depends}
@@ -43,7 +43,7 @@
python-couchdb (>= 0.8),
python-django,
python-kombu-doc,
- python-pika (>= 0.9.5),
+ python-pika,
python-pymongo,
python-sqlalchemy
Description: AMQP Messaging Framework for Python
Modified: packages/kombu/trunk/debian/patches/remove_nose-cover3.patch
===================================================================
--- packages/kombu/trunk/debian/patches/remove_nose-cover3.patch 2013-12-10 23:27:02 UTC (rev 26724)
+++ packages/kombu/trunk/debian/patches/remove_nose-cover3.patch 2013-12-11 10:23:34 UTC (rev 26725)
@@ -1,11 +1,11 @@
Description: nose-cover3 is not mandoatory for running the unittests.
Author: Michael Fladischer <FladischerMichael at fladi.at>
-Last-Update: 2013-07-13
+Last-Update: 2013-12-11
Forwarded: not-needed
---- kombu-2.5.12.orig/setup.cfg
-+++ kombu-2.5.12/setup.cfg
-@@ -2,21 +2,6 @@
+--- a/setup.cfg
++++ b/setup.cfg
+@@ -2,25 +2,6 @@
verbosity = 1
detailed-errors = 1
where = kombu/tests
@@ -13,22 +13,26 @@
-cover3-html = 1
-cover3-package = kombu
-cover3-exclude = kombu
+- kombu.five
- kombu.transport.mongodb
- kombu.transport.filesystem
- kombu.utils.compat
- kombu.utils.eventio
- kombu.utils.finalize
+- kombu.transport.amqplib
- kombu.transport.couchdb
- kombu.transport.beanstalk
-- kombu.transport.sqlalchemy
+- kombu.transport.sqlalchemy*
- kombu.transport.SQS
- kombu.transport.zookeeper
- kombu.transport.zmq
+- kombu.transport.django*
+- kombu.transport.pyro
[build_sphinx]
source-dir = docs/
---- kombu-2.5.12.orig/requirements/test.txt
-+++ kombu-2.5.12/requirements/test.txt
+--- a/requirements/test.txt
++++ b/requirements/test.txt
@@ -1,4 +1,3 @@
nose
-nose-cover3
Modified: packages/kombu/trunk/debian/python-kombu.docs
===================================================================
--- packages/kombu/trunk/debian/python-kombu.docs 2013-12-10 23:27:02 UTC (rev 26724)
+++ packages/kombu/trunk/debian/python-kombu.docs 2013-12-11 10:23:34 UTC (rev 26725)
@@ -1,2 +1,2 @@
-README
+README.rst
FAQ
More information about the Python-modules-commits
mailing list