[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/10: gnu: mutter: Remove dependency on (guix build syscalls).
From: |
guix-commits |
Subject: |
01/10: gnu: mutter: Remove dependency on (guix build syscalls). |
Date: |
Sun, 22 Oct 2023 09:38:19 -0400 (EDT) |
civodul pushed a commit to branch wip-syscall-update
in repository guix.
commit f893b135abe82b276dee940ce9e2c46c93f468a2
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Fri Oct 13 16:50:28 2023 +0200
gnu: mutter: Remove dependency on (guix build syscalls).
* gnu/packages/gnome.scm (mutter)[arguments]: Remove #:imported-modules.
Remove (guix build syscalls) from #:modules.
Rewrite ‘check’ phase to reap processes from the build process.
[native-inputs]: Remove TINI.
---
gnu/packages/gnome.scm | 32 ++++++++++++++------------------
1 file changed, 14 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 2ffe8dfef2..ac3035e07d 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -7831,10 +7831,7 @@ to display dialog boxes from the commandline and shell
scripts.")
(build-system meson-build-system)
(arguments
(list
- #:imported-modules `(,@%meson-build-system-modules
- (guix build syscalls))
#:modules '((guix build meson-build-system)
- (guix build syscalls)
(guix build utils)
(ice-9 match))
#:glib-or-gtk? #t
@@ -7928,22 +7925,22 @@ to display dialog boxes from the commandline and shell
scripts.")
"1"))
(match (primitive-fork)
(0 ;child process
- (set-child-subreaper!)
- ;; Use tini so that signals are properly handled and
- ;; doubly-forked processes get reaped; otherwise,
- ;; python-dbusmock would waste time polling for the dbus
- ;; processes it spawns to be reaped, in vain.
- (apply execlp "tini" "--"
- "dbus-run-session" "--"
+ (apply execlp "dbus-run-session" "dbus-run-session"
"xvfb-run" "-a" "-s" (getenv "XVFB_SERVER_ARGS")
"meson" "test" "-t" "0" "--print-errorlogs"
test-options))
- (pid
- (match (waitpid pid)
- ((_ . status)
- (unless (zero? status)
- (error "`meson test' exited with status"
- status))))))))))))
+ (dbus-pid
+ (let loop ()
+ ;; Reap child processes; otherwise, python-dbusmock would
+ ;; waste time polling for the dbus processes it spawns to
+ ;; be reaped, in vain.
+ (match (waitpid WAIT_ANY)
+ ((pid . status)
+ (if (= pid dbus-pid)
+ (unless (zero? status)
+ (error "`meson test' exited with status"
+ status))
+ (loop)))))))))))))
(native-inputs
(list desktop-file-utils ;for update-desktop-database
`(,glib "bin") ;for glib-compile-schemas, etc.
@@ -7964,8 +7961,7 @@ to display dialog boxes from the commandline and shell
scripts.")
pipewire
python
python-dbus
- python-dbusmock
- tini)) ;acting as init (zombie reaper)
+ python-dbusmock))
(propagated-inputs
(list gsettings-desktop-schemas-next ;required by libmutter.pc
gtk+ ;required by libmutter.pc
- branch wip-syscall-update created (now 1f926dea6d), guix-commits, 2023/10/22
- 03/10: gnu: python-dbusmock: Remove dependency on (guix build syscalls)., guix-commits, 2023/10/22
- 04/10: gnu: python-dbusmock: Rewrite phases as a gexp., guix-commits, 2023/10/22
- 05/10: gnu: python-dbusmock: Use ‘search-input-file’., guix-commits, 2023/10/22
- 06/10: gnu: polkit: Remove dependency on (guix build syscalls)., guix-commits, 2023/10/22
- 01/10: gnu: mutter: Remove dependency on (guix build syscalls).,
guix-commits <=
- 02/10: gnu: python-ipykernel: Remove dependency on (guix build syscalls)., guix-commits, 2023/10/22
- 10/10: build-system/dub: Remove dependency on (guix build syscalls)., guix-commits, 2023/10/22
- 07/10: gnu: public-inbox: Remove dependency on (guix build syscalls)., guix-commits, 2023/10/22
- 09/10: build-system/android-ndk: Remove dependency on (guix build syscalls)., guix-commits, 2023/10/22
- 08/10: build-system/ant: Remove dependency on (guix build syscalls)., guix-commits, 2023/10/22