Re: [Numpy-discussion] Problems using add_npy_pkg_config

2015-08-15 Thread Ralf Gommers
On Sat, Aug 15, 2015 at 11:19 AM, Ralf Gommers wrote: > > > > On Fri, Aug 14, 2015 at 11:25 PM, Christian Engwer < > christian.eng...@uni-muenster.de> wrote: > >> Dear Ralf, >> >> > I stared at it for a while, and can't figure it out despite you >> following >> > the example in the add_npy_pkg_co

Re: [Numpy-discussion] Problems using add_npy_pkg_config

2015-08-15 Thread Ralf Gommers
On Fri, Aug 14, 2015 at 11:25 PM, Christian Engwer < christian.eng...@uni-muenster.de> wrote: > Dear Ralf, > > > I stared at it for a while, and can't figure it out despite you following > > the example in the add_npy_pkg_config docstring pretty much to the > letter. > > When you see that the erro

Re: [Numpy-discussion] Problems using add_npy_pkg_config

2015-08-14 Thread Christian Engwer
Dear Ralf, > I stared at it for a while, and can't figure it out despite you following > the example in the add_npy_pkg_config docstring pretty much to the letter. > When you see that the error is generated in a function that starts with ``# > XXX: another ugly workaround to circumvent distutils b

Re: [Numpy-discussion] Problems using add_npy_pkg_config

2015-08-13 Thread Ralf Gommers
On Thu, Aug 13, 2015 at 8:45 PM, Christian Engwer < christian.eng...@uni-muenster.de> wrote: > > >> This doesn't answer your question but: why? If you're not > distributing a > > >> Python project, there is no reason to use distutils instead of a sane > build > > >> system. > > > > Come on. We don

Re: [Numpy-discussion] Problems using add_npy_pkg_config

2015-08-13 Thread Christian Engwer
> >> This doesn't answer your question but: why? If you're not distributing a > >> Python project, there is no reason to use distutils instead of a sane build > >> system. > > Come on. We don't take it seriously, and neither do the Python core devs. > It's also pretty much completely unsupported.

Re: [Numpy-discussion] Problems using add_npy_pkg_config

2015-08-12 Thread Eric Firing
I used to use scons, but I've been pretty happy with switching to waf. (Very limited use in both cases: two relatively simple packages.) One of the nicest things is how light it is--no external dependencies, everything can be included in the package itself.

Re: [Numpy-discussion] Problems using add_npy_pkg_config

2015-08-12 Thread Edison Gustavo Muenz
Why don't you use CMake ? It's pretty standard for C/C++. On Wed, Aug 12, 2015 at 2:35 PM, Ralf Gommers wrote: > > > On Wed, Aug 12, 2015 at 7:23 PM, Charles R Harris < > charlesr.har...@gmail.com> wrote: > >> >> >> On Wed, Aug 12, 2015 at 10:50 AM, Ralf Gommers >> wrote: >> >>> >>> >>> On Wed,

Re: [Numpy-discussion] Problems using add_npy_pkg_config

2015-08-12 Thread Ralf Gommers
On Wed, Aug 12, 2015 at 7:23 PM, Charles R Harris wrote: > > > On Wed, Aug 12, 2015 at 10:50 AM, Ralf Gommers > wrote: > >> >> >> On Wed, Aug 12, 2015 at 6:23 PM, Christian Engwer < >> christian.eng...@uni-muenster.de> wrote: >> >>> Dear all, >>> >>> I'm trying to use the numpy distutils to inst

Re: [Numpy-discussion] Problems using add_npy_pkg_config

2015-08-12 Thread Charles R Harris
On Wed, Aug 12, 2015 at 10:50 AM, Ralf Gommers wrote: > > > On Wed, Aug 12, 2015 at 6:23 PM, Christian Engwer < > christian.eng...@uni-muenster.de> wrote: > >> Dear all, >> >> I'm trying to use the numpy distutils to install native C >> libraries. These are part of a larger roject and should be u

Re: [Numpy-discussion] Problems using add_npy_pkg_config

2015-08-12 Thread Ralf Gommers
On Wed, Aug 12, 2015 at 6:23 PM, Christian Engwer < christian.eng...@uni-muenster.de> wrote: > Dear all, > > I'm trying to use the numpy distutils to install native C > libraries. These are part of a larger roject and should be usable > standalone. I managed to install headers and libs, but now I

[Numpy-discussion] Problems using add_npy_pkg_config

2015-08-12 Thread Christian Engwer
Dear all, I'm trying to use the numpy distutils to install native C libraries. These are part of a larger roject and should be usable standalone. I managed to install headers and libs, but now I experience problems writing the corresponding pkg file. I first tried to do the trick without numpy, bu