Re: [OctDev] problems installing image-1.0.12.tar.gz

2010-04-15 Thread Paul Sundvall
I think installing the xcode tools from the apple os x discs will help you. paul David Grundberg skrev: > On 04/15/2010 04:55 PM, bror hultgren wrote: >> I cannot install the image package image-1.0.12.tar.gz. >> >> I have installed octave3.2.3 and MacPorts 1.8.2 on my mac running >> OS10.5.8. >>

Re: [OctDev] Change of options in zenity_file_selection

2010-04-12 Thread Paul Sundvall
>> Also, I noticed all functions are released under GPL 2 and it says >> that I could release them under GPL 2 or higher. Is there any problems >> with changing it to GPL 3? > > I think this is because there hasn't been any real changes to this > package for a long time. I think it is just fine t

Re: [OctDev] sockets 1.0.6 release (again!)

2010-02-22 Thread Paul Sundvall
>> I created release 1.0.6 of the octave sockets package at 16:th nov 2009 >> and uploaded the package file. > > where (and how) have you uploaded the file? The version I currently see > online is 1.0.5... > At that time, the instruction was to sftp the file and move it inside a sourceforge ssh s

[OctDev] sockets 1.0.6 release (again!)

2010-02-22 Thread Paul Sundvall
release manager please update the html pages with the new release? This is important because the documentation has been improved a bit. Thanks, Paul Sundvall -- Download Intel® Parallel Studio Eval Try the new software tools

Re: [OctDev] Cannot install sockets-1.0.6

2010-02-08 Thread Paul Sundvall
Hi, that is my "fault". This change was due to the change of some macro F or GS. See http://old.nabble.com/Sockets-error-to25230848.html#a25230848 I asked for help about how to get the octave version: http://old.nabble.com/version-macros-to25176648.html#a25176648 Maybe you have some suggestion on

Re: [OctDev] Release system / web page generation

2009-11-17 Thread Paul Sundvall
(sorry, sent only to sören, it should have gone to everyone!) I have now released a new version of the sockets package and uploaded its html documentation. Some notes, following the manual on http://octave.sourceforge.net/test/developers.html 1) The owner and/or rights on the file area may have b

Re: [OctDev] Release system / web page generation

2009-11-16 Thread Paul Sundvall
>> http://sourceforge.net/projects/octave/files/ >> which shows the "Individual ..." folder. >> or via sourceforge shell. > > Oh, I think I've been misunderstanding you. This is when you upload the > package file, right? I thought your problem occurred when uploading the > html files. > > I guess

Re: [OctDev] Release system / web page generation

2009-11-16 Thread Paul Sundvall
>> The format of the SVNRelease line is not mentioned. > > It's just the revision number of the SVN commit where you released the > package. You don't need to use this field. The format is just like > anything else, i.e. > > SVNRelease: 1234 Could it be included in the documentation on the deve

Re: [OctDev] Release system / web page generation

2009-11-16 Thread Paul Sundvall
Thanks Sören for the update on the release procedure! I followed the instructions on http://octave.sourceforge.net/test/developers.html Here are some comments: Can the text maybe be changed such that "cdf," is replaced with "$SFUSER," or so? The format of the SVNRelease line is not mentioned. T

Re: [OctDev] Release system / web page generation

2009-10-18 Thread Paul Sundvall
Nice work! I appreciate your efforts towards a per-package release system. The layout is nice and the only thing that I think is wrong is the title of the page, which I guess should be "Octave package: Image" and not "Function Referene: image". The new layout works fine as is, in my opinion. I like

Re: [OctDev] Contribution to octave forge image processing toolbox

2009-09-23 Thread Paul Sundvall
happen automagically when the version number in the repository changes? Paul Sundvall Søren Hauberg skrev: > ons, 23 09 2009 kl. 12:07 +0200, skrev Roderick Köhle: >> for my personal need, I developed a Exif Reader for octave, allowing to >> read additional informations from Jpeg im

Re: [OctDev] Sockets error

2009-09-01 Thread Paul Sundvall
-dev list) if it worked. Thanks, Paul Sundvall John Swensen skrev: > On Sep 1, 2009, at 2:38 PM, Benjamin Lindner wrote: > >> michal.ko...@cz.abb.com wrote: >>> Bug report for Octave 3.2.2 configured for i686-pc-mingw32 >>> >>> Description: >>>

[OctDev] version macros

2009-08-27 Thread Paul Sundvall
Hi, are there any macros which define the octave version in use? I found #define OCTAVE_VERSION "3.0.1" in octave/version.h but it is difficult to use because it is a string. I made some ugly hack parsing the output of mkoctfile --version in a makefile but I guess there is a better way. paul ---

[OctDev] patch to resolve memory leak in package socket

2009-08-14 Thread Paul Sundvall
Hi, I found a memory leak in main/sockets/src/sockets.cc. To trigger it: a) send data (here using netcat): $nc -l -p 9897 -q0 get_sock_fd(), (const char*)buf, data.byte_size(), 0 ); -delete buf; +delete[] buf; } else { @@ -577,11 +577,14 @@ } else { -error("connect: e

[OctDev] patch to resolve memory leak in package socket

2009-08-14 Thread Paul Sundvall
Hi, I found a memory leak in main/sockets/src/sockets.cc. To trigger it: a) send data (here using netcat): $nc -l -p 9897 -q0 get_sock_fd(), (const char*)buf, data.byte_size(), 0 ); -delete buf; +delete[] buf; } else { @@ -577,11 +577,14 @@ } else { -error("connect: e