[Pkg-octave-commit] r2471 - in octave-forge-pkgs/octave-miscellaneous/trunk/debian: . patches

Thomas Weber thomas-guest at alioth.debian.org
Mon Dec 1 22:13:48 UTC 2008


Author: thomas-guest
Date: 2008-12-01 22:13:48 +0000 (Mon, 01 Dec 2008)
New Revision: 2471

Removed:
   octave-forge-pkgs/octave-miscellaneous/trunk/debian/patches/waitbar_null_pointer_guard
Modified:
   octave-forge-pkgs/octave-miscellaneous/trunk/debian/changelog
   octave-forge-pkgs/octave-miscellaneous/trunk/debian/control
   octave-forge-pkgs/octave-miscellaneous/trunk/debian/patches/series
Log:
Debian release octave-miscellaneous_1.0.7-1

Modified: octave-forge-pkgs/octave-miscellaneous/trunk/debian/changelog
===================================================================
--- octave-forge-pkgs/octave-miscellaneous/trunk/debian/changelog	2008-11-30 21:37:33 UTC (rev 2470)
+++ octave-forge-pkgs/octave-miscellaneous/trunk/debian/changelog	2008-12-01 22:13:48 UTC (rev 2471)
@@ -1,12 +1,21 @@
-octave-miscellaneous (1.0.6-4) UNRELEASED; urgency=low
+octave-miscellaneous (1.0.7-1) experimental; urgency=low
 
+  [ Rafael Laboissiere ]
   * debian/rules: Use debian/clean instead of manually cleaning files
   * debian/compat, debian/control: Bump build-dependency on debhelper to
     >= 7.0.0, otherwise debian/clean is moot
   * debian/clean: New file
 
- -- Rafael Laboissiere <rafael at debian.org>  Wed, 09 Jul 2008 07:35:05 +0200
+  [ Thomas Weber ]
+  * New upstream release
+  * Drop patches/waitbar_null_pointer_guard; applied upstream 
+  * Bumpd dependency on octave-pkg-dev to 0.6.1, to get new version in
+    experimental 
+  * Add units to both build-depends and depends, the package needs it for unit
+    tests 
 
+ -- Thomas Weber <thomas.weber.mail at gmail.com>  Sun, 30 Nov 2008 23:39:44 +0100
+
 octave-miscellaneous (1.0.6-3) unstable; urgency=low
 
   * New patch:

Modified: octave-forge-pkgs/octave-miscellaneous/trunk/debian/control
===================================================================
--- octave-forge-pkgs/octave-miscellaneous/trunk/debian/control	2008-11-30 21:37:33 UTC (rev 2470)
+++ octave-forge-pkgs/octave-miscellaneous/trunk/debian/control	2008-12-01 22:13:48 UTC (rev 2471)
@@ -6,7 +6,7 @@
  Thomas Weber <thomas.weber.mail at gmail.com>,
  Rafael Laboissiere <rafael at debian.org>
 DM-Upload-Allowed: yes
-Build-Depends: debhelper (>= 7.0.0), cdbs, octave-pkg-dev (>= 0.5.5), quilt
+Build-Depends: debhelper (>= 7.0.0), cdbs, octave-pkg-dev (>= 0.6.1), quilt, units
 Standards-Version: 3.8.0
 Homepage: http://octave.sourceforge.net/miscellaneous
 Vcs-Svn: svn://svn.debian.org/svn/pkg-octave/octave-forge-pkgs/octave-miscellaneous/trunk
@@ -14,7 +14,7 @@
 
 Package: octave-miscellaneous
 Architecture: any
-Depends: ${shlibs:Depends}, ${octave:Depends}
+Depends: ${shlibs:Depends}, ${octave:Depends}, units
 Description: miscellaneous tools for Octave
  This package provides miscellaneous tools for Octave, a numerical
  computation program. Included are functions to create a LaTeX file

Modified: octave-forge-pkgs/octave-miscellaneous/trunk/debian/patches/series
===================================================================
--- octave-forge-pkgs/octave-miscellaneous/trunk/debian/patches/series	2008-11-30 21:37:33 UTC (rev 2470)
+++ octave-forge-pkgs/octave-miscellaneous/trunk/debian/patches/series	2008-12-01 22:13:48 UTC (rev 2471)
@@ -1,4 +1,3 @@
 special_matrix_lauchli
 autoload-num2hex
 build-hex2num
-waitbar_null_pointer_guard

Deleted: octave-forge-pkgs/octave-miscellaneous/trunk/debian/patches/waitbar_null_pointer_guard
===================================================================
--- octave-forge-pkgs/octave-miscellaneous/trunk/debian/patches/waitbar_null_pointer_guard	2008-11-30 21:37:33 UTC (rev 2470)
+++ octave-forge-pkgs/octave-miscellaneous/trunk/debian/patches/waitbar_null_pointer_guard	2008-12-01 22:13:48 UTC (rev 2471)
@@ -1,27 +0,0 @@
-Bug fix for #485920
-Applied upstream in SVN rev 5134
---- a/src/waitbar.cc
-+++ b/src/waitbar.cc
-@@ -146,11 +146,18 @@
- 	  char* buf_ptr	= term_buffer;
- 	  begin_rv	= tgetstr("so", &buf_ptr);
- 	  end_rv	= tgetstr("se", &buf_ptr);
--	  brvlen = 0;	buf_ptr = begin_rv;
--	  while(buf_ptr[++brvlen]);
--	  ervlen = 0;	buf_ptr = end_rv;
--	  while(buf_ptr[++ervlen]);
- 	  
-+	  // Display a progress bar, but only if the current terminal has a
-+	  // standout mode
-+	  if (begin_rv && end_rv)
-+	    {
-+	      brvlen = 0;	
-+	      buf_ptr = begin_rv;
-+	      while(buf_ptr[++brvlen]);
-+	      ervlen = 0;	buf_ptr = end_rv;
-+	      while(buf_ptr[++ervlen]);
-+	    }
-+	 	  
- 	  // initialize print buffer
- 	  for(i=0; i<BUF_SIZE; ++i)
- 	    print_buf[i]	= ' ';




More information about the Pkg-octave-commit mailing list