tree doesn't get called

2017-05-05 Thread Catonano
stranded as usual. So here's the package http://paste.lisp.org/display/345871 What is wrong with it ? The build fails, the build folder (kept in /tmp) is empty Further, when I attempt to call tree, tree doesn't get called Thanks in advance

Re: tree doesn't get called

2017-05-05 Thread Eric Bavier
On Fri, 5 May 2017 17:50:53 +0200 Catonano wrote: > stranded as usual. > > So here's the package > http://paste.lisp.org/display/345871 > > What is wrong with it ? > > The build fails, the build folder (kept in /tmp) is empty > > Further, when I attempt to

Re: tree doesn't get called

2017-05-07 Thread Catonano
> The build fails, the build folder (kept in /tmp) is empty > > > > Further, when I attempt to call tree, tree doesn't get called > > trivial-build-system requires you to do a lot manually. In this case > '(zero? (system* "tree"))' fails because

Re: tree doesn't get called

2017-05-07 Thread Ricardo Wurmus
Catonano writes: > Would you mind to take a look at this new version ? > > http://paste.lisp.org/display/346142 > > The > > (copy-file file >dest-file) > > piece fails with > > ... > In unknown file: >?: 0 [copy-file "include.scm" ...] > > ERROR: In procedure copy-file: > ERROR:

Re: tree doesn't get called

2017-05-08 Thread Mark H Weaver
Catonano writes: > So here's the package > http://paste.lisp.org/display/345871 > > What is wrong with it ? Please always include the relevant code snippets in the email itself, rather than using a paste site. Paste sites are useful for contexts such as IRC where pasting more than a few lines is

Re: tree doesn't get called

2017-05-08 Thread Catonano
2017-05-08 8:08 GMT+02:00 Ricardo Wurmus : > > > It looks like you first need to create the target directory (with > “mkdir-p”). > wonderful, thanks > > BTW: instead of an explicit list for scm-files you could use this: > > (find-files "." "\\.scm$") > Thanks, Ricardo. This is the new err

Re: tree doesn't get called

2017-05-08 Thread Catonano
Mark, 2017-05-08 9:34 GMT+02:00 Mark H Weaver : > Catonano writes: > > So here's the package > > http://paste.lisp.org/display/345871 > > > > What is wrong with it ? > > Please always include the relevant code snippets in the email itself, > rather than using a paste site. Paste sites are usefu

Re: tree doesn't get called

2017-05-08 Thread Catonano
just for reference, this is the whole text (define-public guile-miniadapton (package (name "guile-miniadapton") (version "master") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/fisherdj/miniAdapton";)

Re: tree doesn't get called

2017-05-08 Thread Ricardo Wurmus
Catonano writes: > In fact, I'd paste code even on IRC channels, I don't do so because I have > been requested to abstain from pasting code in chat channels in the past > > But I don't understand the reason why that is not desirable, inconvenient > and frown upon. IRC is for real-time conversat

Re: tree doesn't get called

2017-05-08 Thread Ricardo Wurmus
Here’s a version that works for me: --8<---cut here---start->8--- (define-public guile-miniadapton (let ((commit "1b5749422304567c96ac5367f2221dda9eff5880") (revision "1")) (package (name "guile-miniadapton") (version (string-append "0

Re: tree doesn't get called

2017-05-09 Thread Catonano
Ricardo, 2017-05-08 22:19 GMT+02:00 Ricardo Wurmus : > > Here’s a version that works for me: > > > ;; Compile .scm files and install. > (every (lambda (file) > (let ((go-file (string-append module-dir "/" >

Re: tree doesn't get called

2017-05-09 Thread Catonano
I forgot: the linter crashes, but not only on guile-miniadapton. Also on guile-irregex that was already there It might be something in the maser branch or something in my setup. I updated my system recently and I still don't know what is going on. Well, I know what is going on less than usual ;-)

Re: tree doesn't get called

2017-05-09 Thread Ricardo Wurmus
Catonano writes: >> Here’s a version that works for me: >> >> >> ;; Compile .scm files and install. >> (every (lambda (file) >> (let ((go-file (string-append module-dir "/" >> (bas

Re: tree doesn't get called

2017-05-09 Thread Catonano
2017-05-09 19:20 GMT+02:00 Ricardo Wurmus : > > Catonano writes: > > >> Here’s a version that works for me: > >> > >> > >> ;; Compile .scm files and install. > >> (every (lambda (file) > >> (let ((go-file (string-append module-dir "/" >

Re: tree doesn't get called

2017-05-10 Thread Ricardo Wurmus
Catonano writes: > I forgot: the linter crashes, but not only on guile-miniadapton. Also on > guile-irregex that was already there […] > Backtrace:uile-irregex@0.9.6 [cve]... >9 (primitive-load >"/home/catonano/projects/readxl/scripts…") That’s suspicous… > In guix/ui

Re: tree doesn't get called

2017-05-10 Thread Catonano
2017-05-10 21:51 GMT+02:00 Ricardo Wurmus : > > I cannot reproduce this running “./pre-inst-env guix lint guile-irregex” > on master. > So it must be my setup. Interestingly, this happens also in the other master folder that I keep We'll see Thanks or checking !