Dear Alan and all,

On 12.07.2017 23:28, Alan W. Irwin wrote:
> On 2017-07-12 11:00+0200 Ole Streicher wrote:
> I think we are done here with all the current Debian-related topics,
> but there will likely be more such topics we need to discuss in the
> near future as you continue the process of updating the Debian
> packaging for PLplot, and as we move closer to the release of 5.13.0.

I already have a few small questions. First language bindings: Currently
the following are disabled:

ENABLE_ada:             OFF
ENABLE_d:               OFF
ENABLE_octave:          OFF
ENABLE_pdl:             OFF
ENABLE_pyqt5:           OFF

Would it be useful to (re-)enable any of them? And what would I need to
add as dependencies then?

Then, there is one remaining patch that may be interesting for you
(attached). I have however no idea about it; it is a remnant from the
past. Could you give me a hint whether it is needed for me or for you?

Another point is that TCLDIR is currently set to
/usr/share/plplot5.12.0/tcl, which is not in the package path for
Tcl/Tk. Is there a way to change this to something like
/usr/share/tcltk/plplot5.12.0 [1] with a cmake option so that I
don't need a patch here?

[1] https://pkg-tcltk.alioth.debian.org/tcltk-policy.html/ch-tcltk.html#s-paths

Best regards

Ole

From: Rafael Laboissiere <raf...@laboissiere.net>
Date: Mon, 3 Jul 2017 22:39:22 +0200
Subject: Proper use of the rmpath function

---
 bindings/octave/PLplot/toggle_plplot_use.m | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/bindings/octave/PLplot/toggle_plplot_use.m b/bindings/octave/PLplot/toggle_plplot_use.m
index f59c0d4..c4fa644 100644
--- a/bindings/octave/PLplot/toggle_plplot_use.m
+++ b/bindings/octave/PLplot/toggle_plplot_use.m
@@ -39,9 +39,7 @@ endif
 use_plplot_path = plplot_octave_path;
 plplot_path_to_remove = char(strsplit(genpath(use_plplot_path),pathsep));
 for use_plplot_i=1:size(plplot_path_to_remove)(1)
-  if (findstr(path,deblank(plplot_path_to_remove(use_plplot_i,:))) > 0)
-    rmpath(deblank(plplot_path_to_remove(use_plplot_i,:)));
-  endif
+  rmpath(plplot_path_to_remove{use_plplot_i});
 endfor
 
 if (strcmp (use_plplot_state, "on"))

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel

Reply via email to