[Python-modules-commits] r27313 - in packages/python-cffi/trunk/debian (6 files)
stefanor at users.alioth.debian.org
stefanor at users.alioth.debian.org
Sat Jan 18 18:25:49 UTC 2014
Date: Saturday, January 18, 2014 @ 18:25:47
Author: stefanor
Revision: 27313
* New upstream release.
* Drop big-endian-bitfields patch, superseded upstream.
* Patch: py3.4-test-failure. Add a missing goto to an error path.
(Closes: #734299, LP: #1270401)
Added:
packages/python-cffi/trunk/debian/patches/
packages/python-cffi/trunk/debian/patches/py3.4-test-failure
packages/python-cffi/trunk/debian/patches/series
Modified:
packages/python-cffi/trunk/debian/changelog
packages/python-cffi/trunk/debian/copyright
Deleted:
packages/python-cffi/trunk/debian/patches/
Modified: packages/python-cffi/trunk/debian/changelog
===================================================================
--- packages/python-cffi/trunk/debian/changelog 2014-01-18 18:21:10 UTC (rev 27312)
+++ packages/python-cffi/trunk/debian/changelog 2014-01-18 18:25:47 UTC (rev 27313)
@@ -1,3 +1,12 @@
+python-cffi (0.8.1-1) unstable; urgency=medium
+
+ * New upstream release.
+ * Drop big-endian-bitfields patch, superseded upstream.
+ * Patch: py3.4-test-failure. Add a missing goto to an error path.
+ (Closes: #734299, LP: #1270401)
+
+ -- Stefano Rivera <stefanor at debian.org> Sat, 18 Jan 2014 20:22:26 +0200
+
python-cffi (0.7.2-2) unstable; urgency=low
* Patch: big-endian-bitfields. Handle bitfields correctly on big endian
Modified: packages/python-cffi/trunk/debian/copyright
===================================================================
--- packages/python-cffi/trunk/debian/copyright 2014-01-18 18:21:10 UTC (rev 27312)
+++ packages/python-cffi/trunk/debian/copyright 2014-01-18 18:25:47 UTC (rev 27313)
@@ -17,7 +17,7 @@
License: Expat
Files: debian/*
-Copyright: 2012-2013, Stefano Rivera <stefanor at debian.org>
+Copyright: 2012-2014, Stefano Rivera <stefanor at debian.org>
License: Expat
License: Expat
Added: packages/python-cffi/trunk/debian/patches/py3.4-test-failure
===================================================================
--- packages/python-cffi/trunk/debian/patches/py3.4-test-failure (rev 0)
+++ packages/python-cffi/trunk/debian/patches/py3.4-test-failure 2014-01-18 18:25:47 UTC (rev 27313)
@@ -0,0 +1,17 @@
+Description: Fix Python 3.4 test failure
+Author: Armin Rigo <arigo at tunes.org>
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/python-cffi/+bug/1270401
+Bug-Upstream: https://bitbucket.org/cffi/cffi/issue/135/cffi-tests-fail-with-34-beta2
+Origin: upstream, https://bitbucket.org/cffi/cffi/commits/7eb548fec961
+Last-Update: 2014-01-18
+
+--- a/c/_cffi_backend.c
++++ b/c/_cffi_backend.c
+@@ -3781,6 +3781,7 @@
+ PyErr_Format(PyExc_TypeError,
+ "field '%s.%s' is declared with :0",
+ ct->ct_name, PyText_AS_UTF8(fname));
++ goto error;
+ }
+ if (!(sflags & SF_MSVC_BITFIELDS)) {
+ /* GCC's notion of "ftype :0;" */
Added: packages/python-cffi/trunk/debian/patches/series
===================================================================
--- packages/python-cffi/trunk/debian/patches/series (rev 0)
+++ packages/python-cffi/trunk/debian/patches/series 2014-01-18 18:25:47 UTC (rev 27313)
@@ -0,0 +1 @@
+py3.4-test-failure
More information about the Python-modules-commits
mailing list