* [bug#58484] [PATCH 0/1] gnu: home: home-dbus-service-type: Fix make-forkexec-constructor call.
@ 2022-10-13 6:47 ( via Guix-patches via
2022-10-13 6:48 ` [bug#58484] [PATCH 1/1] " ( via Guix-patches via
0 siblings, 1 reply; 5+ messages in thread
From: ( via Guix-patches via @ 2022-10-13 6:47 UTC (permalink / raw)
To: 58484; +Cc: (
This fixes a stupid mistake I made with the home-dbus-service-type, where I
tried to use #~ inside another #~.
( (1):
gnu: home: home-dbus-service-type: Fix make-forkexec-constructor call.
gnu/home/services/desktop.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
2.38.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#58484] [PATCH 1/1] gnu: home: home-dbus-service-type: Fix make-forkexec-constructor call.
2022-10-13 6:47 [bug#58484] [PATCH 0/1] gnu: home: home-dbus-service-type: Fix make-forkexec-constructor call ( via Guix-patches via
@ 2022-10-13 6:48 ` ( via Guix-patches via
2022-10-14 7:11 ` Andrew Tropin
0 siblings, 1 reply; 5+ messages in thread
From: ( via Guix-patches via @ 2022-10-13 6:48 UTC (permalink / raw)
To: 58484; +Cc: (
* gnu/home/services/desktop.scm (home-dbus-shepherd-services)[start]
<#:environment-variables>: Use a quote instead of a gexp.
---
gnu/home/services/desktop.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/home/services/desktop.scm b/gnu/home/services/desktop.scm
index 6549efd8df..e94e666d93 100644
--- a/gnu/home/services/desktop.scm
+++ b/gnu/home/services/desktop.scm
@@ -201,7 +201,7 @@ (define (home-dbus-shepherd-services config)
(format #f "/run/user/~a"
(getuid)))))
#:environment-variables
- #~(list "DBUS_VERBOSE=1")
+ '(list "DBUS_VERBOSE=1")
#:log-file
(format #f "~a/dbus.log"
(or (getenv "XDG_LOG_HOME")
--
2.38.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#58484] [PATCH 1/1] gnu: home: home-dbus-service-type: Fix make-forkexec-constructor call.
2022-10-13 6:48 ` [bug#58484] [PATCH 1/1] " ( via Guix-patches via
@ 2022-10-14 7:11 ` Andrew Tropin
2022-10-14 7:12 ` ( via Guix-patches via
2022-10-14 7:18 ` ( via Guix-patches via
0 siblings, 2 replies; 5+ messages in thread
From: Andrew Tropin @ 2022-10-14 7:11 UTC (permalink / raw)
To: 58484; +Cc: (
[-- Attachment #1: Type: text/plain, Size: 1235 bytes --]
On 2022-10-13 07:48, guix-patches@gnu.org wrote:
> * gnu/home/services/desktop.scm (home-dbus-shepherd-services)[start]
> <#:environment-variables>: Use a quote instead of a gexp.
> ---
It's possible to type arbitrary text after ---, which won't be added to
commit message or affect a patch. Just in case you would like to send
one email instead of two, this trick can be used.
> gnu/home/services/desktop.scm | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gnu/home/services/desktop.scm b/gnu/home/services/desktop.scm
> index 6549efd8df..e94e666d93 100644
> --- a/gnu/home/services/desktop.scm
> +++ b/gnu/home/services/desktop.scm
> @@ -201,7 +201,7 @@ (define (home-dbus-shepherd-services config)
> (format #f "/run/user/~a"
> (getuid)))))
> #:environment-variables
> - #~(list "DBUS_VERBOSE=1")
> + '(list "DBUS_VERBOSE=1")
> #:log-file
> (format #f "~a/dbus.log"
> (or (getenv "XDG_LOG_HOME")
Applied, pushed, thank you :)
--
Best regards,
Andrew Tropin
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#58484] [PATCH 1/1] gnu: home: home-dbus-service-type: Fix make-forkexec-constructor call.
2022-10-14 7:11 ` Andrew Tropin
@ 2022-10-14 7:12 ` ( via Guix-patches via
2022-10-14 7:18 ` ( via Guix-patches via
1 sibling, 0 replies; 5+ messages in thread
From: ( via Guix-patches via @ 2022-10-14 7:12 UTC (permalink / raw)
To: andrew, 58484
On Fri Oct 14, 2022 at 8:11 AM BST, Andrew Tropin wrote:
> Applied, pushed, thank you :)
Thanks! :)
-- (
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#58484] [PATCH 1/1] gnu: home: home-dbus-service-type: Fix make-forkexec-constructor call.
2022-10-14 7:11 ` Andrew Tropin
2022-10-14 7:12 ` ( via Guix-patches via
@ 2022-10-14 7:18 ` ( via Guix-patches via
1 sibling, 0 replies; 5+ messages in thread
From: ( via Guix-patches via @ 2022-10-14 7:18 UTC (permalink / raw)
To: andrew, 58484
On Fri Oct 14, 2022 at 8:11 AM BST, Andrew Tropin wrote:
> It's possible to type arbitrary text after ---, which won't be added to
> commit message or affect a patch. Just in case you would like to send
> one email instead of two, this trick can be used.
I know, but I prefer to use the --cover-letter feature to generate the leading email :)
-- (
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-10-14 7:23 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-13 6:47 [bug#58484] [PATCH 0/1] gnu: home: home-dbus-service-type: Fix make-forkexec-constructor call ( via Guix-patches via
2022-10-13 6:48 ` [bug#58484] [PATCH 1/1] " ( via Guix-patches via
2022-10-14 7:11 ` Andrew Tropin
2022-10-14 7:12 ` ( via Guix-patches via
2022-10-14 7:18 ` ( via Guix-patches via
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).