[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: import cran: Check if pkg-config is needed.
From: |
Ricardo Wurmus |
Subject: |
06/06: import cran: Check if pkg-config is needed. |
Date: |
Tue, 16 May 2017 15:46:28 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 17a69cf623ed71c3373a5baad92f1a47321cc735
Author: Ricardo Wurmus <address@hidden>
Date: Wed Apr 5 18:42:08 2017 +0200
import cran: Check if pkg-config is needed.
* guix/import/cran.scm (needs-pkg-config?): New procedure.
(description->package): Use it.
---
guix/import/cran.scm | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/guix/import/cran.scm b/guix/import/cran.scm
index db72feb..8d963a7 100644
--- a/guix/import/cran.scm
+++ b/guix/import/cran.scm
@@ -235,6 +235,13 @@ contain a zlib linker flag."
tarball "-lz"
"*/src/Makevars*" "*/src/configure*" "*/configure*"))
+(define (needs-pkg-config? tarball)
+ "Return #T if any of the Makevars files in the src directory of the TARBALL
+reference the pkg-config tool."
+ (tarball-files-match-pattern?
+ tarball "pkg-config"
+ "*/src/Makevars*" "*/src/configure*" "*/configure*"))
+
(define (description->package repository meta)
"Return the `package' s-expression for an R package published on REPOSITORY
from the alist META, which was derived from the R package's DESCRIPTION file."
@@ -284,11 +291,12 @@ from the alist META, which was derived from the R
package's DESCRIPTION file."
(build-system r-build-system)
,@(maybe-inputs sysdepends)
,@(maybe-inputs (map guix-name propagate) 'propagated-inputs)
- ,@(if (needs-fortran? tarball)
- `((native-inputs (,'quasiquote
- ,(list "gfortran"
- (list 'unquote 'gfortran)))))
- '())
+ ,@(maybe-inputs
+ `(,@(if (needs-fortran? tarball)
+ '("gfortran") '())
+ ,@(if (needs-pkg-config? tarball)
+ '("pkg-config") '()))
+ 'native-inputs)
(home-page ,(if (string-null? home-page)
(string-append base-url name)
home-page))
- branch master updated (ca05bc0 -> 17a69cf), Ricardo Wurmus, 2017/05/16
- 02/06: import cran: Exclude experiment packages in predicate "bioconductor-package?"., Ricardo Wurmus, 2017/05/16
- 04/06: import cran: Export package predicates., Ricardo Wurmus, 2017/05/16
- 01/06: import cran: Fetch DESCRIPTION files from Github mirror., Ricardo Wurmus, 2017/05/16
- 05/06: import cran: Refactor "needs-zlib?"., Ricardo Wurmus, 2017/05/16
- 03/06: import cran: Add predicate for Bioconductor experiment packages., Ricardo Wurmus, 2017/05/16
- 06/06: import cran: Check if pkg-config is needed.,
Ricardo Wurmus <=