Re: [Numpy-discussion] Licensing question

2012-08-08 Thread Matt Terry
> Nice, I am starting to get out of touch with too many packages... > Would be nice to add DCT and DST support to it. FWIW, the DCT has been in scipy.fftpack for a while and DST was just added. ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org

Re: [Numpy-discussion] Licensing question

2012-08-08 Thread David Cournapeau
On Wed, Aug 8, 2012 at 10:53 AM, Robert Kern wrote: > On Wed, Aug 8, 2012 at 10:34 AM, David Cournapeau wrote: >> On Wed, Aug 8, 2012 at 12:55 AM, Nathaniel Smith wrote: >>> On Mon, Aug 6, 2012 at 8:31 PM, Robert Kern wrote: Those are not the original Fortran sources. The original Fortran

Re: [Numpy-discussion] Licensing question

2012-08-08 Thread Robert Kern
On Wed, Aug 8, 2012 at 10:34 AM, David Cournapeau wrote: > On Wed, Aug 8, 2012 at 12:55 AM, Nathaniel Smith wrote: >> On Mon, Aug 6, 2012 at 8:31 PM, Robert Kern wrote: >>> Those are not the original Fortran sources. The original Fortran sources are >>> in the public domain as work done by a US

Re: [Numpy-discussion] Licensing question

2012-08-08 Thread David Cournapeau
On Wed, Aug 8, 2012 at 12:55 AM, Nathaniel Smith wrote: > On Mon, Aug 6, 2012 at 8:31 PM, Robert Kern wrote: >> Those are not the original Fortran sources. The original Fortran sources are >> in the public domain as work done by a US federal employee. >> >> http://www.netlib.org/fftpack/ >> >> Ne

Re: [Numpy-discussion] Licensing question

2012-08-08 Thread Damon McDougall
On Wed, Aug 08, 2012 at 12:55:32AM +0100, Nathaniel Smith wrote: > On Mon, Aug 6, 2012 at 8:31 PM, Robert Kern wrote: > > Those are not the original Fortran sources. The original Fortran sources are > > in the public domain as work done by a US federal employee. > > > > http://www.netlib.org/fftpa

Re: [Numpy-discussion] Licensing question

2012-08-07 Thread Nathaniel Smith
On Mon, Aug 6, 2012 at 8:31 PM, Robert Kern wrote: > Those are not the original Fortran sources. The original Fortran sources are > in the public domain as work done by a US federal employee. > > http://www.netlib.org/fftpack/ > > Never trust the license of any code on John Burkardt's site. Track

Re: [Numpy-discussion] Licensing question

2012-08-06 Thread Robert Kern
Those are not the original Fortran sources. The original Fortran sources are in the public domain as work done by a US federal employee. http://www.netlib.org/fftpack/ Never trust the license of any code on John Burkardt's site. Track it down to the original sources. On Monday, August 6, 2012, S

Re: [Numpy-discussion] Licensing question

2012-08-06 Thread Sturla Molden
But the Fortran FFTPACK is GPL, or has the licence been changed? http://people.sc.fsu.edu/~jburkardt/f77_src/fftpack5.1/fftpack5.1.html Sturla Sendt fra min iPad Den 3. aug. 2012 kl. 07:52 skrev Travis Oliphant : > This should be completely fine.The fftpack.h file indicates that fftpack >

Re: [Numpy-discussion] Licensing question

2012-08-03 Thread Dag Sverre Seljebotn
On 08/02/2012 10:44 PM, Damon McDougall wrote: > Hi, > > I have a question about the licence for NumPy's codebase. I am currently > writing a library and I'd like to release under some BSD-type licence. > Unfortunately, my choice to link against MIT's FFTW library (released > under the GPL) means t

Re: [Numpy-discussion] Licensing question

2012-08-02 Thread Travis Oliphant
This should be completely fine.The fftpack.h file indicates that fftpack code came from Tela originally anyway and was translated from the Fortran code FFTPACK. Good luck with your project. -Travis On Aug 2, 2012, at 3:44 PM, Damon McDougall wrote: > Hi, > > I have a question about th

Re: [Numpy-discussion] Licensing question

2012-08-02 Thread Gael Varoquaux
On Thu, Aug 02, 2012 at 09:44:53PM +0100, Damon McDougall wrote: > I have a question about the licence for NumPy's codebase. I am currently > writing a library and I'd like to release under some BSD-type licence. > Unfortunately, my choice to link against MIT's FFTW library (released > under the GP

[Numpy-discussion] Licensing question

2012-08-02 Thread Damon McDougall
Hi, I have a question about the licence for NumPy's codebase. I am currently writing a library and I'd like to release under some BSD-type licence. Unfortunately, my choice to link against MIT's FFTW library (released under the GPL) means that, in its current state, this is not possible. I'm an av