[Python-apps-commits] r2262 - in packages/andvare/trunk/debian (3 files)

kov at users.alioth.debian.org kov at users.alioth.debian.org
Sun Jan 25 14:19:38 UTC 2009


    Date: Sunday, January 25, 2009 @ 14:19:37
  Author: kov
Revision: 2262

  - patch to fix the way andvare calls valgrind, so that it will actually
    work on Debian

Added:
  packages/andvare/trunk/debian/patches/02_fix_valgrind_invocation.dpatch
Modified:
  packages/andvare/trunk/debian/changelog
  packages/andvare/trunk/debian/patches/00list

Modified: packages/andvare/trunk/debian/changelog
===================================================================
--- packages/andvare/trunk/debian/changelog	2009-01-24 21:51:56 UTC (rev 2261)
+++ packages/andvare/trunk/debian/changelog	2009-01-25 14:19:37 UTC (rev 2262)
@@ -7,4 +7,9 @@
   * debian/control
     - switch Vcs-Browser field to viewsvn
 
- -- Emilio Pozuelo Monfort <pochu at ubuntu.com>  Tue, 18 Dec 2007 18:04:01 +0100
+  [ Gustavo Noronha Silva ]
+  * debian/patches/02_fix_valgrind_invocation.dpatch:
+  - patch to fix the way andvare calls valgrind, so that it will actually
+    work on Debian
+
+ -- Gustavo Noronha Silva <kov at debian.org>  Sun, 25 Jan 2009 12:18:23 -0200

Modified: packages/andvare/trunk/debian/patches/00list
===================================================================
--- packages/andvare/trunk/debian/patches/00list	2009-01-24 21:51:56 UTC (rev 2261)
+++ packages/andvare/trunk/debian/patches/00list	2009-01-25 14:19:37 UTC (rev 2262)
@@ -1 +1,2 @@
 01_fix_view_reversed_menu.dpatch
+02_fix_valgrind_invocation.dpatch

Added: packages/andvare/trunk/debian/patches/02_fix_valgrind_invocation.dpatch
===================================================================
--- packages/andvare/trunk/debian/patches/02_fix_valgrind_invocation.dpatch	                        (rev 0)
+++ packages/andvare/trunk/debian/patches/02_fix_valgrind_invocation.dpatch	2009-01-25 14:19:37 UTC (rev 2262)
@@ -0,0 +1,19 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 02_fix_valgrind_invocation.dpatch by Gustavo Noronha Silva <kov at debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Fix the log file command line option; the current Valgrind in
+## DP: Debian doesn't have a --log-file-exactly option
+
+ at DPATCH@
+--- andvare-0.2/andvare/valgrind.py~	2007-12-16 18:04:52.000000000 -0200
++++ andvare-0.2/andvare/valgrind.py	2009-01-25 00:26:23.000000000 -0200
+@@ -48,7 +48,7 @@
+                 '--show-reachable=yes',
+                 '--num-callers=10',
+                 '--xml=yes',
+-                '--log-file-exactly=%s' % (self._output,),
++                '--log-file=%s' % (self._output,),
+                 self._program]
+         args.extend(self._program_args)
+ 




More information about the Python-apps-commits mailing list