guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

89/103: gnu: r-codedepends: Move from cran to bioconductor.


From: Ricardo Wurmus
Subject: 89/103: gnu: r-codedepends: Move from cran to bioconductor.
Date: Wed, 5 Sep 2018 14:03:56 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit a207bca2adf5371aabe41f28203c0e3e7bfbacad
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Sep 5 19:47:19 2018 +0200

    gnu: r-codedepends: Move from cran to bioconductor.
    
    * gnu/packages/cran.scm (r-codedepends): Move from here...
    * gnu/packages/bioconductor.scm (r-codedepends): ...to here.
---
 gnu/packages/bioconductor.scm | 28 ++++++++++++++++++++++++++++
 gnu/packages/cran.scm         | 28 ----------------------------
 2 files changed, 28 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index fc01c22..a47a5aa 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -379,6 +379,34 @@ expressed genes in DNA microarray experiments.")
      "This package implements some simple graph handling capabilities for R.")
     (license license:artistic2.0)))
 
+(define-public r-codedepends
+  (package
+    (name "r-codedepends")
+    (version "0.6.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "CodeDepends" version))
+       (sha256
+        (base32
+         "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
+    (properties `((upstream-name . "CodeDepends")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-codetools" ,r-codetools)
+       ("r-graph" ,r-graph)
+       ("r-xml" ,r-xml)))
+    (home-page "http://cran.r-project.org/web/packages/CodeDepends";)
+    (synopsis "Analysis of R code for reproducible research and code 
comprehension")
+    (description
+     "This package provides tools for analyzing R expressions or blocks of
+code and determining the dependencies between them.  It focuses on R scripts,
+but can be used on the bodies of functions.  There are many facilities
+including the ability to summarize or get a high-level view of code,
+determining dependencies between variables, code improvement suggestions.")
+    ;; Any version of the GPL
+    (license (list license:gpl2+ license:gpl3+))))
+
 (define-public r-chippeakanno
   (package
     (name "r-chippeakanno")
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 9f3d1bf..447be56 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -4177,34 +4177,6 @@ to the cluster management tool @code{sfCluster}, but can 
also used without
 it.")
    (license license:gpl2+)))
 
-(define-public r-codedepends
-  (package
-    (name "r-codedepends")
-    (version "0.6.5")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "CodeDepends" version))
-       (sha256
-        (base32
-         "0l7kiv3awx50glf5cs841b4zzsff1ml90f0zr868ygvwsr4ps1hq"))))
-    (properties `((upstream-name . "CodeDepends")))
-    (build-system r-build-system)
-    (propagated-inputs
-     `(("r-codetools" ,r-codetools)
-       ("r-graph" ,r-graph)
-       ("r-xml" ,r-xml)))
-    (home-page "http://cran.r-project.org/web/packages/CodeDepends";)
-    (synopsis "Analysis of R code for reproducible research and code 
comprehension")
-    (description
-     "This package provides tools for analyzing R expressions or blocks of
-code and determining the dependencies between them.  It focuses on R scripts,
-but can be used on the bodies of functions.  There are many facilities
-including the ability to summarize or get a high-level view of code,
-determining dependencies between variables, code improvement suggestions.")
-    ;; Any version of the GPL
-    (license (list license:gpl2+ license:gpl3+))))
-
 (define-public r-rappdirs
   (package
     (name "r-rappdirs")



reply via email to

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