[Python-modules-commits] r30115 - in packages/nose/trunk/debian (4 files)
bam at users.alioth.debian.org
bam at users.alioth.debian.org
Sun Aug 10 23:47:25 UTC 2014
Date: Sunday, August 10, 2014 @ 23:47:24
Author: bam
Revision: 30115
Add patch from https://github.com/nose-devs/nose/pull/811.
Added:
packages/nose/trunk/debian/patches/fix_constructor
Modified:
packages/nose/trunk/debian/changelog
packages/nose/trunk/debian/control
packages/nose/trunk/debian/patches/series
Modified: packages/nose/trunk/debian/changelog
===================================================================
--- packages/nose/trunk/debian/changelog 2014-08-10 21:40:02 UTC (rev 30114)
+++ packages/nose/trunk/debian/changelog 2014-08-10 23:47:24 UTC (rev 30115)
@@ -1,3 +1,12 @@
+nose (1.3.3-2) unstable; urgency=low
+
+ * Add patch to make sure we call super constructor for LazySuite. Without
+ this, tests fail under Python3.4 as _removed_tests not defined. Patch
+ copied from https://github.com/nose-devs/nose/pull/811 which has been
+ included upstream in git. Closes: #757640.
+
+ -- Brian May <bam at debian.org> Mon, 11 Aug 2014 09:21:01 +1000
+
nose (1.3.3-1) unstable; urgency=medium
* New upstream bugfix release.
Modified: packages/nose/trunk/debian/control
===================================================================
--- packages/nose/trunk/debian/control 2014-08-10 21:40:02 UTC (rev 30114)
+++ packages/nose/trunk/debian/control 2014-08-10 23:47:24 UTC (rev 30115)
@@ -5,7 +5,8 @@
Uploaders:
Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>,
Torsten Marek <shlomme at debian.org>,
- Dmitry Shachnev <mitya57 at gmail.com>
+ Dmitry Shachnev <mitya57 at gmail.com>,
+ Brian May <bam at debian.org>
Build-Depends:
debhelper (>= 7.0.50~),
libjs-jquery-hotkeys,
Added: packages/nose/trunk/debian/patches/fix_constructor
===================================================================
--- packages/nose/trunk/debian/patches/fix_constructor (rev 0)
+++ packages/nose/trunk/debian/patches/fix_constructor 2014-08-10 23:47:24 UTC (rev 30115)
@@ -0,0 +1,12 @@
+Index: nose/nose/suite.py
+===================================================================
+--- nose.orig/nose/suite.py 2014-05-06 19:53:59.000000000 +1000
++++ nose/nose/suite.py 2014-08-11 09:19:43.130409621 +1000
+@@ -49,6 +49,7 @@
+ def __init__(self, tests=()):
+ """Initialize the suite. tests may be an iterable or a generator
+ """
++ super(LazySuite, self).__init__()
+ self._set_tests(tests)
+
+ def __iter__(self):
Modified: packages/nose/trunk/debian/patches/series
===================================================================
--- packages/nose/trunk/debian/patches/series 2014-08-10 21:40:02 UTC (rev 30114)
+++ packages/nose/trunk/debian/patches/series 2014-08-10 23:47:24 UTC (rev 30115)
@@ -2,3 +2,4 @@
no-google-analytics
no-distribute_setup
disable-unstable-tests
+fix_constructor
More information about the Python-modules-commits
mailing list