build-system: qt: Exclude useless inputs from wrapped variables.
* guix/build-system/qt.scm (qt-build)[qt-wrap-excluded-inputs]: New argument. * guix/build/qt-utils.scm (%qt-wrap-excluded-inputs): New variable. (wrap-qt-program*)[qt-wrap-excluded-inputs]: New argument. Filter excluded inputs. (wrap-qt-program)[qt-wrap-excluded-inputs]: New argument. (wrap-all-qt-programs)[qt-wrap-excluded-inputs]: New argument. Co-authored-by: Hartmut Goebel <h.goebel@crazy-compilers.com>master
parent
4ecc2a2493
commit
094b6ac009
|
@ -3,6 +3,7 @@
|
|||
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -22,6 +23,8 @@
|
|||
(define-module (guix build-system qt)
|
||||
#:use-module (guix store)
|
||||
#:use-module (guix utils)
|
||||
#:use-module ((guix build qt-utils)
|
||||
#:select (%qt-wrap-excluded-inputs))
|
||||
#:use-module (guix derivations)
|
||||
#:use-module (guix search-paths)
|
||||
#:use-module (guix build-system)
|
||||
|
@ -125,6 +128,7 @@
|
|||
(phases '(@ (guix build qt-build-system)
|
||||
%standard-phases))
|
||||
(qt-wrap-excluded-outputs ''())
|
||||
(qt-wrap-excluded-inputs %qt-wrap-excluded-inputs)
|
||||
(system (%current-system))
|
||||
(imported-modules %qt-build-system-modules)
|
||||
(modules '((guix build qt-build-system)
|
||||
|
@ -148,6 +152,7 @@ provides a 'CMakeLists.txt' file as its build system."
|
|||
search-paths)
|
||||
#:phases ,phases
|
||||
#:qt-wrap-excluded-outputs ,qt-wrap-excluded-outputs
|
||||
#:qt-wrap-excluded-inputs ,qt-wrap-excluded-inputs
|
||||
#:configure-flags ,configure-flags
|
||||
#:make-flags ,make-flags
|
||||
#:out-of-source? ,out-of-source?
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2016 David Craven <david@craven.ch>
|
||||
;;; Copyright © 2019, 2020, 2021 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -23,8 +24,11 @@
|
|||
#:use-module (srfi srfi-1)
|
||||
#:use-module (srfi srfi-26)
|
||||
#:export (wrap-qt-program
|
||||
wrap-all-qt-programs))
|
||||
wrap-all-qt-programs
|
||||
%qt-wrap-excluded-inputs))
|
||||
|
||||
(define %qt-wrap-excluded-inputs
|
||||
'(list "cmake" "extra-cmake-modules" "qttools"))
|
||||
|
||||
(define (variables-for-wrapping base-directories)
|
||||
|
||||
|
@ -50,13 +54,16 @@
|
|||
'("QML2_IMPORT_PATH" prefix "/lib/qt5/qml")))))
|
||||
|
||||
|
||||
(define* (wrap-qt-program* program #:key inputs output-dir)
|
||||
(define* (wrap-qt-program* program #:key inputs output-dir
|
||||
qt-wrap-excluded-inputs)
|
||||
|
||||
(define input-directories
|
||||
;; FIXME: Filter out unwanted inputs, e.g. cmake
|
||||
(match inputs
|
||||
(((_ . dir) ...)
|
||||
dir)))
|
||||
(filter-map
|
||||
(match-lambda
|
||||
((label . directory)
|
||||
(and (not (member label qt-wrap-excluded-inputs))
|
||||
directory)))
|
||||
inputs))
|
||||
|
||||
(let ((vars-to-wrap (variables-for-wrapping
|
||||
(cons output-dir input-directories))))
|
||||
|
@ -64,18 +71,21 @@
|
|||
(apply wrap-program program vars-to-wrap))))
|
||||
|
||||
|
||||
(define* (wrap-qt-program program-name #:key inputs output)
|
||||
(define* (wrap-qt-program program-name #:key inputs output
|
||||
(qt-wrap-excluded-inputs %qt-wrap-excluded-inputs))
|
||||
"Wrap the specified programm (which must reside in the OUTPUT's \"/bin\"
|
||||
directory) with suitably set environment variables.
|
||||
|
||||
This is like qt-build-systems's phase \"qt-wrap\", but only the named program
|
||||
is wrapped."
|
||||
(wrap-qt-program* (string-append output "/bin/" program-name)
|
||||
#:output-dir output #:inputs inputs))
|
||||
#:output-dir output #:inputs inputs
|
||||
#:qt-wrap-excluded-inputs qt-wrap-excluded-inputs))
|
||||
|
||||
|
||||
(define* (wrap-all-qt-programs #:key inputs outputs
|
||||
(qt-wrap-excluded-outputs '())
|
||||
(qt-wrap-excluded-inputs %qt-wrap-excluded-inputs)
|
||||
#:allow-other-keys)
|
||||
"Implement qt-build-systems's phase \"qt-wrap\": look for executables in
|
||||
\"bin\", \"sbin\" and \"libexec\" of all outputs and create wrappers with
|
||||
|
@ -99,7 +109,8 @@ add a dependency of that output on Qt."
|
|||
((output . output-dir)
|
||||
(unless (member output qt-wrap-excluded-outputs)
|
||||
(for-each (cut wrap-qt-program* <>
|
||||
#:output-dir output-dir #:inputs inputs)
|
||||
#:output-dir output-dir #:inputs inputs
|
||||
#:qt-wrap-excluded-inputs qt-wrap-excluded-inputs)
|
||||
(find-files-to-wrap output-dir))))))
|
||||
|
||||
(for-each handle-output outputs)
|
||||
|
|
Reference in New Issue