bug#42247: Channel news raise error on `guix pull`

2020-07-13 Thread Bengt Richter
On +2020-07-13 12:27:39 +0200, Ludovic Courtès wrote: > Hi, > > Pierre Neidhardt skribis: > > > Ludovic Courtès writes: > > > >> This suggests that the ‘news.scm’ file of your channel is being picked > >> up and evaluated as if it were a module, which it’s not. > >> > >> The solution is to rena

bug#42247: Channel news raise error on `guix pull`

2020-07-13 Thread Ludovic Courtès
Hi, Pierre Neidhardt skribis: > Ludovic Courtès writes: > >> This suggests that the ‘news.scm’ file of your channel is being picked >> up and evaluated as if it were a module, which it’s not. >> >> The solution is to rename it to, say, ‘news.txt’, or to move the actual >> modules to a sub-direc

bug#42247: Channel news raise error on `guix pull`

2020-07-09 Thread Ludovic Courtès
Hi, Pierre Neidhardt skribis: > However, guix pull chokes on it: > > (repl-version 0 0) > (exception unbound-variable (value #f) (value "Unbound variable: ~S") (value > (channel-news)) (value #f)) This suggests that the ‘news.scm’ file of your channel is being picked up and evaluated as if it

bug#42247: Channel news raise error on `guix pull`

2020-07-07 Thread Pierre Neidhardt
I've added a news-file entry to my channel: --8<---cut here---start->8--- (channel (version 0) (news-file "news.scm")) --8<---cut here---end--->8--- which contains --8<---cut here---start---