summaryrefslogtreecommitdiff
path: root/guix/build/utils.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-12-27 12:16:18 +0100
committerLudovic Courtès <ludo@gnu.org>2014-12-27 12:25:31 +0100
commit6aa47e388390e98bec6caa90fef7f39a60e338a7 (patch)
treeda30bc1b7f2d8872890092afaaa3b561a8952ccc /guix/build/utils.scm
parent8c89f514bf8679ce4ebd9d3f4c8e6589340dba9a (diff)
downloadpatches-6aa47e388390e98bec6caa90fef7f39a60e338a7.tar
patches-6aa47e388390e98bec6caa90fef7f39a60e338a7.tar.gz
build-system/gnu: Add support for non-directory search paths.
Partly fixes <http://bugs.gnu.org/18033>. * guix/build/utils.scm (search-path-as-list): Rename 'sub-directories' parameter to 'files'. Add #:type parameter and honor it. (set-path-environment-variable): Likewise. Pass #:type to 'search-path-as-list'. * guix/packages.scm (search-path-specification->sexp): Add 'directory as the last item of the tuple. * guix/build/gnu-build-system.scm (set-paths): Add 'type' to search-path pattern. Pass #:type to 'set-path-environment-variable'.
Diffstat (limited to 'guix/build/utils.scm')
-rw-r--r--guix/build/utils.scm33
1 files changed, 19 insertions, 14 deletions
diff --git a/guix/build/utils.scm b/guix/build/utils.scm
index 9b1e098c6b..f22b2c3cb7 100644
--- a/guix/build/utils.scm
+++ b/guix/build/utils.scm
@@ -290,9 +290,10 @@ matches REGEXP."
;;; Search paths.
;;;
-(define (search-path-as-list sub-directories input-dirs)
- "Return the list of directories among SUB-DIRECTORIES that exist in
-INPUT-DIRS. Example:
+(define* (search-path-as-list files input-dirs
+ #:key (type 'directory))
+ "Return the list of directories among FILES of the given TYPE (a symbol as
+returned by 'stat:type') that exist in INPUT-DIRS. Example:
(search-path-as-list '(\"share/emacs/site-lisp\" \"share/emacs/24.1\")
(list \"/package1\" \"/package2\" \"/package3\"))
@@ -301,12 +302,12 @@ INPUT-DIRS. Example:
"
(append-map (lambda (input)
- (filter-map (lambda (dir)
- (let ((dir (string-append input "/"
- dir)))
- (and (directory-exists? dir)
- dir)))
- sub-directories))
+ (filter-map (lambda (file)
+ (let* ((file (string-append input "/" file))
+ (stat (stat file #f)))
+ (and stat (eq? type (stat:type stat))
+ file)))
+ files))
input-dirs))
(define (list->search-path-as-string lst separator)
@@ -315,16 +316,20 @@ INPUT-DIRS. Example:
(define* (search-path-as-string->list path #:optional (separator #\:))
(string-tokenize path (char-set-complement (char-set separator))))
-(define* (set-path-environment-variable env-var sub-directories input-dirs
- #:key (separator ":"))
- "Look for each of SUB-DIRECTORIES in INPUT-DIRS. Set ENV-VAR to a
-SEPARATOR-separated path accordingly. Example:
+(define* (set-path-environment-variable env-var files input-dirs
+ #:key
+ (separator ":")
+ (type 'directory))
+ "Look for each of FILES of the given TYPE (a symbol as returned by
+'stat:type') in INPUT-DIRS. Set ENV-VAR to a SEPARATOR-separated path
+accordingly. Example:
(set-path-environment-variable \"PKG_CONFIG\"
'(\"lib/pkgconfig\")
(list package1 package2))
"
- (let* ((path (search-path-as-list sub-directories input-dirs))
+ (let* ((path (search-path-as-list files input-dirs
+ #:type type))
(value (list->search-path-as-string path separator)))
(if (string-null? value)
(begin