[Python-modules-commits] r20031 - in packages/kombu/trunk/debian (4 files)

fladi-guest at users.alioth.debian.org fladi-guest at users.alioth.debian.org
Mon Jan 16 14:34:44 UTC 2012


    Date: Monday, January 16, 2012 @ 14:34:43
  Author: fladi-guest
Revision: 20031

New upstream release with new transports.

Added:
  packages/kombu/trunk/debian/python-kombu.NEWS
Modified:
  packages/kombu/trunk/debian/changelog
  packages/kombu/trunk/debian/control
  packages/kombu/trunk/debian/patches/remove_nose-cover3.patch

Modified: packages/kombu/trunk/debian/changelog
===================================================================
--- packages/kombu/trunk/debian/changelog	2012-01-15 18:13:35 UTC (rev 20030)
+++ packages/kombu/trunk/debian/changelog	2012-01-16 14:34:43 UTC (rev 20031)
@@ -1,10 +1,17 @@
-kombu (1.5.1-1) UNRELEASED; urgency=low
+kombu (2.0.0-1) unstable; urgency=low
 
-  * New upstream release.
+  * New upstream release (Closes: #611895).
+  * Add python-sqlalchemy and python-django to Suggests/B-D because of new
+    transports.
+  * Increase X-Python-Version because python 2.4 is not longer supported
+    by upstream in 2.x releases.
+  * Add python-mock to B-D because tests require it.
   * Make Metadata-Version fix more generic.
   * Change order of my name.
+  * Update patch.
+  * Add NEWS file to inform about changes to tranports.
 
- -- Michael Fladischer <FladischerMichael at fladi.at>  Thu, 29 Dec 2011 01:46:56 +0100
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Mon, 16 Jan 2012 15:24:53 +0100
 
 kombu (1.4.3-1) unstable; urgency=low
 

Modified: packages/kombu/trunk/debian/control
===================================================================
--- packages/kombu/trunk/debian/control	2012-01-15 18:13:35 UTC (rev 20030)
+++ packages/kombu/trunk/debian/control	2012-01-16 14:34:43 UTC (rev 20031)
@@ -9,15 +9,18 @@
                python-anyjson (>= 0.3.1),
                python-boto,
                python-couchdb (>= 0.8),
+               python-django,
+               python-mock,
                python-nose,
                python-pymongo,
                python-setuptools,
                python-simplejson,
                python-sphinx (>= 1.0.7+dfsg),
+               python-sqlalchemy,
                python-unittest2,
                python-yaml
 Build-Conflicts: python-cjson
-X-Python-Version: >= 2.4
+X-Python-Version: >= 2.5
 Standards-Version: 3.9.2
 Homepage: http://github.com/ask/kombu/
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/kombu/trunk/
@@ -31,7 +34,12 @@
          ${python:Depends}
 Recommends: python-yaml
 Breaks: python-cjson (<= 1.0.5-4+b1)
-Suggests: python-boto, python-couchdb (>= 0.8), python-kombu-doc, python-pymongo
+Suggests: python-boto,
+          python-couchdb (>= 0.8),
+          python-django,
+          python-kombu-doc,
+          python-pymongo,
+          python-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

Modified: packages/kombu/trunk/debian/patches/remove_nose-cover3.patch
===================================================================
--- packages/kombu/trunk/debian/patches/remove_nose-cover3.patch	2012-01-15 18:13:35 UTC (rev 20030)
+++ packages/kombu/trunk/debian/patches/remove_nose-cover3.patch	2012-01-16 14:34:43 UTC (rev 20031)
@@ -16,7 +16,7 @@
  elif sys.version_info <= (2, 6):
 --- a/setup.cfg
 +++ b/setup.cfg
-@@ -2,17 +2,6 @@
+@@ -2,18 +2,6 @@
  verbosity = 1
  detailed-errors = 1
  where = kombu/tests
@@ -25,12 +25,13 @@
 -cover3-package = kombu
 -cover3-exclude = kombu
 -	kombu.utils.compat
--	kombu.utils.functional
+-	kombu.utils.eventio
 -	kombu.utils.finalize
--	kombu.transport.pypika
--	kombu.transport.pycouchdb
+-	kombu.transport.pika
+-	kombu.transport.couchdb
 -	kombu.transport.mongodb
 -	kombu.transport.beanstalk
+-	kombu.transport.SQS
  
  [build_sphinx]
  source-dir = docs/

Added: packages/kombu/trunk/debian/python-kombu.NEWS
===================================================================
--- packages/kombu/trunk/debian/python-kombu.NEWS	                        (rev 0)
+++ packages/kombu/trunk/debian/python-kombu.NEWS	2012-01-16 14:34:43 UTC (rev 20031)
@@ -0,0 +1,18 @@
+kombu (2.0.0-1) unstable; urgency=low
+
+  This release adds support for two new transports.
+
+  django-kombu is now part of Kombu core.
+  If you have previously used django-kombu, then the entry in INSTALLED_APPS
+  must be changed from djkombu to kombu.transport.django:
+
+    INSTALLED_APPS = (..., "kombu.transport.django")
+
+  There is no need to recreate the tables, as the old tables will be
+  fully compatible with the new version.
+
+  kombu-sqlalchemy is now also part of Kombu core.
+  This change requires no code changes given that the sqlalchemy transport
+  alias is used.
+
+ -- Michael Fladischer <FladischerMichael at fladi.at>  Mon, 16 Jan 2012 13:55:28 +0100




More information about the Python-modules-commits mailing list