[Pkg-octave-commit] rev 137 - in trunk/packages/octave-epstk/debian: . patches
Rafael Laboissiere
pkg-octave-devel@lists.alioth.debian.org
Sun, 27 Feb 2005 16:51:30 +0100
Author: rafael
Date: 2005-02-27 16:51:30 +0100 (Sun, 27 Feb 2005)
New Revision: 137
Modified:
trunk/packages/octave-epstk/debian/README.Debian
trunk/packages/octave-epstk/debian/changelog
trunk/packages/octave-epstk/debian/control
trunk/packages/octave-epstk/debian/patches/00list
Log:
Debian release octave-epstk_2.0.2-4
Modified: trunk/packages/octave-epstk/debian/README.Debian
===================================================================
--- trunk/packages/octave-epstk/debian/README.Debian 2005-02-27 15:33:39 UTC (rev 136)
+++ trunk/packages/octave-epstk/debian/README.Debian 2005-02-27 15:51:30 UTC (rev 137)
@@ -12,5 +12,22 @@
containing centered triangles. The original tria.psd and ftria.psd symbols
have their reference points on one of the sides of the triangle.
+Another patch was applied to the Debian package, which allows arbitrary text
+in the tics labels for the plot axes. An example of an output EPS file is
+attached below. The desired labels are put in the *ValueFormat global
+variables. Below is an example:
- -- Rafael Laboissiere <rafael@debian.org>, 2005-01-10
+ eXAxisNorthValueFormat = [" ";"FELL";" ";" ";" ";" ";" ";" ";" ";" "; \
+ " ";"FEHL"];
+ eXAxisSouthValueFormat = "";
+ for i=1:11
+ eXAxisSouthValueFormat = [eXAxisSouthValueFormat; (sprintf ("%d", i))];
+ endfor
+
+In upstream epsTK, these variables are scalar integers specifying the
+decimal precision of the labels. With my patch, I detect if they are
+vectors and, if it is the case, the elements of the vectors are printed
+instead of the numeric tic labels. This patch keeps the API backwards
+compatible.
+
+ -- Rafael Laboissiere <rafael@debian.org>, 2005-27-02
Modified: trunk/packages/octave-epstk/debian/changelog
===================================================================
--- trunk/packages/octave-epstk/debian/changelog 2005-02-27 15:33:39 UTC (rev 136)
+++ trunk/packages/octave-epstk/debian/changelog 2005-02-27 15:51:30 UTC (rev 137)
@@ -1,3 +1,14 @@
+octave-epstk (2.0.2-4) unstable; urgency=low
+
+ +++ Changes by Rafael Laboissiere
+
+ * debian/patches/50_axis-value-labels.dpatch: This patch slipped
+ unnoticed in the last upload of the package. I am mentioning it here
+ for the record.
+ * debian/README.Debian: Document the patch above.
+
+ -- Debian Octave Group <pkg-octave-devel@lists.alioth.debian.org> Sun, 27 Feb 2005 16:41:45 +0100
+
octave-epstk (2.0.2-3) unstable; urgency=low
+++ Changes by Rafael Laboissiere
Modified: trunk/packages/octave-epstk/debian/control
===================================================================
--- trunk/packages/octave-epstk/debian/control 2005-02-27 15:33:39 UTC (rev 136)
+++ trunk/packages/octave-epstk/debian/control 2005-02-27 15:51:30 UTC (rev 137)
@@ -3,11 +3,12 @@
Priority: optional
Maintainer: Debian Octave Group <pkg-octave-devel@lists.alioth.debian.org>
Standards-Version: 3.6.1
-Build-Depends-Indep: debhelper (>= 3.0.0), dpatch
+Build-Depends-Indep: debhelper (>= 3.0.0), octave2.1-headers (>= 2.1.65), dpatch
Package: octave-epstk
Architecture: all
-Suggests: octave | octave2.0 | octave2.1, gv | postscript-viewer
+Depends: ${octave:Depends}
+Suggests: gv | postscript-viewer
Description: GNU Octave encapsulated postscript toolkit
The octave-epstk package provides, via a set of .m functions, a toolkit to
create powerful encapsulated postscript (.eps) graphs. Most 2D scientific
Modified: trunk/packages/octave-epstk/debian/patches/00list
===================================================================
--- trunk/packages/octave-epstk/debian/patches/00list 2005-02-27 15:33:39 UTC (rev 136)
+++ trunk/packages/octave-epstk/debian/patches/00list 2005-02-27 15:51:30 UTC (rev 137)
@@ -1,3 +1,3 @@
50_source-etc-epstk-conf
50_psd-path
-
+50_axis-value-labels