[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
81/201: build: qt-utils: Don't wrap .X-real files.
From: |
guix-commits |
Subject: |
81/201: build: qt-utils: Don't wrap .X-real files. |
Date: |
Mon, 1 Nov 2021 23:18:42 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit dda2df72dcd8b73f564b598d7111728457acb65e
Author: Brendan Tildesley <mail@brendan.scot>
AuthorDate: Tue Oct 5 22:01:06 2021 +1100
build: qt-utils: Don't wrap .X-real files.
* guix/build/qt-utils.scm (find-files-to-wrap): Exclude already wrapped
programs. This is forbidden in wrap-program now due to a738a663a99.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
guix/build/qt-utils.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/guix/build/qt-utils.scm b/guix/build/qt-utils.scm
index c2b80ca..e86442b 100644
--- a/guix/build/qt-utils.scm
+++ b/guix/build/qt-utils.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
;;; Copyright © 2021 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2021 Brendan Tildesley <mail@brendan.scot>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -133,7 +134,10 @@ add a dependency of that output on Qt."
(define (find-files-to-wrap output-dir)
(append-map
(lambda (dir)
- (if (directory-exists? dir) (find-files dir ".*") (list)))
+ (if (directory-exists? dir)
+ (find-files dir (lambda (file stat)
+ (not (wrapped-program? file))))
+ (list)))
(list (string-append output-dir "/bin")
(string-append output-dir "/sbin")
(string-append output-dir "/libexec")
- 173/201: gnu: tracker: Use libsoup-minimal-2 to fix build., (continued)
- 173/201: gnu: tracker: Use libsoup-minimal-2 to fix build., guix-commits, 2021/11/01
- 170/201: gnu: gtkmm-3: Update to 3.24.5., guix-commits, 2021/11/01
- 201/201: gnu: guile-ssh: Update to 0.13.1-2e25d85., guix-commits, 2021/11/01
- 74/201: gnu: python-keras: Skip a flaky test., guix-commits, 2021/11/01
- 79/201: gnu: diffutils: Fix signal processing., guix-commits, 2021/11/01
- 91/201: gnu: rust: Bootstrap rust from 1.39.0 and optimize build time., guix-commits, 2021/11/01
- 99/201: gnu: python-setuptools-scm: Update to 6.3.2, guix-commits, 2021/11/01
- 112/201: gnu: libcloudproviders-minimal: Introduce minimal variant., guix-commits, 2021/11/01
- 110/201: gnu: Add docbook-xsl-ns., guix-commits, 2021/11/01
- 77/201: gnu: tzdata: Update to 2021e., guix-commits, 2021/11/01
- 81/201: build: qt-utils: Don't wrap .X-real files.,
guix-commits <=
- 89/201: aux-files: sitecustomize: Cleanup and add explanatory comments., guix-commits, 2021/11/01
- 83/201: gnu: gcc-5: Fix powerpc64le-linux build, guix-commits, 2021/11/01
- 92/201: gnu: rust: Add rust 1.54 and move all non-bootstrapping logic to it., guix-commits, 2021/11/01
- 94/201: gnu: fontconfig: Add a search path for XDG_DATA_DIRS., guix-commits, 2021/11/01
- 97/201: gnu: Add python-flit-core., guix-commits, 2021/11/01
- 103/201: build: glib-or-gtk-build-system: Simplify the wrap-all-programs phase., guix-commits, 2021/11/01
- 106/201: gnu: at-spi2-atk: Break a dependency cycle between GTK+ and Inkscape., guix-commits, 2021/11/01
- 107/201: gnu: lsof: Disable the LTlock test., guix-commits, 2021/11/01
- 105/201: gnu: at-spi2-core: Reverse inheritance relationship with minimal variant., guix-commits, 2021/11/01
- 102/201: gnu: meson: Patch to allow installing to independent prefixes., guix-commits, 2021/11/01