[Pkg-octave-commit] rev 514 - in trunk/packages/octaviz/debian: . patches

Rafael Laboissiere rafael at costa.debian.org
Tue Mar 14 13:37:07 UTC 2006


Author: rafael
Date: 2006-03-14 13:37:04 +0000 (Tue, 14 Mar 2006)
New Revision: 514

Modified:
   trunk/packages/octaviz/debian/changelog
   trunk/packages/octaviz/debian/patches/60-texinfo-docstring.patch
Log:
Debian release octaviz_0.4.0-24

Modified: trunk/packages/octaviz/debian/changelog
===================================================================
--- trunk/packages/octaviz/debian/changelog	2006-03-14 13:35:48 UTC (rev 513)
+++ trunk/packages/octaviz/debian/changelog	2006-03-14 13:37:04 UTC (rev 514)
@@ -1,3 +1,12 @@
+octaviz (0.4.0-24) unstable; urgency=low
+
+   [ Rafael Laboissiere ]
+  * debian/patches/60-texinfo-docstring.patch: Adjusted for avoiding
+    "\sum" in texinfo strings, which is bugging the g++ 4.1 compiler
+    (closes: #356634)
+
+ -- Rafael Laboissiere <rafael at debian.org>  Mon, 13 Mar 2006 10:46:18 +0100
+
 octaviz (0.4.0-23) unstable; urgency=low
 
   * debian/control: Build-depends on octave2.1-headers >= 2.1.72-9.  this

Modified: trunk/packages/octaviz/debian/patches/60-texinfo-docstring.patch
===================================================================
--- trunk/packages/octaviz/debian/patches/60-texinfo-docstring.patch	2006-03-14 13:35:48 UTC (rev 513)
+++ trunk/packages/octaviz/debian/patches/60-texinfo-docstring.patch	2006-03-14 13:37:04 UTC (rev 514)
@@ -9,7 +9,7 @@
    
    fprintf(fp,"// Octave wrapper for %s object\n//\n",data->ClassName);
      
-@@ -618,19 +619,48 @@
+@@ -618,19 +619,52 @@
  	/* Make the function that is callable from octave */
    /* Add class description into the function. */
    /* This will displayed as help in octave */
@@ -46,6 +46,10 @@
 +    if (strncmp (data->Description + i, "\\em", 3) == 0) {
 +      i += 3;
 +    }
++    /* Unscape \sum macro */
++    if (strncmp (data->Description + i, "\\sum", 4) == 0) {
++      i += 1;
++    }
 +	
      if ( data->Description[i] == '\n' )
  		  {




More information about the Pkg-octave-commit mailing list