[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
103/169: build: glib-or-gtk-build-system: Simplify the wrap-all-programs
From: |
guix-commits |
Subject: |
103/169: build: glib-or-gtk-build-system: Simplify the wrap-all-programs phase. |
Date: |
Thu, 28 Oct 2021 02:08:42 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit 19992a627c21515e1e09e4ef869faaa60d7a65d3
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sun Oct 3 21:11:37 2021 -0400
build: glib-or-gtk-build-system: Simplify the wrap-all-programs phase.
* guix/build/glib-or-gtk-build-system.scm (wrap-all-programs)
<handle-output>: Precisely build the list of variable specifications, rather
than relying on a bunch of conditionals.
---
guix/build/glib-or-gtk-build-system.scm | 59 ++++++++-------------------------
1 file changed, 13 insertions(+), 46 deletions(-)
diff --git a/guix/build/glib-or-gtk-build-system.scm
b/guix/build/glib-or-gtk-build-system.scm
index 9f4cc09..655f20c 100644
--- a/guix/build/glib-or-gtk-build-system.scm
+++ b/guix/build/glib-or-gtk-build-system.scm
@@ -169,52 +169,19 @@ add a dependency of that output on GLib and GTK+."
(alist-cons output directory inputs)))
(gio-mod-dirs (gio-module-directories
(alist-cons output directory inputs)))
- (data-env-var
- (if (not (null? datadirs))
- `("XDG_DATA_DIRS" ":" prefix ,datadirs)
- #f))
- (gtk-mod-env-var
- (if (not (null? gtk-mod-dirs))
- `("GTK_PATH" ":" prefix ,gtk-mod-dirs)
- #f))
- (gio-mod-env-var
- (if (not (null? gio-mod-dirs))
- `("GIO_EXTRA_MODULES" ":" prefix ,gio-mod-dirs)
- #f)))
- (cond
- ((and data-env-var gtk-mod-env-var gio-mod-env-var)
- (for-each (cut wrap-program <> #:sh (sh)
- data-env-var
- gtk-mod-env-var
- gio-mod-env-var)
- bin-list))
- ((and data-env-var gtk-mod-env-var (not gio-mod-env-var))
- (for-each (cut wrap-program <> #:sh (sh)
- data-env-var
- gtk-mod-env-var)
- bin-list))
- ((and data-env-var (not gtk-mod-env-var) gio-mod-env-var)
- (for-each (cut wrap-program <> #:sh (sh)
- data-env-var
- gio-mod-env-var)
- bin-list))
- ((and (not data-env-var) gtk-mod-env-var gio-mod-env-var)
- (for-each (cut wrap-program <> #:sh (sh)
- gio-mod-env-var
- gtk-mod-env-var)
- bin-list))
- ((and data-env-var (not gtk-mod-env-var) (not gio-mod-env-var))
- (for-each (cut wrap-program <> #:sh (sh)
- data-env-var)
- bin-list))
- ((and (not data-env-var) gtk-mod-env-var (not gio-mod-env-var))
- (for-each (cut wrap-program <> #:sh (sh)
- gtk-mod-env-var)
- bin-list))
- ((and (not data-env-var) (not gtk-mod-env-var) gio-mod-env-var)
- (for-each (cut wrap-program <> #:sh (sh)
- gio-mod-env-var)
- bin-list))))))))
+ (env-vars `(,@(if (not (null? datadirs))
+ (list `("XDG_DATA_DIRS" ":" prefix ,datadirs))
+ '())
+ ,@(if (not (null? gtk-mod-dirs))
+ (list `("GTK_PATH" ":" prefix ,gtk-mod-dirs))
+ '())
+ ,@(if (not (null? gio-mod-dirs))
+ (list `("GIO_EXTRA_MODULES" ":"
+ prefix ,gio-mod-dirs))
+ '()))))
+ (for-each (lambda (program)
+ (apply wrap-program program #:sh (sh) env-vars))
+ bin-list))))))
(for-each handle-output outputs)
#t)
- 77/169: gnu: tzdata: Update to 2021e., (continued)
- 77/169: gnu: tzdata: Update to 2021e., guix-commits, 2021/10/28
- 85/169: gnu: Add ld-gold-wrapper., guix-commits, 2021/10/28
- 91/169: gnu: rust: Bootstrap rust from 1.39.0 and optimize build time., guix-commits, 2021/10/28
- 89/169: aux-files: sitecustomize: Cleanup and add explanatory comments., guix-commits, 2021/10/28
- 94/169: gnu: fontconfig: Add a search path for XDG_DATA_DIRS., guix-commits, 2021/10/28
- 97/169: gnu: Add python-flit-core., guix-commits, 2021/10/28
- 98/169: gnu: Add python-tomli., guix-commits, 2021/10/28
- 96/169: gnu: python-pypa-build: Update to 0.7.0., guix-commits, 2021/10/28
- 99/169: gnu: python-setuptools-scm: Update to 6.3.2, guix-commits, 2021/10/28
- 102/169: gnu: meson: Patch to allow installing to independent prefixes., guix-commits, 2021/10/28
- 103/169: build: glib-or-gtk-build-system: Simplify the wrap-all-programs phase.,
guix-commits <=
- 105/169: gnu: at-spi2-core: Reverse inheritance relationship with minimal variant., guix-commits, 2021/10/28
- 107/169: gnu: lsof: Disable the LTlock test., guix-commits, 2021/10/28
- 108/169: gnu: lsof: Fix indentation., guix-commits, 2021/10/28
- 110/169: gnu: Add docbook-xsl-ns., guix-commits, 2021/10/28
- 114/169: gnu: rest: Use libsoup-minimal., guix-commits, 2021/10/28
- 111/169: gnu: colord-minimal: Introduce minimal variant., guix-commits, 2021/10/28
- 115/169: gnu: inkscape: Remove the legacy 0.92 version., guix-commits, 2021/10/28
- 112/169: gnu: libcloudproviders-minimal: Introduce minimal variant., guix-commits, 2021/10/28
- 117/169: gnu: graphviz: Update to 2.49.0., guix-commits, 2021/10/28
- 121/169: gnu: util-linux: Globally disable the lsns test., guix-commits, 2021/10/28