Re: Workflow with mu4e + magit for sending patchsets to guix?

2020-11-16 Thread Pierre Neidhardt
Kyle Meyer writes: > Also, not helpful for mu4e users, but since I know simon uses notmuch... > notmuch has a really handy notmuch-show-stash-git-send-email. Notmuch user here, today I learned about notmuch-show-stash-git-send-email! Thanks for the tip! -- Pierre Neidhardt

Re: GDM blank for anyone else with guix system vm?

2020-11-16 Thread Efraim Flashner
On Mon, Nov 16, 2020 at 06:42:09PM -0500, Christopher Lemmer Webber wrote: > Not sure why but when testing: > > ./pre-inst-env guix system vm gnu/system/examples/lightweight-desktop.tmpl > > (and also the normal non-lightweight desktop) I'm getting a blank screen > once gdm is supposed to

Re: Package workspace relocation

2020-11-16 Thread Efraim Flashner
On Tue, Nov 17, 2020 at 12:09:35AM +0100, zimoun wrote: > Dear, > > On Mon, 16 Nov 2020 at 16:56, Stephen Scheck wrote: > > > `/my-project` to become `/foo/bar/my-project`. It sounds like what you > > [...] > > >> > This results in a path like `/my-package-0.0.1` but > >>

Re: Workflow with mu4e + magit for sending patchsets to guix?

2020-11-16 Thread Kyle Meyer
zimoun writes: > Hi Chris > > +CC Kyle since they probably knows the status [1]. Sorry, I have no good news for you :/ > On Mon, 16 Nov 2020 at 15:28, Christopher Lemmer Webber > wrote: > >> I've been making patchset series of emails to guix-patches manually. >> I'm sure this is the wrong

Re: Workflow with mu4e + magit for sending patchsets to guix?

2020-11-16 Thread zimoun
Hi Chris +CC Kyle since they probably knows the status [1]. On Mon, 16 Nov 2020 at 15:28, Christopher Lemmer Webber wrote: > I've been making patchset series of emails to guix-patches manually. > I'm sure this is the wrong thing to do. I use mu4e + magit and know > others have a similar

GDM blank for anyone else with guix system vm?

2020-11-16 Thread Christopher Lemmer Webber
Not sure why but when testing: ./pre-inst-env guix system vm gnu/system/examples/lightweight-desktop.tmpl (and also the normal non-lightweight desktop) I'm getting a blank screen once gdm is supposed to start up, but the mouse can still move. I'm also running the intel graphics card here.

Re: Package workspace relocation

2020-11-16 Thread zimoun
Dear, On Mon, 16 Nov 2020 at 16:56, Stephen Scheck wrote: > `/my-project` to become `/foo/bar/my-project`. It sounds like what you [...] >> > This results in a path like `/my-package-0.0.1` but >> `/foo/bar/my-package-0.0.1`. What do you want? Append a suffix /tmp/guix-xyz/foo/bar/your-pkg

Re: Package workspace relocation

2020-11-16 Thread Stephen Scheck
I just need to add a prefix to the directory in which the Git source is cloned, because its build system requires that. I don't care which TMP directory Guix daemon uses for its build root. I just need for `/my-project` to become `/foo/bar/my-project`. It sounds like what you suggested will do the

Re: Package workspace relocation

2020-11-16 Thread Leo Famulari
On Mon, Nov 16, 2020 at 03:15:46PM -0500, Stephen Scheck wrote: > Is there a way to relocate the package build workspace for a Git clone > source, e.g.: > > (package > (name "my-package") > (version "0.0.1") > (source (origin > (method git-fetch) >

Re: Workflow with mu4e + magit for sending patchsets to guix?

2020-11-16 Thread Christopher Baines
Christopher Lemmer Webber writes: > I've been making patchset series of emails to guix-patches manually. > I'm sure this is the wrong thing to do. I use mu4e + magit and know > others have a similar setup. I think git send-email on the command line does the right thing. For a single patch, I

Workflow with mu4e + magit for sending patchsets to guix?

2020-11-16 Thread Christopher Lemmer Webber
I've been making patchset series of emails to guix-patches manually. I'm sure this is the wrong thing to do. I use mu4e + magit and know others have a similar setup. What do you all do? - Chris

Package workspace relocation

2020-11-16 Thread Stephen Scheck
Is there a way to relocate the package build workspace for a Git clone source, e.g.: (package (name "my-package") (version "0.0.1") (source (origin (method git-fetch) (uri (git-reference (url

Package building with gcc-10

2020-11-16 Thread Hamzeh Nasajpour
Hi guys. I have a cpp Application that should be build with `gcc-toolchain-10.2.0`. I could build it in local. But seems that in package building the `cmake-build-system` is using the `gcc-7.5.0`. How can I set a specific version of gcc for building my package definition? ``` ...