[Pkg-octave-commit] r2691 - in octave/trunk/debian: . in patches
Rafael Laboissiere
rafael at alioth.debian.org
Tue Feb 24 10:40:32 UTC 2009
tags 515743 pending
thanks
Author: rafael
Date: 2009-02-24 10:40:31 +0000 (Tue, 24 Feb 2009)
New Revision: 2691
Added:
octave/trunk/debian/patches/normal-markersize.dpatch
Modified:
octave/trunk/debian/changelog
octave/trunk/debian/in/00list
Log:
Revert the symbol markers in plots to their normal size
Modified: octave/trunk/debian/changelog
===================================================================
--- octave/trunk/debian/changelog 2009-02-23 17:54:00 UTC (rev 2690)
+++ octave/trunk/debian/changelog 2009-02-24 10:40:31 UTC (rev 2691)
@@ -1,5 +1,13 @@
-octave3.1 (3.1.52-5) UNRELEASED; urgency=low
+octave3.1 (3.1.52-6) UNRELEASED; urgency=low
+ * debian/patches/normal-markersize.dpatch: Revert the symbol markers in
+ plots to their normal size (closes: #515743). Thanks to Francesco
+ Potorti for the patch.
+
+ -- Rafael Laboissiere <rafael at debian.org> Tue, 24 Feb 2009 11:40:01 +0100
+
+octave3.1 (3.1.52-5) experimental; urgency=low
+
* debian/patches/compile-inttypes-on-short-double-arches.dpatch:
Workaround gcc 4.3 explicit instantiation bug in octave_int_cmp_op.
This was causing FTBFS on architectures with no long double type, like
Modified: octave/trunk/debian/in/00list
===================================================================
--- octave/trunk/debian/in/00list 2009-02-23 17:54:00 UTC (rev 2690)
+++ octave/trunk/debian/in/00list 2009-02-24 10:40:31 UTC (rev 2691)
@@ -13,4 +13,5 @@
real-no-history-3.1.dpatch
visit-script-call-accept.dpatch
compile-inttypes-on-short-double-arches.dpatch
+normal-markersize.dpatch
:]
Added: octave/trunk/debian/patches/normal-markersize.dpatch
===================================================================
--- octave/trunk/debian/patches/normal-markersize.dpatch (rev 0)
+++ octave/trunk/debian/patches/normal-markersize.dpatch 2009-02-24 10:40:31 UTC (rev 2691)
@@ -0,0 +1,28 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## -*- diff -*-
+## normal-markersize.dpatch by Rafael Laboissiere <rafael at debian.org>
+##
+## DP: Revert the symbol markers in plots to their normal size. Thanks to
+## DP: Francesco Potorti for the patch.
+
+ at DPATCH@
+--- octave3.1-3.1.52.orig/scripts/plot/__go_draw_axes__.m
++++ octave3.1-3.1.52/scripts/plot/__go_draw_axes__.m
+@@ -594,7 +594,7 @@
+ usingclause{data_idx} = sprintf ("record=%d", numel (obj.xdata));
+
+ if (isfield (obj, "markersize"))
+- mdat = obj.markersize / 3;
++ mdat = obj.markersize / 6;
+ endif
+
+ if (isfield (obj, "edgecolor"))
+@@ -1320,7 +1320,7 @@
+ endif
+
+ if (isfield (obj, "markersize"))
+- fprintf (plot_stream, " pointsize %f", obj.markersize / 3);
++ fprintf (plot_stream, " pointsize %f", obj.markersize / 6);
+ found_style = true;
+ endif
+ else
More information about the Pkg-octave-commit
mailing list