Re: Help Packaging Incudine (Common Lisp)

2023-10-24 Thread Théo Tyburn
That's interesting. I was also suspicious about this function and mentioned it upstream but they said it is normal to do it like this so I just ignored it. Also I remember having tried out a dummy package, so I really believed it was ok. Thanks for your help! On October 23, 2023 10:44:57 AM GM

Re: Help Packaging Incudine (Common Lisp)

2023-10-23 Thread Guillaume Le Vaillant
Hi. It looks like there's a bug in "contrib/cl-sndfile/cffi-sndfile.lisp". The 'make-sndinfo' function definition tries to get the size of the 'info' foreign structure before this foreign structure is defined. After moving the definition of 'make-sndinfo' at the end of the file, compilation works

Re: Help Packaging Incudine (Common Lisp)

2023-10-22 Thread Théo Tyburn
Hi, sure. Note that here the installation is narrowed to the asd system "cl-sndfile". But you could add or replace it by "incudine". > (define-public sbcl-incudine > (let ((commit "21c99e4fe1b152c125a1bc6df915759b46cdab78") > (revision "1")) > (package > (name "sbcl-incudine") >

Re: Help Packaging Incudine (Common Lisp)

2023-10-22 Thread Guillaume Le Vaillant
Hi. Could you send the package definition you made for Incudine? I could take a look at it and try to find where the issue comes from. signature.asc Description: PGP signature

Re: Help Packaging Incudine (Common Lisp)

2023-09-30 Thread Théo Tyburn
Liliana Marie Prikler writes: > Am Donnerstag, dem 28.09.2023 um 12:23 + schrieb Théo Tyburn: >> Oh, it seems I took the WARNING message for an ERROR message. >> >> The error message seems to just be: >> > Unhandled UIOP/LISP-BUILD:COMPILE-FILE-ERROR in thread #> > THREAD:THREAD tid=21 "ma

Re: Help Packaging Incudine (Common Lisp)

2023-09-28 Thread Liliana Marie Prikler
Am Donnerstag, dem 28.09.2023 um 12:23 + schrieb Théo Tyburn: > Oh, it seems I took the WARNING message for an ERROR message. > > The error message seems to just be: > > Unhandled UIOP/LISP-BUILD:COMPILE-FILE-ERROR in thread # > THREAD:THREAD tid=21 "main thread" RUNNING > >   

Re: Help Packaging Incudine (Common Lisp)

2023-09-28 Thread Théo Tyburn
For some weird reasons I manage to compile this reluctant file in an interactive session by accepting the error in the debugger and retrying compilation later on when the compiled file is required. Not sure in what retrying a compilation on the interactive debugger is different from compiling norm

Re: Help Packaging Incudine (Common Lisp)

2023-09-28 Thread Théo Tyburn
Oh, it seems I took the WARNING message for an ERROR message. The error message seems to just be: > Unhandled UIOP/LISP-BUILD:COMPILE-FILE-ERROR in thread # tid=21 "main thread" RUNNING > {100AFE8113}>: > COMPILE-FILE-ERROR while > compili

Help Packaging Incudine (Common Lisp)

2023-09-26 Thread Théo Tyburn
Hi there, I'm trying to package Incudine, a Music/DSP programming environment for Common Lisp. I'm stuck with the binding of libsndfile. First libsndfile.so could not be found, but I fixed the paths like it is commonly done in other CL packages. Next problem is that somehow the bindings are not wo