bug#52333: [PATCH 1/2] gnu: python-nbconvert: Embed reference to texlive-bin, not texlive-union.

2021-12-06 Thread Ricardo Wurmus
Ricardo Wurmus writes: > * gnu/packages/python-xyz.scm (python-nbconvert)[inputs]: Add texlive-bin. > [arguments]: Embed reference to xelatex and bibtex from the texlive-bin, not > the texlive-union. This is a bad idea, because it breaks PDF conversion. I still think that the texlive stuff

bug#51252: bug#52268: [PATCH core-updates-frozen] gnu: Add texlive-latex-luatex.

2021-12-06 Thread Thiago Jung Bauermann via Bug reports for GNU Guix
Hello Ludo, Em domingo, 5 de dezembro de 2021, às 12:40:33 -03, Ludovic Courtès escreveu: > Thiago Jung Bauermann skribis: > > Ricardo Wurmus suggested creating a new package to provide > > ‘lualatex.fmt’ for LuaTeX as a workaround. This is what this package > > does. > > > > Fixes

bug#52338: [maintenance] hydra: berlin: Create robots.txt.

2021-12-06 Thread Leo Famulari
I tested that `guix system build` does succeed with this change, but I would like a review on whether the resulting Nginx configuration is correct, and if this is the correct path to disallow. It generates an Nginx location block like this: -- location /robots.txt { add_header

bug#52338: Crawler bots are downloading substitutes

2021-12-06 Thread Leo Famulari
I noticed that some bots are downloading substitutes from ci.guix.gnu.org. We should add a robots.txt file to reduce this waste. Specifically, I see bots from Bing and Semrush: https://www.bing.com/bingbot.htm https://www.semrush.com/bot.html

bug#52333: [PATCH 2/2] gnu: r-minimal: Remove extraneous references.

2021-12-06 Thread Ricardo Wurmus
* gnu/packages/statistics.scm (r-minimal)[arguments]: Remove references to native build-time tools. --- gnu/packages/statistics.scm | 39 - 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm

bug#52333: [PATCH 1/2] gnu: python-nbconvert: Embed reference to texlive-bin, not texlive-union.

2021-12-06 Thread Ricardo Wurmus
* gnu/packages/python-xyz.scm (python-nbconvert)[inputs]: Add texlive-bin. [arguments]: Embed reference to xelatex and bibtex from the texlive-bin, not the texlive-union. --- gnu/packages/python-xyz.scm | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git

bug#52333: [PATCH] Remove extraneous references

2021-12-06 Thread Ricardo Wurmus
Hi Guix, r-minimal keeps a record of build time inputs in a comment and in a libtool script. I don’t know if I may remove them all, but some of them seem to safe to remove, so that’s what the first patch does. While I removed texlive-union references from r-minimal, I noticed that

bug#52316: Package example from cookbook has bugs

2021-12-06 Thread Maxime Devos
Hi, zimoun schreef op ma 06-12-2021 om 15:30 [+0100]: > [] > > #:tests? is unconditionally set to #true. This is bad for cross- > > compilation and --without-tests=PACKAGE reasons, and would be > > flagged > > by the linter. > > For cross-compilation, yes.  For ’--without-tests’, it is not

bug#52316: Package example from cookbook has bugs

2021-12-06 Thread zimoun
Hi Maxime, On Sun, 05 Dec 2021 at 19:18, Maxime Devos wrote: > The example at > https://guix.gnu.org/cookbook/en/html_node/Extended-example.html has > two bugs: > > #:tests? is unconditionally set to #true. This is bad for cross- > compilation and --without-tests=PACKAGE reasons, and would be

bug#52321: festival can't do text-to-speech (Linux: can't open /dev/dsp)

2021-12-06 Thread Tobias Geerinckx-Rice via Bug reports for GNU Guix
Luis Felipe, Luis Felipe via Bug reports for GNU Guix 写道: UNEXPECTED RESULT There is no speech, and the following error is printed: Linux: can't open /dev/dsp Attached is a patch that makes Festival work with Linux (ALSA) by default… but it's a bit odd that we'd've been shipping a

bug#52284: Partially unifying packages and inferior packages

2021-12-06 Thread Ludovic Courtès
Hi, Maxime Devos skribis: > (define (inferior-package->package inf) > ;; TODO: somehow make sure no inheritance happens on this package > (package > (name (inferior-package-name inf)) > (version (inferior-package-version inf)) > (replacement (and=> (inferior-package-replacement

bug#52258: [cuirass] Fetch worker ensure-path exception.

2021-12-06 Thread Mathieu Othacehe
Hello, > ice-9/boot-9.scm:1685:16: In procedure raise-exception: > ERROR: > 1. : > file: #f > port: # Still not sure what's causing this issue, but I catched this exception in c832d1523d094b21e7c640115cd6158346bbc54d to keep the remote-server fetch thread alive. Thanks, Mathieu

bug#52269: [PATCH] sitecustomize.py: Honor .pth files.

2021-12-06 Thread Lars-Dominik Braun
Hi Maxim, > +if not matching_sites: > +exit(0) are you sure about using `exit()` here? sitecustomize.py is imported during startup and this would simply quit the Python interpreter if GUIX_PYTHONPATH is not set, wouldn’t it? (Can’t test the change unfortunately, because it’s a massive