[Python-apps-commits] r3853 - in packages/waf/trunk/debian (3 files)
dktrkranz at users.alioth.debian.org
dktrkranz at users.alioth.debian.org
Sat Sep 26 17:27:40 UTC 2009
Date: Saturday, September 26, 2009 @ 17:27:04
Author: dktrkranz
Revision: 3853
Implement a no-op check target for compatibility issues (Closes: #544792)
Added:
packages/waf/trunk/debian/patches/fun_check.patch
Modified:
packages/waf/trunk/debian/changelog
packages/waf/trunk/debian/patches/series
Modified: packages/waf/trunk/debian/changelog
===================================================================
--- packages/waf/trunk/debian/changelog 2009-09-26 16:03:01 UTC (rev 3852)
+++ packages/waf/trunk/debian/changelog 2009-09-26 17:27:04 UTC (rev 3853)
@@ -2,8 +2,11 @@
* debian/patches/bld.install_files.patch:
- Allow single nodes in bld.install_files (Closes: #548329).
+ * debian/patches/fun_check.patch:
+ - Implement a no-op check target for compatibility issues, let wscript
+ shutdown() method to provide UnitTest routines (Closes: #544792).
- -- Luca Falavigna <dktrkranz at debian.org> Sat, 26 Sep 2009 04:03:03 +0200
+ -- Luca Falavigna <dktrkranz at debian.org> Sat, 26 Sep 2009 19:21:37 +0200
waf (1.5.9+dfsg-1) unstable; urgency=low
Added: packages/waf/trunk/debian/patches/fun_check.patch
===================================================================
--- packages/waf/trunk/debian/patches/fun_check.patch (rev 0)
+++ packages/waf/trunk/debian/patches/fun_check.patch 2009-09-26 17:27:04 UTC (rev 3853)
@@ -0,0 +1,18 @@
+Description: Implement a no-op check target for compatibility issues.
+Origin: Debian
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=544792
+Forwarded: not-needed
+
+Index: waf-1.5.9+dfsg/wafadmin/Scripting.py
+===================================================================
+--- waf-1.5.9+dfsg.orig/wafadmin/Scripting.py 2009-09-26 19:15:16.992772248 +0200
++++ waf-1.5.9+dfsg/wafadmin/Scripting.py 2009-09-26 19:15:41.512773034 +0200
+@@ -167,6 +167,8 @@
+ fun = configure
+ elif x == 'build':
+ fun = build
++ elif x == 'check':
++ fun = Utils.nada
+ else:
+ fun = getattr(Utils.g_module, x, None)
+
Modified: packages/waf/trunk/debian/patches/series
===================================================================
--- packages/waf/trunk/debian/patches/series 2009-09-26 16:03:01 UTC (rev 3852)
+++ packages/waf/trunk/debian/patches/series 2009-09-26 17:27:04 UTC (rev 3853)
@@ -3,3 +3,4 @@
unpack_in_cwd.patch
intltool.patch
bld.install_files.patch
+fun_check.patch
More information about the Python-apps-commits
mailing list