[Python-modules-commits] r33027 - in packages/python-amqp/trunk/debian (4 files)
zigo at users.alioth.debian.org
zigo at users.alioth.debian.org
Fri Jun 19 08:58:20 UTC 2015
Date: Friday, June 19, 2015 @ 08:58:19
Author: zigo
Revision: 33027
* Team upload.
* Fixed Python 3 syntax error preventing the python3-amqp package to be
installed.
* Added myself as uploader.
Added:
packages/python-amqp/trunk/debian/patches/fix-syntax-error-in-python3.patch
Modified:
packages/python-amqp/trunk/debian/changelog
packages/python-amqp/trunk/debian/control
packages/python-amqp/trunk/debian/patches/series
Modified: packages/python-amqp/trunk/debian/changelog
===================================================================
--- packages/python-amqp/trunk/debian/changelog 2015-06-19 08:17:08 UTC (rev 33026)
+++ packages/python-amqp/trunk/debian/changelog 2015-06-19 08:58:19 UTC (rev 33027)
@@ -1,3 +1,12 @@
+python-amqp (1.4.6-2) unstable; urgency=medium
+
+ * Team upload.
+ * Fixed Python 3 syntax error preventing the python3-amqp package to be
+ installed.
+ * Added myself as uploader.
+
+ -- Thomas Goirand <zigo at debian.org> Fri, 19 Jun 2015 08:47:11 +0000
+
python-amqp (1.4.6-1) unstable; urgency=medium
* New upstream release.
Modified: packages/python-amqp/trunk/debian/control
===================================================================
--- packages/python-amqp/trunk/debian/control 2015-06-19 08:17:08 UTC (rev 33026)
+++ packages/python-amqp/trunk/debian/control 2015-06-19 08:58:19 UTC (rev 33027)
@@ -2,7 +2,7 @@
Section: python
Priority: extra
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Uploaders: Michael Fladischer <fladi at debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>, Thomas Goirand <zigo at debian.org>
Build-Depends: debhelper (>= 8.1.0~),
dh-python,
python-all,
Added: packages/python-amqp/trunk/debian/patches/fix-syntax-error-in-python3.patch
===================================================================
--- packages/python-amqp/trunk/debian/patches/fix-syntax-error-in-python3.patch (rev 0)
+++ packages/python-amqp/trunk/debian/patches/fix-syntax-error-in-python3.patch 2015-06-19 08:58:19 UTC (rev 33027)
@@ -0,0 +1,18 @@
+Description: Fixed Python 3 syntax error
+ Note: no need to forward this upstream as the code in this file has gone from
+ the master branch.
+Author: Thomas Goirand <zigo at debian.org>
+Forwarded: no
+Last-Update: 2015-06-19
+
+--- python-amqp-1.4.6.orig/amqp/utils.py
++++ python-amqp-1.4.6/amqp/utils.py
+@@ -35,7 +35,7 @@ class promise(object):
+ def __call__(self, *args, **kwargs):
+ try:
+ self.value = self.fun(
+- *self.args + args if self.args else args,
++ *(self.args + args if self.args else args),
+ **dict(self.kwargs, **kwargs) if self.kwargs else kwargs
+ )
+ except Exception as exc:
Modified: packages/python-amqp/trunk/debian/patches/series
===================================================================
--- packages/python-amqp/trunk/debian/patches/series 2015-06-19 08:17:08 UTC (rev 33026)
+++ packages/python-amqp/trunk/debian/patches/series 2015-06-19 08:58:19 UTC (rev 33027)
@@ -1,3 +1,4 @@
remove_logo.patch
remove-deprecation-warning.patch
drop_issuetracker.patch
+fix-syntax-error-in-python3.patch
More information about the Python-modules-commits
mailing list