guix-commits
[Top][All Lists]
Advanced

[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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]