[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/06: import cran: Exclude experiment packages in predicate "bioconduct
From: |
Ricardo Wurmus |
Subject: |
02/06: import cran: Exclude experiment packages in predicate "bioconductor-package?". |
Date: |
Tue, 16 May 2017 15:46:28 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit c9ffa91fd346eb832c05afea5b523c8da5b47500
Author: Ricardo Wurmus <address@hidden>
Date: Wed Apr 5 18:42:05 2017 +0200
import cran: Exclude experiment packages in predicate
"bioconductor-package?".
* guix/import/cran.scm (bioconductor-package?): Exclude experiment packages,
because they cannot be updated with the default bioconductor updater.
---
guix/import/cran.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/guix/import/cran.scm b/guix/import/cran.scm
index 221b542..1adffc4 100644
--- a/guix/import/cran.scm
+++ b/guix/import/cran.scm
@@ -433,7 +433,9 @@ dependencies."
;; the Github mirror, so we have to exclude them
;; from the set of bioconductor packages that can be
;; updated automatically.
- (not (string-contains uri "/data/annotation/"))))))
+ (not (string-contains uri "/data/annotation/"))
+ ;; Experiment packages are in a separate repository.
+ (not (string-contains uri "/data/experiment/"))))))
(and (string-prefix? "r-" (package-name package))
(match (and=> (package-source package) origin-uri)
((? string? uri)
- branch master updated (ca05bc0 -> 17a69cf), Ricardo Wurmus, 2017/05/16
- 02/06: import cran: Exclude experiment packages in predicate "bioconductor-package?".,
Ricardo Wurmus <=
- 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, 2017/05/16