Re: Is using xdg-utils post-install safe?

2019-10-28 Thread Jesse Gibbons
On Mon, 2019-10-28 at 20:12 +0100, Tobias Geerinckx-Rice wrote: > Jesse, > > Jesse Gibbons 写道: > > I'm working on packaging The Powder Toy. When it first starts, > > it asks if > > the user wants to install it. > > ‘Install’? That doesn't sound good. :-) > > < > https://github.com/The-Powder-

Re: Clang c++ include path

2019-10-28 Thread Marius Bakke
Mark H Weaver writes: > Hi Ricardo and Mathieu, > > Ricardo Wurmus writes: > >>> When running clang on a c++ program, it cannot find c++ std libraries. >>> That's because, those libraries path are hardcoded inside g++ compiler >>> and clang cannot find them. >> >> Does this patch help? > > I'd l

Re: Clang c++ include path

2019-10-28 Thread Mark H Weaver
Hi Ricardo and Mathieu, Ricardo Wurmus writes: >> When running clang on a c++ program, it cannot find c++ std libraries. >> That's because, those libraries path are hardcoded inside g++ compiler >> and clang cannot find them. > > Does this patch help? I'd like to request that fixes to LLVM/Clan

Re: Is using xdg-utils post-install safe?

2019-10-28 Thread Tobias Geerinckx-Rice
Jesse, Jesse Gibbons 写道: I'm working on packaging The Powder Toy. When it first starts, it asks if the user wants to install it. ‘Install’? That doesn't sound good. :-) . From my reading, that will em

Re: Clang c++ include path

2019-10-28 Thread Ricardo Wurmus
Hi Mathieu, > When running clang on a c++ program, it cannot find c++ std libraries. > That's because, those libraries path are hardcoded inside g++ compiler > and clang cannot find them. Does this patch help? --8<---cut here---start->8--- diff --git a/gnu/p

Re: “Guix Profiles in Practice”

2019-10-28 Thread Konrad Hinsen
Hi Pierre, >> Jumping to symbol definitions, for example, or access to documentation. > > I can jump to definition with no problem. Is your load path set > properly? After inspection... no. At least not in all my Guix installations. It does work fine with the right path. > Access to the manual

Re: Moving Lisp libraries to lisp-xyz.scm?

2019-10-28 Thread Katherine Cox-Buday
Pierre Neidhardt writes: > lisp.scm currently contains: > > - Lisp compilers. > - Lisp libraries. > - A few (3-4) Lisp-based programs. > > I suggest we move the lisp libraries to lisp-xyz.scm. It would also be > more consistent with what we do for other languages. > > Thoughts? This sounds like

Is using xdg-utils post-install safe?

2019-10-28 Thread Jesse Gibbons
I'm working on packaging The Powder Toy. When it first starts, it asks if the user wants to install it. When the user clicks confirm, it tries to use xdg-desktop-menu, xdg-mime, and xdg-icon-resource. Is this a safe behavior with guix, or should I try to patch it out? If it is safe, should I bother

Re: [PATCH v3 0/9] gnu: Add poetry.

2019-10-28 Thread Tanguy Le Carrour
Hi Mathieu, Le 10/28, Mathieu Othacehe a écrit : > > I've just rebased my patches for Poetry because they were few weeks old. > > If someone had time to take a look at them, it would be great! > > Apart from some style related issues, your serie seems fine. Can you > please send a v4 :) I've jus

Re: [PATCH v3 0/9] gnu: Add poetry.

2019-10-28 Thread Mathieu Othacehe
Hello Tanguy, > I've just rebased my patches for Poetry because they were few weeks old. > If someone had time to take a look at them, it would be great! Apart from some style related issues, your serie seems fine. Can you please send a v4 :) Thanks, Mathieu

Granularity of grub-install (was Re: Reproducibility of grub-install)

2019-10-28 Thread Miguel Arruga Vivas
Hi, First of all, thank you for your comments. My answers are inline, although the bad subject was a main issue of misunderstanding. I changed it, as I think it reflects better my current idea. I'm sorry for the confusion it certainly caused. Wed, 23 Oct 2019 11:09:07 +0200 Daniel Kiper wrote

[PATCH v3 0/9] gnu: Add poetry.

2019-10-28 Thread Tanguy Le Carrour
Hi Guix! I've just rebased my patches for Poetry because they were few weeks old. If someone had time to take a look at them, it would be great! Regards, -- Tanguy

Re: 06/06: gnu: Add weasyprint.

2019-10-28 Thread Hartmut Goebel
Am 23.10.19 um 16:24 schrieb Ludovic Courtès: > > Another thing: could you add a couple of lines at the top of the patch Done: e30808ddb33f4aa0c4940ce8596ddc71ff55ed2a Thanks for the review. -- Regards Hartmut Goebel | Hartmut Goebel | h.goe...@crazy-compilers.com | | ww

Re: Getting build information in to the Guix Data Service (draft patch)

2019-10-28 Thread Christopher Baines
Christopher Baines writes: > Ludovic Courtès writes: > >> Christopher Baines skribis: >> >> Should ‘BuildEvents’ be more generic and have ‘event’ be an sexp or JSON >> string that could describe any kind of event? >> >> If we did that, we could keep ‘derivation’ but remove “NOT NULL” so that >

Clang c++ include path

2019-10-28 Thread Mathieu Othacehe
Hello, When running clang on a c++ program, it cannot find c++ std libraries. That's because, those libraries path are hardcoded inside g++ compiler and clang cannot find them. This has already been discussed here: https://issues.guix.info/issue/32773, without reaching a solution. Running this

Clang c++ include path

2019-10-28 Thread Mathieu Othacehe
Message-ID: <87r22xxoy6@gmail.com> User-agent: mu4e 1.2.0; emacs 26.3 https://issues.guix.info/issue/32773, mathieu@meru:~/tmp$ ~/.guix-profile/bin/clang t.cpp t.cpp:1:10: fatal error: 'string' file not found mathieu@meru:~/tmp$ ~/.guix-profile/bin/clang -v t.cpp t.cpp:1:10: fatal error: 'st

[PATCH 1/2] Support publishing build events

2019-10-28 Thread Christopher Baines
--- Makefile.am | 8 +- bin/cuirass-send-events.in | 90 +++ src/cuirass/base.scm| 9 ++- src/cuirass/database.scm| 142 +--- src/cuirass/http.scm| 24 ++ src/cuirass/send-events.scm | 69 ++

[PATCH 2/2] Support publishing evaluation events

2019-10-28 Thread Christopher Baines
--- src/cuirass/base.scm | 5 + src/cuirass/database.scm | 6 +- src/cuirass/http.scm | 9 + 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/src/cuirass/base.scm b/src/cuirass/base.scm index fd10e35..943a4f2 100644 --- a/src/cuirass/base.scm +++ b/src/cuirass

Re: Performance improvements

2019-10-28 Thread Efraim Flashner
On Mon, Oct 28, 2019 at 12:06:25AM +0100, Ludovic Courtès wrote: > Hi! > > Some more improvements come from these commits: > > ac19950507 gnu: bootstrap: Cache the 'bootstrap-executable' origins. > 5166d02730 gnu: bootstrap: 'bootstrap-origin' preserves eq?-ness when no > changes are made. >

Re: Performance improvements

2019-10-28 Thread Pierre Neidhardt
Only 700ms to go! :) Congrats! -- Pierre Neidhardt https://ambrevar.xyz/ signature.asc Description: PGP signature

Re: We need your feedback of the documentation videos!

2019-10-28 Thread pelzflorian (Florian Pelz)
On Sun, Oct 27, 2019 at 02:47:00PM -0500, sirgazil wrote: > Great, thank you, Florian. > > I just sent a patch that adds the link to the videos in the Help page. > > https://debbugs.gnu.org/cgi/bugreport.cgi?bug=37947 > It looks very good, except you use tabs instead of spaces, cf.