guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: r-txtplot: Move to (gnu packages cran).


From: guix-commits
Subject: 01/01: gnu: r-txtplot: Move to (gnu packages cran).
Date: Wed, 27 Nov 2019 13:11:34 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit dcc7fad0016d7ef062ccfe0b1deb3368251e8ff8
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Nov 27 18:36:39 2019 +0100

    gnu: r-txtplot: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-txtplot): Move from here...
    * gnu/packages/cran.scm (r-txtplot): ...to here.
---
 gnu/packages/cran.scm       | 21 +++++++++++++++++++++
 gnu/packages/statistics.scm | 20 --------------------
 2 files changed, 21 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 0797897..f2da9ca 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -14,6 +14,7 @@
 ;;; Copyright © 2018 Laura Lazzati <address@hidden>
 ;;; Copyright © 2018 Leo Famulari <address@hidden>
 ;;; Copyright © 2018 Marius Bakke <address@hidden>
+;;; Copyright © 2018 Eric Brown <address@hidden>
 ;;; Copyright © 2018, 2019 Brett Gilio <address@hidden>
 ;;; Copyright © 2019 Nicolò Balzarotti <address@hidden>
 ;;; Copyright © 2019 Wiktor Żelazny <address@hidden>
@@ -15830,3 +15831,23 @@ It solves unconstrained optimization problems using a 
simplex method on
 subspaces.  The method is well suited for optimizing objective functions that
 are noisy or are discontinuous at the solution.")
     (license license:gpl3+)))
+
+(define-public r-txtplot
+  (package
+    (name "r-txtplot")
+    (version "1.0-3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "txtplot" version))
+       (sha256
+        (base32
+         "1949ab1bzvysdb79g8x1gaknj0ih3d6g63pv9512h5m5l3a6c31h"))))
+    (build-system r-build-system)
+    (home-page "https://cran.r-project.org/web/packages/txtplot/";)
+    (synopsis "Text-based plotting")
+    (description "This package provides functions to produce rudimentary ASCII
+graphics directly in the terminal window.  This package provides a basic
+plotting function (and equivalents of curve, density, acf and barplot) as well
+as a boxplot function.")
+    (license license:lgpl3+)))
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index c7860d2..1c315c2 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -5710,26 +5710,6 @@ table made by the command @code{show256Colors()}.  You 
can also set the colors
 to any arbitrary string.  In this case, it is up to you to set valid values.")
     (license license:gpl3+)))
 
-(define-public r-txtplot
-  (package
-    (name "r-txtplot")
-    (version "1.0-3")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "txtplot" version))
-       (sha256
-        (base32
-         "1949ab1bzvysdb79g8x1gaknj0ih3d6g63pv9512h5m5l3a6c31h"))))
-    (build-system r-build-system)
-    (home-page "https://cran.r-project.org/web/packages/txtplot/";)
-    (synopsis "Text-based plotting")
-    (description "This package provides functions to produce rudimentary ASCII
-graphics directly in the terminal window.  This package provides a basic
-plotting function (and equivalents of curve, density, acf and barplot) as well
-as a boxplot function.")
-    (license license:lgpl3+)))
-
 (define-public python-rpy2
   ;; We need to take this changeset instead of the RELEASE_3_0_4 tag, because
   ;; it fixes a regression when using ggplot 3.2.0.



reply via email to

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