[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: lightdm: Update style.
From: |
guix-commits |
Subject: |
07/09: gnu: lightdm: Update style. |
Date: |
Sun, 24 Mar 2024 06:18:13 -0400 (EDT) |
cbaines pushed a commit to branch gnome-team
in repository guix.
commit 88c180402258a13ca605ebd1073c471c8672a539
Author: Vivien Kraus <vivien@planete-kraus.eu>
AuthorDate: Fri Mar 22 21:10:35 2024 +0100
gnu: lightdm: Update style.
* gnu/packages/display-managers.scm (lightdm)[arguments]: Convert to list of
G-Expressions.
Change-Id: I8d7beb73e636be066d2dbe2588a5ebcb2f5afec0
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/display-managers.scm | 61 ++++++++++++++++++++-------------------
1 file changed, 31 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/display-managers.scm
b/gnu/packages/display-managers.scm
index 2df4e6311b..7b802f1b5f 100644
--- a/gnu/packages/display-managers.scm
+++ b/gnu/packages/display-managers.scm
@@ -330,36 +330,37 @@ experience for your users, your family and yourself")
"lightdm-vnc-ipv6.patch"))))
(build-system gnu-build-system)
(arguments
- '(#:parallel-tests? #f ; fails when run in parallel
- #:configure-flags
- (list "--localstatedir=/var"
- "--enable-gtk-doc"
- ;; Otherwise the test suite fails on such a warning.
- "CFLAGS=-Wno-error=missing-prototypes")
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'fix-paths
- (lambda* (#:key inputs #:allow-other-keys)
- (substitute* "src/shared-data-manager.c"
- (("/bin/rm")
- (search-input-file inputs "bin/rm")))
- (substitute* '("data/users.conf"
- "common/user-list.c")
- (("/bin/false")
- (search-input-file inputs "bin/false"))
- (("/usr/sbin/nologin")
- (search-input-file inputs "sbin/nologin")))
- (substitute* "src/seat.c"
- (("/bin/sh")
- (search-input-file inputs "bin/sh")))))
- (add-before 'check 'pre-check
- (lambda _
- (wrap-program "tests/src/test-python-greeter"
- `("GUIX_PYTHONPATH" ":" prefix (,(getenv
"GUIX_PYTHONPATH")))
- `("GI_TYPELIB_PATH" ":" prefix (,(getenv "GI_TYPELIB_PATH"))))
- ;; Avoid printing locale warnings, which trip up the text
- ;; matching tests.
- (unsetenv "LC_ALL"))))))
+ (list
+ #:parallel-tests? #f ; fails when run in parallel
+ #:configure-flags
+ #~(list "--localstatedir=/var"
+ "--enable-gtk-doc"
+ ;; Otherwise the test suite fails on such a warning.
+ "CFLAGS=-Wno-error=missing-prototypes")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-paths
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "src/shared-data-manager.c"
+ (("/bin/rm")
+ (search-input-file inputs "bin/rm")))
+ (substitute* '("data/users.conf"
+ "common/user-list.c")
+ (("/bin/false")
+ (search-input-file inputs "bin/false"))
+ (("/usr/sbin/nologin")
+ (search-input-file inputs "sbin/nologin")))
+ (substitute* "src/seat.c"
+ (("/bin/sh")
+ (search-input-file inputs "bin/sh")))))
+ (add-before 'check 'pre-check
+ (lambda _
+ (wrap-program "tests/src/test-python-greeter"
+ `("GUIX_PYTHONPATH" ":" prefix (,(getenv
"GUIX_PYTHONPATH")))
+ `("GI_TYPELIB_PATH" ":" prefix (,(getenv "GI_TYPELIB_PATH"))))
+ ;; Avoid printing locale warnings, which trip up the text
+ ;; matching tests.
+ (unsetenv "LC_ALL"))))))
(inputs
(list audit
bash-minimal ;for cross-compilation
- branch gnome-team updated (f7ba5df8b0 -> da381e2334), guix-commits, 2024/03/24
- 04/09: gnu: duc: Fix build., guix-commits, 2024/03/24
- 02/09: gnu: conan: Disable flaky test., guix-commits, 2024/03/24
- 07/09: gnu: lightdm: Update style.,
guix-commits <=
- 08/09: gnu: Add dbus-1.15.0., guix-commits, 2024/03/24
- 01/09: gnu: shotwell: Update to 0.32.6., guix-commits, 2024/03/24
- 03/09: gnu: pdfpc: Fix build with vala 0.56., guix-commits, 2024/03/24
- 06/09: gnu: pango-1.90: Disable failing test., guix-commits, 2024/03/24
- 05/09: gnu: duc: Update style., guix-commits, 2024/03/24
- 09/09: gnu: lightdm: Run tests with dbus-1.15.0., guix-commits, 2024/03/24